diff --git a/dist/vuetify.js b/dist/vuetify.js index 264c0f553f6..385cf975480 100644 --- a/dist/vuetify.js +++ b/dist/vuetify.js @@ -121,7 +121,7 @@ function closest (className) { } if (parent.$el.classList.contains(className)) { - return parent._uid + return parent } parent = parent.$parent @@ -503,9 +503,13 @@ Toast.prototype.create = function create (message, location, duration, cb) { /* harmony default export */ exports["a"] = function () { - document.body.addEventListener('click', function (e) { - __WEBPACK_IMPORTED_MODULE_0__bus__["a" /* default */].pub('body:click', e) - }) + var click = function (e) { return __WEBPACK_IMPORTED_MODULE_0__bus__["a" /* default */].pub('body:click', e); } + + if (typeof window.orientation !== 'undefined') { + document.body.addEventListener('touchstart', click, false) + } else { + document.body.addEventListener('click', click, false) + } __WEBPACK_IMPORTED_MODULE_0__bus__["a" /* default */].sub('meta:title', function (title) { document.title = title @@ -1500,6 +1504,7 @@ Object.defineProperty(exports, "__esModule", { value: true }); // // // +// /* harmony default export */ exports["default"] = { name: 'select', @@ -1516,6 +1521,8 @@ Object.defineProperty(exports, "__esModule", { value: true }); default: 'Select...' }, + disabled: Boolean, + id: { type: String, value: '' @@ -1598,13 +1605,15 @@ Object.defineProperty(exports, "__esModule", { value: true }); // // // +// /* harmony default export */ exports["default"] = { name: 'text-input', data: function data () { return { - focused: false + focused: false, + inputValue: '' } }, @@ -1612,12 +1621,14 @@ Object.defineProperty(exports, "__esModule", { value: true }); classes: function classes () { return { 'input-group--focused': this.focused, - 'input-group--dirty': this.value || this.placeholder || (this.$refs.input && this.$refs.input.value) + 'input-group--dirty': this.inputValue || this.placeholder || (this.$refs.input && this.$refs.input.value) } } }, props: { + disabled: Boolean, + label: String, id: String, @@ -1626,9 +1637,24 @@ Object.defineProperty(exports, "__esModule", { value: true }); placeholder: String, + type: { + default: 'text' + }, + value: { required: false } + }, + + mounted: function mounted () { + this.inputValue = this.value + }, + + methods: { + updateValue: function updateValue (e) { + this.inputValue = e.target.value + this.$emit('input', this.inputValue) + } } }; @@ -2460,7 +2486,19 @@ Object.defineProperty(exports, "__esModule", { value: true }); } }, - close: function close (e) { + close: function close (e, force) { + if ( force === void 0 ) force = false; + + var width = window.innerWidth + + if (force) { + return width > 768 && !this.drawer ? null : this.active = false + } + + if (this.$el.contains(e.target)) { + return + } + var target = e.target var parent = e.target.parentNode var group = {} @@ -2486,8 +2524,6 @@ Object.defineProperty(exports, "__esModule", { value: true }); } } catch (e) {} - var width = window.innerWidth - if (width > 768 && !this.drawer) { return } @@ -2561,7 +2597,11 @@ Object.defineProperty(exports, "__esModule", { value: true }); }, sidebar: function sidebar () { - return __WEBPACK_IMPORTED_MODULE_1__util_helpers__["b" /* closest */].call(this, 'sidebar') + var sidebar = __WEBPACK_IMPORTED_MODULE_1__util_helpers__["b" /* closest */].call(this, 'sidebar') + + if (!sidebar) { return null } + + return sidebar.id } }, @@ -2667,17 +2707,26 @@ Object.defineProperty(exports, "__esModule", { value: true }); computed: { group: function group () { - return __WEBPACK_IMPORTED_MODULE_0__util_helpers__["b" /* closest */].call(this, 'sidebar__group') + var sidebar = __WEBPACK_IMPORTED_MODULE_0__util_helpers__["b" /* closest */].call(this, 'sidebar__group') + + if (!sidebar) { return null } + + return sidebar._uid }, sidebar: function sidebar () { - return __WEBPACK_IMPORTED_MODULE_0__util_helpers__["b" /* closest */].call(this, 'sidebar') + var sidebar = __WEBPACK_IMPORTED_MODULE_0__util_helpers__["b" /* closest */].call(this, 'sidebar') + + if (!sidebar) { return null } + + return sidebar.id } }, methods: { click: function click () { this.$vuetify.bus.pub(("sidebar-group:close:" + (this.sidebar)), this.group) + this.$vuetify.bus.pub(("sidebar:close:" + (this.sidebar)), {}, true) } } }; @@ -2779,6 +2828,12 @@ Object.defineProperty(exports, "__esModule", { value: true }); watch: { current: function current () { + // Evaulate items when current changes to account for + // dynamic changing of children + this.items = this.$children.filter(function (i) { + return i.$el.classList && i.$el.classList.contains('slider__item') + }) + if (this.cycle) { clearInterval(this.slide_interval) this.startInterval() @@ -2798,10 +2853,6 @@ Object.defineProperty(exports, "__esModule", { value: true }); methods: { init: function init () { - this.items = this.$children.filter(function (i) { - return i.$el.classList && i.$el.classList.contains('slider__item') - }) - this.current = 0 }, @@ -5134,21 +5185,20 @@ module.exports={render:function (){var _vm=this; }), _vm._c('input', { ref: "input", attrs: { - "type": "text", - "name": _vm.name, + "disabled": _vm.disabled, "id": _vm.id, - "placeholder": _vm.placeholder + "name": _vm.name, + "placeholder": _vm.placeholder, + "type": _vm.type }, domProps: { - "value": _vm.value + "value": _vm.inputValue }, on: { "blur": function($event) { _vm.focused = false }, - "input": function($event) { - _vm.$emit('input', $event.target.value) - }, + "input": _vm.updateValue, "focus": function($event) { _vm.focused = true } @@ -5373,6 +5423,7 @@ module.exports={render:function (){var _vm=this; }), _vm._c('select', { ref: "select", attrs: { + "disabled": _vm.disabled, "id": _vm.id, "name": _vm.name, "multiple": _vm.multiple diff --git a/dist/vuetify.min.css b/dist/vuetify.min.css index 5e623fae5d4..4a8c78497a8 100644 --- a/dist/vuetify.min.css +++ b/dist/vuetify.min.css @@ -1 +1 @@ -html{box-sizing:border-box;overflow-y:scroll;-webkit-text-size-adjust:100%;}*,::before,::after{box-sizing:inherit}::before,::after{text-decoration:inherit;vertical-align:inherit}*{background-repeat:no-repeat;padding:0;margin:0}audio:not([controls]){display:none;height:0}hr{overflow:visible;}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}summary{display:list-item;}small{font-size:80%;}[hidden],template{display:none;}abbr[title]{border-bottom:1px dotted;text-decoration:none;}a{background-color:transparent;-webkit-text-decoration-skip:objects;}a:active,a:hover{outline-width:0;}code,kbd,pre,samp{font-family:monospace,monospace;}b,strong{font-weight:bolder;}dfn{font-style:italic;}mark{background-color:#ff0;color:#000}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}input{border-radius:0}button,[type="button"],[type="reset"],[type="submit"],[role="button"]{cursor:pointer}[disabled]{cursor:default}[type="number"]{width:auto;}[type="search"]{-webkit-appearance:textfield;}[type="search"]::-webkit-search-cancel-button,[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}textarea{overflow:auto;resize:vertical;}button,input,optgroup,select,textarea{font:inherit;}optgroup{font-weight:bold;}button{overflow:visible;}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:0;padding:0}button:-moz-focusring,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{outline:1px dotted ButtonText}button,html [type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button;}button,select{text-transform:none;}button,input,select,textarea{background-color:transparent;border-style:none;color:inherit}select{-moz-appearance:none;-webkit-appearance:none;}select::-ms-expand{display:none;}select::-ms-value{color:currentColor;}legend{border:0;color:inherit;display:table;max-width:100%;white-space:normal;}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit;}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px;}img{border-style:none;}progress{vertical-align:baseline}svg:not(:root){overflow:hidden;}audio,canvas,progress,video{display:inline-block;}@media screen{[hidden~="screen"]{display:inherit}[hidden~="screen"]:not(:active):not(:focus):not(:target){position:absolute !important;clip:rect(0 0 0 0) !important}}[aria-busy="true"]{cursor:progress}[aria-controls]{cursor:pointer}[aria-disabled]{cursor:default}::-moz-selection{background-color:#b3d4fc;color:#000;text-shadow:none}::selection{background-color:#b3d4fc;color:#000;text-shadow:none}.content{flex-basis:100%}.container,.container-fluid{margin-right:auto;margin-left:auto;flex-basis:100%}.container{padding-left:2rem;padding-right:2rem;}.container--fluid{padding:0}@media only screen and (min-width:'sm'){.container{max-width:'sm'}}@media only screen and (min-width:'md'){.container{max-width:'md'}}@media only screen and (min-width:'lg'){.container{max-width:'lg'}}.row{box-sizing:border-box;display:flex;flex:0 1 auto;flex-flow:row wrap;margin-left:-.5rem;margin-right:-.5rem;}.row--reverse{flex-direction:row-reverse}.row .col{box-sizing:border-box;flex:0 0 auto;padding-right:.5rem;padding-left:.5rem;}.row .col.xs{flex-grow:1;flex-basis:0;max-width:100%}@media only screen and (min-width:0){.row .col.xs1{flex-basis:8.333333333333332%;max-width:8.333333333333332%}.row .col.offset-xs1{margin-left:8.333333333333332%}.row .col.xs2{flex-basis:16.666666666666664%;max-width:16.666666666666664%}.row .col.offset-xs2{margin-left:16.666666666666664%}.row .col.xs3{flex-basis:25%;max-width:25%}.row .col.offset-xs3{margin-left:25%}.row .col.xs4{flex-basis:33.33333333333333%;max-width:33.33333333333333%}.row .col.offset-xs4{margin-left:33.33333333333333%}.row .col.xs5{flex-basis:41.66666666666667%;max-width:41.66666666666667%}.row .col.offset-xs5{margin-left:41.66666666666667%}.row .col.xs6{flex-basis:50%;max-width:50%}.row .col.offset-xs6{margin-left:50%}.row .col.xs7{flex-basis:58.333333333333336%;max-width:58.333333333333336%}.row .col.offset-xs7{margin-left:58.333333333333336%}.row .col.xs8{flex-basis:66.66666666666666%;max-width:66.66666666666666%}.row .col.offset-xs8{margin-left:66.66666666666666%}.row .col.xs9{flex-basis:75%;max-width:75%}.row .col.offset-xs9{margin-left:75%}.row .col.xs10{flex-basis:83.33333333333334%;max-width:83.33333333333334%}.row .col.offset-xs10{margin-left:83.33333333333334%}.row .col.xs11{flex-basis:91.66666666666666%;max-width:91.66666666666666%}.row .col.offset-xs11{margin-left:91.66666666666666%}.row .col.xs12{flex-basis:100%;max-width:100%}.row .col.offset-xs12{margin-left:100%}}.row .col.sm{flex-grow:1;flex-basis:0;max-width:100%}@media only screen and (min-width:48rem){.row .col.sm1{flex-basis:8.333333333333332%;max-width:8.333333333333332%}.row .col.offset-sm1{margin-left:8.333333333333332%}.row .col.sm2{flex-basis:16.666666666666664%;max-width:16.666666666666664%}.row .col.offset-sm2{margin-left:16.666666666666664%}.row .col.sm3{flex-basis:25%;max-width:25%}.row .col.offset-sm3{margin-left:25%}.row .col.sm4{flex-basis:33.33333333333333%;max-width:33.33333333333333%}.row .col.offset-sm4{margin-left:33.33333333333333%}.row .col.sm5{flex-basis:41.66666666666667%;max-width:41.66666666666667%}.row .col.offset-sm5{margin-left:41.66666666666667%}.row .col.sm6{flex-basis:50%;max-width:50%}.row .col.offset-sm6{margin-left:50%}.row .col.sm7{flex-basis:58.333333333333336%;max-width:58.333333333333336%}.row .col.offset-sm7{margin-left:58.333333333333336%}.row .col.sm8{flex-basis:66.66666666666666%;max-width:66.66666666666666%}.row .col.offset-sm8{margin-left:66.66666666666666%}.row .col.sm9{flex-basis:75%;max-width:75%}.row .col.offset-sm9{margin-left:75%}.row .col.sm10{flex-basis:83.33333333333334%;max-width:83.33333333333334%}.row .col.offset-sm10{margin-left:83.33333333333334%}.row .col.sm11{flex-basis:91.66666666666666%;max-width:91.66666666666666%}.row .col.offset-sm11{margin-left:91.66666666666666%}.row .col.sm12{flex-basis:100%;max-width:100%}.row .col.offset-sm12{margin-left:100%}}.row .col.md{flex-grow:1;flex-basis:0;max-width:100%}@media only screen and (min-width:64rem){.row .col.md1{flex-basis:8.333333333333332%;max-width:8.333333333333332%}.row .col.offset-md1{margin-left:8.333333333333332%}.row .col.md2{flex-basis:16.666666666666664%;max-width:16.666666666666664%}.row .col.offset-md2{margin-left:16.666666666666664%}.row .col.md3{flex-basis:25%;max-width:25%}.row .col.offset-md3{margin-left:25%}.row .col.md4{flex-basis:33.33333333333333%;max-width:33.33333333333333%}.row .col.offset-md4{margin-left:33.33333333333333%}.row .col.md5{flex-basis:41.66666666666667%;max-width:41.66666666666667%}.row .col.offset-md5{margin-left:41.66666666666667%}.row .col.md6{flex-basis:50%;max-width:50%}.row .col.offset-md6{margin-left:50%}.row .col.md7{flex-basis:58.333333333333336%;max-width:58.333333333333336%}.row .col.offset-md7{margin-left:58.333333333333336%}.row .col.md8{flex-basis:66.66666666666666%;max-width:66.66666666666666%}.row .col.offset-md8{margin-left:66.66666666666666%}.row .col.md9{flex-basis:75%;max-width:75%}.row .col.offset-md9{margin-left:75%}.row .col.md10{flex-basis:83.33333333333334%;max-width:83.33333333333334%}.row .col.offset-md10{margin-left:83.33333333333334%}.row .col.md11{flex-basis:91.66666666666666%;max-width:91.66666666666666%}.row .col.offset-md11{margin-left:91.66666666666666%}.row .col.md12{flex-basis:100%;max-width:100%}.row .col.offset-md12{margin-left:100%}}.row .col.lg{flex-grow:1;flex-basis:0;max-width:100%}@media only screen and (min-width:75rem){.row .col.lg1{flex-basis:8.333333333333332%;max-width:8.333333333333332%}.row .col.offset-lg1{margin-left:8.333333333333332%}.row .col.lg2{flex-basis:16.666666666666664%;max-width:16.666666666666664%}.row .col.offset-lg2{margin-left:16.666666666666664%}.row .col.lg3{flex-basis:25%;max-width:25%}.row .col.offset-lg3{margin-left:25%}.row .col.lg4{flex-basis:33.33333333333333%;max-width:33.33333333333333%}.row .col.offset-lg4{margin-left:33.33333333333333%}.row .col.lg5{flex-basis:41.66666666666667%;max-width:41.66666666666667%}.row .col.offset-lg5{margin-left:41.66666666666667%}.row .col.lg6{flex-basis:50%;max-width:50%}.row .col.offset-lg6{margin-left:50%}.row .col.lg7{flex-basis:58.333333333333336%;max-width:58.333333333333336%}.row .col.offset-lg7{margin-left:58.333333333333336%}.row .col.lg8{flex-basis:66.66666666666666%;max-width:66.66666666666666%}.row .col.offset-lg8{margin-left:66.66666666666666%}.row .col.lg9{flex-basis:75%;max-width:75%}.row .col.offset-lg9{margin-left:75%}.row .col.lg10{flex-basis:83.33333333333334%;max-width:83.33333333333334%}.row .col.offset-lg10{margin-left:83.33333333333334%}.row .col.lg11{flex-basis:91.66666666666666%;max-width:91.66666666666666%}.row .col.offset-lg11{margin-left:91.66666666666666%}.row .col.lg12{flex-basis:100%;max-width:100%}.row .col.offset-lg12{margin-left:100%}}.col--spacer,.spacer{flex-grow:1}.primary{background-color:#2196f3 !important;border-color:#2196f3 !important}.primary--text{color:#2196f3 !important}.primary--after:after{background:#2196f3 !important}.secondary{background-color:#424242 !important;border-color:#424242 !important}.secondary--text{color:#424242 !important}.secondary--after:after{background:#424242 !important}.info{background-color:#2196f3 !important;border-color:#2196f3 !important}.info--text{color:#2196f3 !important}.info--after:after{background:#2196f3 !important}.warning{background-color:#ffc107 !important;border-color:#ffc107 !important}.warning--text{color:#ffc107 !important}.warning--after:after{background:#ffc107 !important}.error{background-color:#f44336 !important;border-color:#f44336 !important}.error--text{color:#f44336 !important}.error--after:after{background:#f44336 !important}.success{background-color:#4caf50 !important;border-color:#4caf50 !important}.success--text{color:#4caf50 !important}.success--after:after{background:#4caf50 !important}.black{background-color:#000 !important;border-color:#000 !important}.black--text{color:#000 !important}.black--after:after{background:#000 !important}.white{background-color:#fff !important;border-color:#fff !important}.white--text{color:#fff !important}.white--after:after{background:#fff !important}.transparent{background-color:transparent !important;border-color:transparent !important}.transparent--text{color:transparent !important}.transparent--after:after{background:transparent !important}.red{background-color:#f44336 !important;border-color:#f44336 !important}.red--text{color:#f44336 !important}.red--after:after{background:#f44336 !important}.red.lighten-5{background-color:#ffebee !important;border-color:#ffebee !important}.red.lighten-5--after:after{background-color:#ffebee !important}.red--text.text--lighten-5{color:#ffebee !important}.red.lighten-4{background-color:#ffcdd2 !important;border-color:#ffcdd2 !important}.red.lighten-4--after:after{background-color:#ffcdd2 !important}.red--text.text--lighten-4{color:#ffcdd2 !important}.red.lighten-3{background-color:#ef9a9a !important;border-color:#ef9a9a !important}.red.lighten-3--after:after{background-color:#ef9a9a !important}.red--text.text--lighten-3{color:#ef9a9a !important}.red.lighten-2{background-color:#e57373 !important;border-color:#e57373 !important}.red.lighten-2--after:after{background-color:#e57373 !important}.red--text.text--lighten-2{color:#e57373 !important}.red.lighten-1{background-color:#ef5350 !important;border-color:#ef5350 !important}.red.lighten-1--after:after{background-color:#ef5350 !important}.red--text.text--lighten-1{color:#ef5350 !important}.red.darken-1{background-color:#e53935 !important;border-color:#e53935 !important}.red.darken-1--after:after{background-color:#e53935 !important}.red--text.text--darken-1{color:#e53935 !important}.red.darken-2{background-color:#d32f2f !important;border-color:#d32f2f !important}.red.darken-2--after:after{background-color:#d32f2f !important}.red--text.text--darken-2{color:#d32f2f !important}.red.darken-3{background-color:#c62828 !important;border-color:#c62828 !important}.red.darken-3--after:after{background-color:#c62828 !important}.red--text.text--darken-3{color:#c62828 !important}.red.darken-4{background-color:#b71c1c !important;border-color:#b71c1c !important}.red.darken-4--after:after{background-color:#b71c1c !important}.red--text.text--darken-4{color:#b71c1c !important}.red.accent-1{background-color:#ff8a80 !important;border-color:#ff8a80 !important}.red.accent-1--after:after{background-color:#ff8a80 !important}.red--text.text--accent-1{color:#ff8a80 !important}.red.accent-2{background-color:#ff5252 !important;border-color:#ff5252 !important}.red.accent-2--after:after{background-color:#ff5252 !important}.red--text.text--accent-2{color:#ff5252 !important}.red.accent-3{background-color:#ff1744 !important;border-color:#ff1744 !important}.red.accent-3--after:after{background-color:#ff1744 !important}.red--text.text--accent-3{color:#ff1744 !important}.red.accent-4{background-color:#d50000 !important;border-color:#d50000 !important}.red.accent-4--after:after{background-color:#d50000 !important}.red--text.text--accent-4{color:#d50000 !important}.pink{background-color:#e91e63 !important;border-color:#e91e63 !important}.pink--text{color:#e91e63 !important}.pink--after:after{background:#e91e63 !important}.pink.lighten-5{background-color:#fce4ec !important;border-color:#fce4ec !important}.pink.lighten-5--after:after{background-color:#fce4ec !important}.pink--text.text--lighten-5{color:#fce4ec !important}.pink.lighten-4{background-color:#f8bbd0 !important;border-color:#f8bbd0 !important}.pink.lighten-4--after:after{background-color:#f8bbd0 !important}.pink--text.text--lighten-4{color:#f8bbd0 !important}.pink.lighten-3{background-color:#f48fb1 !important;border-color:#f48fb1 !important}.pink.lighten-3--after:after{background-color:#f48fb1 !important}.pink--text.text--lighten-3{color:#f48fb1 !important}.pink.lighten-2{background-color:#f06292 !important;border-color:#f06292 !important}.pink.lighten-2--after:after{background-color:#f06292 !important}.pink--text.text--lighten-2{color:#f06292 !important}.pink.lighten-1{background-color:#ec407a !important;border-color:#ec407a !important}.pink.lighten-1--after:after{background-color:#ec407a !important}.pink--text.text--lighten-1{color:#ec407a !important}.pink.darken-1{background-color:#d81b60 !important;border-color:#d81b60 !important}.pink.darken-1--after:after{background-color:#d81b60 !important}.pink--text.text--darken-1{color:#d81b60 !important}.pink.darken-2{background-color:#c2185b !important;border-color:#c2185b !important}.pink.darken-2--after:after{background-color:#c2185b !important}.pink--text.text--darken-2{color:#c2185b !important}.pink.darken-3{background-color:#ad1457 !important;border-color:#ad1457 !important}.pink.darken-3--after:after{background-color:#ad1457 !important}.pink--text.text--darken-3{color:#ad1457 !important}.pink.darken-4{background-color:#880e4f !important;border-color:#880e4f !important}.pink.darken-4--after:after{background-color:#880e4f !important}.pink--text.text--darken-4{color:#880e4f !important}.pink.accent-1{background-color:#ff80ab !important;border-color:#ff80ab !important}.pink.accent-1--after:after{background-color:#ff80ab !important}.pink--text.text--accent-1{color:#ff80ab !important}.pink.accent-2{background-color:#ff4081 !important;border-color:#ff4081 !important}.pink.accent-2--after:after{background-color:#ff4081 !important}.pink--text.text--accent-2{color:#ff4081 !important}.pink.accent-3{background-color:#f50057 !important;border-color:#f50057 !important}.pink.accent-3--after:after{background-color:#f50057 !important}.pink--text.text--accent-3{color:#f50057 !important}.pink.accent-4{background-color:#c51162 !important;border-color:#c51162 !important}.pink.accent-4--after:after{background-color:#c51162 !important}.pink--text.text--accent-4{color:#c51162 !important}.purple{background-color:#9c27b0 !important;border-color:#9c27b0 !important}.purple--text{color:#9c27b0 !important}.purple--after:after{background:#9c27b0 !important}.purple.lighten-5{background-color:#f3e5f5 !important;border-color:#f3e5f5 !important}.purple.lighten-5--after:after{background-color:#f3e5f5 !important}.purple--text.text--lighten-5{color:#f3e5f5 !important}.purple.lighten-4{background-color:#e1bee7 !important;border-color:#e1bee7 !important}.purple.lighten-4--after:after{background-color:#e1bee7 !important}.purple--text.text--lighten-4{color:#e1bee7 !important}.purple.lighten-3{background-color:#ce93d8 !important;border-color:#ce93d8 !important}.purple.lighten-3--after:after{background-color:#ce93d8 !important}.purple--text.text--lighten-3{color:#ce93d8 !important}.purple.lighten-2{background-color:#ba68c8 !important;border-color:#ba68c8 !important}.purple.lighten-2--after:after{background-color:#ba68c8 !important}.purple--text.text--lighten-2{color:#ba68c8 !important}.purple.lighten-1{background-color:#ab47bc !important;border-color:#ab47bc !important}.purple.lighten-1--after:after{background-color:#ab47bc !important}.purple--text.text--lighten-1{color:#ab47bc !important}.purple.darken-1{background-color:#8e24aa !important;border-color:#8e24aa !important}.purple.darken-1--after:after{background-color:#8e24aa !important}.purple--text.text--darken-1{color:#8e24aa !important}.purple.darken-2{background-color:#7b1fa2 !important;border-color:#7b1fa2 !important}.purple.darken-2--after:after{background-color:#7b1fa2 !important}.purple--text.text--darken-2{color:#7b1fa2 !important}.purple.darken-3{background-color:#6a1b9a !important;border-color:#6a1b9a !important}.purple.darken-3--after:after{background-color:#6a1b9a !important}.purple--text.text--darken-3{color:#6a1b9a !important}.purple.darken-4{background-color:#4a148c !important;border-color:#4a148c !important}.purple.darken-4--after:after{background-color:#4a148c !important}.purple--text.text--darken-4{color:#4a148c !important}.purple.accent-1{background-color:#ea80fc !important;border-color:#ea80fc !important}.purple.accent-1--after:after{background-color:#ea80fc !important}.purple--text.text--accent-1{color:#ea80fc !important}.purple.accent-2{background-color:#e040fb !important;border-color:#e040fb !important}.purple.accent-2--after:after{background-color:#e040fb !important}.purple--text.text--accent-2{color:#e040fb !important}.purple.accent-3{background-color:#d500f9 !important;border-color:#d500f9 !important}.purple.accent-3--after:after{background-color:#d500f9 !important}.purple--text.text--accent-3{color:#d500f9 !important}.purple.accent-4{background-color:#a0f !important;border-color:#a0f !important}.purple.accent-4--after:after{background-color:#a0f !important}.purple--text.text--accent-4{color:#a0f !important}.deep-purple{background-color:#673ab7 !important;border-color:#673ab7 !important}.deep-purple--text{color:#673ab7 !important}.deep-purple--after:after{background:#673ab7 !important}.deep-purple.lighten-5{background-color:#ede7f6 !important;border-color:#ede7f6 !important}.deep-purple.lighten-5--after:after{background-color:#ede7f6 !important}.deep-purple--text.text--lighten-5{color:#ede7f6 !important}.deep-purple.lighten-4{background-color:#d1c4e9 !important;border-color:#d1c4e9 !important}.deep-purple.lighten-4--after:after{background-color:#d1c4e9 !important}.deep-purple--text.text--lighten-4{color:#d1c4e9 !important}.deep-purple.lighten-3{background-color:#b39ddb !important;border-color:#b39ddb !important}.deep-purple.lighten-3--after:after{background-color:#b39ddb !important}.deep-purple--text.text--lighten-3{color:#b39ddb !important}.deep-purple.lighten-2{background-color:#9575cd !important;border-color:#9575cd !important}.deep-purple.lighten-2--after:after{background-color:#9575cd !important}.deep-purple--text.text--lighten-2{color:#9575cd !important}.deep-purple.lighten-1{background-color:#7e57c2 !important;border-color:#7e57c2 !important}.deep-purple.lighten-1--after:after{background-color:#7e57c2 !important}.deep-purple--text.text--lighten-1{color:#7e57c2 !important}.deep-purple.darken-1{background-color:#5e35b1 !important;border-color:#5e35b1 !important}.deep-purple.darken-1--after:after{background-color:#5e35b1 !important}.deep-purple--text.text--darken-1{color:#5e35b1 !important}.deep-purple.darken-2{background-color:#512da8 !important;border-color:#512da8 !important}.deep-purple.darken-2--after:after{background-color:#512da8 !important}.deep-purple--text.text--darken-2{color:#512da8 !important}.deep-purple.darken-3{background-color:#4527a0 !important;border-color:#4527a0 !important}.deep-purple.darken-3--after:after{background-color:#4527a0 !important}.deep-purple--text.text--darken-3{color:#4527a0 !important}.deep-purple.darken-4{background-color:#311b92 !important;border-color:#311b92 !important}.deep-purple.darken-4--after:after{background-color:#311b92 !important}.deep-purple--text.text--darken-4{color:#311b92 !important}.deep-purple.accent-1{background-color:#b388ff !important;border-color:#b388ff !important}.deep-purple.accent-1--after:after{background-color:#b388ff !important}.deep-purple--text.text--accent-1{color:#b388ff !important}.deep-purple.accent-2{background-color:#7c4dff !important;border-color:#7c4dff !important}.deep-purple.accent-2--after:after{background-color:#7c4dff !important}.deep-purple--text.text--accent-2{color:#7c4dff !important}.deep-purple.accent-3{background-color:#651fff !important;border-color:#651fff !important}.deep-purple.accent-3--after:after{background-color:#651fff !important}.deep-purple--text.text--accent-3{color:#651fff !important}.deep-purple.accent-4{background-color:#6200ea !important;border-color:#6200ea !important}.deep-purple.accent-4--after:after{background-color:#6200ea !important}.deep-purple--text.text--accent-4{color:#6200ea !important}.indigo{background-color:#3f51b5 !important;border-color:#3f51b5 !important}.indigo--text{color:#3f51b5 !important}.indigo--after:after{background:#3f51b5 !important}.indigo.lighten-5{background-color:#e8eaf6 !important;border-color:#e8eaf6 !important}.indigo.lighten-5--after:after{background-color:#e8eaf6 !important}.indigo--text.text--lighten-5{color:#e8eaf6 !important}.indigo.lighten-4{background-color:#c5cae9 !important;border-color:#c5cae9 !important}.indigo.lighten-4--after:after{background-color:#c5cae9 !important}.indigo--text.text--lighten-4{color:#c5cae9 !important}.indigo.lighten-3{background-color:#9fa8da !important;border-color:#9fa8da !important}.indigo.lighten-3--after:after{background-color:#9fa8da !important}.indigo--text.text--lighten-3{color:#9fa8da !important}.indigo.lighten-2{background-color:#7986cb !important;border-color:#7986cb !important}.indigo.lighten-2--after:after{background-color:#7986cb !important}.indigo--text.text--lighten-2{color:#7986cb !important}.indigo.lighten-1{background-color:#5c6bc0 !important;border-color:#5c6bc0 !important}.indigo.lighten-1--after:after{background-color:#5c6bc0 !important}.indigo--text.text--lighten-1{color:#5c6bc0 !important}.indigo.darken-1{background-color:#3949ab !important;border-color:#3949ab !important}.indigo.darken-1--after:after{background-color:#3949ab !important}.indigo--text.text--darken-1{color:#3949ab !important}.indigo.darken-2{background-color:#303f9f !important;border-color:#303f9f !important}.indigo.darken-2--after:after{background-color:#303f9f !important}.indigo--text.text--darken-2{color:#303f9f !important}.indigo.darken-3{background-color:#283593 !important;border-color:#283593 !important}.indigo.darken-3--after:after{background-color:#283593 !important}.indigo--text.text--darken-3{color:#283593 !important}.indigo.darken-4{background-color:#1a237e !important;border-color:#1a237e !important}.indigo.darken-4--after:after{background-color:#1a237e !important}.indigo--text.text--darken-4{color:#1a237e !important}.indigo.accent-1{background-color:#8c9eff !important;border-color:#8c9eff !important}.indigo.accent-1--after:after{background-color:#8c9eff !important}.indigo--text.text--accent-1{color:#8c9eff !important}.indigo.accent-2{background-color:#536dfe !important;border-color:#536dfe !important}.indigo.accent-2--after:after{background-color:#536dfe !important}.indigo--text.text--accent-2{color:#536dfe !important}.indigo.accent-3{background-color:#3d5afe !important;border-color:#3d5afe !important}.indigo.accent-3--after:after{background-color:#3d5afe !important}.indigo--text.text--accent-3{color:#3d5afe !important}.indigo.accent-4{background-color:#304ffe !important;border-color:#304ffe !important}.indigo.accent-4--after:after{background-color:#304ffe !important}.indigo--text.text--accent-4{color:#304ffe !important}.blue{background-color:#2196f3 !important;border-color:#2196f3 !important}.blue--text{color:#2196f3 !important}.blue--after:after{background:#2196f3 !important}.blue.lighten-5{background-color:#e3f2fd !important;border-color:#e3f2fd !important}.blue.lighten-5--after:after{background-color:#e3f2fd !important}.blue--text.text--lighten-5{color:#e3f2fd !important}.blue.lighten-4{background-color:#bbdefb !important;border-color:#bbdefb !important}.blue.lighten-4--after:after{background-color:#bbdefb !important}.blue--text.text--lighten-4{color:#bbdefb !important}.blue.lighten-3{background-color:#90caf9 !important;border-color:#90caf9 !important}.blue.lighten-3--after:after{background-color:#90caf9 !important}.blue--text.text--lighten-3{color:#90caf9 !important}.blue.lighten-2{background-color:#64b5f6 !important;border-color:#64b5f6 !important}.blue.lighten-2--after:after{background-color:#64b5f6 !important}.blue--text.text--lighten-2{color:#64b5f6 !important}.blue.lighten-1{background-color:#42a5f5 !important;border-color:#42a5f5 !important}.blue.lighten-1--after:after{background-color:#42a5f5 !important}.blue--text.text--lighten-1{color:#42a5f5 !important}.blue.darken-1{background-color:#1e88e5 !important;border-color:#1e88e5 !important}.blue.darken-1--after:after{background-color:#1e88e5 !important}.blue--text.text--darken-1{color:#1e88e5 !important}.blue.darken-2{background-color:#1976d2 !important;border-color:#1976d2 !important}.blue.darken-2--after:after{background-color:#1976d2 !important}.blue--text.text--darken-2{color:#1976d2 !important}.blue.darken-3{background-color:#1565c0 !important;border-color:#1565c0 !important}.blue.darken-3--after:after{background-color:#1565c0 !important}.blue--text.text--darken-3{color:#1565c0 !important}.blue.darken-4{background-color:#0d47a1 !important;border-color:#0d47a1 !important}.blue.darken-4--after:after{background-color:#0d47a1 !important}.blue--text.text--darken-4{color:#0d47a1 !important}.blue.accent-1{background-color:#82b1ff !important;border-color:#82b1ff !important}.blue.accent-1--after:after{background-color:#82b1ff !important}.blue--text.text--accent-1{color:#82b1ff !important}.blue.accent-2{background-color:#448aff !important;border-color:#448aff !important}.blue.accent-2--after:after{background-color:#448aff !important}.blue--text.text--accent-2{color:#448aff !important}.blue.accent-3{background-color:#2979ff !important;border-color:#2979ff !important}.blue.accent-3--after:after{background-color:#2979ff !important}.blue--text.text--accent-3{color:#2979ff !important}.blue.accent-4{background-color:#2962ff !important;border-color:#2962ff !important}.blue.accent-4--after:after{background-color:#2962ff !important}.blue--text.text--accent-4{color:#2962ff !important}.light-blue{background-color:#03a9f4 !important;border-color:#03a9f4 !important}.light-blue--text{color:#03a9f4 !important}.light-blue--after:after{background:#03a9f4 !important}.light-blue.lighten-5{background-color:#e1f5fe !important;border-color:#e1f5fe !important}.light-blue.lighten-5--after:after{background-color:#e1f5fe !important}.light-blue--text.text--lighten-5{color:#e1f5fe !important}.light-blue.lighten-4{background-color:#b3e5fc !important;border-color:#b3e5fc !important}.light-blue.lighten-4--after:after{background-color:#b3e5fc !important}.light-blue--text.text--lighten-4{color:#b3e5fc !important}.light-blue.lighten-3{background-color:#81d4fa !important;border-color:#81d4fa !important}.light-blue.lighten-3--after:after{background-color:#81d4fa !important}.light-blue--text.text--lighten-3{color:#81d4fa !important}.light-blue.lighten-2{background-color:#4fc3f7 !important;border-color:#4fc3f7 !important}.light-blue.lighten-2--after:after{background-color:#4fc3f7 !important}.light-blue--text.text--lighten-2{color:#4fc3f7 !important}.light-blue.lighten-1{background-color:#29b6f6 !important;border-color:#29b6f6 !important}.light-blue.lighten-1--after:after{background-color:#29b6f6 !important}.light-blue--text.text--lighten-1{color:#29b6f6 !important}.light-blue.darken-1{background-color:#039be5 !important;border-color:#039be5 !important}.light-blue.darken-1--after:after{background-color:#039be5 !important}.light-blue--text.text--darken-1{color:#039be5 !important}.light-blue.darken-2{background-color:#0288d1 !important;border-color:#0288d1 !important}.light-blue.darken-2--after:after{background-color:#0288d1 !important}.light-blue--text.text--darken-2{color:#0288d1 !important}.light-blue.darken-3{background-color:#0277bd !important;border-color:#0277bd !important}.light-blue.darken-3--after:after{background-color:#0277bd !important}.light-blue--text.text--darken-3{color:#0277bd !important}.light-blue.darken-4{background-color:#01579b !important;border-color:#01579b !important}.light-blue.darken-4--after:after{background-color:#01579b !important}.light-blue--text.text--darken-4{color:#01579b !important}.light-blue.accent-1{background-color:#80d8ff !important;border-color:#80d8ff !important}.light-blue.accent-1--after:after{background-color:#80d8ff !important}.light-blue--text.text--accent-1{color:#80d8ff !important}.light-blue.accent-2{background-color:#40c4ff !important;border-color:#40c4ff !important}.light-blue.accent-2--after:after{background-color:#40c4ff !important}.light-blue--text.text--accent-2{color:#40c4ff !important}.light-blue.accent-3{background-color:#00b0ff !important;border-color:#00b0ff !important}.light-blue.accent-3--after:after{background-color:#00b0ff !important}.light-blue--text.text--accent-3{color:#00b0ff !important}.light-blue.accent-4{background-color:#0091ea !important;border-color:#0091ea !important}.light-blue.accent-4--after:after{background-color:#0091ea !important}.light-blue--text.text--accent-4{color:#0091ea !important}.cyan{background-color:#00bcd4 !important;border-color:#00bcd4 !important}.cyan--text{color:#00bcd4 !important}.cyan--after:after{background:#00bcd4 !important}.cyan.lighten-5{background-color:#e0f7fa !important;border-color:#e0f7fa !important}.cyan.lighten-5--after:after{background-color:#e0f7fa !important}.cyan--text.text--lighten-5{color:#e0f7fa !important}.cyan.lighten-4{background-color:#b2ebf2 !important;border-color:#b2ebf2 !important}.cyan.lighten-4--after:after{background-color:#b2ebf2 !important}.cyan--text.text--lighten-4{color:#b2ebf2 !important}.cyan.lighten-3{background-color:#80deea !important;border-color:#80deea !important}.cyan.lighten-3--after:after{background-color:#80deea !important}.cyan--text.text--lighten-3{color:#80deea !important}.cyan.lighten-2{background-color:#4dd0e1 !important;border-color:#4dd0e1 !important}.cyan.lighten-2--after:after{background-color:#4dd0e1 !important}.cyan--text.text--lighten-2{color:#4dd0e1 !important}.cyan.lighten-1{background-color:#26c6da !important;border-color:#26c6da !important}.cyan.lighten-1--after:after{background-color:#26c6da !important}.cyan--text.text--lighten-1{color:#26c6da !important}.cyan.darken-1{background-color:#00acc1 !important;border-color:#00acc1 !important}.cyan.darken-1--after:after{background-color:#00acc1 !important}.cyan--text.text--darken-1{color:#00acc1 !important}.cyan.darken-2{background-color:#0097a7 !important;border-color:#0097a7 !important}.cyan.darken-2--after:after{background-color:#0097a7 !important}.cyan--text.text--darken-2{color:#0097a7 !important}.cyan.darken-3{background-color:#00838f !important;border-color:#00838f !important}.cyan.darken-3--after:after{background-color:#00838f !important}.cyan--text.text--darken-3{color:#00838f !important}.cyan.darken-4{background-color:#006064 !important;border-color:#006064 !important}.cyan.darken-4--after:after{background-color:#006064 !important}.cyan--text.text--darken-4{color:#006064 !important}.cyan.accent-1{background-color:#84ffff !important;border-color:#84ffff !important}.cyan.accent-1--after:after{background-color:#84ffff !important}.cyan--text.text--accent-1{color:#84ffff !important}.cyan.accent-2{background-color:#18ffff !important;border-color:#18ffff !important}.cyan.accent-2--after:after{background-color:#18ffff !important}.cyan--text.text--accent-2{color:#18ffff !important}.cyan.accent-3{background-color:#00e5ff !important;border-color:#00e5ff !important}.cyan.accent-3--after:after{background-color:#00e5ff !important}.cyan--text.text--accent-3{color:#00e5ff !important}.cyan.accent-4{background-color:#00b8d4 !important;border-color:#00b8d4 !important}.cyan.accent-4--after:after{background-color:#00b8d4 !important}.cyan--text.text--accent-4{color:#00b8d4 !important}.teal{background-color:#009688 !important;border-color:#009688 !important}.teal--text{color:#009688 !important}.teal--after:after{background:#009688 !important}.teal.lighten-5{background-color:#e0f2f1 !important;border-color:#e0f2f1 !important}.teal.lighten-5--after:after{background-color:#e0f2f1 !important}.teal--text.text--lighten-5{color:#e0f2f1 !important}.teal.lighten-4{background-color:#b2dfdb !important;border-color:#b2dfdb !important}.teal.lighten-4--after:after{background-color:#b2dfdb !important}.teal--text.text--lighten-4{color:#b2dfdb !important}.teal.lighten-3{background-color:#80cbc4 !important;border-color:#80cbc4 !important}.teal.lighten-3--after:after{background-color:#80cbc4 !important}.teal--text.text--lighten-3{color:#80cbc4 !important}.teal.lighten-2{background-color:#4db6ac !important;border-color:#4db6ac !important}.teal.lighten-2--after:after{background-color:#4db6ac !important}.teal--text.text--lighten-2{color:#4db6ac !important}.teal.lighten-1{background-color:#26a69a !important;border-color:#26a69a !important}.teal.lighten-1--after:after{background-color:#26a69a !important}.teal--text.text--lighten-1{color:#26a69a !important}.teal.darken-1{background-color:#00897b !important;border-color:#00897b !important}.teal.darken-1--after:after{background-color:#00897b !important}.teal--text.text--darken-1{color:#00897b !important}.teal.darken-2{background-color:#00796b !important;border-color:#00796b !important}.teal.darken-2--after:after{background-color:#00796b !important}.teal--text.text--darken-2{color:#00796b !important}.teal.darken-3{background-color:#00695c !important;border-color:#00695c !important}.teal.darken-3--after:after{background-color:#00695c !important}.teal--text.text--darken-3{color:#00695c !important}.teal.darken-4{background-color:#004d40 !important;border-color:#004d40 !important}.teal.darken-4--after:after{background-color:#004d40 !important}.teal--text.text--darken-4{color:#004d40 !important}.teal.accent-1{background-color:#a7ffeb !important;border-color:#a7ffeb !important}.teal.accent-1--after:after{background-color:#a7ffeb !important}.teal--text.text--accent-1{color:#a7ffeb !important}.teal.accent-2{background-color:#64ffda !important;border-color:#64ffda !important}.teal.accent-2--after:after{background-color:#64ffda !important}.teal--text.text--accent-2{color:#64ffda !important}.teal.accent-3{background-color:#1de9b6 !important;border-color:#1de9b6 !important}.teal.accent-3--after:after{background-color:#1de9b6 !important}.teal--text.text--accent-3{color:#1de9b6 !important}.teal.accent-4{background-color:#00bfa5 !important;border-color:#00bfa5 !important}.teal.accent-4--after:after{background-color:#00bfa5 !important}.teal--text.text--accent-4{color:#00bfa5 !important}.green{background-color:#4caf50 !important;border-color:#4caf50 !important}.green--text{color:#4caf50 !important}.green--after:after{background:#4caf50 !important}.green.lighten-5{background-color:#e8f5e9 !important;border-color:#e8f5e9 !important}.green.lighten-5--after:after{background-color:#e8f5e9 !important}.green--text.text--lighten-5{color:#e8f5e9 !important}.green.lighten-4{background-color:#c8e6c9 !important;border-color:#c8e6c9 !important}.green.lighten-4--after:after{background-color:#c8e6c9 !important}.green--text.text--lighten-4{color:#c8e6c9 !important}.green.lighten-3{background-color:#a5d6a7 !important;border-color:#a5d6a7 !important}.green.lighten-3--after:after{background-color:#a5d6a7 !important}.green--text.text--lighten-3{color:#a5d6a7 !important}.green.lighten-2{background-color:#81c784 !important;border-color:#81c784 !important}.green.lighten-2--after:after{background-color:#81c784 !important}.green--text.text--lighten-2{color:#81c784 !important}.green.lighten-1{background-color:#66bb6a !important;border-color:#66bb6a !important}.green.lighten-1--after:after{background-color:#66bb6a !important}.green--text.text--lighten-1{color:#66bb6a !important}.green.darken-1{background-color:#43a047 !important;border-color:#43a047 !important}.green.darken-1--after:after{background-color:#43a047 !important}.green--text.text--darken-1{color:#43a047 !important}.green.darken-2{background-color:#388e3c !important;border-color:#388e3c !important}.green.darken-2--after:after{background-color:#388e3c !important}.green--text.text--darken-2{color:#388e3c !important}.green.darken-3{background-color:#2e7d32 !important;border-color:#2e7d32 !important}.green.darken-3--after:after{background-color:#2e7d32 !important}.green--text.text--darken-3{color:#2e7d32 !important}.green.darken-4{background-color:#1b5e20 !important;border-color:#1b5e20 !important}.green.darken-4--after:after{background-color:#1b5e20 !important}.green--text.text--darken-4{color:#1b5e20 !important}.green.accent-1{background-color:#b9f6ca !important;border-color:#b9f6ca !important}.green.accent-1--after:after{background-color:#b9f6ca !important}.green--text.text--accent-1{color:#b9f6ca !important}.green.accent-2{background-color:#69f0ae !important;border-color:#69f0ae !important}.green.accent-2--after:after{background-color:#69f0ae !important}.green--text.text--accent-2{color:#69f0ae !important}.green.accent-3{background-color:#00e676 !important;border-color:#00e676 !important}.green.accent-3--after:after{background-color:#00e676 !important}.green--text.text--accent-3{color:#00e676 !important}.green.accent-4{background-color:#00c853 !important;border-color:#00c853 !important}.green.accent-4--after:after{background-color:#00c853 !important}.green--text.text--accent-4{color:#00c853 !important}.light-green{background-color:#8bc34a !important;border-color:#8bc34a !important}.light-green--text{color:#8bc34a !important}.light-green--after:after{background:#8bc34a !important}.light-green.lighten-5{background-color:#f1f8e9 !important;border-color:#f1f8e9 !important}.light-green.lighten-5--after:after{background-color:#f1f8e9 !important}.light-green--text.text--lighten-5{color:#f1f8e9 !important}.light-green.lighten-4{background-color:#dcedc8 !important;border-color:#dcedc8 !important}.light-green.lighten-4--after:after{background-color:#dcedc8 !important}.light-green--text.text--lighten-4{color:#dcedc8 !important}.light-green.lighten-3{background-color:#c5e1a5 !important;border-color:#c5e1a5 !important}.light-green.lighten-3--after:after{background-color:#c5e1a5 !important}.light-green--text.text--lighten-3{color:#c5e1a5 !important}.light-green.lighten-2{background-color:#aed581 !important;border-color:#aed581 !important}.light-green.lighten-2--after:after{background-color:#aed581 !important}.light-green--text.text--lighten-2{color:#aed581 !important}.light-green.lighten-1{background-color:#9ccc65 !important;border-color:#9ccc65 !important}.light-green.lighten-1--after:after{background-color:#9ccc65 !important}.light-green--text.text--lighten-1{color:#9ccc65 !important}.light-green.darken-1{background-color:#7cb342 !important;border-color:#7cb342 !important}.light-green.darken-1--after:after{background-color:#7cb342 !important}.light-green--text.text--darken-1{color:#7cb342 !important}.light-green.darken-2{background-color:#689f38 !important;border-color:#689f38 !important}.light-green.darken-2--after:after{background-color:#689f38 !important}.light-green--text.text--darken-2{color:#689f38 !important}.light-green.darken-3{background-color:#558b2f !important;border-color:#558b2f !important}.light-green.darken-3--after:after{background-color:#558b2f !important}.light-green--text.text--darken-3{color:#558b2f !important}.light-green.darken-4{background-color:#33691e !important;border-color:#33691e !important}.light-green.darken-4--after:after{background-color:#33691e !important}.light-green--text.text--darken-4{color:#33691e !important}.light-green.accent-1{background-color:#ccff90 !important;border-color:#ccff90 !important}.light-green.accent-1--after:after{background-color:#ccff90 !important}.light-green--text.text--accent-1{color:#ccff90 !important}.light-green.accent-2{background-color:#b2ff59 !important;border-color:#b2ff59 !important}.light-green.accent-2--after:after{background-color:#b2ff59 !important}.light-green--text.text--accent-2{color:#b2ff59 !important}.light-green.accent-3{background-color:#76ff03 !important;border-color:#76ff03 !important}.light-green.accent-3--after:after{background-color:#76ff03 !important}.light-green--text.text--accent-3{color:#76ff03 !important}.light-green.accent-4{background-color:#64dd17 !important;border-color:#64dd17 !important}.light-green.accent-4--after:after{background-color:#64dd17 !important}.light-green--text.text--accent-4{color:#64dd17 !important}.lime{background-color:#cddc39 !important;border-color:#cddc39 !important}.lime--text{color:#cddc39 !important}.lime--after:after{background:#cddc39 !important}.lime.lighten-5{background-color:#f9fbe7 !important;border-color:#f9fbe7 !important}.lime.lighten-5--after:after{background-color:#f9fbe7 !important}.lime--text.text--lighten-5{color:#f9fbe7 !important}.lime.lighten-4{background-color:#f0f4c3 !important;border-color:#f0f4c3 !important}.lime.lighten-4--after:after{background-color:#f0f4c3 !important}.lime--text.text--lighten-4{color:#f0f4c3 !important}.lime.lighten-3{background-color:#e6ee9c !important;border-color:#e6ee9c !important}.lime.lighten-3--after:after{background-color:#e6ee9c !important}.lime--text.text--lighten-3{color:#e6ee9c !important}.lime.lighten-2{background-color:#dce775 !important;border-color:#dce775 !important}.lime.lighten-2--after:after{background-color:#dce775 !important}.lime--text.text--lighten-2{color:#dce775 !important}.lime.lighten-1{background-color:#d4e157 !important;border-color:#d4e157 !important}.lime.lighten-1--after:after{background-color:#d4e157 !important}.lime--text.text--lighten-1{color:#d4e157 !important}.lime.darken-1{background-color:#c0ca33 !important;border-color:#c0ca33 !important}.lime.darken-1--after:after{background-color:#c0ca33 !important}.lime--text.text--darken-1{color:#c0ca33 !important}.lime.darken-2{background-color:#afb42b !important;border-color:#afb42b !important}.lime.darken-2--after:after{background-color:#afb42b !important}.lime--text.text--darken-2{color:#afb42b !important}.lime.darken-3{background-color:#9e9d24 !important;border-color:#9e9d24 !important}.lime.darken-3--after:after{background-color:#9e9d24 !important}.lime--text.text--darken-3{color:#9e9d24 !important}.lime.darken-4{background-color:#827717 !important;border-color:#827717 !important}.lime.darken-4--after:after{background-color:#827717 !important}.lime--text.text--darken-4{color:#827717 !important}.lime.accent-1{background-color:#f4ff81 !important;border-color:#f4ff81 !important}.lime.accent-1--after:after{background-color:#f4ff81 !important}.lime--text.text--accent-1{color:#f4ff81 !important}.lime.accent-2{background-color:#eeff41 !important;border-color:#eeff41 !important}.lime.accent-2--after:after{background-color:#eeff41 !important}.lime--text.text--accent-2{color:#eeff41 !important}.lime.accent-3{background-color:#c6ff00 !important;border-color:#c6ff00 !important}.lime.accent-3--after:after{background-color:#c6ff00 !important}.lime--text.text--accent-3{color:#c6ff00 !important}.lime.accent-4{background-color:#aeea00 !important;border-color:#aeea00 !important}.lime.accent-4--after:after{background-color:#aeea00 !important}.lime--text.text--accent-4{color:#aeea00 !important}.yellow{background-color:#ffeb3b !important;border-color:#ffeb3b !important}.yellow--text{color:#ffeb3b !important}.yellow--after:after{background:#ffeb3b !important}.yellow.lighten-5{background-color:#fffde7 !important;border-color:#fffde7 !important}.yellow.lighten-5--after:after{background-color:#fffde7 !important}.yellow--text.text--lighten-5{color:#fffde7 !important}.yellow.lighten-4{background-color:#fff9c4 !important;border-color:#fff9c4 !important}.yellow.lighten-4--after:after{background-color:#fff9c4 !important}.yellow--text.text--lighten-4{color:#fff9c4 !important}.yellow.lighten-3{background-color:#fff59d !important;border-color:#fff59d !important}.yellow.lighten-3--after:after{background-color:#fff59d !important}.yellow--text.text--lighten-3{color:#fff59d !important}.yellow.lighten-2{background-color:#fff176 !important;border-color:#fff176 !important}.yellow.lighten-2--after:after{background-color:#fff176 !important}.yellow--text.text--lighten-2{color:#fff176 !important}.yellow.lighten-1{background-color:#ffee58 !important;border-color:#ffee58 !important}.yellow.lighten-1--after:after{background-color:#ffee58 !important}.yellow--text.text--lighten-1{color:#ffee58 !important}.yellow.darken-1{background-color:#fdd835 !important;border-color:#fdd835 !important}.yellow.darken-1--after:after{background-color:#fdd835 !important}.yellow--text.text--darken-1{color:#fdd835 !important}.yellow.darken-2{background-color:#fbc02d !important;border-color:#fbc02d !important}.yellow.darken-2--after:after{background-color:#fbc02d !important}.yellow--text.text--darken-2{color:#fbc02d !important}.yellow.darken-3{background-color:#f9a825 !important;border-color:#f9a825 !important}.yellow.darken-3--after:after{background-color:#f9a825 !important}.yellow--text.text--darken-3{color:#f9a825 !important}.yellow.darken-4{background-color:#f57f17 !important;border-color:#f57f17 !important}.yellow.darken-4--after:after{background-color:#f57f17 !important}.yellow--text.text--darken-4{color:#f57f17 !important}.yellow.accent-1{background-color:#ffff8d !important;border-color:#ffff8d !important}.yellow.accent-1--after:after{background-color:#ffff8d !important}.yellow--text.text--accent-1{color:#ffff8d !important}.yellow.accent-2{background-color:#ff0 !important;border-color:#ff0 !important}.yellow.accent-2--after:after{background-color:#ff0 !important}.yellow--text.text--accent-2{color:#ff0 !important}.yellow.accent-3{background-color:#ffea00 !important;border-color:#ffea00 !important}.yellow.accent-3--after:after{background-color:#ffea00 !important}.yellow--text.text--accent-3{color:#ffea00 !important}.yellow.accent-4{background-color:#ffd600 !important;border-color:#ffd600 !important}.yellow.accent-4--after:after{background-color:#ffd600 !important}.yellow--text.text--accent-4{color:#ffd600 !important}.amber{background-color:#ffc107 !important;border-color:#ffc107 !important}.amber--text{color:#ffc107 !important}.amber--after:after{background:#ffc107 !important}.amber.lighten-5{background-color:#fff8e1 !important;border-color:#fff8e1 !important}.amber.lighten-5--after:after{background-color:#fff8e1 !important}.amber--text.text--lighten-5{color:#fff8e1 !important}.amber.lighten-4{background-color:#ffecb3 !important;border-color:#ffecb3 !important}.amber.lighten-4--after:after{background-color:#ffecb3 !important}.amber--text.text--lighten-4{color:#ffecb3 !important}.amber.lighten-3{background-color:#ffe082 !important;border-color:#ffe082 !important}.amber.lighten-3--after:after{background-color:#ffe082 !important}.amber--text.text--lighten-3{color:#ffe082 !important}.amber.lighten-2{background-color:#ffd54f !important;border-color:#ffd54f !important}.amber.lighten-2--after:after{background-color:#ffd54f !important}.amber--text.text--lighten-2{color:#ffd54f !important}.amber.lighten-1{background-color:#ffca28 !important;border-color:#ffca28 !important}.amber.lighten-1--after:after{background-color:#ffca28 !important}.amber--text.text--lighten-1{color:#ffca28 !important}.amber.darken-1{background-color:#ffb300 !important;border-color:#ffb300 !important}.amber.darken-1--after:after{background-color:#ffb300 !important}.amber--text.text--darken-1{color:#ffb300 !important}.amber.darken-2{background-color:#ffa000 !important;border-color:#ffa000 !important}.amber.darken-2--after:after{background-color:#ffa000 !important}.amber--text.text--darken-2{color:#ffa000 !important}.amber.darken-3{background-color:#ff8f00 !important;border-color:#ff8f00 !important}.amber.darken-3--after:after{background-color:#ff8f00 !important}.amber--text.text--darken-3{color:#ff8f00 !important}.amber.darken-4{background-color:#ff6f00 !important;border-color:#ff6f00 !important}.amber.darken-4--after:after{background-color:#ff6f00 !important}.amber--text.text--darken-4{color:#ff6f00 !important}.amber.accent-1{background-color:#ffe57f !important;border-color:#ffe57f !important}.amber.accent-1--after:after{background-color:#ffe57f !important}.amber--text.text--accent-1{color:#ffe57f !important}.amber.accent-2{background-color:#ffd740 !important;border-color:#ffd740 !important}.amber.accent-2--after:after{background-color:#ffd740 !important}.amber--text.text--accent-2{color:#ffd740 !important}.amber.accent-3{background-color:#ffc400 !important;border-color:#ffc400 !important}.amber.accent-3--after:after{background-color:#ffc400 !important}.amber--text.text--accent-3{color:#ffc400 !important}.amber.accent-4{background-color:#ffab00 !important;border-color:#ffab00 !important}.amber.accent-4--after:after{background-color:#ffab00 !important}.amber--text.text--accent-4{color:#ffab00 !important}.orange{background-color:#ff9800 !important;border-color:#ff9800 !important}.orange--text{color:#ff9800 !important}.orange--after:after{background:#ff9800 !important}.orange.lighten-5{background-color:#fff3e0 !important;border-color:#fff3e0 !important}.orange.lighten-5--after:after{background-color:#fff3e0 !important}.orange--text.text--lighten-5{color:#fff3e0 !important}.orange.lighten-4{background-color:#ffe0b2 !important;border-color:#ffe0b2 !important}.orange.lighten-4--after:after{background-color:#ffe0b2 !important}.orange--text.text--lighten-4{color:#ffe0b2 !important}.orange.lighten-3{background-color:#ffcc80 !important;border-color:#ffcc80 !important}.orange.lighten-3--after:after{background-color:#ffcc80 !important}.orange--text.text--lighten-3{color:#ffcc80 !important}.orange.lighten-2{background-color:#ffb74d !important;border-color:#ffb74d !important}.orange.lighten-2--after:after{background-color:#ffb74d !important}.orange--text.text--lighten-2{color:#ffb74d !important}.orange.lighten-1{background-color:#ffa726 !important;border-color:#ffa726 !important}.orange.lighten-1--after:after{background-color:#ffa726 !important}.orange--text.text--lighten-1{color:#ffa726 !important}.orange.darken-1{background-color:#fb8c00 !important;border-color:#fb8c00 !important}.orange.darken-1--after:after{background-color:#fb8c00 !important}.orange--text.text--darken-1{color:#fb8c00 !important}.orange.darken-2{background-color:#f57c00 !important;border-color:#f57c00 !important}.orange.darken-2--after:after{background-color:#f57c00 !important}.orange--text.text--darken-2{color:#f57c00 !important}.orange.darken-3{background-color:#ef6c00 !important;border-color:#ef6c00 !important}.orange.darken-3--after:after{background-color:#ef6c00 !important}.orange--text.text--darken-3{color:#ef6c00 !important}.orange.darken-4{background-color:#e65100 !important;border-color:#e65100 !important}.orange.darken-4--after:after{background-color:#e65100 !important}.orange--text.text--darken-4{color:#e65100 !important}.orange.accent-1{background-color:#ffd180 !important;border-color:#ffd180 !important}.orange.accent-1--after:after{background-color:#ffd180 !important}.orange--text.text--accent-1{color:#ffd180 !important}.orange.accent-2{background-color:#ffab40 !important;border-color:#ffab40 !important}.orange.accent-2--after:after{background-color:#ffab40 !important}.orange--text.text--accent-2{color:#ffab40 !important}.orange.accent-3{background-color:#ff9100 !important;border-color:#ff9100 !important}.orange.accent-3--after:after{background-color:#ff9100 !important}.orange--text.text--accent-3{color:#ff9100 !important}.orange.accent-4{background-color:#ff6d00 !important;border-color:#ff6d00 !important}.orange.accent-4--after:after{background-color:#ff6d00 !important}.orange--text.text--accent-4{color:#ff6d00 !important}.deep-orange{background-color:#ff5722 !important;border-color:#ff5722 !important}.deep-orange--text{color:#ff5722 !important}.deep-orange--after:after{background:#ff5722 !important}.deep-orange.lighten-5{background-color:#fbe9e7 !important;border-color:#fbe9e7 !important}.deep-orange.lighten-5--after:after{background-color:#fbe9e7 !important}.deep-orange--text.text--lighten-5{color:#fbe9e7 !important}.deep-orange.lighten-4{background-color:#ffccbc !important;border-color:#ffccbc !important}.deep-orange.lighten-4--after:after{background-color:#ffccbc !important}.deep-orange--text.text--lighten-4{color:#ffccbc !important}.deep-orange.lighten-3{background-color:#ffab91 !important;border-color:#ffab91 !important}.deep-orange.lighten-3--after:after{background-color:#ffab91 !important}.deep-orange--text.text--lighten-3{color:#ffab91 !important}.deep-orange.lighten-2{background-color:#ff8a65 !important;border-color:#ff8a65 !important}.deep-orange.lighten-2--after:after{background-color:#ff8a65 !important}.deep-orange--text.text--lighten-2{color:#ff8a65 !important}.deep-orange.lighten-1{background-color:#ff7043 !important;border-color:#ff7043 !important}.deep-orange.lighten-1--after:after{background-color:#ff7043 !important}.deep-orange--text.text--lighten-1{color:#ff7043 !important}.deep-orange.darken-1{background-color:#f4511e !important;border-color:#f4511e !important}.deep-orange.darken-1--after:after{background-color:#f4511e !important}.deep-orange--text.text--darken-1{color:#f4511e !important}.deep-orange.darken-2{background-color:#e64a19 !important;border-color:#e64a19 !important}.deep-orange.darken-2--after:after{background-color:#e64a19 !important}.deep-orange--text.text--darken-2{color:#e64a19 !important}.deep-orange.darken-3{background-color:#d84315 !important;border-color:#d84315 !important}.deep-orange.darken-3--after:after{background-color:#d84315 !important}.deep-orange--text.text--darken-3{color:#d84315 !important}.deep-orange.darken-4{background-color:#bf360c !important;border-color:#bf360c !important}.deep-orange.darken-4--after:after{background-color:#bf360c !important}.deep-orange--text.text--darken-4{color:#bf360c !important}.deep-orange.accent-1{background-color:#ff9e80 !important;border-color:#ff9e80 !important}.deep-orange.accent-1--after:after{background-color:#ff9e80 !important}.deep-orange--text.text--accent-1{color:#ff9e80 !important}.deep-orange.accent-2{background-color:#ff6e40 !important;border-color:#ff6e40 !important}.deep-orange.accent-2--after:after{background-color:#ff6e40 !important}.deep-orange--text.text--accent-2{color:#ff6e40 !important}.deep-orange.accent-3{background-color:#ff3d00 !important;border-color:#ff3d00 !important}.deep-orange.accent-3--after:after{background-color:#ff3d00 !important}.deep-orange--text.text--accent-3{color:#ff3d00 !important}.deep-orange.accent-4{background-color:#dd2c00 !important;border-color:#dd2c00 !important}.deep-orange.accent-4--after:after{background-color:#dd2c00 !important}.deep-orange--text.text--accent-4{color:#dd2c00 !important}.brown{background-color:#795548 !important;border-color:#795548 !important}.brown--text{color:#795548 !important}.brown--after:after{background:#795548 !important}.brown.lighten-5{background-color:#efebe9 !important;border-color:#efebe9 !important}.brown.lighten-5--after:after{background-color:#efebe9 !important}.brown--text.text--lighten-5{color:#efebe9 !important}.brown.lighten-4{background-color:#d7ccc8 !important;border-color:#d7ccc8 !important}.brown.lighten-4--after:after{background-color:#d7ccc8 !important}.brown--text.text--lighten-4{color:#d7ccc8 !important}.brown.lighten-3{background-color:#bcaaa4 !important;border-color:#bcaaa4 !important}.brown.lighten-3--after:after{background-color:#bcaaa4 !important}.brown--text.text--lighten-3{color:#bcaaa4 !important}.brown.lighten-2{background-color:#a1887f !important;border-color:#a1887f !important}.brown.lighten-2--after:after{background-color:#a1887f !important}.brown--text.text--lighten-2{color:#a1887f !important}.brown.lighten-1{background-color:#8d6e63 !important;border-color:#8d6e63 !important}.brown.lighten-1--after:after{background-color:#8d6e63 !important}.brown--text.text--lighten-1{color:#8d6e63 !important}.brown.darken-1{background-color:#6d4c41 !important;border-color:#6d4c41 !important}.brown.darken-1--after:after{background-color:#6d4c41 !important}.brown--text.text--darken-1{color:#6d4c41 !important}.brown.darken-2{background-color:#5d4037 !important;border-color:#5d4037 !important}.brown.darken-2--after:after{background-color:#5d4037 !important}.brown--text.text--darken-2{color:#5d4037 !important}.brown.darken-3{background-color:#4e342e !important;border-color:#4e342e !important}.brown.darken-3--after:after{background-color:#4e342e !important}.brown--text.text--darken-3{color:#4e342e !important}.brown.darken-4{background-color:#3e2723 !important;border-color:#3e2723 !important}.brown.darken-4--after:after{background-color:#3e2723 !important}.brown--text.text--darken-4{color:#3e2723 !important}.blue-grey{background-color:#607d8b !important;border-color:#607d8b !important}.blue-grey--text{color:#607d8b !important}.blue-grey--after:after{background:#607d8b !important}.blue-grey.lighten-5{background-color:#eceff1 !important;border-color:#eceff1 !important}.blue-grey.lighten-5--after:after{background-color:#eceff1 !important}.blue-grey--text.text--lighten-5{color:#eceff1 !important}.blue-grey.lighten-4{background-color:#cfd8dc !important;border-color:#cfd8dc !important}.blue-grey.lighten-4--after:after{background-color:#cfd8dc !important}.blue-grey--text.text--lighten-4{color:#cfd8dc !important}.blue-grey.lighten-3{background-color:#b0bec5 !important;border-color:#b0bec5 !important}.blue-grey.lighten-3--after:after{background-color:#b0bec5 !important}.blue-grey--text.text--lighten-3{color:#b0bec5 !important}.blue-grey.lighten-2{background-color:#90a4ae !important;border-color:#90a4ae !important}.blue-grey.lighten-2--after:after{background-color:#90a4ae !important}.blue-grey--text.text--lighten-2{color:#90a4ae !important}.blue-grey.lighten-1{background-color:#78909c !important;border-color:#78909c !important}.blue-grey.lighten-1--after:after{background-color:#78909c !important}.blue-grey--text.text--lighten-1{color:#78909c !important}.blue-grey.darken-1{background-color:#546e7a !important;border-color:#546e7a !important}.blue-grey.darken-1--after:after{background-color:#546e7a !important}.blue-grey--text.text--darken-1{color:#546e7a !important}.blue-grey.darken-2{background-color:#455a64 !important;border-color:#455a64 !important}.blue-grey.darken-2--after:after{background-color:#455a64 !important}.blue-grey--text.text--darken-2{color:#455a64 !important}.blue-grey.darken-3{background-color:#37474f !important;border-color:#37474f !important}.blue-grey.darken-3--after:after{background-color:#37474f !important}.blue-grey--text.text--darken-3{color:#37474f !important}.blue-grey.darken-4{background-color:#263238 !important;border-color:#263238 !important}.blue-grey.darken-4--after:after{background-color:#263238 !important}.blue-grey--text.text--darken-4{color:#263238 !important}.grey{background-color:#9e9e9e !important;border-color:#9e9e9e !important}.grey--text{color:#9e9e9e !important}.grey--after:after{background:#9e9e9e !important}.grey.lighten-5{background-color:#fafafa !important;border-color:#fafafa !important}.grey.lighten-5--after:after{background-color:#fafafa !important}.grey--text.text--lighten-5{color:#fafafa !important}.grey.lighten-4{background-color:#f5f5f5 !important;border-color:#f5f5f5 !important}.grey.lighten-4--after:after{background-color:#f5f5f5 !important}.grey--text.text--lighten-4{color:#f5f5f5 !important}.grey.lighten-3{background-color:#eee !important;border-color:#eee !important}.grey.lighten-3--after:after{background-color:#eee !important}.grey--text.text--lighten-3{color:#eee !important}.grey.lighten-2{background-color:#e0e0e0 !important;border-color:#e0e0e0 !important}.grey.lighten-2--after:after{background-color:#e0e0e0 !important}.grey--text.text--lighten-2{color:#e0e0e0 !important}.grey.lighten-1{background-color:#bdbdbd !important;border-color:#bdbdbd !important}.grey.lighten-1--after:after{background-color:#bdbdbd !important}.grey--text.text--lighten-1{color:#bdbdbd !important}.grey.darken-1{background-color:#757575 !important;border-color:#757575 !important}.grey.darken-1--after:after{background-color:#757575 !important}.grey--text.text--darken-1{color:#757575 !important}.grey.darken-2{background-color:#616161 !important;border-color:#616161 !important}.grey.darken-2--after:after{background-color:#616161 !important}.grey--text.text--darken-2{color:#616161 !important}.grey.darken-3{background-color:#424242 !important;border-color:#424242 !important}.grey.darken-3--after:after{background-color:#424242 !important}.grey--text.text--darken-3{color:#424242 !important}.grey.darken-4{background-color:#212121 !important;border-color:#212121 !important}.grey.darken-4--after:after{background-color:#212121 !important}.grey--text.text--darken-4{color:#212121 !important}.shades.black{background-color:#000 !important;border-color:#000 !important}.shades.black--after:after{background-color:#000 !important}.shades--text.text--black{color:#000 !important}.shades.white{background-color:#fff !important;border-color:#fff !important}.shades.white--after:after{background-color:#fff !important}.shades--text.text--white{color:#fff !important}.shades.transparent{background-color:transparent !important;border-color:transparent !important}.shades.transparent--after:after{background-color:transparent !important}.shades--text.text--transparent{color:transparent !important}.shift-enter{transform:translate3d(100%,0,0)}.shift-leave,.shift-leave-active{position:absolute;top:0;transform:translate3d(-100%,0,0)}.reverse.shift-enter{transform:translate3d(-100%,0,0)}.reverse.shift-leave,.reverse.shift-leave-active{position:absolute;top:0;transform:translate3d(100%,0,0)}.z-depth-0{box-shadow:none !important}.z-depth-1,.btn--raised,.btn--raised:disabled:hover,.card,.collapsible,.dropdown,.navbar,.pagination__item,.pagination__navigation,.slider,.toast__content,[data-tooltip]:after{box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)}.z-depth-1-half,.btn--raised:hover,.pagination a:hover,.pagination__item--active{box-shadow:0 5px 11px 0 rgba(0,0,0,0.18),0 4px 15px 0 rgba(0,0,0,0.15)}.z-depth-2,.sidebar{box-shadow:0 8px 17px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19)}.z-depth-3,.modal{box-shadow:0 12px 15px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19)}.z-depth-4{box-shadow:0 16px 28px 0 rgba(0,0,0,0.22),0 25px 55px 0 rgba(0,0,0,0.21)}.z-depth-5{box-shadow:0 27px 24px 0 rgba(0,0,0,0.2),0 40px 77px 0 rgba(0,0,0,0.22)}code{background:#9e9e9e;color:#bd4147;display:inline-block;background-color:#f5f5f5;border-radius:3px;white-space:pre-wrap;font-size:85%;font-weight:100 !important;font-weight:900 !important;}code:after,code:before{content:"\00a0";letter-spacing:-1px}html{font-size:14px;line-height:20px;color:#424242;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body{background:#fff;overflow-x:hidden;font-family:'Roboto',san-serif}main{display:flex;flex:1}header{width:100%}a{color:#2196f3}h1{color:#424242;font-size:7rem;font-weight:300;line-height:110%;margin-bottom:1rem;}@media screen and (max-width:48rem){h1{font-size:4.2rem}}h2{color:#424242;font-size:3.5rem;font-weight:400;line-height:110%;margin-bottom:1rem;}@media screen and (max-width:48rem){h2{font-size:2.1rem}}h3{color:#424242;font-size:3rem;font-weight:400;line-height:110%;margin-bottom:1rem;}@media screen and (max-width:48rem){h3{font-size:1.8rem}}h4{color:#424242;font-size:2.5rem;font-weight:400;line-height:110%;margin-bottom:1rem;}@media screen and (max-width:48rem){h4{font-size:1.5rem}}h5{color:#424242;font-size:2rem;font-weight:400;line-height:110%;margin-bottom:1rem;}@media screen and (max-width:48rem){h5{font-size:1.2rem}}h6{color:#424242;font-size:1.5rem;font-weight:500;line-height:110%;margin-bottom:1rem;}@media screen and (max-width:48rem){h6{font-size:.8999999999999999rem}}p{margin-bottom:1rem}.alert{border-radius:0;border-width:4px 0 0 0;border-style:solid;border-color:rgba(0,0,0,0.8);color:inherit;display:flex;font-size:1.1rem;text-align:left;padding:1.5rem;position:relative;margin:.25rem auto;}.alert__icon,.alert__dismissible{align-self:center;margin-right:1.5rem;margin-bottom:4px;font-size:2rem;color:rgba(0,0,0,0.3)}.alert__dismissible{margin-right:0;margin-left:1.5rem;transition:all .3s cubic-bezier(0,0,.2,1);align-self:flex-start;text-decoration:none;}.alert__dismissible:hover{color:rgba(26,26,26,0.3)}.alert > div{width:100%}.alert--info{color:#fff;background-color:#2196f3;border-color:rgba(0,0,0,0.2)}.alert--error{color:#fff;background-color:#f44336;border-color:rgba(0,0,0,0.2)}.alert--success{color:#fff;background-color:#4caf50;border-color:rgba(0,0,0,0.2)}.alert--warning{color:#fff;background-color:#ffc107;border-color:rgba(0,0,0,0.2)}.alert--no-icon .alert__icon{display:none}@media screen and (max-width:48rem){.alert__icon{display:none}}.badge{position:relative;}.badge:after{color:#fff;content:attr(data-badge);display:flex;position:absolute;font-family:'Roboto',san-serif;top:-11px;right:-22px;background-color:#2196f3;border-radius:50%;height:22px;width:22px;font-size:.9rem;justify-content:center;align-items:center;flex-direction:row;flex-wrap:wrap}.badge--overlap.badge--left:after{left:0}.badge--overlap:after{top:0;right:0}.badge--icon:after{font-family:'Material Icons'}.badge--left:after{left:-22px}.breadcrumbs{display:flex;justify-content:space-between;flex-wrap:wrap;flex:0 1 auto;margin:0;list-style-type:none;}.breadcrumbs li:not(:last-child):after{color:#bdbdbd;content:attr(data-divider);vertical-align:middle}.breadcrumbs li:last-child a{color:#bdbdbd;pointer-events:none;cursor:default}.breadcrumbs--with-icons li:not(:last-child):after{font-family:'Material Icons'}.breadcrumbs__item{align-items:center;color:#2196f3;display:inline-flex;font-size:1rem;padding:0 1rem;height:40px;text-decoration:none;line-height:40px;transition:all .3s cubic-bezier(0,0,.2,1);}.breadcrumbs__item:hover{color:#757575}.breadcrumbs__item--disabled{color:#e0e0e0;pointer-events:none}.btn{border:none;border-radius:2px;background:#e0e0e0;color:inherit;display:inline-flex;justify-content:center;align-items:center;font-size:14px;font-weight:500;min-height:36px;letter-spacing:.5px;line-height:36px;outline:0;padding:0 14px;position:relative;text-decoration:none;text-transform:uppercase;transition:all .2s ease-out;}.btn:focus{outline:none}.btn::-moz-focus-inner{border:0}.btn:disabled{opacity:.5}.btn.primary{color:#fff;}.btn.primary.btn--outline{color:#2196f3}.btn.primary.btn--flat{color:#2196f3;}.btn.primary.btn--flat .ripple__animation{background:#2196f3}.btn.secondary{color:#fff;}.btn.secondary.btn--outline{color:#424242}.btn.secondary.btn--flat{color:#424242;}.btn.secondary.btn--flat .ripple__animation{background:#424242}.btn.info{color:#fff;}.btn.info.btn--outline{color:#2196f3}.btn.info.btn--flat{color:#2196f3;}.btn.info.btn--flat .ripple__animation{background:#2196f3}.btn.warning{color:#fff;}.btn.warning.btn--outline{color:#ffc107}.btn.warning.btn--flat{color:#ffc107;}.btn.warning.btn--flat .ripple__animation{background:#ffc107}.btn.error{color:#fff;}.btn.error.btn--outline{color:#f44336}.btn.error.btn--flat{color:#f44336;}.btn.error.btn--flat .ripple__animation{background:#f44336}.btn.success{color:#fff;}.btn.success.btn--outline{color:#4caf50}.btn.success.btn--flat{color:#4caf50;}.btn.success.btn--flat .ripple__animation{background:#4caf50}.btn--block{display:flex;width:100%}.btn--flat{background-color:transparent !important;border-color:transparent;box-shadow:none;color:currentColor;}.btn--flat:hover:not(:disabled){background-color:rgba(158,158,158,0.2) !important;box-shadow:none}.btn--floating{border-radius:50%;letter-spacing:normal;line-height:36px;min-height:36px;padding:.4rem;}.btn--floating .ripple__container{border-radius:50%}.btn--icon{background:transparent;box-shadow:none;position:relative;border-radius:50%;border-color:transparent;height:auto;width:auto;min-height:initial;padding:0;}.btn--icon i{font-size:21px;padding:.2em}.btn--icon:hover{background:rgba(189,189,189,0.4);box-shadow:none}.btn--large{min-height:3rem;line-height:3rem;padding:0 4rem;}.btn--large.btn--floating{width:4rem;padding:1rem}.btn--large i{font-size:25.2px}.btn--loading{pointer-events:none;}.btn--loading .btn__content{opacity:0}.btn--outline{border:1px solid currentColor;background:transparent !important;box-shadow:none;color:#e0e0e0;}.btn--outline:hover{box-shadow:none}.btn--raised{will-change:box-shadow;}.btn--round{border-radius:2rem}.btn--small{min-height:2rem;line-height:2rem;}.btn--small.btn--floating{width:2rem;padding:0;}.btn--small.btn--floating i{font-size:14.4px}.btn__content{display:flex;justify-content:center;align-items:center;transition:all .3s cubic-bezier(0,0,.2,1);flex:1}.btn__loading{position:absolute;width:100%;height:100%;left:0;top:0;display:flex;justify-content:center;align-items:center}.btn .icon--left{margin-right:1rem;line-height:inherit}.btn .icon--right{margin-left:1rem;line-height:inherit}.btn .progress-circular{height:20px !important}.card{background:#fff;position:relative;display:flex;flex-flow:column nowrap;border-radius:2px;}.card--horizontal{flex-flow:row nowrap;}.card--horizontal > .card__row{flex:0 1 30%}.card__column,.card__row{display:flex;}.card__column:first-child,.card__row:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.card__column:last-child,.card__row:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.card__column{flex:1;flex-flow:column nowrap}.card__row{align-items:center;margin-top:auto;flex:1 1 auto;flex-flow:row nowrap;min-height:4rem;}.card__row--actions{border-top:1px solid rgba(0,0,0,0.1);padding:7px;min-height:2rem;flex:0 0 auto;}.card__row--actions > .btn{padding:0 7px}.card__row--actions > .icon{padding:0 7px}.card__title{font-size:1.5rem;font-weight:400;letter-spacing:.1rem;display:flex;flex:1;align-self:center;align-items:center;padding:14px}.card__text{padding:14px}.chip{background:#e0e0e0;border:1px solid #e0e0e0;border-radius:2rem;display:inline-flex;align-items:center;justify-content:space-between;font-size:.8rem;padding:0 .8rem;min-height:25px;}.chip:active{background:#eee}.chip--label{border-radius:0}.chip--outline{background:transparent !important;color:#9e9e9e}.chip--small{min-height:20px;padding:0 .2rem}.chip__close{color:inherit;display:flex;align-items:center;text-decoration:none;}.chip__close .icon{color:inherit}.chip .icon{font-size:1.2rem;}.chip .icon--left{margin-left:-.6rem;margin-right:1rem}.chip .icon--right{margin-left:1rem;margin-right:-.6rem}.collapsible{background:#fff;text-align:left;list-style-type:none;border-top:1px solid #ddd;border-right:1px solid #ddd;border-left:1px solid #ddd;margin-bottom:1rem;padding:0;}.collapsible li:not(:first-child) .collapsible__header{border-top:1px solid #ddd}.collapsible__header{height:3rem;padding-left:1rem;cursor:pointer;display:flex;align-items:center;}.collapsible__header i{margin-right:1rem}.collapsible__body{background-color:rgba(0,0,0,0.03);transition:all .3s cubic-bezier(0,0,.2,1);overflow:hidden;}.collapsible__body:last-child{border-bottom:1px solid #ddd}.dropdown{list-style-type:none;padding:0;background-color:#fff;position:absolute;width:auto;transform:translateY(-50%) translateX(-50%) scale(0);opacity:.3;transition:all .3s cubic-bezier(0,0,.2,1);white-space:nowrap;z-index:2;}.dropdown--open-from-right{transform:translateY(-50%) translateX(50%) scale(0)}.dropdown--open{opacity:1;transform:translateY(0) translateX(0) scale(1)}.dropdown li{text-align:left}.dropdown__item{text-decoration:none;display:inline-flex;justify-content:space-between;align-items:center;transition:all .2s ease-out;text-transform:none;padding:1rem;width:100%;font-weight:500;font-size:1rem;color:#2196f3;}.dropdown__item:hover{background-color:rgba(0,0,0,0.1)}.icon{display:flex;}.icon span{display:inline-block;overflow:hidden}.icon--large{padding:.6rem;}.icon--large span{font-size:2.5rem}.icon--medium{padding:.3rem;}.icon--medium span{font-size:2rem}.icon--x-large{padding:1rem;}.icon--x-large span{font-size:3rem}.footer{color:#fff;height:3rem;line-height:3rem;position:relative;z-index:4;background:#2196f3;padding:0 1rem}.input-group{position:relative;margin-bottom:1rem;width:100%;}.input-group label{color:#2196f3;position:absolute;top:15px;transition:all .3s cubic-bezier(0,0,.2,1)}.input-group input[type=text],.input-group select{border-bottom:1px solid #ddd;height:3rem;width:100%;position:relative;}.input-group input[type=text]:focus,.input-group select:focus{outline:none}.input-group input[type=radio]{display:none;}.input-group input[type=radio]:disabled + label:before{border-color:#e0e0e0}.input-group input[type=radio]:disabled:checked + label:before{border-color:#e0e0e0}.input-group input[type=radio]:disabled:checked + label:after{background:#e0e0e0}.input-group input[type=radio] + label{padding-left:1.5rem;cursor:pointer;position:relative;top:0;}.input-group input[type=radio] + label:before{content:"";position:absolute;left:0;top:2px;width:1rem;height:1rem;border-radius:50%;border:2px solid #757575;z-index:1;transition:all .2s ease-out}.input-group input[type=radio] + label:after{content:"";position:absolute;left:0;top:2px;width:1rem;height:1rem;transform:scale(0);border-radius:50%;z-index:2;background:transparent;transition:all .2s ease-out}.input-group input[type=radio]:checked + label:before{border:2px solid #424242;background:transparent}.input-group input[type=radio]:checked + label:after{background:#424242;transform:scale(1)}.input-group input[type=radio].gap:checked + label:after{transform:scale(.45)}.input-group input[type=checkbox]{display:none;}.input-group input[type=checkbox]:disabled + label:before{background:#e0e0e0;border-color:#e0e0e0}.input-group input[type=checkbox]:disabled:checked + label:before{background:transparent;border-bottom-color:#e0e0e0;border-right-color:#e0e0e0}.input-group input[type=checkbox] + label{padding-left:1.5rem;cursor:pointer;position:relative;top:0;}.input-group input[type=checkbox] + label:before{content:"";position:absolute;left:0;top:2px;width:1rem;height:1rem;z-index:2;transition:all .2s ease-out;border:2px solid #757575;transform-origin:100% 100%}.input-group input[type=checkbox]:checked + label:before{border-bottom-color:#424242;border-left-color:transparent;border-right-color:#424242;border-top-color:transparent;transform:rotate(40deg);width:.5rem;top:0;left:-2px}.input-group input[type=checkbox].filled + label:before{border-color:transparent;left:-4px}.input-group input[type=checkbox].filled + label:after{content:"";width:1.2rem;height:1.2rem;background:transparent;position:absolute;left:-1.7px;top:1px;border:2px solid #757575;border-radius:.15rem;transition:all .2s ease-out}.input-group input[type=checkbox].filled:checked + label:before{border-bottom:2px solid #fff;border-right:2px solid #fff;top:-1px;left:-1px;transform:rotate(37deg) scale(.8)}.input-group input[type=checkbox].filled:checked + label:after{background:#424242;border-color:#424242}.input-group input[type=checkbox]:indeterminate + label:before{border-right-color:#424242;left:-20px;top:-8px;border-top:0 solid transparent;border-left:0 solid transparent;border-bottom:0 solid transparent;transform:rotate(90deg);width:1.2rem;height:1.2rem}.input-group input[type=checkbox]:indeterminate + label:after{border:none;background:transparent}.input-group select{width:100%;}.input-group select[multiple]{border:1px solid #ddd;height:10rem;top:9px;margin-bottom:1rem}.input-group:after{content:"";width:0%;height:2px;background-color:#2196f3;position:absolute;bottom:-1px;left:0;transition:all .3s cubic-bezier(0,0,.2,1)}.input-group--focused label,.input-group--dirty label{top:-9px;font-size:.8rem}.input-group--focused:after{width:100%}.list{list-style-type:none;padding:0;margin:0;}.list a{text-decoration:none}.list__item{align-items:center;display:flex;padding:1rem 0;}.list__item-action{display:flex;flex-direction:column;margin-left:2rem;align-items:center}.list__item-action-title{color:#9e9e9e;font-size:.82rem;font-weight:300}.list__item-avatar{align-self:flex-start;color:#fff;margin-right:2rem;border-radius:50%}.list__item-title{display:flex;flex-direction:column;letter-spacing:.05rem;font-weight:500}.list__item-sub-title{color:#757575;font-size:.9rem;font-weight:300;letter-spacing:0}.list__item-icon{color:#9e9e9e;margin-right:2rem}.navbar{background-color:#2196f3;height:5rem;display:flex;flex-wrap:wrap;position:relative;width:100%;}.navbar--fixed{position:fixed;top:0;left:0;z-index:4}.navbar__side-icon{display:inline-flex;align-items:center;margin:0 1rem;}.navbar__side-icon a{color:#fff;display:flex;align-items:center;flex:1;font-size:1rem;text-decoration:none;}.navbar__side-icon a i{font-size:3rem}.navbar__logo{color:#fff;font-size:3rem;flex:1;text-decoration:none;padding:0 2rem;display:flex;align-items:center}.navbar__items{list-style-type:none;padding:0;}.navbar__items > li{height:100%;float:left}.navbar__items > a{color:#fff}.navbar__item{align-items:center;color:#fff;display:flex;padding:0 1.2rem;text-decoration:none;transition:all .3s ease-out;height:100%;}.navbar__item i{font-size:2rem}.navbar__item:hover{background:rgba(255,255,255,0.2)}.modal{display:block;position:fixed;top:15%;right:0;left:0;width:800px;max-width:90%;margin:auto;z-index:1001;max-height:55%;opacity:1;}.modal-enter-active,.modal-leave-active{transition:all .3s cubic-bezier(0,0,.2,1)}.modal-enter,.modal-leave-active{transform:translateY(100%) scale(.5);opacity:0}.modal--bottom{top:initial !important;bottom:0;border-radius:0;box-shadow:0 -4px 15px 0 rgba(0,0,0,0.2),0 -6px 50px 0 rgba(0,0,0,0.19);width:100%;margin:0;max-width:none;}.modal--bottom.modal-enter,.modal--bottom.modal-leave-active{transform:translateY(100%);opacity:1}.modal-overlay{display:block;position:fixed;width:100%;height:100%;background-color:rgba(0,0,0,0.3);transition:all .3s cubic-bezier(0,0,.2,1);top:0;left:0;opacity:0;filter:blur(10%);z-index:-1;}.modal-overlay--open{opacity:1;z-index:1000}.pagination{list-style-type:none;display:flex;align-items:center;}.pagination a{transition:all .2s ease-out;}.pagination--circle .pagination__item,.pagination--circle .pagination__more,.pagination--circle .pagination__navigation{border-radius:50%}.pagination__item{border-radius:4px;color:#000;display:inline-flex;justify-content:center;align-items:center;background:transparent;height:2rem;width:2rem;margin:.3rem;text-decoration:none;transform:scale(.8);}.pagination__item--active{background:#2196f3;color:#fff;transform:scale(1.15)}.pagination__navigation{display:inline-flex;justify-content:center;align-items:center;text-decoration:none;color:#616161;height:2rem;border-radius:4px;width:2rem;margin:.3rem;}.pagination__navigation .icon{font-size:2rem;transition:all .2s ease-out;vertical-align:middle}.pagination__navigation--disabled{opacity:.6;pointer-events:none}.pagination__more{margin:.3rem;display:inline-flex;align-items:flex-end;justify-content:center;height:2rem;width:2rem}.parallax{position:relative;overflow:hidden;}.parallax__image-container{position:absolute;top:0;left:0;right:0;bottom:0;z-index:1}.parallax__image{position:absolute;bottom:0;left:50%;min-width:100%;min-height:100%;display:none;z-index:1}.parallax__content{color:#fff;height:100%;z-index:2;position:relative;display:flex;flex-direction:column;justify-content:center;padding:0 1rem}.progress{background:#e0e0e0;transition:all .3s cubic-bezier(0,0,.2,1);width:100%;border-radius:4px;overflow:hidden;position:relative;margin:1rem 0;}.progress__bar{height:inherit;background:#2196f3;border-radius:4px;overflow:hidden;position:absolute}.progress--indeterminate .progress__bar{width:30% !important;animation:loading 1.2s linear infinite alternate}@-moz-keyframes loading{0%{left:0%}100%{left:70%}}@-webkit-keyframes loading{0%{left:0%}100%{left:70%}}@-o-keyframes loading{0%{left:0%}100%{left:70%}}@keyframes loading{0%{left:0%}100%{left:70%}}.progress-circular{position:relative;display:inline-flex;}.progress-circular--indeterminate svg{animation:progress-circular-rotate 1.4s linear infinite;transform-origin:center center;width:100%;height:100%;margin:auto;position:absolute;top:0;bottom:0;left:0;right:0;transition:all .2s ease-in-out;z-index:0}.progress-circular--indeterminate .progress-circular__overlay{animation:progress-circular-dash 1.4s ease-in-out infinite;stroke-linecap:round;stroke-dasharray:1,200;stroke-dashoffset:0}.progress-circular__underlay{stroke:rgba(0,0,0,0.1);z-index:1}.progress-circular__overlay{stroke:currentColor;z-index:2;transition:all .6s ease-in-out}.progress-circular__info{position:absolute;top:50%;left:50%;transform:translate3d(-50%,-50%,0)}@-moz-keyframes progress-circular-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:100,200;stroke-dashoffset:-15px}100%{stroke-dasharray:100,200;stroke-dashoffset:-125px}}@-webkit-keyframes progress-circular-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:100,200;stroke-dashoffset:-15px}100%{stroke-dasharray:100,200;stroke-dashoffset:-125px}}@-o-keyframes progress-circular-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:100,200;stroke-dashoffset:-15px}100%{stroke-dasharray:100,200;stroke-dashoffset:-125px}}@keyframes progress-circular-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:100,200;stroke-dashoffset:-15px}100%{stroke-dasharray:100,200;stroke-dashoffset:-125px}}@-moz-keyframes progress-circular-rotate{100%{transform:rotate(360deg)}}@-webkit-keyframes progress-circular-rotate{100%{transform:rotate(360deg)}}@-o-keyframes progress-circular-rotate{100%{transform:rotate(360deg)}}@keyframes progress-circular-rotate{100%{transform:rotate(360deg)}}.ripple__container{position:absolute;width:100%;height:100%;left:0;top:0;overflow:hidden;z-index:0;color:#fff;pointer-events:none}.ripple__animation{position:absolute;top:0;left:0;border-radius:50%;background:currentColor;opacity:0;transition:.7s transform cubic-bezier(.2,.4,.4,.9),.3s opacity cubic-bezier(.2,.4,.4,.1);pointer-events:none;overflow:hidden;will-change:opacity;}.ripple__animation--enter{transition:none}.ripple__animation--visible{opacity:.3}.sidebar{background-color:#424242;display:flex;flex-basis:260px;flex-direction:column;overflow-y:auto;transition:transform .3s cubic-bezier(0,0,.2,1);width:260px;z-index:3;}.sidebar ul{list-style-type:none;width:100%;padding:0}.sidebar--right{order:1}.sidebar--fixed{top:0;left:0;position:fixed;z-index:5;}.sidebar--fixed-right{right:0}.sidebar--drawer{flex-basis:0;transform:translateX(-285px)}.sidebar--drawer--right{transform:translateX(285px)}.sidebar--open{transform:translateX(0) !important;width:260px}.sidebar--close{transform:translateX(-285px);flex-basis:0 !important;}.sidebar--close .sidebar--fixed-right{transform:translateX(285px)}@media screen and (max-width:48rem){.sidebar--mobile{transform:translateX(-285px);flex-basis:0 !important}.sidebar--mobile .sidebar--fixed-right{transform:translateX(285px)}}.sidebar__group .sidebar__items{overflow:hidden}.sidebar__group .sidebar__item{padding-left:3rem}.sidebar__items{display:flex;flex-direction:column;transition:all .3s cubic-bezier(0,0,.2,1)}.sidebar__item,.sidebar__item-header{color:#424242;display:flex;align-items:center;text-decoration:none;transition:all .3s cubic-bezier(0,0,.2,1);font-weight:300;padding:.7rem 2rem;height:3rem;}.sidebar__item--active,.sidebar__item-header--active{background-color:#424242}.sidebar__item:hover,.sidebar__item-header:hover{background-color:#424242;color:#fff}.sidebar__item > span,.sidebar__item-header > span{margin-left:1rem}.sidebar__item-header:after{content:'keyboard_arrow_left';font-family:'Material Icons';font-size:1.5rem;position:absolute;right:15px;color:inherit;transition:all .3s cubic-bezier(0,0,.2,1)}.sidebar__item-header:hover{background:#2196f3}.sidebar__item-header--active{background:#2196f3;}.sidebar__item-header--active:after{transform:rotate(-90deg)}.slider{height:500px;width:100%;background:#000;position:relative;overflow:hidden;}.slider__item{display:flex;align-items:center;justify-content:center;flex:1 0 100%;height:100%;width:100%;background-size:cover;background-position:center center;transition:.2s ease-out}.slider__left,.slider__right{position:absolute;top:calc(50% - 50px);z-index:2;left:0;}.slider__left .btn,.slider__right .btn{color:#fff;margin:0 !important;}.slider__left .btn i,.slider__right .btn i{font-size:4rem}.slider__left .btn:hover,.slider__right .btn:hover{background:none}.slider__right{left:initial;right:0}.slider__controls{background:rgba(0,0,0,0.5);align-items:center;bottom:0;display:flex;justify-content:center;left:0;position:absolute;height:50px;list-style-type:none;width:100%;z-index:2;}.slider__controls__item{color:#fff;width:10px;margin:0 1rem !important;}.slider__controls__item i{opacity:.5;transition:all .3s cubic-bezier(0,0,.2,1)}.slider__controls__item--active i{opacity:1;vertical-align:middle;font-size:2rem !important}.slider__controls__item:hover{background:none;}.slider__controls__item:hover i{opacity:.8}table{border-collapse:collapse;width:100%;}table td,table th{padding:.6rem 0}table,th,td{text-align:left}.tabs{margin-bottom:3rem;}.tabs__slider{position:absolute;top:calc(100% - 4px);height:4px;with:100%}.tabs__tab{color:#fff;flex:1;text-decoration:none;display:block;padding:1rem;position:relative;text-align:center;text-transform:uppercase;transition:all .3s cubic-bezier(0,0,.2,1);}.tabs__tab:after{content:'';position:absolute;bottom:0;left:0;width:0;height:3px;transition:all .3s cubic-bezier(0,0,.2,1);background:#2196f3}.tabs__tab--active:after{width:100%}.tabs__tabs{background:#424242;display:flex;position:relative;align-items:center;flex-wrap:nowrap;white-space:nowrap;overflow-x:auto;}@media screen and (max-width:48rem){.tabs__tabs{flex-wrap:wrap}}.tabs__items{width:100%;height:100%;position:relative;overflow:hidden}.tabs__item{transition:.2s ease-out;padding:1rem;height:100%;width:100%}.toast{position:fixed;z-index:99999999999999;}.toast--right{top:5%;right:2%}.toast--left{top:5%;left:2%}.toast--top{top:5%;left:50%;transform:translateX(-50%)}.toast--bottom{bottom:5%;left:50%;transform:translateX(-50%)}.toast--snack{bottom:0;left:50%;transform:translateX(-50%);}.toast--snack .toast__content{margin-bottom:0;opacity:1;}.toast--snack .toast__content--remove{margin-top:0}.toast__content{background:#424242;border-radius:$button-radius;color:#fff;padding:1rem 2rem;margin:1rem 0;opacity:0;transform:translate3d(0,3rem,0);transition:all .3s cubic-bezier(0,0,.2,1);}.toast__content--active{transform:translate3d(0,0,0);opacity:1}.toast__content--remove{margin-top:-3rem;opacity:0}[data-tooltip]{position:relative;}[data-tooltip]:hover:after{opacity:1;visibility:visible}[data-tooltip]:after{background:#424242;border-radius:.2rem;color:#fff;content:attr(data-tooltip);font-size:.8rem;line-height:1.2rem;opacity:0;padding:.4rem;position:absolute;pointer-events:none;transition:all .2s ease-out;visibility:hidden;width:auto;white-space:pre;z-index:99;}[data-tooltip][data-tooltip-location='bottom']:after{top:100%;left:50%;transform:translateX(-50%) translateY(-10px)}[data-tooltip][data-tooltip-location='bottom']:hover:after{transform:translateX(-50%) translateY(10px)}[data-tooltip][data-tooltip-location='top']:after{bottom:100%;left:50%;transform:translateX(-50%) translateY(10px)}[data-tooltip][data-tooltip-location='top']:hover:after{transform:translateX(-50%) translateY(-10px)}[data-tooltip][data-tooltip-location='left']:after{bottom:50%;right:100%;transform:translateX(10px) translateY(50%)}[data-tooltip][data-tooltip-location='left']:hover:after{transform:translateX(-10px) translateY(50%)}[data-tooltip][data-tooltip-location='right']:after{bottom:50%;left:100%;transform:translateX(-10px) translateY(50%)}[data-tooltip][data-tooltip-location='right']:hover:after{transform:translateX(10px) translateY(50%)}.with{display:flex;flex-flow:column nowrap;min-height:100vh;}.with.top-fixed-navbar{padding-top:$navbar-min-height3rem;}.with.top-fixed-navbar header{z-index:4}.with.top-navbar main > .content{padding-top:1rem}.with.left-fixed-sidebar .navbar,.with.left-fixed-sidebar main,.with.left-fixed-sidebar footer{padding-left:260px;transition:all .3s cubic-bezier(0,0,.2,1);}@media screen and (max-width:48rem){.with.left-fixed-sidebar .navbar,.with.left-fixed-sidebar main,.with.left-fixed-sidebar footer{padding-left:0}}.with.left-sidebar .sidebar{box-shadow:none}.with.left-sidebar main{background:#424242;}.with.left-sidebar main > .content{background:#fff}.with.right-fixed-sidebar .navbar,.with.right-fixed-sidebar main,.with.right-fixed-sidebar footer{padding-right:260px;transition:all .3s cubic-bezier(0,0,.2,1);}@media screen and (max-width:48rem){.with.right-fixed-sidebar .navbar,.with.right-fixed-sidebar main,.with.right-fixed-sidebar footer{padding-right:0}}@media screen and (min-width:0){.hidden-xs-and-up{display:none !important}}@media screen and (max-width:0){.hidden-xs-and-down{display:none !important}}@media screen and (min-width:48rem){.hidden-sm-and-up{display:none !important}}@media screen and (max-width:48rem){.hidden-sm-and-down{display:none !important}}@media screen and (min-width:64rem){.hidden-md-and-up{display:none !important}}@media screen and (max-width:64rem){.hidden-md-and-down{display:none !important}}@media screen and (min-width:75rem){.hidden-lg-and-up{display:none !important}}@media screen and (max-width:75rem){.hidden-lg-and-down{display:none !important}}.right{float:right !important}.left{float:left !important}.mt-0{margin-top:0 !important}.mr-0{margin-right:0 !important}.mb-0{margin-bottom:0 !important}.ml-0{margin-left:0 !important}.mx-0{margin-left:0 !important;margin-right:0 !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.ma-0{margin:0 0 !important}.pt-0{padding-top:0 !important}.pr-0{padding-right:0 !important}.pb-0{padding-bottom:0 !important}.pl-0{padding-left:0 !important}.px-0{padding-left:0 !important;padding-right:0 !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.pa-0{padding:0 0 !important}.mt-1{margin-top:.25rem !important}.mr-1{margin-right:.25rem !important}.mb-1{margin-bottom:.25rem !important}.ml-1{margin-left:.25rem !important}.mx-1{margin-left:.25rem !important;margin-right:.25rem !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.ma-1{margin:.25rem .25rem !important}.pt-1{padding-top:.25rem !important}.pr-1{padding-right:.25rem !important}.pb-1{padding-bottom:.25rem !important}.pl-1{padding-left:.25rem !important}.px-1{padding-left:.25rem !important;padding-right:.25rem !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.pa-1{padding:.25rem .25rem !important}.mt-2{margin-top:.5rem !important}.mr-2{margin-right:.5rem !important}.mb-2{margin-bottom:.5rem !important}.ml-2{margin-left:.5rem !important}.mx-2{margin-left:.5rem !important;margin-right:.5rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.ma-2{margin:.5rem .5rem !important}.pt-2{padding-top:.5rem !important}.pr-2{padding-right:.5rem !important}.pb-2{padding-bottom:.5rem !important}.pl-2{padding-left:.5rem !important}.px-2{padding-left:.5rem !important;padding-right:.5rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.pa-2{padding:.5rem .5rem !important}.mt-3{margin-top:1rem !important}.mr-3{margin-right:1rem !important}.mb-3{margin-bottom:1rem !important}.ml-3{margin-left:1rem !important}.mx-3{margin-left:1rem !important;margin-right:1rem !important}.my-3{margin-top:1rem !important;margin-bottom:1rem !important}.ma-3{margin:1rem 1rem !important}.pt-3{padding-top:1rem !important}.pr-3{padding-right:1rem !important}.pb-3{padding-bottom:1rem !important}.pl-3{padding-left:1rem !important}.px-3{padding-left:1rem !important;padding-right:1rem !important}.py-3{padding-top:1rem !important;padding-bottom:1rem !important}.pa-3{padding:1rem 1rem !important}.mt-4{margin-top:1.5rem !important}.mr-4{margin-right:1.5rem !important}.mb-4{margin-bottom:1.5rem !important}.ml-4{margin-left:1.5rem !important}.mx-4{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.ma-4{margin:1.5rem 1.5rem !important}.pt-4{padding-top:1.5rem !important}.pr-4{padding-right:1.5rem !important}.pb-4{padding-bottom:1.5rem !important}.pl-4{padding-left:1.5rem !important}.px-4{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.pa-4{padding:1.5rem 1.5rem !important}.mt-5{margin-top:3rem !important}.mr-5{margin-right:3rem !important}.mb-5{margin-bottom:3rem !important}.ml-5{margin-left:3rem !important}.mx-5{margin-left:3rem !important;margin-right:3rem !important}.my-5{margin-top:3rem !important;margin-bottom:3rem !important}.ma-5{margin:3rem 3rem !important}.pt-5{padding-top:3rem !important}.pr-5{padding-right:3rem !important}.pb-5{padding-bottom:3rem !important}.pl-5{padding-left:3rem !important}.px-5{padding-left:3rem !important;padding-right:3rem !important}.py-5{padding-top:3rem !important;padding-bottom:3rem !important}.pa-5{padding:3rem 3rem !important}@media only screen and (min-width:0){.text-xs-left{text-align:left !important}.text-xs-center{text-align:center !important}.text-xs-right{text-align:right !important}.text-xs-justify{text-align:justify !important}}@media only screen and (min-width:48rem){.text-sm-left{text-align:left !important}.text-sm-center{text-align:center !important}.text-sm-right{text-align:right !important}.text-sm-justify{text-align:justify !important}}@media only screen and (min-width:64rem){.text-md-left{text-align:left !important}.text-md-center{text-align:center !important}.text-md-right{text-align:right !important}.text-md-justify{text-align:justify !important}}@media only screen and (min-width:75rem){.text-lg-left{text-align:left !important}.text-lg-center{text-align:center !important}.text-lg-right{text-align:right !important}.text-lg-justify{text-align:justify !important}} \ No newline at end of file +html{box-sizing:border-box;overflow-y:scroll;-webkit-text-size-adjust:100%;}*,::before,::after{box-sizing:inherit}::before,::after{text-decoration:inherit;vertical-align:inherit}*{background-repeat:no-repeat;padding:0;margin:0}audio:not([controls]){display:none;height:0}hr{overflow:visible;}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}summary{display:list-item;}small{font-size:80%;}[hidden],template{display:none;}abbr[title]{border-bottom:1px dotted;text-decoration:none;}a{background-color:transparent;-webkit-text-decoration-skip:objects;}a:active,a:hover{outline-width:0;}code,kbd,pre,samp{font-family:monospace,monospace;}b,strong{font-weight:bolder;}dfn{font-style:italic;}mark{background-color:#ff0;color:#000}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}input{border-radius:0}button,[type="button"],[type="reset"],[type="submit"],[role="button"]{cursor:pointer}[disabled]{cursor:default}[type="number"]{width:auto;}[type="search"]{-webkit-appearance:textfield;}[type="search"]::-webkit-search-cancel-button,[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}textarea{overflow:auto;resize:vertical;}button,input,optgroup,select,textarea{font:inherit;}optgroup{font-weight:bold;}button{overflow:visible;}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:0;padding:0}button:-moz-focusring,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{outline:1px dotted ButtonText}button,html [type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button;}button,select{text-transform:none;}button,input,select,textarea{background-color:transparent;border-style:none;color:inherit}select{-moz-appearance:none;-webkit-appearance:none;}select::-ms-expand{display:none;}select::-ms-value{color:currentColor;}legend{border:0;color:inherit;display:table;max-width:100%;white-space:normal;}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit;}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px;}img{border-style:none;}progress{vertical-align:baseline}svg:not(:root){overflow:hidden;}audio,canvas,progress,video{display:inline-block;}@media screen{[hidden~="screen"]{display:inherit}[hidden~="screen"]:not(:active):not(:focus):not(:target){position:absolute !important;clip:rect(0 0 0 0) !important}}[aria-busy="true"]{cursor:progress}[aria-controls]{cursor:pointer}[aria-disabled]{cursor:default}::-moz-selection{background-color:#b3d4fc;color:#000;text-shadow:none}::selection{background-color:#b3d4fc;color:#000;text-shadow:none}.content{flex-basis:100%}.container,.container-fluid{margin-right:auto;margin-left:auto;flex-basis:100%}.container{padding-left:2rem;padding-right:2rem;}.container--fluid{padding:0}@media only screen and (min-width:'sm'){.container{max-width:'sm'}}@media only screen and (min-width:'md'){.container{max-width:'md'}}@media only screen and (min-width:'lg'){.container{max-width:'lg'}}.row{box-sizing:border-box;display:flex;flex:0 1 auto;flex-flow:row wrap;margin-left:-.5rem;margin-right:-.5rem;}.row--reverse{flex-direction:row-reverse}.row .col{box-sizing:border-box;flex:0 0 auto;padding-right:.5rem;padding-left:.5rem;}.row .col.xs{flex-grow:1;flex-basis:0;max-width:100%}@media only screen and (min-width:0){.row .col.xs1{flex-basis:8.333333333333332%;max-width:8.333333333333332%}.row .col.offset-xs1{margin-left:8.333333333333332%}.row .col.xs2{flex-basis:16.666666666666664%;max-width:16.666666666666664%}.row .col.offset-xs2{margin-left:16.666666666666664%}.row .col.xs3{flex-basis:25%;max-width:25%}.row .col.offset-xs3{margin-left:25%}.row .col.xs4{flex-basis:33.33333333333333%;max-width:33.33333333333333%}.row .col.offset-xs4{margin-left:33.33333333333333%}.row .col.xs5{flex-basis:41.66666666666667%;max-width:41.66666666666667%}.row .col.offset-xs5{margin-left:41.66666666666667%}.row .col.xs6{flex-basis:50%;max-width:50%}.row .col.offset-xs6{margin-left:50%}.row .col.xs7{flex-basis:58.333333333333336%;max-width:58.333333333333336%}.row .col.offset-xs7{margin-left:58.333333333333336%}.row .col.xs8{flex-basis:66.66666666666666%;max-width:66.66666666666666%}.row .col.offset-xs8{margin-left:66.66666666666666%}.row .col.xs9{flex-basis:75%;max-width:75%}.row .col.offset-xs9{margin-left:75%}.row .col.xs10{flex-basis:83.33333333333334%;max-width:83.33333333333334%}.row .col.offset-xs10{margin-left:83.33333333333334%}.row .col.xs11{flex-basis:91.66666666666666%;max-width:91.66666666666666%}.row .col.offset-xs11{margin-left:91.66666666666666%}.row .col.xs12{flex-basis:100%;max-width:100%}.row .col.offset-xs12{margin-left:100%}}.row .col.sm{flex-grow:1;flex-basis:0;max-width:100%}@media only screen and (min-width:48rem){.row .col.sm1{flex-basis:8.333333333333332%;max-width:8.333333333333332%}.row .col.offset-sm1{margin-left:8.333333333333332%}.row .col.sm2{flex-basis:16.666666666666664%;max-width:16.666666666666664%}.row .col.offset-sm2{margin-left:16.666666666666664%}.row .col.sm3{flex-basis:25%;max-width:25%}.row .col.offset-sm3{margin-left:25%}.row .col.sm4{flex-basis:33.33333333333333%;max-width:33.33333333333333%}.row .col.offset-sm4{margin-left:33.33333333333333%}.row .col.sm5{flex-basis:41.66666666666667%;max-width:41.66666666666667%}.row .col.offset-sm5{margin-left:41.66666666666667%}.row .col.sm6{flex-basis:50%;max-width:50%}.row .col.offset-sm6{margin-left:50%}.row .col.sm7{flex-basis:58.333333333333336%;max-width:58.333333333333336%}.row .col.offset-sm7{margin-left:58.333333333333336%}.row .col.sm8{flex-basis:66.66666666666666%;max-width:66.66666666666666%}.row .col.offset-sm8{margin-left:66.66666666666666%}.row .col.sm9{flex-basis:75%;max-width:75%}.row .col.offset-sm9{margin-left:75%}.row .col.sm10{flex-basis:83.33333333333334%;max-width:83.33333333333334%}.row .col.offset-sm10{margin-left:83.33333333333334%}.row .col.sm11{flex-basis:91.66666666666666%;max-width:91.66666666666666%}.row .col.offset-sm11{margin-left:91.66666666666666%}.row .col.sm12{flex-basis:100%;max-width:100%}.row .col.offset-sm12{margin-left:100%}}.row .col.md{flex-grow:1;flex-basis:0;max-width:100%}@media only screen and (min-width:64rem){.row .col.md1{flex-basis:8.333333333333332%;max-width:8.333333333333332%}.row .col.offset-md1{margin-left:8.333333333333332%}.row .col.md2{flex-basis:16.666666666666664%;max-width:16.666666666666664%}.row .col.offset-md2{margin-left:16.666666666666664%}.row .col.md3{flex-basis:25%;max-width:25%}.row .col.offset-md3{margin-left:25%}.row .col.md4{flex-basis:33.33333333333333%;max-width:33.33333333333333%}.row .col.offset-md4{margin-left:33.33333333333333%}.row .col.md5{flex-basis:41.66666666666667%;max-width:41.66666666666667%}.row .col.offset-md5{margin-left:41.66666666666667%}.row .col.md6{flex-basis:50%;max-width:50%}.row .col.offset-md6{margin-left:50%}.row .col.md7{flex-basis:58.333333333333336%;max-width:58.333333333333336%}.row .col.offset-md7{margin-left:58.333333333333336%}.row .col.md8{flex-basis:66.66666666666666%;max-width:66.66666666666666%}.row .col.offset-md8{margin-left:66.66666666666666%}.row .col.md9{flex-basis:75%;max-width:75%}.row .col.offset-md9{margin-left:75%}.row .col.md10{flex-basis:83.33333333333334%;max-width:83.33333333333334%}.row .col.offset-md10{margin-left:83.33333333333334%}.row .col.md11{flex-basis:91.66666666666666%;max-width:91.66666666666666%}.row .col.offset-md11{margin-left:91.66666666666666%}.row .col.md12{flex-basis:100%;max-width:100%}.row .col.offset-md12{margin-left:100%}}.row .col.lg{flex-grow:1;flex-basis:0;max-width:100%}@media only screen and (min-width:75rem){.row .col.lg1{flex-basis:8.333333333333332%;max-width:8.333333333333332%}.row .col.offset-lg1{margin-left:8.333333333333332%}.row .col.lg2{flex-basis:16.666666666666664%;max-width:16.666666666666664%}.row .col.offset-lg2{margin-left:16.666666666666664%}.row .col.lg3{flex-basis:25%;max-width:25%}.row .col.offset-lg3{margin-left:25%}.row .col.lg4{flex-basis:33.33333333333333%;max-width:33.33333333333333%}.row .col.offset-lg4{margin-left:33.33333333333333%}.row .col.lg5{flex-basis:41.66666666666667%;max-width:41.66666666666667%}.row .col.offset-lg5{margin-left:41.66666666666667%}.row .col.lg6{flex-basis:50%;max-width:50%}.row .col.offset-lg6{margin-left:50%}.row .col.lg7{flex-basis:58.333333333333336%;max-width:58.333333333333336%}.row .col.offset-lg7{margin-left:58.333333333333336%}.row .col.lg8{flex-basis:66.66666666666666%;max-width:66.66666666666666%}.row .col.offset-lg8{margin-left:66.66666666666666%}.row .col.lg9{flex-basis:75%;max-width:75%}.row .col.offset-lg9{margin-left:75%}.row .col.lg10{flex-basis:83.33333333333334%;max-width:83.33333333333334%}.row .col.offset-lg10{margin-left:83.33333333333334%}.row .col.lg11{flex-basis:91.66666666666666%;max-width:91.66666666666666%}.row .col.offset-lg11{margin-left:91.66666666666666%}.row .col.lg12{flex-basis:100%;max-width:100%}.row .col.offset-lg12{margin-left:100%}}.col--spacer,.spacer{flex-grow:1}.primary{background-color:#2196f3 !important;border-color:#2196f3 !important}.primary--text{color:#2196f3 !important}.primary--after:after{background:#2196f3 !important}.secondary{background-color:#424242 !important;border-color:#424242 !important}.secondary--text{color:#424242 !important}.secondary--after:after{background:#424242 !important}.info{background-color:#2196f3 !important;border-color:#2196f3 !important}.info--text{color:#2196f3 !important}.info--after:after{background:#2196f3 !important}.warning{background-color:#ffc107 !important;border-color:#ffc107 !important}.warning--text{color:#ffc107 !important}.warning--after:after{background:#ffc107 !important}.error{background-color:#f44336 !important;border-color:#f44336 !important}.error--text{color:#f44336 !important}.error--after:after{background:#f44336 !important}.success{background-color:#4caf50 !important;border-color:#4caf50 !important}.success--text{color:#4caf50 !important}.success--after:after{background:#4caf50 !important}.black{background-color:#000 !important;border-color:#000 !important}.black--text{color:#000 !important}.black--after:after{background:#000 !important}.white{background-color:#fff !important;border-color:#fff !important}.white--text{color:#fff !important}.white--after:after{background:#fff !important}.transparent{background-color:transparent !important;border-color:transparent !important}.transparent--text{color:transparent !important}.transparent--after:after{background:transparent !important}.red{background-color:#f44336 !important;border-color:#f44336 !important}.red--text{color:#f44336 !important}.red--after:after{background:#f44336 !important}.red.lighten-5{background-color:#ffebee !important;border-color:#ffebee !important}.red.lighten-5--after:after{background-color:#ffebee !important}.red--text.text--lighten-5{color:#ffebee !important}.red.lighten-4{background-color:#ffcdd2 !important;border-color:#ffcdd2 !important}.red.lighten-4--after:after{background-color:#ffcdd2 !important}.red--text.text--lighten-4{color:#ffcdd2 !important}.red.lighten-3{background-color:#ef9a9a !important;border-color:#ef9a9a !important}.red.lighten-3--after:after{background-color:#ef9a9a !important}.red--text.text--lighten-3{color:#ef9a9a !important}.red.lighten-2{background-color:#e57373 !important;border-color:#e57373 !important}.red.lighten-2--after:after{background-color:#e57373 !important}.red--text.text--lighten-2{color:#e57373 !important}.red.lighten-1{background-color:#ef5350 !important;border-color:#ef5350 !important}.red.lighten-1--after:after{background-color:#ef5350 !important}.red--text.text--lighten-1{color:#ef5350 !important}.red.darken-1{background-color:#e53935 !important;border-color:#e53935 !important}.red.darken-1--after:after{background-color:#e53935 !important}.red--text.text--darken-1{color:#e53935 !important}.red.darken-2{background-color:#d32f2f !important;border-color:#d32f2f !important}.red.darken-2--after:after{background-color:#d32f2f !important}.red--text.text--darken-2{color:#d32f2f !important}.red.darken-3{background-color:#c62828 !important;border-color:#c62828 !important}.red.darken-3--after:after{background-color:#c62828 !important}.red--text.text--darken-3{color:#c62828 !important}.red.darken-4{background-color:#b71c1c !important;border-color:#b71c1c !important}.red.darken-4--after:after{background-color:#b71c1c !important}.red--text.text--darken-4{color:#b71c1c !important}.red.accent-1{background-color:#ff8a80 !important;border-color:#ff8a80 !important}.red.accent-1--after:after{background-color:#ff8a80 !important}.red--text.text--accent-1{color:#ff8a80 !important}.red.accent-2{background-color:#ff5252 !important;border-color:#ff5252 !important}.red.accent-2--after:after{background-color:#ff5252 !important}.red--text.text--accent-2{color:#ff5252 !important}.red.accent-3{background-color:#ff1744 !important;border-color:#ff1744 !important}.red.accent-3--after:after{background-color:#ff1744 !important}.red--text.text--accent-3{color:#ff1744 !important}.red.accent-4{background-color:#d50000 !important;border-color:#d50000 !important}.red.accent-4--after:after{background-color:#d50000 !important}.red--text.text--accent-4{color:#d50000 !important}.pink{background-color:#e91e63 !important;border-color:#e91e63 !important}.pink--text{color:#e91e63 !important}.pink--after:after{background:#e91e63 !important}.pink.lighten-5{background-color:#fce4ec !important;border-color:#fce4ec !important}.pink.lighten-5--after:after{background-color:#fce4ec !important}.pink--text.text--lighten-5{color:#fce4ec !important}.pink.lighten-4{background-color:#f8bbd0 !important;border-color:#f8bbd0 !important}.pink.lighten-4--after:after{background-color:#f8bbd0 !important}.pink--text.text--lighten-4{color:#f8bbd0 !important}.pink.lighten-3{background-color:#f48fb1 !important;border-color:#f48fb1 !important}.pink.lighten-3--after:after{background-color:#f48fb1 !important}.pink--text.text--lighten-3{color:#f48fb1 !important}.pink.lighten-2{background-color:#f06292 !important;border-color:#f06292 !important}.pink.lighten-2--after:after{background-color:#f06292 !important}.pink--text.text--lighten-2{color:#f06292 !important}.pink.lighten-1{background-color:#ec407a !important;border-color:#ec407a !important}.pink.lighten-1--after:after{background-color:#ec407a !important}.pink--text.text--lighten-1{color:#ec407a !important}.pink.darken-1{background-color:#d81b60 !important;border-color:#d81b60 !important}.pink.darken-1--after:after{background-color:#d81b60 !important}.pink--text.text--darken-1{color:#d81b60 !important}.pink.darken-2{background-color:#c2185b !important;border-color:#c2185b !important}.pink.darken-2--after:after{background-color:#c2185b !important}.pink--text.text--darken-2{color:#c2185b !important}.pink.darken-3{background-color:#ad1457 !important;border-color:#ad1457 !important}.pink.darken-3--after:after{background-color:#ad1457 !important}.pink--text.text--darken-3{color:#ad1457 !important}.pink.darken-4{background-color:#880e4f !important;border-color:#880e4f !important}.pink.darken-4--after:after{background-color:#880e4f !important}.pink--text.text--darken-4{color:#880e4f !important}.pink.accent-1{background-color:#ff80ab !important;border-color:#ff80ab !important}.pink.accent-1--after:after{background-color:#ff80ab !important}.pink--text.text--accent-1{color:#ff80ab !important}.pink.accent-2{background-color:#ff4081 !important;border-color:#ff4081 !important}.pink.accent-2--after:after{background-color:#ff4081 !important}.pink--text.text--accent-2{color:#ff4081 !important}.pink.accent-3{background-color:#f50057 !important;border-color:#f50057 !important}.pink.accent-3--after:after{background-color:#f50057 !important}.pink--text.text--accent-3{color:#f50057 !important}.pink.accent-4{background-color:#c51162 !important;border-color:#c51162 !important}.pink.accent-4--after:after{background-color:#c51162 !important}.pink--text.text--accent-4{color:#c51162 !important}.purple{background-color:#9c27b0 !important;border-color:#9c27b0 !important}.purple--text{color:#9c27b0 !important}.purple--after:after{background:#9c27b0 !important}.purple.lighten-5{background-color:#f3e5f5 !important;border-color:#f3e5f5 !important}.purple.lighten-5--after:after{background-color:#f3e5f5 !important}.purple--text.text--lighten-5{color:#f3e5f5 !important}.purple.lighten-4{background-color:#e1bee7 !important;border-color:#e1bee7 !important}.purple.lighten-4--after:after{background-color:#e1bee7 !important}.purple--text.text--lighten-4{color:#e1bee7 !important}.purple.lighten-3{background-color:#ce93d8 !important;border-color:#ce93d8 !important}.purple.lighten-3--after:after{background-color:#ce93d8 !important}.purple--text.text--lighten-3{color:#ce93d8 !important}.purple.lighten-2{background-color:#ba68c8 !important;border-color:#ba68c8 !important}.purple.lighten-2--after:after{background-color:#ba68c8 !important}.purple--text.text--lighten-2{color:#ba68c8 !important}.purple.lighten-1{background-color:#ab47bc !important;border-color:#ab47bc !important}.purple.lighten-1--after:after{background-color:#ab47bc !important}.purple--text.text--lighten-1{color:#ab47bc !important}.purple.darken-1{background-color:#8e24aa !important;border-color:#8e24aa !important}.purple.darken-1--after:after{background-color:#8e24aa !important}.purple--text.text--darken-1{color:#8e24aa !important}.purple.darken-2{background-color:#7b1fa2 !important;border-color:#7b1fa2 !important}.purple.darken-2--after:after{background-color:#7b1fa2 !important}.purple--text.text--darken-2{color:#7b1fa2 !important}.purple.darken-3{background-color:#6a1b9a !important;border-color:#6a1b9a !important}.purple.darken-3--after:after{background-color:#6a1b9a !important}.purple--text.text--darken-3{color:#6a1b9a !important}.purple.darken-4{background-color:#4a148c !important;border-color:#4a148c !important}.purple.darken-4--after:after{background-color:#4a148c !important}.purple--text.text--darken-4{color:#4a148c !important}.purple.accent-1{background-color:#ea80fc !important;border-color:#ea80fc !important}.purple.accent-1--after:after{background-color:#ea80fc !important}.purple--text.text--accent-1{color:#ea80fc !important}.purple.accent-2{background-color:#e040fb !important;border-color:#e040fb !important}.purple.accent-2--after:after{background-color:#e040fb !important}.purple--text.text--accent-2{color:#e040fb !important}.purple.accent-3{background-color:#d500f9 !important;border-color:#d500f9 !important}.purple.accent-3--after:after{background-color:#d500f9 !important}.purple--text.text--accent-3{color:#d500f9 !important}.purple.accent-4{background-color:#a0f !important;border-color:#a0f !important}.purple.accent-4--after:after{background-color:#a0f !important}.purple--text.text--accent-4{color:#a0f !important}.deep-purple{background-color:#673ab7 !important;border-color:#673ab7 !important}.deep-purple--text{color:#673ab7 !important}.deep-purple--after:after{background:#673ab7 !important}.deep-purple.lighten-5{background-color:#ede7f6 !important;border-color:#ede7f6 !important}.deep-purple.lighten-5--after:after{background-color:#ede7f6 !important}.deep-purple--text.text--lighten-5{color:#ede7f6 !important}.deep-purple.lighten-4{background-color:#d1c4e9 !important;border-color:#d1c4e9 !important}.deep-purple.lighten-4--after:after{background-color:#d1c4e9 !important}.deep-purple--text.text--lighten-4{color:#d1c4e9 !important}.deep-purple.lighten-3{background-color:#b39ddb !important;border-color:#b39ddb !important}.deep-purple.lighten-3--after:after{background-color:#b39ddb !important}.deep-purple--text.text--lighten-3{color:#b39ddb !important}.deep-purple.lighten-2{background-color:#9575cd !important;border-color:#9575cd !important}.deep-purple.lighten-2--after:after{background-color:#9575cd !important}.deep-purple--text.text--lighten-2{color:#9575cd !important}.deep-purple.lighten-1{background-color:#7e57c2 !important;border-color:#7e57c2 !important}.deep-purple.lighten-1--after:after{background-color:#7e57c2 !important}.deep-purple--text.text--lighten-1{color:#7e57c2 !important}.deep-purple.darken-1{background-color:#5e35b1 !important;border-color:#5e35b1 !important}.deep-purple.darken-1--after:after{background-color:#5e35b1 !important}.deep-purple--text.text--darken-1{color:#5e35b1 !important}.deep-purple.darken-2{background-color:#512da8 !important;border-color:#512da8 !important}.deep-purple.darken-2--after:after{background-color:#512da8 !important}.deep-purple--text.text--darken-2{color:#512da8 !important}.deep-purple.darken-3{background-color:#4527a0 !important;border-color:#4527a0 !important}.deep-purple.darken-3--after:after{background-color:#4527a0 !important}.deep-purple--text.text--darken-3{color:#4527a0 !important}.deep-purple.darken-4{background-color:#311b92 !important;border-color:#311b92 !important}.deep-purple.darken-4--after:after{background-color:#311b92 !important}.deep-purple--text.text--darken-4{color:#311b92 !important}.deep-purple.accent-1{background-color:#b388ff !important;border-color:#b388ff !important}.deep-purple.accent-1--after:after{background-color:#b388ff !important}.deep-purple--text.text--accent-1{color:#b388ff !important}.deep-purple.accent-2{background-color:#7c4dff !important;border-color:#7c4dff !important}.deep-purple.accent-2--after:after{background-color:#7c4dff !important}.deep-purple--text.text--accent-2{color:#7c4dff !important}.deep-purple.accent-3{background-color:#651fff !important;border-color:#651fff !important}.deep-purple.accent-3--after:after{background-color:#651fff !important}.deep-purple--text.text--accent-3{color:#651fff !important}.deep-purple.accent-4{background-color:#6200ea !important;border-color:#6200ea !important}.deep-purple.accent-4--after:after{background-color:#6200ea !important}.deep-purple--text.text--accent-4{color:#6200ea !important}.indigo{background-color:#3f51b5 !important;border-color:#3f51b5 !important}.indigo--text{color:#3f51b5 !important}.indigo--after:after{background:#3f51b5 !important}.indigo.lighten-5{background-color:#e8eaf6 !important;border-color:#e8eaf6 !important}.indigo.lighten-5--after:after{background-color:#e8eaf6 !important}.indigo--text.text--lighten-5{color:#e8eaf6 !important}.indigo.lighten-4{background-color:#c5cae9 !important;border-color:#c5cae9 !important}.indigo.lighten-4--after:after{background-color:#c5cae9 !important}.indigo--text.text--lighten-4{color:#c5cae9 !important}.indigo.lighten-3{background-color:#9fa8da !important;border-color:#9fa8da !important}.indigo.lighten-3--after:after{background-color:#9fa8da !important}.indigo--text.text--lighten-3{color:#9fa8da !important}.indigo.lighten-2{background-color:#7986cb !important;border-color:#7986cb !important}.indigo.lighten-2--after:after{background-color:#7986cb !important}.indigo--text.text--lighten-2{color:#7986cb !important}.indigo.lighten-1{background-color:#5c6bc0 !important;border-color:#5c6bc0 !important}.indigo.lighten-1--after:after{background-color:#5c6bc0 !important}.indigo--text.text--lighten-1{color:#5c6bc0 !important}.indigo.darken-1{background-color:#3949ab !important;border-color:#3949ab !important}.indigo.darken-1--after:after{background-color:#3949ab !important}.indigo--text.text--darken-1{color:#3949ab !important}.indigo.darken-2{background-color:#303f9f !important;border-color:#303f9f !important}.indigo.darken-2--after:after{background-color:#303f9f !important}.indigo--text.text--darken-2{color:#303f9f !important}.indigo.darken-3{background-color:#283593 !important;border-color:#283593 !important}.indigo.darken-3--after:after{background-color:#283593 !important}.indigo--text.text--darken-3{color:#283593 !important}.indigo.darken-4{background-color:#1a237e !important;border-color:#1a237e !important}.indigo.darken-4--after:after{background-color:#1a237e !important}.indigo--text.text--darken-4{color:#1a237e !important}.indigo.accent-1{background-color:#8c9eff !important;border-color:#8c9eff !important}.indigo.accent-1--after:after{background-color:#8c9eff !important}.indigo--text.text--accent-1{color:#8c9eff !important}.indigo.accent-2{background-color:#536dfe !important;border-color:#536dfe !important}.indigo.accent-2--after:after{background-color:#536dfe !important}.indigo--text.text--accent-2{color:#536dfe !important}.indigo.accent-3{background-color:#3d5afe !important;border-color:#3d5afe !important}.indigo.accent-3--after:after{background-color:#3d5afe !important}.indigo--text.text--accent-3{color:#3d5afe !important}.indigo.accent-4{background-color:#304ffe !important;border-color:#304ffe !important}.indigo.accent-4--after:after{background-color:#304ffe !important}.indigo--text.text--accent-4{color:#304ffe !important}.blue{background-color:#2196f3 !important;border-color:#2196f3 !important}.blue--text{color:#2196f3 !important}.blue--after:after{background:#2196f3 !important}.blue.lighten-5{background-color:#e3f2fd !important;border-color:#e3f2fd !important}.blue.lighten-5--after:after{background-color:#e3f2fd !important}.blue--text.text--lighten-5{color:#e3f2fd !important}.blue.lighten-4{background-color:#bbdefb !important;border-color:#bbdefb !important}.blue.lighten-4--after:after{background-color:#bbdefb !important}.blue--text.text--lighten-4{color:#bbdefb !important}.blue.lighten-3{background-color:#90caf9 !important;border-color:#90caf9 !important}.blue.lighten-3--after:after{background-color:#90caf9 !important}.blue--text.text--lighten-3{color:#90caf9 !important}.blue.lighten-2{background-color:#64b5f6 !important;border-color:#64b5f6 !important}.blue.lighten-2--after:after{background-color:#64b5f6 !important}.blue--text.text--lighten-2{color:#64b5f6 !important}.blue.lighten-1{background-color:#42a5f5 !important;border-color:#42a5f5 !important}.blue.lighten-1--after:after{background-color:#42a5f5 !important}.blue--text.text--lighten-1{color:#42a5f5 !important}.blue.darken-1{background-color:#1e88e5 !important;border-color:#1e88e5 !important}.blue.darken-1--after:after{background-color:#1e88e5 !important}.blue--text.text--darken-1{color:#1e88e5 !important}.blue.darken-2{background-color:#1976d2 !important;border-color:#1976d2 !important}.blue.darken-2--after:after{background-color:#1976d2 !important}.blue--text.text--darken-2{color:#1976d2 !important}.blue.darken-3{background-color:#1565c0 !important;border-color:#1565c0 !important}.blue.darken-3--after:after{background-color:#1565c0 !important}.blue--text.text--darken-3{color:#1565c0 !important}.blue.darken-4{background-color:#0d47a1 !important;border-color:#0d47a1 !important}.blue.darken-4--after:after{background-color:#0d47a1 !important}.blue--text.text--darken-4{color:#0d47a1 !important}.blue.accent-1{background-color:#82b1ff !important;border-color:#82b1ff !important}.blue.accent-1--after:after{background-color:#82b1ff !important}.blue--text.text--accent-1{color:#82b1ff !important}.blue.accent-2{background-color:#448aff !important;border-color:#448aff !important}.blue.accent-2--after:after{background-color:#448aff !important}.blue--text.text--accent-2{color:#448aff !important}.blue.accent-3{background-color:#2979ff !important;border-color:#2979ff !important}.blue.accent-3--after:after{background-color:#2979ff !important}.blue--text.text--accent-3{color:#2979ff !important}.blue.accent-4{background-color:#2962ff !important;border-color:#2962ff !important}.blue.accent-4--after:after{background-color:#2962ff !important}.blue--text.text--accent-4{color:#2962ff !important}.light-blue{background-color:#03a9f4 !important;border-color:#03a9f4 !important}.light-blue--text{color:#03a9f4 !important}.light-blue--after:after{background:#03a9f4 !important}.light-blue.lighten-5{background-color:#e1f5fe !important;border-color:#e1f5fe !important}.light-blue.lighten-5--after:after{background-color:#e1f5fe !important}.light-blue--text.text--lighten-5{color:#e1f5fe !important}.light-blue.lighten-4{background-color:#b3e5fc !important;border-color:#b3e5fc !important}.light-blue.lighten-4--after:after{background-color:#b3e5fc !important}.light-blue--text.text--lighten-4{color:#b3e5fc !important}.light-blue.lighten-3{background-color:#81d4fa !important;border-color:#81d4fa !important}.light-blue.lighten-3--after:after{background-color:#81d4fa !important}.light-blue--text.text--lighten-3{color:#81d4fa !important}.light-blue.lighten-2{background-color:#4fc3f7 !important;border-color:#4fc3f7 !important}.light-blue.lighten-2--after:after{background-color:#4fc3f7 !important}.light-blue--text.text--lighten-2{color:#4fc3f7 !important}.light-blue.lighten-1{background-color:#29b6f6 !important;border-color:#29b6f6 !important}.light-blue.lighten-1--after:after{background-color:#29b6f6 !important}.light-blue--text.text--lighten-1{color:#29b6f6 !important}.light-blue.darken-1{background-color:#039be5 !important;border-color:#039be5 !important}.light-blue.darken-1--after:after{background-color:#039be5 !important}.light-blue--text.text--darken-1{color:#039be5 !important}.light-blue.darken-2{background-color:#0288d1 !important;border-color:#0288d1 !important}.light-blue.darken-2--after:after{background-color:#0288d1 !important}.light-blue--text.text--darken-2{color:#0288d1 !important}.light-blue.darken-3{background-color:#0277bd !important;border-color:#0277bd !important}.light-blue.darken-3--after:after{background-color:#0277bd !important}.light-blue--text.text--darken-3{color:#0277bd !important}.light-blue.darken-4{background-color:#01579b !important;border-color:#01579b !important}.light-blue.darken-4--after:after{background-color:#01579b !important}.light-blue--text.text--darken-4{color:#01579b !important}.light-blue.accent-1{background-color:#80d8ff !important;border-color:#80d8ff !important}.light-blue.accent-1--after:after{background-color:#80d8ff !important}.light-blue--text.text--accent-1{color:#80d8ff !important}.light-blue.accent-2{background-color:#40c4ff !important;border-color:#40c4ff !important}.light-blue.accent-2--after:after{background-color:#40c4ff !important}.light-blue--text.text--accent-2{color:#40c4ff !important}.light-blue.accent-3{background-color:#00b0ff !important;border-color:#00b0ff !important}.light-blue.accent-3--after:after{background-color:#00b0ff !important}.light-blue--text.text--accent-3{color:#00b0ff !important}.light-blue.accent-4{background-color:#0091ea !important;border-color:#0091ea !important}.light-blue.accent-4--after:after{background-color:#0091ea !important}.light-blue--text.text--accent-4{color:#0091ea !important}.cyan{background-color:#00bcd4 !important;border-color:#00bcd4 !important}.cyan--text{color:#00bcd4 !important}.cyan--after:after{background:#00bcd4 !important}.cyan.lighten-5{background-color:#e0f7fa !important;border-color:#e0f7fa !important}.cyan.lighten-5--after:after{background-color:#e0f7fa !important}.cyan--text.text--lighten-5{color:#e0f7fa !important}.cyan.lighten-4{background-color:#b2ebf2 !important;border-color:#b2ebf2 !important}.cyan.lighten-4--after:after{background-color:#b2ebf2 !important}.cyan--text.text--lighten-4{color:#b2ebf2 !important}.cyan.lighten-3{background-color:#80deea !important;border-color:#80deea !important}.cyan.lighten-3--after:after{background-color:#80deea !important}.cyan--text.text--lighten-3{color:#80deea !important}.cyan.lighten-2{background-color:#4dd0e1 !important;border-color:#4dd0e1 !important}.cyan.lighten-2--after:after{background-color:#4dd0e1 !important}.cyan--text.text--lighten-2{color:#4dd0e1 !important}.cyan.lighten-1{background-color:#26c6da !important;border-color:#26c6da !important}.cyan.lighten-1--after:after{background-color:#26c6da !important}.cyan--text.text--lighten-1{color:#26c6da !important}.cyan.darken-1{background-color:#00acc1 !important;border-color:#00acc1 !important}.cyan.darken-1--after:after{background-color:#00acc1 !important}.cyan--text.text--darken-1{color:#00acc1 !important}.cyan.darken-2{background-color:#0097a7 !important;border-color:#0097a7 !important}.cyan.darken-2--after:after{background-color:#0097a7 !important}.cyan--text.text--darken-2{color:#0097a7 !important}.cyan.darken-3{background-color:#00838f !important;border-color:#00838f !important}.cyan.darken-3--after:after{background-color:#00838f !important}.cyan--text.text--darken-3{color:#00838f !important}.cyan.darken-4{background-color:#006064 !important;border-color:#006064 !important}.cyan.darken-4--after:after{background-color:#006064 !important}.cyan--text.text--darken-4{color:#006064 !important}.cyan.accent-1{background-color:#84ffff !important;border-color:#84ffff !important}.cyan.accent-1--after:after{background-color:#84ffff !important}.cyan--text.text--accent-1{color:#84ffff !important}.cyan.accent-2{background-color:#18ffff !important;border-color:#18ffff !important}.cyan.accent-2--after:after{background-color:#18ffff !important}.cyan--text.text--accent-2{color:#18ffff !important}.cyan.accent-3{background-color:#00e5ff !important;border-color:#00e5ff !important}.cyan.accent-3--after:after{background-color:#00e5ff !important}.cyan--text.text--accent-3{color:#00e5ff !important}.cyan.accent-4{background-color:#00b8d4 !important;border-color:#00b8d4 !important}.cyan.accent-4--after:after{background-color:#00b8d4 !important}.cyan--text.text--accent-4{color:#00b8d4 !important}.teal{background-color:#009688 !important;border-color:#009688 !important}.teal--text{color:#009688 !important}.teal--after:after{background:#009688 !important}.teal.lighten-5{background-color:#e0f2f1 !important;border-color:#e0f2f1 !important}.teal.lighten-5--after:after{background-color:#e0f2f1 !important}.teal--text.text--lighten-5{color:#e0f2f1 !important}.teal.lighten-4{background-color:#b2dfdb !important;border-color:#b2dfdb !important}.teal.lighten-4--after:after{background-color:#b2dfdb !important}.teal--text.text--lighten-4{color:#b2dfdb !important}.teal.lighten-3{background-color:#80cbc4 !important;border-color:#80cbc4 !important}.teal.lighten-3--after:after{background-color:#80cbc4 !important}.teal--text.text--lighten-3{color:#80cbc4 !important}.teal.lighten-2{background-color:#4db6ac !important;border-color:#4db6ac !important}.teal.lighten-2--after:after{background-color:#4db6ac !important}.teal--text.text--lighten-2{color:#4db6ac !important}.teal.lighten-1{background-color:#26a69a !important;border-color:#26a69a !important}.teal.lighten-1--after:after{background-color:#26a69a !important}.teal--text.text--lighten-1{color:#26a69a !important}.teal.darken-1{background-color:#00897b !important;border-color:#00897b !important}.teal.darken-1--after:after{background-color:#00897b !important}.teal--text.text--darken-1{color:#00897b !important}.teal.darken-2{background-color:#00796b !important;border-color:#00796b !important}.teal.darken-2--after:after{background-color:#00796b !important}.teal--text.text--darken-2{color:#00796b !important}.teal.darken-3{background-color:#00695c !important;border-color:#00695c !important}.teal.darken-3--after:after{background-color:#00695c !important}.teal--text.text--darken-3{color:#00695c !important}.teal.darken-4{background-color:#004d40 !important;border-color:#004d40 !important}.teal.darken-4--after:after{background-color:#004d40 !important}.teal--text.text--darken-4{color:#004d40 !important}.teal.accent-1{background-color:#a7ffeb !important;border-color:#a7ffeb !important}.teal.accent-1--after:after{background-color:#a7ffeb !important}.teal--text.text--accent-1{color:#a7ffeb !important}.teal.accent-2{background-color:#64ffda !important;border-color:#64ffda !important}.teal.accent-2--after:after{background-color:#64ffda !important}.teal--text.text--accent-2{color:#64ffda !important}.teal.accent-3{background-color:#1de9b6 !important;border-color:#1de9b6 !important}.teal.accent-3--after:after{background-color:#1de9b6 !important}.teal--text.text--accent-3{color:#1de9b6 !important}.teal.accent-4{background-color:#00bfa5 !important;border-color:#00bfa5 !important}.teal.accent-4--after:after{background-color:#00bfa5 !important}.teal--text.text--accent-4{color:#00bfa5 !important}.green{background-color:#4caf50 !important;border-color:#4caf50 !important}.green--text{color:#4caf50 !important}.green--after:after{background:#4caf50 !important}.green.lighten-5{background-color:#e8f5e9 !important;border-color:#e8f5e9 !important}.green.lighten-5--after:after{background-color:#e8f5e9 !important}.green--text.text--lighten-5{color:#e8f5e9 !important}.green.lighten-4{background-color:#c8e6c9 !important;border-color:#c8e6c9 !important}.green.lighten-4--after:after{background-color:#c8e6c9 !important}.green--text.text--lighten-4{color:#c8e6c9 !important}.green.lighten-3{background-color:#a5d6a7 !important;border-color:#a5d6a7 !important}.green.lighten-3--after:after{background-color:#a5d6a7 !important}.green--text.text--lighten-3{color:#a5d6a7 !important}.green.lighten-2{background-color:#81c784 !important;border-color:#81c784 !important}.green.lighten-2--after:after{background-color:#81c784 !important}.green--text.text--lighten-2{color:#81c784 !important}.green.lighten-1{background-color:#66bb6a !important;border-color:#66bb6a !important}.green.lighten-1--after:after{background-color:#66bb6a !important}.green--text.text--lighten-1{color:#66bb6a !important}.green.darken-1{background-color:#43a047 !important;border-color:#43a047 !important}.green.darken-1--after:after{background-color:#43a047 !important}.green--text.text--darken-1{color:#43a047 !important}.green.darken-2{background-color:#388e3c !important;border-color:#388e3c !important}.green.darken-2--after:after{background-color:#388e3c !important}.green--text.text--darken-2{color:#388e3c !important}.green.darken-3{background-color:#2e7d32 !important;border-color:#2e7d32 !important}.green.darken-3--after:after{background-color:#2e7d32 !important}.green--text.text--darken-3{color:#2e7d32 !important}.green.darken-4{background-color:#1b5e20 !important;border-color:#1b5e20 !important}.green.darken-4--after:after{background-color:#1b5e20 !important}.green--text.text--darken-4{color:#1b5e20 !important}.green.accent-1{background-color:#b9f6ca !important;border-color:#b9f6ca !important}.green.accent-1--after:after{background-color:#b9f6ca !important}.green--text.text--accent-1{color:#b9f6ca !important}.green.accent-2{background-color:#69f0ae !important;border-color:#69f0ae !important}.green.accent-2--after:after{background-color:#69f0ae !important}.green--text.text--accent-2{color:#69f0ae !important}.green.accent-3{background-color:#00e676 !important;border-color:#00e676 !important}.green.accent-3--after:after{background-color:#00e676 !important}.green--text.text--accent-3{color:#00e676 !important}.green.accent-4{background-color:#00c853 !important;border-color:#00c853 !important}.green.accent-4--after:after{background-color:#00c853 !important}.green--text.text--accent-4{color:#00c853 !important}.light-green{background-color:#8bc34a !important;border-color:#8bc34a !important}.light-green--text{color:#8bc34a !important}.light-green--after:after{background:#8bc34a !important}.light-green.lighten-5{background-color:#f1f8e9 !important;border-color:#f1f8e9 !important}.light-green.lighten-5--after:after{background-color:#f1f8e9 !important}.light-green--text.text--lighten-5{color:#f1f8e9 !important}.light-green.lighten-4{background-color:#dcedc8 !important;border-color:#dcedc8 !important}.light-green.lighten-4--after:after{background-color:#dcedc8 !important}.light-green--text.text--lighten-4{color:#dcedc8 !important}.light-green.lighten-3{background-color:#c5e1a5 !important;border-color:#c5e1a5 !important}.light-green.lighten-3--after:after{background-color:#c5e1a5 !important}.light-green--text.text--lighten-3{color:#c5e1a5 !important}.light-green.lighten-2{background-color:#aed581 !important;border-color:#aed581 !important}.light-green.lighten-2--after:after{background-color:#aed581 !important}.light-green--text.text--lighten-2{color:#aed581 !important}.light-green.lighten-1{background-color:#9ccc65 !important;border-color:#9ccc65 !important}.light-green.lighten-1--after:after{background-color:#9ccc65 !important}.light-green--text.text--lighten-1{color:#9ccc65 !important}.light-green.darken-1{background-color:#7cb342 !important;border-color:#7cb342 !important}.light-green.darken-1--after:after{background-color:#7cb342 !important}.light-green--text.text--darken-1{color:#7cb342 !important}.light-green.darken-2{background-color:#689f38 !important;border-color:#689f38 !important}.light-green.darken-2--after:after{background-color:#689f38 !important}.light-green--text.text--darken-2{color:#689f38 !important}.light-green.darken-3{background-color:#558b2f !important;border-color:#558b2f !important}.light-green.darken-3--after:after{background-color:#558b2f !important}.light-green--text.text--darken-3{color:#558b2f !important}.light-green.darken-4{background-color:#33691e !important;border-color:#33691e !important}.light-green.darken-4--after:after{background-color:#33691e !important}.light-green--text.text--darken-4{color:#33691e !important}.light-green.accent-1{background-color:#ccff90 !important;border-color:#ccff90 !important}.light-green.accent-1--after:after{background-color:#ccff90 !important}.light-green--text.text--accent-1{color:#ccff90 !important}.light-green.accent-2{background-color:#b2ff59 !important;border-color:#b2ff59 !important}.light-green.accent-2--after:after{background-color:#b2ff59 !important}.light-green--text.text--accent-2{color:#b2ff59 !important}.light-green.accent-3{background-color:#76ff03 !important;border-color:#76ff03 !important}.light-green.accent-3--after:after{background-color:#76ff03 !important}.light-green--text.text--accent-3{color:#76ff03 !important}.light-green.accent-4{background-color:#64dd17 !important;border-color:#64dd17 !important}.light-green.accent-4--after:after{background-color:#64dd17 !important}.light-green--text.text--accent-4{color:#64dd17 !important}.lime{background-color:#cddc39 !important;border-color:#cddc39 !important}.lime--text{color:#cddc39 !important}.lime--after:after{background:#cddc39 !important}.lime.lighten-5{background-color:#f9fbe7 !important;border-color:#f9fbe7 !important}.lime.lighten-5--after:after{background-color:#f9fbe7 !important}.lime--text.text--lighten-5{color:#f9fbe7 !important}.lime.lighten-4{background-color:#f0f4c3 !important;border-color:#f0f4c3 !important}.lime.lighten-4--after:after{background-color:#f0f4c3 !important}.lime--text.text--lighten-4{color:#f0f4c3 !important}.lime.lighten-3{background-color:#e6ee9c !important;border-color:#e6ee9c !important}.lime.lighten-3--after:after{background-color:#e6ee9c !important}.lime--text.text--lighten-3{color:#e6ee9c !important}.lime.lighten-2{background-color:#dce775 !important;border-color:#dce775 !important}.lime.lighten-2--after:after{background-color:#dce775 !important}.lime--text.text--lighten-2{color:#dce775 !important}.lime.lighten-1{background-color:#d4e157 !important;border-color:#d4e157 !important}.lime.lighten-1--after:after{background-color:#d4e157 !important}.lime--text.text--lighten-1{color:#d4e157 !important}.lime.darken-1{background-color:#c0ca33 !important;border-color:#c0ca33 !important}.lime.darken-1--after:after{background-color:#c0ca33 !important}.lime--text.text--darken-1{color:#c0ca33 !important}.lime.darken-2{background-color:#afb42b !important;border-color:#afb42b !important}.lime.darken-2--after:after{background-color:#afb42b !important}.lime--text.text--darken-2{color:#afb42b !important}.lime.darken-3{background-color:#9e9d24 !important;border-color:#9e9d24 !important}.lime.darken-3--after:after{background-color:#9e9d24 !important}.lime--text.text--darken-3{color:#9e9d24 !important}.lime.darken-4{background-color:#827717 !important;border-color:#827717 !important}.lime.darken-4--after:after{background-color:#827717 !important}.lime--text.text--darken-4{color:#827717 !important}.lime.accent-1{background-color:#f4ff81 !important;border-color:#f4ff81 !important}.lime.accent-1--after:after{background-color:#f4ff81 !important}.lime--text.text--accent-1{color:#f4ff81 !important}.lime.accent-2{background-color:#eeff41 !important;border-color:#eeff41 !important}.lime.accent-2--after:after{background-color:#eeff41 !important}.lime--text.text--accent-2{color:#eeff41 !important}.lime.accent-3{background-color:#c6ff00 !important;border-color:#c6ff00 !important}.lime.accent-3--after:after{background-color:#c6ff00 !important}.lime--text.text--accent-3{color:#c6ff00 !important}.lime.accent-4{background-color:#aeea00 !important;border-color:#aeea00 !important}.lime.accent-4--after:after{background-color:#aeea00 !important}.lime--text.text--accent-4{color:#aeea00 !important}.yellow{background-color:#ffeb3b !important;border-color:#ffeb3b !important}.yellow--text{color:#ffeb3b !important}.yellow--after:after{background:#ffeb3b !important}.yellow.lighten-5{background-color:#fffde7 !important;border-color:#fffde7 !important}.yellow.lighten-5--after:after{background-color:#fffde7 !important}.yellow--text.text--lighten-5{color:#fffde7 !important}.yellow.lighten-4{background-color:#fff9c4 !important;border-color:#fff9c4 !important}.yellow.lighten-4--after:after{background-color:#fff9c4 !important}.yellow--text.text--lighten-4{color:#fff9c4 !important}.yellow.lighten-3{background-color:#fff59d !important;border-color:#fff59d !important}.yellow.lighten-3--after:after{background-color:#fff59d !important}.yellow--text.text--lighten-3{color:#fff59d !important}.yellow.lighten-2{background-color:#fff176 !important;border-color:#fff176 !important}.yellow.lighten-2--after:after{background-color:#fff176 !important}.yellow--text.text--lighten-2{color:#fff176 !important}.yellow.lighten-1{background-color:#ffee58 !important;border-color:#ffee58 !important}.yellow.lighten-1--after:after{background-color:#ffee58 !important}.yellow--text.text--lighten-1{color:#ffee58 !important}.yellow.darken-1{background-color:#fdd835 !important;border-color:#fdd835 !important}.yellow.darken-1--after:after{background-color:#fdd835 !important}.yellow--text.text--darken-1{color:#fdd835 !important}.yellow.darken-2{background-color:#fbc02d !important;border-color:#fbc02d !important}.yellow.darken-2--after:after{background-color:#fbc02d !important}.yellow--text.text--darken-2{color:#fbc02d !important}.yellow.darken-3{background-color:#f9a825 !important;border-color:#f9a825 !important}.yellow.darken-3--after:after{background-color:#f9a825 !important}.yellow--text.text--darken-3{color:#f9a825 !important}.yellow.darken-4{background-color:#f57f17 !important;border-color:#f57f17 !important}.yellow.darken-4--after:after{background-color:#f57f17 !important}.yellow--text.text--darken-4{color:#f57f17 !important}.yellow.accent-1{background-color:#ffff8d !important;border-color:#ffff8d !important}.yellow.accent-1--after:after{background-color:#ffff8d !important}.yellow--text.text--accent-1{color:#ffff8d !important}.yellow.accent-2{background-color:#ff0 !important;border-color:#ff0 !important}.yellow.accent-2--after:after{background-color:#ff0 !important}.yellow--text.text--accent-2{color:#ff0 !important}.yellow.accent-3{background-color:#ffea00 !important;border-color:#ffea00 !important}.yellow.accent-3--after:after{background-color:#ffea00 !important}.yellow--text.text--accent-3{color:#ffea00 !important}.yellow.accent-4{background-color:#ffd600 !important;border-color:#ffd600 !important}.yellow.accent-4--after:after{background-color:#ffd600 !important}.yellow--text.text--accent-4{color:#ffd600 !important}.amber{background-color:#ffc107 !important;border-color:#ffc107 !important}.amber--text{color:#ffc107 !important}.amber--after:after{background:#ffc107 !important}.amber.lighten-5{background-color:#fff8e1 !important;border-color:#fff8e1 !important}.amber.lighten-5--after:after{background-color:#fff8e1 !important}.amber--text.text--lighten-5{color:#fff8e1 !important}.amber.lighten-4{background-color:#ffecb3 !important;border-color:#ffecb3 !important}.amber.lighten-4--after:after{background-color:#ffecb3 !important}.amber--text.text--lighten-4{color:#ffecb3 !important}.amber.lighten-3{background-color:#ffe082 !important;border-color:#ffe082 !important}.amber.lighten-3--after:after{background-color:#ffe082 !important}.amber--text.text--lighten-3{color:#ffe082 !important}.amber.lighten-2{background-color:#ffd54f !important;border-color:#ffd54f !important}.amber.lighten-2--after:after{background-color:#ffd54f !important}.amber--text.text--lighten-2{color:#ffd54f !important}.amber.lighten-1{background-color:#ffca28 !important;border-color:#ffca28 !important}.amber.lighten-1--after:after{background-color:#ffca28 !important}.amber--text.text--lighten-1{color:#ffca28 !important}.amber.darken-1{background-color:#ffb300 !important;border-color:#ffb300 !important}.amber.darken-1--after:after{background-color:#ffb300 !important}.amber--text.text--darken-1{color:#ffb300 !important}.amber.darken-2{background-color:#ffa000 !important;border-color:#ffa000 !important}.amber.darken-2--after:after{background-color:#ffa000 !important}.amber--text.text--darken-2{color:#ffa000 !important}.amber.darken-3{background-color:#ff8f00 !important;border-color:#ff8f00 !important}.amber.darken-3--after:after{background-color:#ff8f00 !important}.amber--text.text--darken-3{color:#ff8f00 !important}.amber.darken-4{background-color:#ff6f00 !important;border-color:#ff6f00 !important}.amber.darken-4--after:after{background-color:#ff6f00 !important}.amber--text.text--darken-4{color:#ff6f00 !important}.amber.accent-1{background-color:#ffe57f !important;border-color:#ffe57f !important}.amber.accent-1--after:after{background-color:#ffe57f !important}.amber--text.text--accent-1{color:#ffe57f !important}.amber.accent-2{background-color:#ffd740 !important;border-color:#ffd740 !important}.amber.accent-2--after:after{background-color:#ffd740 !important}.amber--text.text--accent-2{color:#ffd740 !important}.amber.accent-3{background-color:#ffc400 !important;border-color:#ffc400 !important}.amber.accent-3--after:after{background-color:#ffc400 !important}.amber--text.text--accent-3{color:#ffc400 !important}.amber.accent-4{background-color:#ffab00 !important;border-color:#ffab00 !important}.amber.accent-4--after:after{background-color:#ffab00 !important}.amber--text.text--accent-4{color:#ffab00 !important}.orange{background-color:#ff9800 !important;border-color:#ff9800 !important}.orange--text{color:#ff9800 !important}.orange--after:after{background:#ff9800 !important}.orange.lighten-5{background-color:#fff3e0 !important;border-color:#fff3e0 !important}.orange.lighten-5--after:after{background-color:#fff3e0 !important}.orange--text.text--lighten-5{color:#fff3e0 !important}.orange.lighten-4{background-color:#ffe0b2 !important;border-color:#ffe0b2 !important}.orange.lighten-4--after:after{background-color:#ffe0b2 !important}.orange--text.text--lighten-4{color:#ffe0b2 !important}.orange.lighten-3{background-color:#ffcc80 !important;border-color:#ffcc80 !important}.orange.lighten-3--after:after{background-color:#ffcc80 !important}.orange--text.text--lighten-3{color:#ffcc80 !important}.orange.lighten-2{background-color:#ffb74d !important;border-color:#ffb74d !important}.orange.lighten-2--after:after{background-color:#ffb74d !important}.orange--text.text--lighten-2{color:#ffb74d !important}.orange.lighten-1{background-color:#ffa726 !important;border-color:#ffa726 !important}.orange.lighten-1--after:after{background-color:#ffa726 !important}.orange--text.text--lighten-1{color:#ffa726 !important}.orange.darken-1{background-color:#fb8c00 !important;border-color:#fb8c00 !important}.orange.darken-1--after:after{background-color:#fb8c00 !important}.orange--text.text--darken-1{color:#fb8c00 !important}.orange.darken-2{background-color:#f57c00 !important;border-color:#f57c00 !important}.orange.darken-2--after:after{background-color:#f57c00 !important}.orange--text.text--darken-2{color:#f57c00 !important}.orange.darken-3{background-color:#ef6c00 !important;border-color:#ef6c00 !important}.orange.darken-3--after:after{background-color:#ef6c00 !important}.orange--text.text--darken-3{color:#ef6c00 !important}.orange.darken-4{background-color:#e65100 !important;border-color:#e65100 !important}.orange.darken-4--after:after{background-color:#e65100 !important}.orange--text.text--darken-4{color:#e65100 !important}.orange.accent-1{background-color:#ffd180 !important;border-color:#ffd180 !important}.orange.accent-1--after:after{background-color:#ffd180 !important}.orange--text.text--accent-1{color:#ffd180 !important}.orange.accent-2{background-color:#ffab40 !important;border-color:#ffab40 !important}.orange.accent-2--after:after{background-color:#ffab40 !important}.orange--text.text--accent-2{color:#ffab40 !important}.orange.accent-3{background-color:#ff9100 !important;border-color:#ff9100 !important}.orange.accent-3--after:after{background-color:#ff9100 !important}.orange--text.text--accent-3{color:#ff9100 !important}.orange.accent-4{background-color:#ff6d00 !important;border-color:#ff6d00 !important}.orange.accent-4--after:after{background-color:#ff6d00 !important}.orange--text.text--accent-4{color:#ff6d00 !important}.deep-orange{background-color:#ff5722 !important;border-color:#ff5722 !important}.deep-orange--text{color:#ff5722 !important}.deep-orange--after:after{background:#ff5722 !important}.deep-orange.lighten-5{background-color:#fbe9e7 !important;border-color:#fbe9e7 !important}.deep-orange.lighten-5--after:after{background-color:#fbe9e7 !important}.deep-orange--text.text--lighten-5{color:#fbe9e7 !important}.deep-orange.lighten-4{background-color:#ffccbc !important;border-color:#ffccbc !important}.deep-orange.lighten-4--after:after{background-color:#ffccbc !important}.deep-orange--text.text--lighten-4{color:#ffccbc !important}.deep-orange.lighten-3{background-color:#ffab91 !important;border-color:#ffab91 !important}.deep-orange.lighten-3--after:after{background-color:#ffab91 !important}.deep-orange--text.text--lighten-3{color:#ffab91 !important}.deep-orange.lighten-2{background-color:#ff8a65 !important;border-color:#ff8a65 !important}.deep-orange.lighten-2--after:after{background-color:#ff8a65 !important}.deep-orange--text.text--lighten-2{color:#ff8a65 !important}.deep-orange.lighten-1{background-color:#ff7043 !important;border-color:#ff7043 !important}.deep-orange.lighten-1--after:after{background-color:#ff7043 !important}.deep-orange--text.text--lighten-1{color:#ff7043 !important}.deep-orange.darken-1{background-color:#f4511e !important;border-color:#f4511e !important}.deep-orange.darken-1--after:after{background-color:#f4511e !important}.deep-orange--text.text--darken-1{color:#f4511e !important}.deep-orange.darken-2{background-color:#e64a19 !important;border-color:#e64a19 !important}.deep-orange.darken-2--after:after{background-color:#e64a19 !important}.deep-orange--text.text--darken-2{color:#e64a19 !important}.deep-orange.darken-3{background-color:#d84315 !important;border-color:#d84315 !important}.deep-orange.darken-3--after:after{background-color:#d84315 !important}.deep-orange--text.text--darken-3{color:#d84315 !important}.deep-orange.darken-4{background-color:#bf360c !important;border-color:#bf360c !important}.deep-orange.darken-4--after:after{background-color:#bf360c !important}.deep-orange--text.text--darken-4{color:#bf360c !important}.deep-orange.accent-1{background-color:#ff9e80 !important;border-color:#ff9e80 !important}.deep-orange.accent-1--after:after{background-color:#ff9e80 !important}.deep-orange--text.text--accent-1{color:#ff9e80 !important}.deep-orange.accent-2{background-color:#ff6e40 !important;border-color:#ff6e40 !important}.deep-orange.accent-2--after:after{background-color:#ff6e40 !important}.deep-orange--text.text--accent-2{color:#ff6e40 !important}.deep-orange.accent-3{background-color:#ff3d00 !important;border-color:#ff3d00 !important}.deep-orange.accent-3--after:after{background-color:#ff3d00 !important}.deep-orange--text.text--accent-3{color:#ff3d00 !important}.deep-orange.accent-4{background-color:#dd2c00 !important;border-color:#dd2c00 !important}.deep-orange.accent-4--after:after{background-color:#dd2c00 !important}.deep-orange--text.text--accent-4{color:#dd2c00 !important}.brown{background-color:#795548 !important;border-color:#795548 !important}.brown--text{color:#795548 !important}.brown--after:after{background:#795548 !important}.brown.lighten-5{background-color:#efebe9 !important;border-color:#efebe9 !important}.brown.lighten-5--after:after{background-color:#efebe9 !important}.brown--text.text--lighten-5{color:#efebe9 !important}.brown.lighten-4{background-color:#d7ccc8 !important;border-color:#d7ccc8 !important}.brown.lighten-4--after:after{background-color:#d7ccc8 !important}.brown--text.text--lighten-4{color:#d7ccc8 !important}.brown.lighten-3{background-color:#bcaaa4 !important;border-color:#bcaaa4 !important}.brown.lighten-3--after:after{background-color:#bcaaa4 !important}.brown--text.text--lighten-3{color:#bcaaa4 !important}.brown.lighten-2{background-color:#a1887f !important;border-color:#a1887f !important}.brown.lighten-2--after:after{background-color:#a1887f !important}.brown--text.text--lighten-2{color:#a1887f !important}.brown.lighten-1{background-color:#8d6e63 !important;border-color:#8d6e63 !important}.brown.lighten-1--after:after{background-color:#8d6e63 !important}.brown--text.text--lighten-1{color:#8d6e63 !important}.brown.darken-1{background-color:#6d4c41 !important;border-color:#6d4c41 !important}.brown.darken-1--after:after{background-color:#6d4c41 !important}.brown--text.text--darken-1{color:#6d4c41 !important}.brown.darken-2{background-color:#5d4037 !important;border-color:#5d4037 !important}.brown.darken-2--after:after{background-color:#5d4037 !important}.brown--text.text--darken-2{color:#5d4037 !important}.brown.darken-3{background-color:#4e342e !important;border-color:#4e342e !important}.brown.darken-3--after:after{background-color:#4e342e !important}.brown--text.text--darken-3{color:#4e342e !important}.brown.darken-4{background-color:#3e2723 !important;border-color:#3e2723 !important}.brown.darken-4--after:after{background-color:#3e2723 !important}.brown--text.text--darken-4{color:#3e2723 !important}.blue-grey{background-color:#607d8b !important;border-color:#607d8b !important}.blue-grey--text{color:#607d8b !important}.blue-grey--after:after{background:#607d8b !important}.blue-grey.lighten-5{background-color:#eceff1 !important;border-color:#eceff1 !important}.blue-grey.lighten-5--after:after{background-color:#eceff1 !important}.blue-grey--text.text--lighten-5{color:#eceff1 !important}.blue-grey.lighten-4{background-color:#cfd8dc !important;border-color:#cfd8dc !important}.blue-grey.lighten-4--after:after{background-color:#cfd8dc !important}.blue-grey--text.text--lighten-4{color:#cfd8dc !important}.blue-grey.lighten-3{background-color:#b0bec5 !important;border-color:#b0bec5 !important}.blue-grey.lighten-3--after:after{background-color:#b0bec5 !important}.blue-grey--text.text--lighten-3{color:#b0bec5 !important}.blue-grey.lighten-2{background-color:#90a4ae !important;border-color:#90a4ae !important}.blue-grey.lighten-2--after:after{background-color:#90a4ae !important}.blue-grey--text.text--lighten-2{color:#90a4ae !important}.blue-grey.lighten-1{background-color:#78909c !important;border-color:#78909c !important}.blue-grey.lighten-1--after:after{background-color:#78909c !important}.blue-grey--text.text--lighten-1{color:#78909c !important}.blue-grey.darken-1{background-color:#546e7a !important;border-color:#546e7a !important}.blue-grey.darken-1--after:after{background-color:#546e7a !important}.blue-grey--text.text--darken-1{color:#546e7a !important}.blue-grey.darken-2{background-color:#455a64 !important;border-color:#455a64 !important}.blue-grey.darken-2--after:after{background-color:#455a64 !important}.blue-grey--text.text--darken-2{color:#455a64 !important}.blue-grey.darken-3{background-color:#37474f !important;border-color:#37474f !important}.blue-grey.darken-3--after:after{background-color:#37474f !important}.blue-grey--text.text--darken-3{color:#37474f !important}.blue-grey.darken-4{background-color:#263238 !important;border-color:#263238 !important}.blue-grey.darken-4--after:after{background-color:#263238 !important}.blue-grey--text.text--darken-4{color:#263238 !important}.grey{background-color:#9e9e9e !important;border-color:#9e9e9e !important}.grey--text{color:#9e9e9e !important}.grey--after:after{background:#9e9e9e !important}.grey.lighten-5{background-color:#fafafa !important;border-color:#fafafa !important}.grey.lighten-5--after:after{background-color:#fafafa !important}.grey--text.text--lighten-5{color:#fafafa !important}.grey.lighten-4{background-color:#f5f5f5 !important;border-color:#f5f5f5 !important}.grey.lighten-4--after:after{background-color:#f5f5f5 !important}.grey--text.text--lighten-4{color:#f5f5f5 !important}.grey.lighten-3{background-color:#eee !important;border-color:#eee !important}.grey.lighten-3--after:after{background-color:#eee !important}.grey--text.text--lighten-3{color:#eee !important}.grey.lighten-2{background-color:#e0e0e0 !important;border-color:#e0e0e0 !important}.grey.lighten-2--after:after{background-color:#e0e0e0 !important}.grey--text.text--lighten-2{color:#e0e0e0 !important}.grey.lighten-1{background-color:#bdbdbd !important;border-color:#bdbdbd !important}.grey.lighten-1--after:after{background-color:#bdbdbd !important}.grey--text.text--lighten-1{color:#bdbdbd !important}.grey.darken-1{background-color:#757575 !important;border-color:#757575 !important}.grey.darken-1--after:after{background-color:#757575 !important}.grey--text.text--darken-1{color:#757575 !important}.grey.darken-2{background-color:#616161 !important;border-color:#616161 !important}.grey.darken-2--after:after{background-color:#616161 !important}.grey--text.text--darken-2{color:#616161 !important}.grey.darken-3{background-color:#424242 !important;border-color:#424242 !important}.grey.darken-3--after:after{background-color:#424242 !important}.grey--text.text--darken-3{color:#424242 !important}.grey.darken-4{background-color:#212121 !important;border-color:#212121 !important}.grey.darken-4--after:after{background-color:#212121 !important}.grey--text.text--darken-4{color:#212121 !important}.shades.black{background-color:#000 !important;border-color:#000 !important}.shades.black--after:after{background-color:#000 !important}.shades--text.text--black{color:#000 !important}.shades.white{background-color:#fff !important;border-color:#fff !important}.shades.white--after:after{background-color:#fff !important}.shades--text.text--white{color:#fff !important}.shades.transparent{background-color:transparent !important;border-color:transparent !important}.shades.transparent--after:after{background-color:transparent !important}.shades--text.text--transparent{color:transparent !important}.shift-enter{transform:translate3d(100%,0,0)}.shift-leave,.shift-leave-active{position:absolute;top:0;transform:translate3d(-100%,0,0)}.reverse.shift-enter{transform:translate3d(-100%,0,0)}.reverse.shift-leave,.reverse.shift-leave-active{position:absolute;top:0;transform:translate3d(100%,0,0)}.z-depth-0{box-shadow:none !important}.z-depth-1,.btn--raised,.btn--raised:disabled:hover,.card,.collapsible,.dropdown,.navbar,.pagination__item,.pagination__navigation,.slider,.toast__content,[data-tooltip]:after{box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)}.z-depth-1-half,.btn--raised:hover,.pagination a:hover,.pagination__item--active{box-shadow:0 5px 11px 0 rgba(0,0,0,0.18),0 4px 15px 0 rgba(0,0,0,0.15)}.z-depth-2,.sidebar{box-shadow:0 8px 17px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19)}.z-depth-3,.modal{box-shadow:0 12px 15px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19)}.z-depth-4{box-shadow:0 16px 28px 0 rgba(0,0,0,0.22),0 25px 55px 0 rgba(0,0,0,0.21)}.z-depth-5{box-shadow:0 27px 24px 0 rgba(0,0,0,0.2),0 40px 77px 0 rgba(0,0,0,0.22)}code{background:#9e9e9e;color:#bd4147;display:inline-block;background-color:#f5f5f5;border-radius:3px;white-space:pre-wrap;font-size:85%;font-weight:100 !important;font-weight:900 !important;}code:after,code:before{content:"\00a0";letter-spacing:-1px}html{font-size:14px;line-height:20px;color:#424242;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body{background:#fff;overflow-x:hidden;font-family:'Roboto',san-serif}main{display:flex;flex:1}header{width:100%}a{color:#2196f3}h1{color:#424242;font-size:7rem;font-weight:300;line-height:110%;margin-bottom:1rem;}@media screen and (max-width:48rem){h1{font-size:4.2rem}}h2{color:#424242;font-size:3.5rem;font-weight:400;line-height:110%;margin-bottom:1rem;}@media screen and (max-width:48rem){h2{font-size:2.1rem}}h3{color:#424242;font-size:3rem;font-weight:400;line-height:110%;margin-bottom:1rem;}@media screen and (max-width:48rem){h3{font-size:1.8rem}}h4{color:#424242;font-size:2.5rem;font-weight:400;line-height:110%;margin-bottom:1rem;}@media screen and (max-width:48rem){h4{font-size:1.5rem}}h5{color:#424242;font-size:2rem;font-weight:400;line-height:110%;margin-bottom:1rem;}@media screen and (max-width:48rem){h5{font-size:1.2rem}}h6{color:#424242;font-size:1.5rem;font-weight:500;line-height:110%;margin-bottom:1rem;}@media screen and (max-width:48rem){h6{font-size:.8999999999999999rem}}p{margin-bottom:1rem}.alert{border-radius:0;border-width:4px 0 0 0;border-style:solid;border-color:rgba(0,0,0,0.8);color:inherit;display:flex;font-size:1.1rem;text-align:left;padding:1.5rem;position:relative;margin:.25rem auto;}.alert__icon,.alert__dismissible{align-self:center;margin-right:1.5rem;margin-bottom:4px;font-size:2rem;color:rgba(0,0,0,0.3)}.alert__dismissible{margin-right:0;margin-left:1.5rem;transition:all .3s cubic-bezier(0,0,.2,1);align-self:flex-start;text-decoration:none;}.alert__dismissible:hover{color:rgba(26,26,26,0.3)}.alert > div{width:100%}.alert--info{color:#fff;background-color:#2196f3;border-color:rgba(0,0,0,0.2)}.alert--error{color:#fff;background-color:#f44336;border-color:rgba(0,0,0,0.2)}.alert--success{color:#fff;background-color:#4caf50;border-color:rgba(0,0,0,0.2)}.alert--warning{color:#fff;background-color:#ffc107;border-color:rgba(0,0,0,0.2)}.alert--no-icon .alert__icon{display:none}@media screen and (max-width:48rem){.alert__icon{display:none}}.badge{position:relative;}.badge:after{color:#fff;content:attr(data-badge);display:flex;position:absolute;font-family:'Roboto',san-serif;top:-11px;right:-22px;background-color:#2196f3;border-radius:50%;height:22px;width:22px;font-size:.9rem;justify-content:center;align-items:center;flex-direction:row;flex-wrap:wrap}.badge--overlap.badge--left:after{left:0}.badge--overlap:after{top:0;right:0}.badge--icon:after{font-family:'Material Icons'}.badge--left:after{left:-22px}.breadcrumbs{display:flex;justify-content:space-between;flex-wrap:wrap;flex:0 1 auto;margin:0;list-style-type:none;}.breadcrumbs li:not(:last-child):after{color:#bdbdbd;content:attr(data-divider);vertical-align:middle}.breadcrumbs li:last-child a{color:#bdbdbd;pointer-events:none;cursor:default}.breadcrumbs--with-icons li:not(:last-child):after{font-family:'Material Icons'}.breadcrumbs__item{align-items:center;color:#2196f3;display:inline-flex;font-size:1rem;padding:0 1rem;height:40px;text-decoration:none;line-height:40px;transition:all .3s cubic-bezier(0,0,.2,1);}.breadcrumbs__item:hover{color:#757575}.breadcrumbs__item--disabled{color:#e0e0e0;pointer-events:none}.btn{border:none;border-radius:2px;background:#e0e0e0;color:inherit;display:inline-flex;justify-content:center;align-items:center;font-size:14px;font-weight:500;min-height:36px;line-height:36px;outline:0;padding:0 14px;position:relative;text-decoration:none;text-transform:uppercase;transition:all .2s ease-out;}.btn:focus{outline:none}.btn::-moz-focus-inner{border:0}.btn:disabled{opacity:.5}.btn.primary{color:#fff;}.btn.primary.btn--outline{color:#2196f3}.btn.primary.btn--flat{color:#2196f3;}.btn.primary.btn--flat .ripple__animation{background:#2196f3}.btn.secondary{color:#fff;}.btn.secondary.btn--outline{color:#424242}.btn.secondary.btn--flat{color:#424242;}.btn.secondary.btn--flat .ripple__animation{background:#424242}.btn.info{color:#fff;}.btn.info.btn--outline{color:#2196f3}.btn.info.btn--flat{color:#2196f3;}.btn.info.btn--flat .ripple__animation{background:#2196f3}.btn.warning{color:#fff;}.btn.warning.btn--outline{color:#ffc107}.btn.warning.btn--flat{color:#ffc107;}.btn.warning.btn--flat .ripple__animation{background:#ffc107}.btn.error{color:#fff;}.btn.error.btn--outline{color:#f44336}.btn.error.btn--flat{color:#f44336;}.btn.error.btn--flat .ripple__animation{background:#f44336}.btn.success{color:#fff;}.btn.success.btn--outline{color:#4caf50}.btn.success.btn--flat{color:#4caf50;}.btn.success.btn--flat .ripple__animation{background:#4caf50}.btn--block{display:flex;width:100%}.btn--flat{background-color:transparent !important;border-color:transparent;box-shadow:none;color:currentColor;}.btn--flat:hover:not(:disabled){background-color:rgba(158,158,158,0.2) !important;box-shadow:none}.btn--floating{border-radius:50%;letter-spacing:normal;line-height:36px;min-height:36px;padding:.4rem;}.btn--floating .ripple__container{border-radius:50%}.btn--icon{background:transparent;box-shadow:none;position:relative;border-radius:50%;border-color:transparent;height:auto;width:auto;min-height:initial;padding:0;}.btn--icon i{font-size:21px;padding:.2em}.btn--icon:hover{background:rgba(189,189,189,0.4);box-shadow:none}.btn--large{min-height:3rem;line-height:3rem;padding:0 4rem;}.btn--large.btn--floating{width:4rem;padding:1rem}.btn--large i{font-size:25.2px}.btn--loading{pointer-events:none;}.btn--loading .btn__content{opacity:0}.btn--outline{border:1px solid currentColor;background:transparent !important;box-shadow:none;color:#e0e0e0;}.btn--outline:hover{box-shadow:none}.btn--raised{will-change:box-shadow;}.btn--round{border-radius:2rem}.btn--small{min-height:2rem;line-height:2rem;}.btn--small.btn--floating{width:2rem;padding:0;}.btn--small.btn--floating i{font-size:14.4px}.btn__content{display:flex;justify-content:center;align-items:center;transition:all .3s cubic-bezier(0,0,.2,1);flex:1;letter-spacing:.5px;margin-right:-.5px}.btn__loading{position:absolute;width:100%;height:100%;left:0;top:0;display:flex;justify-content:center;align-items:center}.btn .icon--left{margin-right:1rem;line-height:inherit}.btn .icon--right{margin-left:1rem;line-height:inherit}.btn .progress-circular{height:20px !important}.card{background:#fff;position:relative;display:flex;flex-flow:column nowrap;border-radius:2px;}.card--horizontal{flex-flow:row nowrap;}.card--horizontal > .card__row{flex:0 1 30%}.card__column,.card__row{display:flex;}.card__column:first-child,.card__row:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.card__column:last-child,.card__row:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.card__column{flex:1;flex-flow:column nowrap}.card__row{align-items:center;margin-top:auto;flex:1 1 auto;flex-flow:row nowrap;min-height:4rem;}.card__row--actions{border-top:1px solid rgba(0,0,0,0.1);padding:7px;min-height:2rem;flex:0 0 auto;}.card__row--actions > .btn{padding:0 7px}.card__row--actions > .icon{padding:0 7px}.card__title{font-size:1.5rem;font-weight:400;letter-spacing:.1rem;display:flex;flex:1;align-self:center;align-items:center;padding:14px}.card__text{padding:14px}.chip{background:#e0e0e0;border:1px solid #e0e0e0;border-radius:2rem;display:inline-flex;align-items:center;justify-content:space-between;font-size:.8rem;padding:0 .8rem;min-height:25px;}.chip:active{background:#eee}.chip--label{border-radius:0}.chip--outline{background:transparent !important;color:#9e9e9e}.chip--small{min-height:20px;padding:0 .2rem}.chip__close{color:inherit;display:flex;align-items:center;text-decoration:none;}.chip__close .icon{color:inherit}.chip .icon{font-size:1.2rem;}.chip .icon--left{margin-left:-.6rem;margin-right:1rem}.chip .icon--right{margin-left:1rem;margin-right:-.6rem}.collapsible{background:#fff;text-align:left;list-style-type:none;border-top:1px solid #ddd;border-right:1px solid #ddd;border-left:1px solid #ddd;margin-bottom:1rem;padding:0;}.collapsible li:not(:first-child) .collapsible__header{border-top:1px solid #ddd}.collapsible__header{height:3rem;padding-left:1rem;cursor:pointer;display:flex;align-items:center;}.collapsible__header i{margin-right:1rem}.collapsible__body{background-color:rgba(0,0,0,0.03);transition:all .3s cubic-bezier(0,0,.2,1);overflow:hidden;}.collapsible__body:last-child{border-bottom:1px solid #ddd}.dropdown{list-style-type:none;padding:0;background-color:#fff;position:absolute;width:auto;transform:translateY(-50%) translateX(-50%) scale(0);opacity:.3;transition:all .3s cubic-bezier(0,0,.2,1);white-space:nowrap;z-index:2;}.dropdown--open-from-right{transform:translateY(-50%) translateX(50%) scale(0)}.dropdown--open{opacity:1;transform:translateY(0) translateX(0) scale(1)}.dropdown li{text-align:left}.dropdown__item{text-decoration:none;display:inline-flex;justify-content:space-between;align-items:center;transition:all .2s ease-out;text-transform:none;padding:1rem;width:100%;font-weight:500;font-size:1rem;color:#2196f3;}.dropdown__item:hover{background-color:rgba(0,0,0,0.1)}.icon{display:flex;}.icon span{display:inline-block;overflow:hidden}.icon--large{padding:.6rem;}.icon--large span{font-size:2.5rem}.icon--medium{padding:.3rem;}.icon--medium span{font-size:2rem}.icon--x-large{padding:1rem;}.icon--x-large span{font-size:3rem}.footer{color:#fff;height:3rem;line-height:3rem;position:relative;z-index:4;background:#2196f3;padding:0 1rem}.input-group{position:relative;margin-bottom:1rem;width:100%;}.input-group label{color:#2196f3;position:absolute;top:15px;transition:all .3s cubic-bezier(0,0,.2,1)}.input-group input{border-bottom:1px solid #ddd;height:3rem;width:100%;position:relative;}.input-group input:focus{outline:none}.input-group input[type=radio]{display:none;}.input-group input[type=radio]:disabled + label:before{border-color:#e0e0e0}.input-group input[type=radio]:disabled:checked + label:before{border-color:#e0e0e0}.input-group input[type=radio]:disabled:checked + label:after{background:#e0e0e0}.input-group input[type=radio] + label{padding-left:1.5rem;cursor:pointer;position:relative;top:0;}.input-group input[type=radio] + label:before{content:"";position:absolute;left:0;top:2px;width:1rem;height:1rem;border-radius:50%;border:2px solid #757575;z-index:1;transition:all .2s ease-out}.input-group input[type=radio] + label:after{content:"";position:absolute;left:0;top:2px;width:1rem;height:1rem;transform:scale(0);border-radius:50%;z-index:2;background:transparent;transition:all .2s ease-out}.input-group input[type=radio]:checked + label:before{border:2px solid #424242;background:transparent}.input-group input[type=radio]:checked + label:after{background:#424242;transform:scale(1)}.input-group input[type=radio].gap:checked + label:after{transform:scale(.45)}.input-group input[type=checkbox]{display:none;}.input-group input[type=checkbox]:disabled + label:before{background:#e0e0e0;border-color:#e0e0e0}.input-group input[type=checkbox]:disabled:checked + label:before{background:transparent;border-bottom-color:#e0e0e0;border-right-color:#e0e0e0}.input-group input[type=checkbox] + label{padding-left:1.5rem;cursor:pointer;position:relative;top:0;}.input-group input[type=checkbox] + label:before{content:"";position:absolute;left:0;top:2px;width:1rem;height:1rem;z-index:2;transition:all .2s ease-out;border:2px solid #757575;transform-origin:100% 100%}.input-group input[type=checkbox]:checked + label:before{border-bottom-color:#424242;border-left-color:transparent;border-right-color:#424242;border-top-color:transparent;transform:rotate(40deg);width:.5rem;top:0;left:-2px}.input-group input[type=checkbox].filled + label:before{border-color:transparent;left:-4px}.input-group input[type=checkbox].filled + label:after{content:"";width:1.2rem;height:1.2rem;background:transparent;position:absolute;left:-1.7px;top:1px;border:2px solid #757575;border-radius:.15rem;transition:all .2s ease-out}.input-group input[type=checkbox].filled:checked + label:before{border-bottom:2px solid #fff;border-right:2px solid #fff;top:-1px;left:-1px;transform:rotate(37deg) scale(.8)}.input-group input[type=checkbox].filled:checked + label:after{background:#424242;border-color:#424242}.input-group input[type=checkbox]:indeterminate + label:before{border-right-color:#424242;left:-20px;top:-8px;border-top:0 solid transparent;border-left:0 solid transparent;border-bottom:0 solid transparent;transform:rotate(90deg);width:1.2rem;height:1.2rem}.input-group input[type=checkbox]:indeterminate + label:after{border:none;background:transparent}.input-group select{border-bottom:1px solid #ddd;height:3rem;width:100%;position:relative;}.input-group select:focus{outline:none}.input-group select[multiple]{border:1px solid #ddd;height:10rem;top:9px;margin-bottom:1rem}.input-group:after{content:"";width:0%;height:2px;background-color:#2196f3;position:absolute;bottom:-1px;left:0;transition:all .3s cubic-bezier(0,0,.2,1)}.input-group--focused label,.input-group--dirty label{top:-9px;font-size:.8rem}.input-group--focused:after{width:100%}.list{list-style-type:none;padding:0;margin:0;}.list a{text-decoration:none}.list__item{align-items:center;display:flex;padding:1rem 0;}.list__item-action{display:flex;flex-direction:column;margin-left:2rem;align-items:center}.list__item-action-title{color:#9e9e9e;font-size:.82rem;font-weight:300}.list__item-avatar{align-self:flex-start;color:#fff;margin-right:2rem;border-radius:50%}.list__item-title{display:flex;flex-direction:column;letter-spacing:.05rem;font-weight:500}.list__item-sub-title{color:#757575;font-size:.9rem;font-weight:300;letter-spacing:0}.list__item-icon{color:#9e9e9e;margin-right:2rem}.navbar{background-color:#2196f3;height:5rem;display:flex;flex-wrap:wrap;position:relative;width:100%;}.navbar--fixed{position:fixed;top:0;left:0;z-index:4}.navbar__side-icon{display:inline-flex;align-items:center;margin:0 1rem;}.navbar__side-icon a{color:#fff;display:flex;align-items:center;flex:1;font-size:1rem;text-decoration:none;}.navbar__side-icon a i{font-size:3rem}.navbar__logo{color:#fff;font-size:3rem;flex:1;text-decoration:none;padding:0 2rem;display:flex;align-items:center}.navbar__items{list-style-type:none;padding:0;height:100%;}.navbar__items > li{height:100%;float:left}.navbar__items > a{color:#fff}.navbar__item{align-items:center;color:#fff;display:flex;padding:0 1.2rem;text-decoration:none;transition:all .3s ease-out;height:100%;}.navbar__item i{font-size:2rem}.navbar__item:hover{background:rgba(255,255,255,0.2)}.modal{display:block;position:fixed;top:15%;right:0;left:0;width:800px;max-width:90%;margin:auto;z-index:1001;max-height:55%;opacity:1;}.modal-enter-active,.modal-leave-active{transition:all .3s cubic-bezier(0,0,.2,1)}.modal-enter,.modal-leave-active{transform:translateY(100%) scale(.5);opacity:0}.modal--bottom{top:initial !important;bottom:0;border-radius:0;box-shadow:0 -4px 15px 0 rgba(0,0,0,0.2),0 -6px 50px 0 rgba(0,0,0,0.19);width:100%;margin:0;max-width:none;}.modal--bottom.modal-enter,.modal--bottom.modal-leave-active{transform:translateY(100%);opacity:1}.modal-overlay{display:block;position:fixed;width:100%;height:100%;background-color:rgba(0,0,0,0.3);transition:all .3s cubic-bezier(0,0,.2,1);top:0;left:0;opacity:0;filter:blur(10%);z-index:-1;}.modal-overlay--open{opacity:1;z-index:1000}.pagination{list-style-type:none;display:flex;align-items:center;}.pagination a{transition:all .2s ease-out;}.pagination--circle .pagination__item,.pagination--circle .pagination__more,.pagination--circle .pagination__navigation{border-radius:50%}.pagination__item{border-radius:4px;color:#000;display:inline-flex;justify-content:center;align-items:center;background:transparent;height:2rem;width:2rem;margin:.3rem;text-decoration:none;transform:scale(.8);}.pagination__item--active{background:#2196f3;color:#fff;transform:scale(1.15)}.pagination__navigation{display:inline-flex;justify-content:center;align-items:center;text-decoration:none;color:#616161;height:2rem;border-radius:4px;width:2rem;margin:.3rem;}.pagination__navigation .icon{font-size:2rem;transition:all .2s ease-out;vertical-align:middle}.pagination__navigation--disabled{opacity:.6;pointer-events:none}.pagination__more{margin:.3rem;display:inline-flex;align-items:flex-end;justify-content:center;height:2rem;width:2rem}.parallax{position:relative;overflow:hidden;}.parallax__image-container{position:absolute;top:0;left:0;right:0;bottom:0;z-index:1}.parallax__image{position:absolute;bottom:0;left:50%;min-width:100%;min-height:100%;display:none;z-index:1}.parallax__content{color:#fff;height:100%;z-index:2;position:relative;display:flex;flex-direction:column;justify-content:center;padding:0 1rem}.progress{background:#e0e0e0;transition:all .3s cubic-bezier(0,0,.2,1);width:100%;border-radius:4px;overflow:hidden;position:relative;margin:1rem 0;}.progress__bar{height:inherit;background:#2196f3;border-radius:4px;overflow:hidden;position:absolute}.progress--indeterminate .progress__bar{width:30% !important;animation:loading 1.2s linear infinite alternate}@-moz-keyframes loading{0%{left:0%}100%{left:70%}}@-webkit-keyframes loading{0%{left:0%}100%{left:70%}}@-o-keyframes loading{0%{left:0%}100%{left:70%}}@keyframes loading{0%{left:0%}100%{left:70%}}.progress-circular{position:relative;display:inline-flex;}.progress-circular--indeterminate svg{animation:progress-circular-rotate 1.4s linear infinite;transform-origin:center center;width:100%;height:100%;margin:auto;position:absolute;top:0;bottom:0;left:0;right:0;transition:all .2s ease-in-out;z-index:0}.progress-circular--indeterminate .progress-circular__overlay{animation:progress-circular-dash 1.4s ease-in-out infinite;stroke-linecap:round;stroke-dasharray:1,200;stroke-dashoffset:0}.progress-circular__underlay{stroke:rgba(0,0,0,0.1);z-index:1}.progress-circular__overlay{stroke:currentColor;z-index:2;transition:all .6s ease-in-out}.progress-circular__info{position:absolute;top:50%;left:50%;transform:translate3d(-50%,-50%,0)}@-moz-keyframes progress-circular-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:100,200;stroke-dashoffset:-15px}100%{stroke-dasharray:100,200;stroke-dashoffset:-125px}}@-webkit-keyframes progress-circular-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:100,200;stroke-dashoffset:-15px}100%{stroke-dasharray:100,200;stroke-dashoffset:-125px}}@-o-keyframes progress-circular-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:100,200;stroke-dashoffset:-15px}100%{stroke-dasharray:100,200;stroke-dashoffset:-125px}}@keyframes progress-circular-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:100,200;stroke-dashoffset:-15px}100%{stroke-dasharray:100,200;stroke-dashoffset:-125px}}@-moz-keyframes progress-circular-rotate{100%{transform:rotate(360deg)}}@-webkit-keyframes progress-circular-rotate{100%{transform:rotate(360deg)}}@-o-keyframes progress-circular-rotate{100%{transform:rotate(360deg)}}@keyframes progress-circular-rotate{100%{transform:rotate(360deg)}}.ripple__container{position:absolute;width:100%;height:100%;left:0;top:0;overflow:hidden;z-index:0;color:#fff;pointer-events:none}.ripple__animation{position:absolute;top:0;left:0;border-radius:50%;background:currentColor;opacity:0;transition:.7s transform cubic-bezier(.2,.4,.4,.9),.3s opacity cubic-bezier(.2,.4,.4,.1);pointer-events:none;overflow:hidden;will-change:opacity;}.ripple__animation--enter{transition:none}.ripple__animation--visible{opacity:.3}.sidebar{background-color:#424242;overflow-y:auto;transition:transform .3s cubic-bezier(0,0,.2,1);width:260px;z-index:3;}.sidebar ul{list-style-type:none;width:100%;padding:0}.sidebar--right{order:1}.sidebar--fixed{top:0;left:0;position:fixed;z-index:5;}.sidebar--fixed-right{right:0}.sidebar--drawer{flex-basis:0;transform:translateX(-285px)}.sidebar--drawer--right{transform:translateX(285px)}.sidebar--open{transform:translateX(0) !important;width:260px}.sidebar--close{transform:translateX(-285px);flex-basis:0 !important;}.sidebar--close .sidebar--fixed-right{transform:translateX(285px)}@media screen and (max-width:48rem){.sidebar--mobile{transform:translateX(-285px);flex-basis:0 !important}.sidebar--mobile .sidebar--fixed-right{transform:translateX(285px)}}.sidebar__group .sidebar__items{overflow:hidden}.sidebar__group .sidebar__item{padding-left:3rem}.sidebar__items{display:flex;flex-direction:column;transition:all .3s cubic-bezier(0,0,.2,1)}.sidebar__item,.sidebar__item-header{color:#424242;display:flex;align-items:center;text-decoration:none;transition:all .3s cubic-bezier(0,0,.2,1);font-weight:300;padding:.7rem 2rem;height:3rem;}.sidebar__item--active,.sidebar__item-header--active{background-color:#424242}.sidebar__item:hover,.sidebar__item-header:hover{background-color:#424242;color:#fff}.sidebar__item > span,.sidebar__item-header > span{margin-left:1rem}.sidebar__item-header:after{content:'keyboard_arrow_left';font-family:'Material Icons';font-size:1.5rem;position:absolute;right:15px;color:inherit;transition:all .3s cubic-bezier(0,0,.2,1)}.sidebar__item-header:hover{background:#2196f3}.sidebar__item-header--active{background:#2196f3;}.sidebar__item-header--active:after{transform:rotate(-90deg)}.slider{height:500px;width:100%;background:#000;position:relative;overflow:hidden;}.slider__item{display:flex;align-items:center;justify-content:center;flex:1 0 100%;height:100%;width:100%;background-size:cover;background-position:center center;transition:.2s ease-out}.slider__left,.slider__right{position:absolute;top:calc(50% - 50px);z-index:2;left:0;}.slider__left .btn,.slider__right .btn{color:#fff;margin:0 !important;}.slider__left .btn i,.slider__right .btn i{font-size:4rem}.slider__left .btn:hover,.slider__right .btn:hover{background:none}.slider__right{left:initial;right:0}.slider__controls{background:rgba(0,0,0,0.5);align-items:center;bottom:0;display:flex;justify-content:center;left:0;position:absolute;height:50px;list-style-type:none;width:100%;z-index:2;}.slider__controls__item{color:#fff;width:10px;margin:0 1rem !important;}.slider__controls__item i{opacity:.5;transition:all .3s cubic-bezier(0,0,.2,1)}.slider__controls__item--active i{opacity:1;vertical-align:middle;font-size:2rem !important}.slider__controls__item:hover{background:none;}.slider__controls__item:hover i{opacity:.8}table{border-collapse:collapse;width:100%;}table td,table th{padding:.6rem 0}table,th,td{text-align:left}.tabs{margin-bottom:3rem;}.tabs__slider{position:absolute;top:calc(100% - 4px);height:4px;with:100%}.tabs__tab{color:#fff;flex:1;text-decoration:none;display:block;padding:1rem;position:relative;text-align:center;text-transform:uppercase;transition:all .3s cubic-bezier(0,0,.2,1);}.tabs__tab:after{content:'';position:absolute;bottom:0;left:0;width:0;height:3px;transition:all .3s cubic-bezier(0,0,.2,1);background:#2196f3}.tabs__tab--active:after{width:100%}.tabs__tabs{background:#424242;display:flex;position:relative;align-items:center;flex-wrap:nowrap;white-space:nowrap;overflow-x:auto;}@media screen and (max-width:48rem){.tabs__tabs{flex-wrap:wrap}}.tabs__items{width:100%;height:100%;position:relative;overflow:hidden}.tabs__item{transition:.2s ease-out;padding:1rem;height:100%;width:100%}.toast{position:fixed;z-index:99999999999999;}.toast--right{top:5%;right:2%}.toast--left{top:5%;left:2%}.toast--top{top:5%;left:50%;transform:translateX(-50%)}.toast--bottom{bottom:5%;left:50%;transform:translateX(-50%)}.toast--snack{bottom:0;left:50%;transform:translateX(-50%);}.toast--snack .toast__content{margin-bottom:0;opacity:1;}.toast--snack .toast__content--remove{margin-top:0}.toast__content{background:#424242;border-radius:$button-radius;color:#fff;padding:1rem 2rem;margin:1rem 0;opacity:0;transform:translate3d(0,3rem,0);transition:all .3s cubic-bezier(0,0,.2,1);}.toast__content--active{transform:translate3d(0,0,0);opacity:1}.toast__content--remove{margin-top:-3rem;opacity:0}[data-tooltip]{position:relative;}[data-tooltip]:hover:after{opacity:1;visibility:visible}[data-tooltip]:after{background:#424242;border-radius:.2rem;color:#fff;content:attr(data-tooltip);font-size:.8rem;line-height:1.2rem;opacity:0;padding:.4rem;position:absolute;pointer-events:none;transition:all .2s ease-out;visibility:hidden;width:auto;white-space:pre;z-index:99;}[data-tooltip][data-tooltip-location='bottom']:after{top:100%;left:50%;transform:translateX(-50%) translateY(-10px)}[data-tooltip][data-tooltip-location='bottom']:hover:after{transform:translateX(-50%) translateY(10px)}[data-tooltip][data-tooltip-location='top']:after{bottom:100%;left:50%;transform:translateX(-50%) translateY(10px)}[data-tooltip][data-tooltip-location='top']:hover:after{transform:translateX(-50%) translateY(-10px)}[data-tooltip][data-tooltip-location='left']:after{bottom:50%;right:100%;transform:translateX(10px) translateY(50%)}[data-tooltip][data-tooltip-location='left']:hover:after{transform:translateX(-10px) translateY(50%)}[data-tooltip][data-tooltip-location='right']:after{bottom:50%;left:100%;transform:translateX(-10px) translateY(50%)}[data-tooltip][data-tooltip-location='right']:hover:after{transform:translateX(10px) translateY(50%)}.with{display:flex;flex-flow:column nowrap;min-height:100vh;}.with.top-fixed-navbar{padding-top:$navbar-min-height3rem;}.with.top-fixed-navbar header{z-index:4}.with.top-navbar main > .content{padding-top:1rem}.with.left-fixed-sidebar .navbar,.with.left-fixed-sidebar main,.with.left-fixed-sidebar footer{padding-left:260px;transition:all .3s cubic-bezier(0,0,.2,1);}@media screen and (max-width:48rem){.with.left-fixed-sidebar .navbar,.with.left-fixed-sidebar main,.with.left-fixed-sidebar footer{padding-left:0}}.with.left-sidebar .sidebar{box-shadow:none}.with.left-sidebar main{background:#424242;}.with.left-sidebar main > .content{background:#fff}.with.right-fixed-sidebar .navbar,.with.right-fixed-sidebar main,.with.right-fixed-sidebar footer{padding-right:260px;transition:all .3s cubic-bezier(0,0,.2,1);}@media screen and (max-width:48rem){.with.right-fixed-sidebar .navbar,.with.right-fixed-sidebar main,.with.right-fixed-sidebar footer{padding-right:0}}@media screen and (min-width:0){.hidden-xs-and-up{display:none !important}}@media screen and (max-width:0){.hidden-xs-and-down{display:none !important}}@media screen and (min-width:48rem){.hidden-sm-and-up{display:none !important}}@media screen and (max-width:48rem){.hidden-sm-and-down{display:none !important}}@media screen and (min-width:64rem){.hidden-md-and-up{display:none !important}}@media screen and (max-width:64rem){.hidden-md-and-down{display:none !important}}@media screen and (min-width:75rem){.hidden-lg-and-up{display:none !important}}@media screen and (max-width:75rem){.hidden-lg-and-down{display:none !important}}.right{float:right !important}.left{float:left !important}.mt-0{margin-top:0 !important}.mr-0{margin-right:0 !important}.mb-0{margin-bottom:0 !important}.ml-0{margin-left:0 !important}.mx-0{margin-left:0 !important;margin-right:0 !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.ma-0{margin:0 0 !important}.pt-0{padding-top:0 !important}.pr-0{padding-right:0 !important}.pb-0{padding-bottom:0 !important}.pl-0{padding-left:0 !important}.px-0{padding-left:0 !important;padding-right:0 !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.pa-0{padding:0 0 !important}.mt-1{margin-top:.25rem !important}.mr-1{margin-right:.25rem !important}.mb-1{margin-bottom:.25rem !important}.ml-1{margin-left:.25rem !important}.mx-1{margin-left:.25rem !important;margin-right:.25rem !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.ma-1{margin:.25rem .25rem !important}.pt-1{padding-top:.25rem !important}.pr-1{padding-right:.25rem !important}.pb-1{padding-bottom:.25rem !important}.pl-1{padding-left:.25rem !important}.px-1{padding-left:.25rem !important;padding-right:.25rem !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.pa-1{padding:.25rem .25rem !important}.mt-2{margin-top:.5rem !important}.mr-2{margin-right:.5rem !important}.mb-2{margin-bottom:.5rem !important}.ml-2{margin-left:.5rem !important}.mx-2{margin-left:.5rem !important;margin-right:.5rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.ma-2{margin:.5rem .5rem !important}.pt-2{padding-top:.5rem !important}.pr-2{padding-right:.5rem !important}.pb-2{padding-bottom:.5rem !important}.pl-2{padding-left:.5rem !important}.px-2{padding-left:.5rem !important;padding-right:.5rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.pa-2{padding:.5rem .5rem !important}.mt-3{margin-top:1rem !important}.mr-3{margin-right:1rem !important}.mb-3{margin-bottom:1rem !important}.ml-3{margin-left:1rem !important}.mx-3{margin-left:1rem !important;margin-right:1rem !important}.my-3{margin-top:1rem !important;margin-bottom:1rem !important}.ma-3{margin:1rem 1rem !important}.pt-3{padding-top:1rem !important}.pr-3{padding-right:1rem !important}.pb-3{padding-bottom:1rem !important}.pl-3{padding-left:1rem !important}.px-3{padding-left:1rem !important;padding-right:1rem !important}.py-3{padding-top:1rem !important;padding-bottom:1rem !important}.pa-3{padding:1rem 1rem !important}.mt-4{margin-top:1.5rem !important}.mr-4{margin-right:1.5rem !important}.mb-4{margin-bottom:1.5rem !important}.ml-4{margin-left:1.5rem !important}.mx-4{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.ma-4{margin:1.5rem 1.5rem !important}.pt-4{padding-top:1.5rem !important}.pr-4{padding-right:1.5rem !important}.pb-4{padding-bottom:1.5rem !important}.pl-4{padding-left:1.5rem !important}.px-4{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.pa-4{padding:1.5rem 1.5rem !important}.mt-5{margin-top:3rem !important}.mr-5{margin-right:3rem !important}.mb-5{margin-bottom:3rem !important}.ml-5{margin-left:3rem !important}.mx-5{margin-left:3rem !important;margin-right:3rem !important}.my-5{margin-top:3rem !important;margin-bottom:3rem !important}.ma-5{margin:3rem 3rem !important}.pt-5{padding-top:3rem !important}.pr-5{padding-right:3rem !important}.pb-5{padding-bottom:3rem !important}.pl-5{padding-left:3rem !important}.px-5{padding-left:3rem !important;padding-right:3rem !important}.py-5{padding-top:3rem !important;padding-bottom:3rem !important}.pa-5{padding:3rem 3rem !important}@media only screen and (min-width:0){.text-xs-left{text-align:left !important}.text-xs-center{text-align:center !important}.text-xs-right{text-align:right !important}.text-xs-justify{text-align:justify !important}}@media only screen and (min-width:48rem){.text-sm-left{text-align:left !important}.text-sm-center{text-align:center !important}.text-sm-right{text-align:right !important}.text-sm-justify{text-align:justify !important}}@media only screen and (min-width:64rem){.text-md-left{text-align:left !important}.text-md-center{text-align:center !important}.text-md-right{text-align:right !important}.text-md-justify{text-align:justify !important}}@media only screen and (min-width:75rem){.text-lg-left{text-align:left !important}.text-lg-center{text-align:center !important}.text-lg-right{text-align:right !important}.text-lg-justify{text-align:justify !important}} \ No newline at end of file diff --git a/dist/vuetify.min.js b/dist/vuetify.min.js index fa90ecabcfd..6c47e8a2262 100644 --- a/dist/vuetify.min.js +++ b/dist/vuetify.min.js @@ -1,2 +1,2 @@ -!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.Vuetify=e():t.Vuetify=e()}(this,function(){return function(t){function e(i){if(n[i])return n[i].exports;var s=n[i]={i:i,l:!1,exports:{}};return t[i].call(s.exports,s,s.exports,e),s.l=!0,s.exports}var n={};return e.m=t,e.c=n,e.i=function(t){return t},e.d=function(t,n,i){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:i})},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="/dist/",e(e.s=147)}([function(t,e,n){"use strict";function i(t,e){return void 0===e&&(e="div"),{functional:!0,render:function(n,i){var s=i.data,r=i.children;return s.staticClass=s.staticClass?t+" "+s.staticClass:t,n(e,s,r)}}}function s(t,e){return void 0===e&&(e={}),Object.assign(e,t.modifiers,{value:t.arg},t.value||{})}function r(t){for(var e=this.$parent;e;){if(!e.$el)return null;if(e.$el.classList.contains(t))return e._uid;e=e.$parent}return null}e.a=i,e.c=s,e.b=r},function(t,e,n){"use strict";e.a={created:function(){this.$vuetify.bus.sub(this.events)},beforeDestroy:function(){this.$vuetify.bus.unsub(this.events)}}},function(t,e,n){"use strict";var i=n(1);e.a={data:function(){return{active:!1,activator:{}}},mixins:[i.a],mounted:function(){this.$vuetify.load(this.init)},computed:{events:function(){return[[this.$options.name+":open:"+this.id,this.open],[this.$options.name+":close:"+this.id,this.close],[this.$options.name+":toggle:"+this.id,this.toggle],["body:click",this.close]]}},methods:{init:function(){this.activator=document.querySelector("[data-"+this.$options.name+'="'+this.id+'"]')},open:function(){this.active=!0,this.$vuetify.bus.pub(this.$options.name+":opened",this.id)},close:function(t,e){if(void 0===e&&(e=!1),e)return this.active=!this.active;if(null!==this.activator){try{if(t.target===this.activator||this.activator.contains(t.target))return}catch(t){}this.active=!1}},toggle:function(){this.active=!this.active}}}},function(t,e,n){"use strict";var i=n(74),s=n.n(i),r=function(t){function e(){t.call(this),this.setMaxListeners(500)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.sub=function(t,e){var n=this,i=typeof t;return"object"!==i&&"array"!==i?this.on(t,e):void t.forEach(function(t){return n.on.apply(n,t)})},e.prototype.unsub=function(t,e){var n=this,i=typeof t;return"object"!==i&&"array"!==i?this.removeListener(t,e):void t.forEach(function(t){return n.removeListener.apply(n,t)})},e.prototype.pub=function(){this.emit.apply(this,arguments)},e}(s.a);e.a=new r},function(t,e,n){"use strict";e.a={data:function(){return{obj_height:null,parallax:null,parallax_dist:null,bottom:null,top:null,scroll_top:null,window_height:null,window_bottom:null}},mounted:function(){this.$vuetify.load(this.init)},beforeDestroy:function(){document.removeEventListener("scroll",this.translate,!1),document.removeEventListener("resize",this.translate,!1)},methods:{listeners:function(){document.addEventListener("scroll",this.translate,!1),document.addEventListener("resize",this.translate,!1)},translate:function(){this.calcDimensions();var t=(this.window_bottom-this.top)/(Number(this.height)+this.window_height);this.parallax=Math.round(this.parallax_dist*t),this.translated&&this.translated()},calcDimensions:function(){this.obj_height=this.objHeight(),this.parallax_dist=this.obj_height-this.height,this.top=this.elOffsetTop(),this.bottom=this.top+this.height,this.scroll_top=window.pageYOffset,this.window_height=window.innerHeight,this.window_bottom=this.scroll_top+this.window_height}}}},function(t,e,n){"use strict";function i(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];var n={};return t.forEach(function(t){Object.keys(t).forEach(function(e){n["V"+e]=t[e]})}),n}var s=n(46),r=n(47),a=n(48),o=n(49),c=n(50),u=n(51),l=n(52),d=n(53),f=n(54),p=n(55),h=n(56),v=n(57),m=n(58),_=n(59),b=n(60),y=n(61),g=n(62),x=n(63),w=n(64),F=n(65),R=n(66);e.a=i(s.a,r.a,a.a,o.a,c.a,u.a,l.a,d.a,f.a,p.a,h.a,v.a,m.a,_.a,b.a,y.a,g.a,x.a,w.a,F.a,R.a)},function(t,e,n){"use strict";var i=n(67),s=n(68),r=n(69),a=n(70),o=n(71),c=n(72);e.a={Badge:i.a,Dropdown:s.a,Modal:r.a,Ripple:a.a,SideBar:o.a,Tooltip:c.a}},function(t,e,n){"use strict";var i=function(){};i.prototype.toast=function t(e){var t=document.createElement("div");return t.classList.add("toast"),t.classList.add("toast--"+e),document.body.appendChild(t),t},i.prototype.create=function(t,e,n,i){void 0===e&&(e="right"),void 0===n&&(n=3e3);var s=document.querySelector(".toast--"+e);s||(s=this.toast(e));var r=document.createElement("div");r.classList.add("toast__content"),r.innerHTML=t,s.appendChild(r),setTimeout(function(){return r.classList.add("toast__content--active")},10),setTimeout(function(){r.classList.add("toast__content--remove"),setTimeout(function(){r.remove(),i&&i()},300)},n)},e.a=new i},function(t,e,n){"use strict";var i=n(3);e.a=function(){document.body.addEventListener("click",function(t){i.a.pub("body:click",t)}),i.a.sub("meta:title",function(t){document.title=t}),i.a.sub("meta:description",function(t){document.head.querySelector("meta[name=description]").content=t}),i.a.sub("meta:keywords",function(t){document.head.querySelector("meta[name=keywords]").content=t})}},function(t,e,n){"use strict";e.a=function(t){return"complete"===document.readyState?setTimeout(t,0):void document.addEventListener("DOMContentLoaded",t)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"alert",props:{dismissible:Boolean,error:Boolean,hideIcon:Boolean,icon:String,info:Boolean,success:Boolean,warning:Boolean,value:{type:Boolean,default:!0}},computed:{classes:function(){return{"alert--dismissible":this.dismissible,"alert--error":this.error,"alert--info":this.info,"alert--success":this.success,"alert--warning":this.warning}},mdIcon:function(){if(this.icon)return this.icon;switch(!0){case this.error:return"warning";case this.info:return"info";case this.success:return"check_circle";case this.warning:return"priority_high"}}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{footer:Boolean,leftFixedSidebar:Boolean,leftSidebar:Boolean,id:{type:String,default:"app"},rightFixedSidebar:Boolean,rightSidebar:Boolean,topFixedNavbar:Boolean,topNavbar:Boolean},computed:{classes:function(){return{"left-fixed-sidebar":this.leftFixedSidebar,"left-sidebar":this.leftSidebar,"right-fixed-sidebar":this.rightFixedSidebar,"right-sidebar":this.rightSidebar,"top-fixed-navbar":this.topFixedNavbar,"top-navbar":this.topNavbar}}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"breadcrumbs",props:{divider:{type:String,default:"/"},icons:Boolean,items:{type:Array,default:function(){return[]}}},computed:{classes:function(){return{"breadcrumbs--with-icons":this.icons}}},mounted:function(){this.$vuetify.load(this.init)},methods:{init:function(){var t=this;this.$children.forEach(function(e){return e.$el.dataset.divider=t.divider})}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"breadcrumbs-item",props:{disabled:Boolean,item:{type:Object,required:!0}},computed:{classes:function(){return{"breadcrumbs__item--disabled":this.disabled}}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=n(73);e.default={name:"button",mixins:[i.a],props:{block:Boolean,flat:Boolean,floating:Boolean,icon:Boolean,large:Boolean,loading:Boolean,outline:Boolean,raised:{type:Boolean,default:!0},ripple:{type:[Boolean,Object],default:!1},round:Boolean,small:Boolean,type:{type:String,default:"button"}},computed:{classes:function(){return{"btn--block":this.block,"btn--flat":this.flat,"btn--floating":this.floating,"btn--icon":this.icon,"btn--large":this.large,"btn--loading":this.loading,"btn--outline":this.outline,"btn--raised":this.raised,"btn--round":this.round,"btn--small":this.small,primary:this.primary,secondary:this.secondary,success:this.success,info:this.info,warning:this.warning,error:this.error}}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"card",props:{height:{type:String,default:"auto"},horizontal:Boolean,img:String},computed:{classes:function(){return{"card--horizontal":this.horizontal}},styles:function t(){var t={height:this.height};return this.img&&(t.background="url("+this.img+") center center / cover no-repeat"),t}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"card-row",props:{actions:Boolean,height:{type:String,default:"auto"},img:String},computed:{classes:function(){return{"card__row--actions":this.actions}},styles:function t(){var t={height:this.height};return this.img&&(t.background="url("+this.img+") center center / cover no-repeat"),t}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"chip",props:{close:Boolean,label:Boolean,outline:Boolean,small:Boolean,value:{type:Boolean,default:!0}},computed:{classes:function(){return{"chip--label":this.label,"chip--outline":this.outline,"chip--small":this.small,"chip--removable":this.close}}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"collapsible",props:{expand:Boolean},computed:{classes:function(){return{collapsible:!0}},params:function(){return{expand:this.expand}}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=n(1);e.default={name:"collapsible-body",mixins:[i.a],data:function(){return{active:!1}},computed:{events:function(){return[["collapse:toggle:"+this.$parent._uid,this.toggle]]}},methods:{enter:function(t){t.style.display="block",t.style.height=0,t.style.height=t.scrollHeight+"px"},leave:function(t){t.style.height=0},toggle:function(t){return t===this._uid||this.$parent.params.expand?void(t===this._uid&&(this.active=!this.active)):this.active=!1}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"collapsible-header",methods:{click:function(){this.$vuetify.bus.pub("collapse:toggle:"+this.$parent._uid,Number(this.getNextSibling(this.$el).getAttribute("uid")))},getNextSibling:function(t){if(!(t=t.nextSibling))return null;for(;1!=t.nodeType;)if(!(t=t.nextSibling))return null;return t}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=n(2);e.default={name:"dropdown",mixins:[i.a],props:{bottom:Boolean,id:{type:String,required:!0},hover:Boolean,items:{type:Array,default:function(){return[]}},right:Boolean},computed:{classes:function(){return{"dropdown--open":this.active,"dropdown--open-from-right":this.right}}},mounted:function(){this.$vuetify.bus.sub(this.$options.name+":opened",this.opened)},methods:{opened:function(t){this.active=t===this.id}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"dropdown-item",props:{item:{type:Object,required:!0}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"footer"}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"checkbox",data:function(){return{model:null}},props:{disabled:Boolean,filled:Boolean,gap:Boolean,id:{type:String,default:""},indeterminate:Boolean,label:{type:String,default:""},name:{type:String,default:""},value:{required:!1}},computed:{classes:function(){return{filled:this.filled}}},mounted:function(){var t=this;this.$refs.input.indeterminate=this.indeterminate,this.state(),this.$refs.input.onchange=function(){var e=this.checked,n=this.value;if(!t.model||"string"==typeof t.model)return t.$emit("input",!!e);var i=t.model.indexOf(n);e?t.model.push(n):t.model.splice(i,1),t.$emit("input",t.model)}},methods:{state:function(){("array"==typeof this.model&&this.model.includes(this.value)||this.value)&&(this.$refs.input.checked=!0)}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"radio",props:{disabled:Boolean,label:{type:String,default:""},gap:Boolean,id:{type:String,default:""},name:{type:String,default:""},value:[String,Number,Boolean]},computed:{classes:function(){return{gap:this.gap}}},mounted:function(){var t=this;this.$refs.input.checked=this.$el.value===this.value,this.$refs.input.onchange=function(){t.$emit("input",this.value)}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"select",data:function(){return{focused:!1}},props:{defaultText:{type:String,default:"Select..."},id:{type:String,value:""},label:{type:String,value:""},multiple:Boolean,name:{type:String,value:""},options:{type:Array,default:function(){return[]}},value:{required:!1}},computed:{classes:function(){return{"input-group--dirty":!0,"input-group--focused":this.focused&&!this.multiple}}},mounted:function(){this.value&&(this.$refs.select.value=this.value)},methods:{update:function(){this.multiple?this.$emit("input",this.$refs.options.filter(function(t){return t.selected}).map(function(t){return t.value})):this.$emit("input",this.$refs.select.value)}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"text-input",data:function(){return{focused:!1}},computed:{classes:function(){return{"input-group--focused":this.focused,"input-group--dirty":this.value||this.placeholder||this.$refs.input&&this.$refs.input.value}}},props:{label:String,id:String,name:String,placeholder:String,value:{required:!1}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"icon",data:function(){return{active:!1}},props:{large:Boolean,left:Boolean,medium:Boolean,right:Boolean,xLarge:Boolean},computed:{classes:function(){return{"icon--large":this.large,"icon--left":this.left,"icon--medium":this.medium,"icon--right":this.right,"icon--x-large":this.xLarge}}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=n(2);e.default={name:"modal",mixins:[i.a],props:{bottom:Boolean,id:{type:String,required:!0}},computed:{classes:function(){return{"modal--bottom":this.bottom}}},methods:{close:function(t){if(!t)return this.active=!1;if(t.target!==this.$refs.modal&&!this.$refs.modal.contains(t.target)&&null!==this.activator){try{if(t.target===this.activator||this.activator.contains(t.target))return}catch(t){}this.active=!1}}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"navbar",props:{fixed:Boolean},computed:{classes:function(){return{"navbar--fixed":this.fixed}}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"navbar-item",props:{item:{type:Object,required:!0},router:Boolean},methods:{click:function(){}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"navbar-items",props:{items:{type:Array,default:function(){return[]}}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"pagination",data:function(){return{selected:null}},props:{circle:Boolean,length:{type:Number,default:0},value:{type:Number,default:0}},watch:{value:function(){this.init()}},computed:{classes:function(){return{"pagination--circle":this.circle}},items:function(){if(this.length<=5)return this.range(1,this.length);var t=this.value-3;t=t>0?t:1;var e=t+6;e=e<=this.length?e:this.length,e===this.length&&(t=this.length-6);var n=this.range(t,e);return this.value>=4&&this.length>6&&n.splice(0,2,1,"..."),this.value+36&&n.splice(n.length-2,2,"...",this.length),n}},mounted:function(){this.$vuetify.load.call(this,this.init)},methods:{init:function(){var t=this;this.selected=null,setTimeout(function(){return t.selected=t.value},100)},range:function t(e,n){var t=[];e=e>0?e:1;for(var i=e;i<=n;i++)t.push(i);return t}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=n(4);e.default={name:"parallax",mixins:[i.a],props:{height:{type:[String,Number],default:500},src:{type:String,required:!0}},computed:{styles:function(){return{display:"block",transform:"translate3d(-50%, "+this.parallax+"px, 0)"}}},methods:{init:function(){var t=this;return this.$refs.img.complete?(console.log("here"),this.translate(),this.listeners(),this.$vuetify.bus.pub("parallax:ready")):void this.$refs.img.addEventListener("load",function(){t.translate(),t.listeners(),t.$vuetify.bus.pub("parallax:ready")},{once:!0})},objHeight:function(){return this.$refs.img.naturalHeight},elOffsetTop:function(){return this.$el.offsetTop}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=n(4);e.default={name:"parallax-content",mixins:[i.a],data:function(){return{height:null,opacity:1}},props:{opacityOffset:{type:[String,Number],default:.7}},computed:{styles:function(){return{opacity:this.opacity,transform:"translate3d(0, "+(this.parallax-.35*this.height)+"px, 0)"}}},methods:{init:function(){var t=this;this.$vuetify.bus.sub("parallax:ready",function(){t.height=t.$el.closest(".parallax").clientHeight,t.translate(),t.listeners()})},elOffsetTop:function(){return this.$el.closest(".parallax").offsetTop},objHeight:function(){return this.$el.previousSibling.naturalHeight},translated:function(){this.opacity=this.height*this.opacityOffset/this.parallax-1.7*this.opacityOffset}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"progress",props:{height:{type:String,default:"7px"},indeterminate:Boolean,max:{type:[String,Number],default:0},min:{type:[String,Number],default:0},value:{type:[String,Number],default:0}},computed:{classes:function(){return{"progress--indeterminate":this.indeterminate}},styles:function(){return{width:this.value+"%"}}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=this;e.default={props:{fill:{type:[Boolean,String],default:function(){return i.indeterminate?"none":"transparent"}},indeterminate:Boolean,rotate:{type:Number,default:0},size:{type:Number,default:32},width:{type:Number,default:4},value:{type:Number,default:0}},computed:{circumference:function(){return 2*Math.PI*this.radius},classes:function(){return{"progress-circular--indeterminate":this.indeterminate}},cxy:function(){return this.indeterminate?50:this.size/2},normalizedValue:function(){return this.value<0?0:this.value>100?100:this.value},radius:function(){return this.indeterminate?20:(this.size-this.width)/2},strokeDashArray:function(){return Math.round(1e3*this.circumference)/1e3},strokeDashOffset:function(){return(100-this.normalizedValue)/100*this.circumference+"px"},styles:function(){return{height:this.size+"px",width:this.size+"px"}},svgSize:function(){return!this.indeterminate&&this.size},svgStyles:function(){return{transform:"rotate("+this.rotate+"deg)"}},viewBox:function(){return!!this.indeterminate&&"25 25 50 50"}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=n(2);e.default={name:"sidebar",mixins:[i.a],props:{drawer:Boolean,fixed:Boolean,height:{type:String,default:"100vh"},id:{type:String,required:!0},mobile:{type:Boolean,default:!0},items:{type:Array,default:function(){return[]}},right:Boolean},computed:{classes:function(){return{"sidebar--mobile":this.mobile,"sidebar--fixed":this.fixed&&!this.right,"sidebar--fixed-right":this.fixed&&this.right,"sidebar--close":!this.active,"sidebar--open":this.active}},styles:function(){return{height:this.height}}},mounted:function(){var t=this;this.$vuetify.load(function(){t.resize(),window.addEventListener("resize",t.resize,!1)})},beforeDestroy:function(){window.removeEventListener("resize",this.resize)},methods:{resize:function(){this.drawer||(this.active=window.innerWidth>768)},close:function(t){var e=t.target,n=t.target.parentNode,i={};if(e&&(i=e.classList.contains("sidebar__item-header")),!i&&n&&(i=n.classList.contains("sidebar__item-header")),null!==this.activator&&!i){try{if(t.target===this.activator||this.activator.contains(t.target)||t.target===this.$el)return}catch(t){}var s=window.innerWidth;s>768&&!this.drawer||(this.active=!1)}}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=n(1),s=n(0);e.default={name:"sidebar-group",mixins:[i.a],data:function(){return{active:!1,height:0}},props:{item:Object,required:!0},computed:{events:function(){return[["sidebar-group:close:"+this.sidebar,this.close],["sidebar-group:open:"+this.sidebar,this.open]]},sidebar:function(){return s.b.call(this,"sidebar")}},mounted:function(){this.$refs.group.$el.querySelector(".sidebar__item--active")&&(this.active=!0)},methods:{enter:function(t,e){t.style.display="block",t.style.height=0,setTimeout(function(){return t.style.height=t.scrollHeight+"px"},50);var n=function(){e(),t.removeEventListener("transitionend",n,!1)};t.addEventListener("transitionend",n,!1)},leave:function(t,e){t.style.height=0;var n=function(){e(),t.removeEventListener("transitionend",n,!1)};t.addEventListener("transitionend",n,!1)},open:function(){this.active=!0},toggle:function(){this.active=!this.active},close:function(t){this.active=t===this._uid}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=n(0);e.default={name:"sidebar-item",data:function(){return{sidebar:null,group:null}},props:{item:{type:Object,required:!0},router:Boolean},computed:{group:function(){return i.b.call(this,"sidebar__group")},sidebar:function(){return i.b.call(this,"sidebar")}},methods:{click:function(){this.$vuetify.bus.pub("sidebar-group:close:"+this.sidebar,this.group)}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"sidebar-items",props:{items:{type:Array,default:function(){return[]}}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"slider",data:function(){return{current:null,items:[],slide_interval:{},reverse:!1}},props:{cycle:{type:Boolean,default:!0},icon:{type:String,default:"fiber_manual_record"},interval:{type:Number,default:6e3}},watch:{current:function(){this.cycle&&(clearInterval(this.slide_interval),this.startInterval()),this.$vuetify.bus.pub("slider:open",this.items[this.current]._uid,this.reverse)}},mounted:function(){this.init()},activated:function(){this.init()},methods:{init:function(){this.items=this.$children.filter(function(t){return t.$el.classList&&t.$el.classList.contains("slider__item")}),this.current=0},next:function(){return this.reverse=!1,this.current+1===this.items.length?this.current=0:void this.current++},prev:function(){return this.reverse=!0,this.current-1<0?this.current=this.items.length-1:void this.current--},select:function(t){this.reverse=te.clientWidth&&Boolean(r.dataset.right)&&(a=r.clientWidth-e.clientWidth),1==r.dataset.bottom&&(o=e.clientHeight),r.style.minWidth=e.clientWidth+"px",r.style.left=e.offsetLeft-a+"px",r.style.top=e.offsetTop+o+"px",i.pub("dropdown:open:"+n.arg)}}function s(t,e,n){t.dataset.dropdown=e.arg,t.onclick=function(s){return i(s,t,e,n.context.$vuetify.bus,!1)},t.onmouseenter=function(s){return i(s,t,e,n.context.$vuetify.bus,!0)}}e.a={bind:s,updated:s,componentUpdated:s,unbind:function(t){t.removeAttribute("onclick"),t.removeAttribute("onmouseenter"),t.removeAttribute("onmouseleave"),t.removeAttribute("data-dropdown")}}},function(t,e,n){"use strict";function i(t,e,n){t.dataset.modal=e.arg,t.onclick=function(t){t.preventDefault(),n.context.$vuetify.bus.pub("modal:open:"+e.arg)}}e.a={bind:i,updated:i,componentUpdated:i,unbind:function(t){t.removeAttribute("onclick"),t.removeAttribute("data-modal")}}},function(t,e,n){"use strict";function i(t,e,n){e.value&&("ontouchstart"in window&&(t.addEventListener("touchend",function(){return r.hide(t)},!1),t.addEventListener("touchcancel",function(){return r.hide(t)},!1)),t.addEventListener("mousedown",function(n){return r.show(n,t,e)},!1),t.addEventListener("mouseup",function(){return r.hide(t)},!1),t.addEventListener("mouseleave",function(){return r.hide(t)},!1))}function s(t,e){t.removeEventListener("touchstart",function(n){return r.show(n,t,e)},!1),t.removeEventListener("mousedown",function(n){return r.show(n,t,e)},!1),t.removeEventListener("touchend",function(){return r.hide(t)},!1),t.removeEventListener("touchcancel",function(){return r.hide(t)},!1),t.removeEventListener("mouseup",function(){return r.hide(t)},!1),t.removeEventListener("mouseleave",function(){return r.hide(t)},!1)}var r={show:function(t,e,n){var i=document.createElement("span"),s=document.createElement("span");i.appendChild(s),i.className="ripple__container",n.value.class&&i.classList.add(n.value.class),s.className="ripple__animation",s.style.width=2*e.clientWidth+"px",s.style.height=s.style.width,e.appendChild(i);var r=t.pageX-e.offsetLeft,a=t.pageY-e.offsetTop;s.classList.add("ripple__animation--enter"),s.classList.add("ripple__animation--visible"),s.style.transform="translate3d(-50%, -50%, 0) translate3d("+r+"px, "+a+"px, 0) scale3d(.001, .001, 1)",s.dataset.activated=Date.now(),setTimeout(function(){s.classList.remove("ripple__animation--enter"),s.style.transform="translate3d(-50%, -50%, 0) translate3d("+r+"px, "+a+"px, 0)"},0)},hide:function(t){var e=t.getElementsByClassName("ripple__animation");if(0!==e.length){var n=e[e.length-1],i=Date.now()-Number(n.dataset.activated),s=400-i;s=s<0?0:s,setTimeout(function(){n.classList.remove("ripple__animation--visible"),setTimeout(function(){n.parentNode.remove()},300)},s)}}};e.a={bind:i,unbind:s}},function(t,e,n){"use strict";function i(t,e,n){t.dataset.sidebar=e.arg,t.onclick=function(t){t.preventDefault(),n.context.$vuetify.bus.pub("sidebar:toggle:"+e.arg)}}e.a={bind:i,updated:i,componentUpdated:i,unbind:function(t){t.removeAttribute("onclick"),t.removeAttribute("data-sidebar")}}},function(t,e,n){"use strict";function i(t,e){var i=n.i(r.c)(e,{top:!0});s(t,e,i),t.dataset.tooltip=i.html,t.dataset.tooltipLocation=i.value}function s(t,e,n){t.removeAttribute("data-tooltip"),t.removeAttribute("data-tooltip-location")}var r=n(0);e.a={bind:i,updated:i,componentUpdated:i, -unbind:s}},function(t,e,n){"use strict";e.a={props:{primary:Boolean,secondary:Boolean,success:Boolean,info:Boolean,warning:Boolean,error:Boolean}}},function(t,e){function n(){this._events=this._events||{},this._maxListeners=this._maxListeners||void 0}function i(t){return"function"==typeof t}function s(t){return"number"==typeof t}function r(t){return"object"==typeof t&&null!==t}function a(t){return void 0===t}t.exports=n,n.EventEmitter=n,n.prototype._events=void 0,n.prototype._maxListeners=void 0,n.defaultMaxListeners=10,n.prototype.setMaxListeners=function(t){if(!s(t)||t<0||isNaN(t))throw TypeError("n must be a positive number");return this._maxListeners=t,this},n.prototype.emit=function(t){var e,n,s,o,c,u;if(this._events||(this._events={}),"error"===t&&(!this._events.error||r(this._events.error)&&!this._events.error.length)){if(e=arguments[1],e instanceof Error)throw e;var l=new Error('Uncaught, unspecified "error" event. ('+e+")");throw l.context=e,l}if(n=this._events[t],a(n))return!1;if(i(n))switch(arguments.length){case 1:n.call(this);break;case 2:n.call(this,arguments[1]);break;case 3:n.call(this,arguments[1],arguments[2]);break;default:o=Array.prototype.slice.call(arguments,1),n.apply(this,o)}else if(r(n))for(o=Array.prototype.slice.call(arguments,1),u=n.slice(),s=u.length,c=0;c0&&this._events[t].length>s&&(this._events[t].warned=!0,console.error("(node) warning: possible EventEmitter memory leak detected. %d listeners added. Use emitter.setMaxListeners() to increase limit.",this._events[t].length),"function"==typeof console.trace&&console.trace())),this},n.prototype.on=n.prototype.addListener,n.prototype.once=function(t,e){function n(){this.removeListener(t,n),s||(s=!0,e.apply(this,arguments))}if(!i(e))throw TypeError("listener must be a function");var s=!1;return n.listener=e,this.on(t,n),this},n.prototype.removeListener=function(t,e){var n,s,a,o;if(!i(e))throw TypeError("listener must be a function");if(!this._events||!this._events[t])return this;if(n=this._events[t],a=n.length,s=-1,n===e||i(n.listener)&&n.listener===e)delete this._events[t],this._events.removeListener&&this.emit("removeListener",t,e);else if(r(n)){for(o=a;o-- >0;)if(n[o]===e||n[o].listener&&n[o].listener===e){s=o;break}if(s<0)return this;1===n.length?(n.length=0,delete this._events[t]):n.splice(s,1),this._events.removeListener&&this.emit("removeListener",t,e)}return this},n.prototype.removeAllListeners=function(t){var e,n;if(!this._events)return this;if(!this._events.removeListener)return 0===arguments.length?this._events={}:this._events[t]&&delete this._events[t],this;if(0===arguments.length){for(e in this._events)"removeListener"!==e&&this.removeAllListeners(e);return this.removeAllListeners("removeListener"),this._events={},this}if(n=this._events[t],i(n))this.removeListener(t,n);else if(n)for(;n.length;)this.removeListener(t,n[n.length-1]);return delete this._events[t],this},n.prototype.listeners=function(t){var e;return e=this._events&&this._events[t]?i(this._events[t])?[this._events[t]]:this._events[t].slice():[]},n.prototype.listenerCount=function(t){if(this._events){var e=this._events[t];if(i(e))return 1;if(e)return e.length}return 0},n.listenerCount=function(t,e){return t.listenerCount(e)}},function(t,e,n){var i,s;i=n(10);var r=n(133);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(11);var r=n(115);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(12);var r=n(137);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(13);var r=n(119);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(14);var r=n(120);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(15);var r=n(116);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(16);var r=n(145);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(17);var r=n(140);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(18);var r=n(135);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(19);var r=n(132);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(20);var r=n(146);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(21);var r=n(114);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(22);var r=n(139);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(23);var r=n(117);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(24);var r=n(124);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(25);var r=n(143);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(26);var r=n(121);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(27);var r=n(111);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(28);var r=n(125);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(29);var r=n(126);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(30);var r=n(131);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(31);var r=n(118);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(32);var r=n(136);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(33);var r=n(134);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(34);var r=n(142);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(35);var r=n(127);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(36);var r=n(138);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(37);var r=n(128);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(38);var r=n(129);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(39);var r=n(141);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(40);var r=n(113);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(41);var r=n(144);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(42);var r=n(123);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(43);var r=n(112);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(44);var r=n(130);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(45);var r=n(122);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{staticClass:"input-group",class:t.classes},[t._c("label",{attrs:{for:t.id},domProps:{innerHTML:t._s(t.label)}}),t._c("input",{ref:"input",attrs:{type:"text",name:t.name,id:t.id,placeholder:t.placeholder},domProps:{value:t.value},on:{blur:function(e){t.focused=!1},input:function(e){t.$emit("input",e.target.value)},focus:function(e){t.focused=!0}}})])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("transition",{attrs:{name:t.transition}},[t._c("div",{directives:[{name:"show",rawName:"v-show",value:t.active,expression:"active"}],staticClass:"slider__item",class:{reverse:t.reverse},style:t.styles},[t._t("default")],!0)])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("li",[t.router?t._c("router-link",{staticClass:"sidebar__item",attrs:{"active-class":"sidebar__item--active",exact:"/"===t.item.href,to:t.item.href},nativeOn:{click:function(e){t.click()}}},[t.item.icon?t._c("v-icon",[t._v(t._s(t.item.icon))]):t._e(),t._c("span",{domProps:{textContent:t._s(t.item.text)}}),t._t("default")],!0):t._c("a",{staticClass:"sidebar__item",attrs:{href:t.item.href},on:{click:function(e){t.click()}}},[t.item.icon?t._c("v-icon",[t._v(t._s(t.item.icon))]):t._e(),t._c("span",{domProps:{textContent:t._s(t.item.text)}}),t._t("default")],!0)])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("ul",{staticClass:"dropdown",class:t.classes,attrs:{"data-bottom":t.bottom,"data-hover":t.hover,"data-right":t.right,id:t.id}},[t._l(t.items,function(e){return t._c("v-dropdown-item",{attrs:{item:e}})}),t._t("default")],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{staticClass:"with",class:t.classes,attrs:{id:t.id}},[t._t("default")],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{staticClass:"card",class:t.classes,style:t.styles},[t._t("default")],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("footer",{staticClass:"footer"},[t._t("default")],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("li",[t.router?t._c("router-link",{staticClass:"navbar__item",attrs:{"active-class":"navbar__item--active",exact:"/"===t.item.href,to:t.item.href},nativeOn:{click:function(e){t.click()}}},[t.item.icon?t._c("v-icon",[t._v(t._s(t.item.text))]):t._c("span",{domProps:{innerHTML:t._s(t.item.text)}})]):t._c("a",{staticClass:"navbar__item",attrs:{href:t.item.href}},[t.item.icon?t._c("v-icon",[t._v(t._s(t.item.text))]):t._c("span",{domProps:{innerHTML:t._s(t.item.text)}})])])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("li",[t._c("a",{staticClass:"breadcrumbs__item",class:t.classes,attrs:{href:t.item.href},domProps:{innerHTML:t._s(t.item.text)}})])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("button",{directives:[{name:"ripple",rawName:"v-ripple",value:t.ripple,expression:"ripple"}],staticClass:"btn",class:t.classes,attrs:{type:t.type}},[t._c("span",{staticClass:"btn__content"},[t._t("default")],!0),t.loading?t._c("span",{staticClass:"btn__loading"},[t._t("loader"),t.$slots.loader?t._e():t._c("v-progress-circular",{attrs:{indeterminate:"indeterminate"}})],!0):t._e()])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{staticClass:"input-group",class:t.classes},[t._c("label",{attrs:{for:t.id},domProps:{textContent:t._s(t.label)}}),t._c("select",{ref:"select",attrs:{id:t.id,name:t.name,multiple:t.multiple},domProps:{value:t.value},on:{blur:function(e){t.focused=!1},click:function(e){t.focused=!0},input:t.update}},[t._c("option",{attrs:{value:"",disabled:"disabled",selected:"selected"},domProps:{textContent:t._s(t.defaultText)}}),t._l(t.options,function(e){return t._c("option",{ref:"options",refInFor:!0,domProps:{value:e.value,textContent:t._s(e.text)}})})],!0)])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("transition",{attrs:{name:t.transition}},[t._c("div",{directives:[{name:"show",rawName:"v-show",value:t.active,expression:"active"}],staticClass:"tabs__item shift",attrs:{id:t.id}},[t._t("default")],!0)])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{staticClass:"slider"},[t._c("div",{staticClass:"slider__left"},[t._c("v-btn",{attrs:{icon:"icon"},nativeOn:{click:function(e){t.prev(e)}}},[t._c("v-icon",[t._v("chevron_left")])])]),t._c("div",{staticClass:"slider__right"},[t._c("v-btn",{attrs:{icon:"icon"},nativeOn:{click:function(e){t.next(e)}}},[t._c("v-icon",[t._v("chevron_right")])])]),t._c("div",{staticClass:"slider__controls"},t._l(t.items,function(e,n){return t._c("v-btn",{staticClass:"slider__controls__item",class:{"slider__controls__item--active":n===t.current},attrs:{icon:"icon"}},[t._c("v-icon",{nativeOn:{click:function(e){t.select(n)}}},[t._v(t._s(t.icon))])])})),t._t("default")],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{staticClass:"input-group"},[t._c("input",{ref:"input",class:t.classes,attrs:{type:"checkbox",disabled:t.disabled,id:t.id,name:t.name},domProps:{value:t.value}}),t._c("label",{attrs:{for:t.id},domProps:{innerHTML:t._s(t.label)}})])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("i",{staticClass:"material-icons icon",class:t.classes},[t._c("span",[t._t("default")],!0)])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{staticClass:"modal-overlay",class:{"modal-overlay--open":this.active}},[t._c("transition",{attrs:{name:"modal"}},[t._c("div",{directives:[{name:"show",rawName:"v-show",value:t.active,expression:"active"}],ref:"modal",staticClass:"modal",class:t.classes,attrs:{id:t.id}},[t._t("default")],!0)])])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{staticClass:"parallax__content",style:t.styles},[t._t("default")],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{staticClass:"progress-circular",class:t.classes,style:t.styles},[t._c("svg",{style:t.svgStyles,attrs:{xmlns:"http://www.w3.org/2000/svg",height:t.svgSize,width:t.svgSize,viewBox:t.viewBox}},[t.indeterminate?t._e():t._c("circle",{staticClass:"progress-circular__underlay",attrs:{fill:"transparent",cx:t.cxy,cy:t.cxy,r:t.radius,"stroke-width":t.width,"stroke-dasharray":t.strokeDashArray,"stroke-dashoffset":0}}),t._c("circle",{staticClass:"progress-circular__overlay",attrs:{fill:t.fill,cx:t.cxy,cy:t.cxy,r:t.radius,"stroke-width":t.width,"stroke-dasharray":t.strokeDashArray,"stroke-dashoffset":t.strokeDashOffset}})]),t._c("div",{staticClass:"progress-circular__info"},[t._t("default")],!0)])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("aside",{staticClass:"sidebar",class:t.classes,style:t.styles,attrs:{id:t.id}},[t._t("top"),t.items.length>0?t._c("v-sidebar-items",{attrs:{items:t.items}}):t._e(),t._t("default")],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("a",{staticClass:"tabs__tab",class:t.classes,attrs:{href:t.href},on:{click:function(e){e.preventDefault(),t.click(e)}}},[t._t("default")],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("nav",{staticClass:"navbar",class:t.classes},[t._t("default")],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("transition",{on:{enter:t.enter,leave:t.leave}},[t._c("div",{directives:[{name:"show",rawName:"v-show",value:t.active,expression:"active"}],staticClass:"collapsible__body",attrs:{uid:t._uid}},[t._t("default")],!0)])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{directives:[{name:"show",rawName:"v-show",value:t.value,expression:"value"}],staticClass:"alert",class:t.classes},[t.hideIcon?t._e():t._c("v-icon",{staticClass:"alert__icon"},[t._v(t._s(t.mdIcon))]),t._c("div",[t._t("default")],!0),t.dismissible?t._c("a",{staticClass:"alert__dismissible",attrs:{href:"#!"},on:{click:function(e){e.preventDefault(),t.$emit("input",!1)}}},[t._c("v-icon",{attrs:{right:"right"}},[t._v("cancel")])]):t._e()])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("ul",{staticClass:"pagination",class:t.classes},[t._c("li",[t._c("a",{staticClass:"pagination__navigation",class:{"pagination__navigation--disabled":1===t.value},attrs:{href:"#!"},on:{click:function(e){e.preventDefault(),t.$emit("input",t.value-1)}}},[t._c("v-icon",[t._v("chevron_left")])])]),t._l(t.items,function(e){return t._c("li",[isNaN(e)?t._c("span",{staticClass:"pagination__more",domProps:{textContent:t._s(e)}}):t._c("a",{staticClass:"pagination__item",class:{"pagination__item--active":e===t.selected},attrs:{href:"#!"},domProps:{textContent:t._s(e)},on:{click:function(n){n.preventDefault(),t.$emit("input",e)}}})])}),t._c("li",[t._c("a",{staticClass:"pagination__navigation",class:{"pagination__navigation--disabled":t.value===t.length},attrs:{href:"#!"},on:{click:function(e){e.preventDefault(),t.$emit("input",t.value+1)}}},[t._c("v-icon",[t._v("chevron_right")])])])],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("ul",{class:t.classes},[t._t("default")],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("ul",{staticClass:"navbar__items"},[t._l(t.items,function(e){return t._c("v-navbar-item",{attrs:{item:e,router:e.router||!1}})}),t._t("default")],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("ul",{staticClass:"breadcrumbs",class:t.classes,attrs:{items:t.items}},[t._l(t.items,function(e){return t._c("v-breadcrumbs-item",{attrs:{item:e,disabled:e.disabled}})}),t._t("default")],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{staticClass:"progress",class:t.classes,style:{height:this.height}},[t._c("div",{staticClass:"progress__bar",style:t.styles})])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("li",[t._c("a",{staticClass:"dropdown__item",attrs:{href:t.item.href},domProps:{innerHTML:t._s(t.item.text)}})])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("span",{directives:[{name:"show",rawName:"v-show",value:t.value,expression:"value"}],staticClass:"chip",class:t.classes},[t._t("default"),t.close?t._c("a",{staticClass:"chip__close",attrs:{href:"#!"},on:{click:function(e){e.preventDefault(),t.$emit("input",!1)}}},[t._c("v-icon",{attrs:{right:"right"}},[t._v("cancel")])]):t._e()],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("li",{staticClass:"sidebar__group"},[t._c("a",{staticClass:"sidebar__item-header",class:{"sidebar__item-header--active":t.active},attrs:{href:t.item.href},on:{click:function(e){e.preventDefault(),t.toggle()}}},[t.item.icon?t._c("v-icon",[t._v(t._s(t.item.icon))]):t._e(),t._c("span",{domProps:{textContent:t._s(t.item.text)}})]),t._c("transition",{on:{enter:t.enter,leave:t.leave}},[t._c("v-sidebar-items",{directives:[{name:"show",rawName:"v-show",value:t.active,expression:"active"}],ref:"group"},[t._t("default")],!0)])])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{staticClass:"parallax",style:{minHeight:this.height+"px"}},[t._c("div",{staticClass:"parallax__image-container"},[t._c("img",{ref:"img",staticClass:"parallax__image",style:t.styles,attrs:{src:t.src}}),t._t("default")],!0)])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{staticClass:"input-group"},[t._c("input",{ref:"input",class:t.classes,attrs:{type:"radio",disabled:t.disabled,id:t.id,name:t.name},domProps:{value:t.value}}),t._c("label",{attrs:{for:t.id},domProps:{innerHTML:t._s(t.label)}})])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("ul",{staticClass:"sidebar__items"},[t._l(t.items,function(e){return[e.items?t._c("v-sidebar-group",{attrs:{item:e.parent}},t._l(e.items,function(n){return t._c("v-sidebar-item",{attrs:{item:n,router:e.router||!0}})})):t._c("v-sidebar-item",{attrs:{item:e,router:e.router||!0}})]}),t._t("default")],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{staticClass:"card__row",class:t.classes,style:t.styles},[t._t("default")],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{staticClass:"collapsible__header",on:{click:t.click}},[t._t("default")],!0)},staticRenderFns:[]}},function(t,e,n){"use strict";function i(t){Object.keys(a.a).forEach(function(e){t.directive(e,a.a[e])}),Object.keys(r.a).forEach(function(e){t.component(e,r.a[e])}),t.prototype.$vuetify={bus:s.a,load:c.a,init:o.a,toast:u.a}}Object.defineProperty(e,"__esModule",{value:!0});var s=n(3),r=n(5),a=n(6),o=n(8),c=n(9),u=n(7);"undefined"!=typeof window&&window.Vue&&window.Vue.use(i),t.exports=i}])}); \ No newline at end of file +!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.Vuetify=e():t.Vuetify=e()}(this,function(){return function(t){function e(i){if(n[i])return n[i].exports;var s=n[i]={i:i,l:!1,exports:{}};return t[i].call(s.exports,s,s.exports,e),s.l=!0,s.exports}var n={};return e.m=t,e.c=n,e.i=function(t){return t},e.d=function(t,n,i){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:i})},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="/dist/",e(e.s=147)}([function(t,e,n){"use strict";function i(t,e){return void 0===e&&(e="div"),{functional:!0,render:function(n,i){var s=i.data,r=i.children;return s.staticClass=s.staticClass?t+" "+s.staticClass:t,n(e,s,r)}}}function s(t,e){return void 0===e&&(e={}),Object.assign(e,t.modifiers,{value:t.arg},t.value||{})}function r(t){for(var e=this.$parent;e;){if(!e.$el)return null;if(e.$el.classList.contains(t))return e;e=e.$parent}return null}e.a=i,e.c=s,e.b=r},function(t,e,n){"use strict";e.a={created:function(){this.$vuetify.bus.sub(this.events)},beforeDestroy:function(){this.$vuetify.bus.unsub(this.events)}}},function(t,e,n){"use strict";var i=n(1);e.a={data:function(){return{active:!1,activator:{}}},mixins:[i.a],mounted:function(){this.$vuetify.load(this.init)},computed:{events:function(){return[[this.$options.name+":open:"+this.id,this.open],[this.$options.name+":close:"+this.id,this.close],[this.$options.name+":toggle:"+this.id,this.toggle],["body:click",this.close]]}},methods:{init:function(){this.activator=document.querySelector("[data-"+this.$options.name+'="'+this.id+'"]')},open:function(){this.active=!0,this.$vuetify.bus.pub(this.$options.name+":opened",this.id)},close:function(t,e){if(void 0===e&&(e=!1),e)return this.active=!this.active;if(null!==this.activator){try{if(t.target===this.activator||this.activator.contains(t.target))return}catch(t){}this.active=!1}},toggle:function(){this.active=!this.active}}}},function(t,e,n){"use strict";var i=n(74),s=n.n(i),r=function(t){function e(){t.call(this),this.setMaxListeners(500)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.sub=function(t,e){var n=this,i=typeof t;return"object"!==i&&"array"!==i?this.on(t,e):void t.forEach(function(t){return n.on.apply(n,t)})},e.prototype.unsub=function(t,e){var n=this,i=typeof t;return"object"!==i&&"array"!==i?this.removeListener(t,e):void t.forEach(function(t){return n.removeListener.apply(n,t)})},e.prototype.pub=function(){this.emit.apply(this,arguments)},e}(s.a);e.a=new r},function(t,e,n){"use strict";e.a={data:function(){return{obj_height:null,parallax:null,parallax_dist:null,bottom:null,top:null,scroll_top:null,window_height:null,window_bottom:null}},mounted:function(){this.$vuetify.load(this.init)},beforeDestroy:function(){document.removeEventListener("scroll",this.translate,!1),document.removeEventListener("resize",this.translate,!1)},methods:{listeners:function(){document.addEventListener("scroll",this.translate,!1),document.addEventListener("resize",this.translate,!1)},translate:function(){this.calcDimensions();var t=(this.window_bottom-this.top)/(Number(this.height)+this.window_height);this.parallax=Math.round(this.parallax_dist*t),this.translated&&this.translated()},calcDimensions:function(){this.obj_height=this.objHeight(),this.parallax_dist=this.obj_height-this.height,this.top=this.elOffsetTop(),this.bottom=this.top+this.height,this.scroll_top=window.pageYOffset,this.window_height=window.innerHeight,this.window_bottom=this.scroll_top+this.window_height}}}},function(t,e,n){"use strict";function i(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];var n={};return t.forEach(function(t){Object.keys(t).forEach(function(e){n["V"+e]=t[e]})}),n}var s=n(46),r=n(47),a=n(48),o=n(49),c=n(50),u=n(51),l=n(52),d=n(53),f=n(54),p=n(55),h=n(56),v=n(57),m=n(58),_=n(59),b=n(60),y=n(61),g=n(62),x=n(63),w=n(64),F=n(65),R=n(66);e.a=i(s.a,r.a,a.a,o.a,c.a,u.a,l.a,d.a,f.a,p.a,h.a,v.a,m.a,_.a,b.a,y.a,g.a,x.a,w.a,F.a,R.a)},function(t,e,n){"use strict";var i=n(67),s=n(68),r=n(69),a=n(70),o=n(71),c=n(72);e.a={Badge:i.a,Dropdown:s.a,Modal:r.a,Ripple:a.a,SideBar:o.a,Tooltip:c.a}},function(t,e,n){"use strict";var i=function(){};i.prototype.toast=function t(e){var t=document.createElement("div");return t.classList.add("toast"),t.classList.add("toast--"+e),document.body.appendChild(t),t},i.prototype.create=function(t,e,n,i){void 0===e&&(e="right"),void 0===n&&(n=3e3);var s=document.querySelector(".toast--"+e);s||(s=this.toast(e));var r=document.createElement("div");r.classList.add("toast__content"),r.innerHTML=t,s.appendChild(r),setTimeout(function(){return r.classList.add("toast__content--active")},10),setTimeout(function(){r.classList.add("toast__content--remove"),setTimeout(function(){r.remove(),i&&i()},300)},n)},e.a=new i},function(t,e,n){"use strict";var i=n(3);e.a=function(){var t=function(t){return i.a.pub("body:click",t)};"undefined"!=typeof window.orientation?document.body.addEventListener("touchstart",t,!1):document.body.addEventListener("click",t,!1),i.a.sub("meta:title",function(t){document.title=t}),i.a.sub("meta:description",function(t){document.head.querySelector("meta[name=description]").content=t}),i.a.sub("meta:keywords",function(t){document.head.querySelector("meta[name=keywords]").content=t})}},function(t,e,n){"use strict";e.a=function(t){return"complete"===document.readyState?setTimeout(t,0):void document.addEventListener("DOMContentLoaded",t)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"alert",props:{dismissible:Boolean,error:Boolean,hideIcon:Boolean,icon:String,info:Boolean,success:Boolean,warning:Boolean,value:{type:Boolean,default:!0}},computed:{classes:function(){return{"alert--dismissible":this.dismissible,"alert--error":this.error,"alert--info":this.info,"alert--success":this.success,"alert--warning":this.warning}},mdIcon:function(){if(this.icon)return this.icon;switch(!0){case this.error:return"warning";case this.info:return"info";case this.success:return"check_circle";case this.warning:return"priority_high"}}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{footer:Boolean,leftFixedSidebar:Boolean,leftSidebar:Boolean,id:{type:String,default:"app"},rightFixedSidebar:Boolean,rightSidebar:Boolean,topFixedNavbar:Boolean,topNavbar:Boolean},computed:{classes:function(){return{"left-fixed-sidebar":this.leftFixedSidebar,"left-sidebar":this.leftSidebar,"right-fixed-sidebar":this.rightFixedSidebar,"right-sidebar":this.rightSidebar,"top-fixed-navbar":this.topFixedNavbar,"top-navbar":this.topNavbar}}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"breadcrumbs",props:{divider:{type:String,default:"/"},icons:Boolean,items:{type:Array,default:function(){return[]}}},computed:{classes:function(){return{"breadcrumbs--with-icons":this.icons}}},mounted:function(){this.$vuetify.load(this.init)},methods:{init:function(){var t=this;this.$children.forEach(function(e){return e.$el.dataset.divider=t.divider})}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"breadcrumbs-item",props:{disabled:Boolean,item:{type:Object,required:!0}},computed:{classes:function(){return{"breadcrumbs__item--disabled":this.disabled}}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=n(73);e.default={name:"button",mixins:[i.a],props:{block:Boolean,flat:Boolean,floating:Boolean,icon:Boolean,large:Boolean,loading:Boolean,outline:Boolean,raised:{type:Boolean,default:!0},ripple:{type:[Boolean,Object],default:!1},round:Boolean,small:Boolean,type:{type:String,default:"button"}},computed:{classes:function(){return{"btn--block":this.block,"btn--flat":this.flat,"btn--floating":this.floating,"btn--icon":this.icon,"btn--large":this.large,"btn--loading":this.loading,"btn--outline":this.outline,"btn--raised":this.raised,"btn--round":this.round,"btn--small":this.small,primary:this.primary,secondary:this.secondary,success:this.success,info:this.info,warning:this.warning,error:this.error}}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"card",props:{height:{type:String,default:"auto"},horizontal:Boolean,img:String},computed:{classes:function(){return{"card--horizontal":this.horizontal}},styles:function t(){var t={height:this.height};return this.img&&(t.background="url("+this.img+") center center / cover no-repeat"),t}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"card-row",props:{actions:Boolean,height:{type:String,default:"auto"},img:String},computed:{classes:function(){return{"card__row--actions":this.actions}},styles:function t(){var t={height:this.height};return this.img&&(t.background="url("+this.img+") center center / cover no-repeat"),t}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"chip",props:{close:Boolean,label:Boolean,outline:Boolean,small:Boolean,value:{type:Boolean,default:!0}},computed:{classes:function(){return{"chip--label":this.label,"chip--outline":this.outline,"chip--small":this.small,"chip--removable":this.close}}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"collapsible",props:{expand:Boolean},computed:{classes:function(){return{collapsible:!0}},params:function(){return{expand:this.expand}}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=n(1);e.default={name:"collapsible-body",mixins:[i.a],data:function(){return{active:!1}},computed:{events:function(){return[["collapse:toggle:"+this.$parent._uid,this.toggle]]}},methods:{enter:function(t){t.style.display="block",t.style.height=0,t.style.height=t.scrollHeight+"px"},leave:function(t){t.style.height=0},toggle:function(t){return t===this._uid||this.$parent.params.expand?void(t===this._uid&&(this.active=!this.active)):this.active=!1}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"collapsible-header",methods:{click:function(){this.$vuetify.bus.pub("collapse:toggle:"+this.$parent._uid,Number(this.getNextSibling(this.$el).getAttribute("uid")))},getNextSibling:function(t){if(!(t=t.nextSibling))return null;for(;1!=t.nodeType;)if(!(t=t.nextSibling))return null;return t}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=n(2);e.default={name:"dropdown",mixins:[i.a],props:{bottom:Boolean,id:{type:String,required:!0},hover:Boolean,items:{type:Array,default:function(){return[]}},right:Boolean},computed:{classes:function(){return{"dropdown--open":this.active,"dropdown--open-from-right":this.right}}},mounted:function(){this.$vuetify.bus.sub(this.$options.name+":opened",this.opened)},methods:{opened:function(t){this.active=t===this.id}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"dropdown-item",props:{item:{type:Object,required:!0}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"footer"}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"checkbox",data:function(){return{model:null}},props:{disabled:Boolean,filled:Boolean,gap:Boolean,id:{type:String,default:""},indeterminate:Boolean,label:{type:String,default:""},name:{type:String,default:""},value:{required:!1}},computed:{classes:function(){return{filled:this.filled}}},mounted:function(){var t=this;this.$refs.input.indeterminate=this.indeterminate,this.state(),this.$refs.input.onchange=function(){var e=this.checked,n=this.value;if(!t.model||"string"==typeof t.model)return t.$emit("input",!!e);var i=t.model.indexOf(n);e?t.model.push(n):t.model.splice(i,1),t.$emit("input",t.model)}},methods:{state:function(){("array"==typeof this.model&&this.model.includes(this.value)||this.value)&&(this.$refs.input.checked=!0)}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"radio",props:{disabled:Boolean,label:{type:String,default:""},gap:Boolean,id:{type:String,default:""},name:{type:String,default:""},value:[String,Number,Boolean]},computed:{classes:function(){return{gap:this.gap}}},mounted:function(){var t=this;this.$refs.input.checked=this.$el.value===this.value,this.$refs.input.onchange=function(){t.$emit("input",this.value)}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"select",data:function(){return{focused:!1}},props:{defaultText:{type:String,default:"Select..."},disabled:Boolean,id:{type:String,value:""},label:{type:String,value:""},multiple:Boolean,name:{type:String,value:""},options:{type:Array,default:function(){return[]}},value:{required:!1}},computed:{classes:function(){return{"input-group--dirty":!0,"input-group--focused":this.focused&&!this.multiple}}},mounted:function(){this.value&&(this.$refs.select.value=this.value)},methods:{update:function(){this.multiple?this.$emit("input",this.$refs.options.filter(function(t){return t.selected}).map(function(t){return t.value})):this.$emit("input",this.$refs.select.value)}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"text-input",data:function(){return{focused:!1,inputValue:""}},computed:{classes:function(){return{"input-group--focused":this.focused,"input-group--dirty":this.inputValue||this.placeholder||this.$refs.input&&this.$refs.input.value}}},props:{disabled:Boolean,label:String,id:String,name:String,placeholder:String,type:{default:"text"},value:{required:!1}},mounted:function(){this.inputValue=this.value},methods:{updateValue:function(t){this.inputValue=t.target.value,this.$emit("input",this.inputValue)}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"icon",data:function(){return{active:!1}},props:{large:Boolean,left:Boolean,medium:Boolean,right:Boolean,xLarge:Boolean},computed:{classes:function(){return{"icon--large":this.large,"icon--left":this.left,"icon--medium":this.medium,"icon--right":this.right,"icon--x-large":this.xLarge}}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=n(2);e.default={name:"modal",mixins:[i.a],props:{bottom:Boolean,id:{type:String,required:!0}},computed:{classes:function(){return{"modal--bottom":this.bottom}}},methods:{close:function(t){if(!t)return this.active=!1;if(t.target!==this.$refs.modal&&!this.$refs.modal.contains(t.target)&&null!==this.activator){try{if(t.target===this.activator||this.activator.contains(t.target))return}catch(t){}this.active=!1}}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"navbar",props:{fixed:Boolean},computed:{classes:function(){return{"navbar--fixed":this.fixed}}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"navbar-item",props:{item:{type:Object,required:!0},router:Boolean},methods:{click:function(){}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"navbar-items",props:{items:{type:Array,default:function(){return[]}}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"pagination",data:function(){return{selected:null}},props:{circle:Boolean,length:{type:Number,default:0},value:{type:Number,default:0}},watch:{value:function(){this.init()}},computed:{classes:function(){return{"pagination--circle":this.circle}},items:function(){if(this.length<=5)return this.range(1,this.length);var t=this.value-3;t=t>0?t:1;var e=t+6;e=e<=this.length?e:this.length,e===this.length&&(t=this.length-6);var n=this.range(t,e);return this.value>=4&&this.length>6&&n.splice(0,2,1,"..."),this.value+36&&n.splice(n.length-2,2,"...",this.length),n}},mounted:function(){this.$vuetify.load.call(this,this.init)},methods:{init:function(){var t=this;this.selected=null,setTimeout(function(){return t.selected=t.value},100)},range:function t(e,n){var t=[];e=e>0?e:1;for(var i=e;i<=n;i++)t.push(i);return t}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=n(4);e.default={name:"parallax",mixins:[i.a],props:{height:{type:[String,Number],default:500},src:{type:String,required:!0}},computed:{styles:function(){return{display:"block",transform:"translate3d(-50%, "+this.parallax+"px, 0)"}}},methods:{init:function(){var t=this;return this.$refs.img.complete?(console.log("here"),this.translate(),this.listeners(),this.$vuetify.bus.pub("parallax:ready")):void this.$refs.img.addEventListener("load",function(){t.translate(),t.listeners(),t.$vuetify.bus.pub("parallax:ready")},{once:!0})},objHeight:function(){return this.$refs.img.naturalHeight},elOffsetTop:function(){return this.$el.offsetTop}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=n(4);e.default={name:"parallax-content",mixins:[i.a],data:function(){return{height:null,opacity:1}},props:{opacityOffset:{type:[String,Number],default:.7}},computed:{styles:function(){return{opacity:this.opacity,transform:"translate3d(0, "+(this.parallax-.35*this.height)+"px, 0)"}}},methods:{init:function(){var t=this;this.$vuetify.bus.sub("parallax:ready",function(){t.height=t.$el.closest(".parallax").clientHeight,t.translate(),t.listeners()})},elOffsetTop:function(){return this.$el.closest(".parallax").offsetTop},objHeight:function(){return this.$el.previousSibling.naturalHeight},translated:function(){this.opacity=this.height*this.opacityOffset/this.parallax-1.7*this.opacityOffset}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"progress",props:{height:{type:String,default:"7px"},indeterminate:Boolean,max:{type:[String,Number],default:0},min:{type:[String,Number],default:0},value:{type:[String,Number],default:0}},computed:{classes:function(){return{"progress--indeterminate":this.indeterminate}},styles:function(){return{width:this.value+"%"}}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=this;e.default={props:{fill:{type:[Boolean,String],default:function(){return i.indeterminate?"none":"transparent"}},indeterminate:Boolean,rotate:{type:Number,default:0},size:{type:Number,default:32},width:{type:Number,default:4},value:{type:Number,default:0}},computed:{circumference:function(){return 2*Math.PI*this.radius},classes:function(){return{"progress-circular--indeterminate":this.indeterminate}},cxy:function(){return this.indeterminate?50:this.size/2},normalizedValue:function(){return this.value<0?0:this.value>100?100:this.value},radius:function(){return this.indeterminate?20:(this.size-this.width)/2},strokeDashArray:function(){return Math.round(1e3*this.circumference)/1e3},strokeDashOffset:function(){return(100-this.normalizedValue)/100*this.circumference+"px"},styles:function(){return{height:this.size+"px",width:this.size+"px"}},svgSize:function(){return!this.indeterminate&&this.size},svgStyles:function(){return{transform:"rotate("+this.rotate+"deg)"}},viewBox:function(){return!!this.indeterminate&&"25 25 50 50"}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=n(2);e.default={name:"sidebar",mixins:[i.a],props:{drawer:Boolean,fixed:Boolean,height:{type:String,default:"100vh"},id:{type:String,required:!0},mobile:{type:Boolean,default:!0},items:{type:Array,default:function(){return[]}},right:Boolean},computed:{classes:function(){return{"sidebar--mobile":this.mobile,"sidebar--fixed":this.fixed&&!this.right,"sidebar--fixed-right":this.fixed&&this.right,"sidebar--close":!this.active,"sidebar--open":this.active}},styles:function(){return{height:this.height}}},mounted:function(){var t=this;this.$vuetify.load(function(){t.resize(),window.addEventListener("resize",t.resize,!1)})},beforeDestroy:function(){window.removeEventListener("resize",this.resize)},methods:{resize:function(){this.drawer||(this.active=window.innerWidth>768)},close:function(t,e){void 0===e&&(e=!1);var n=window.innerWidth;if(e)return n>768&&!this.drawer?null:this.active=!1;if(!this.$el.contains(t.target)){var i=t.target,s=t.target.parentNode,r={};if(i&&(r=i.classList.contains("sidebar__item-header")),!r&&s&&(r=s.classList.contains("sidebar__item-header")),null!==this.activator&&!r){try{if(t.target===this.activator||this.activator.contains(t.target)||t.target===this.$el)return}catch(t){}n>768&&!this.drawer||(this.active=!1)}}}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=n(1),s=n(0);e.default={name:"sidebar-group",mixins:[i.a],data:function(){return{active:!1,height:0}},props:{item:Object,required:!0},computed:{events:function(){return[["sidebar-group:close:"+this.sidebar,this.close],["sidebar-group:open:"+this.sidebar,this.open]]},sidebar:function t(){var t=s.b.call(this,"sidebar");return t?t.id:null}},mounted:function(){this.$refs.group.$el.querySelector(".sidebar__item--active")&&(this.active=!0)},methods:{enter:function(t,e){t.style.display="block",t.style.height=0,setTimeout(function(){return t.style.height=t.scrollHeight+"px"},50);var n=function(){e(),t.removeEventListener("transitionend",n,!1)};t.addEventListener("transitionend",n,!1)},leave:function(t,e){t.style.height=0;var n=function(){e(),t.removeEventListener("transitionend",n,!1)};t.addEventListener("transitionend",n,!1)},open:function(){this.active=!0},toggle:function(){this.active=!this.active},close:function(t){this.active=t===this._uid}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=n(0);e.default={name:"sidebar-item",data:function(){return{sidebar:null,group:null}},props:{item:{type:Object,required:!0},router:Boolean},computed:{group:function(){var t=i.b.call(this,"sidebar__group");return t?t._uid:null},sidebar:function t(){var t=i.b.call(this,"sidebar");return t?t.id:null}},methods:{click:function(){this.$vuetify.bus.pub("sidebar-group:close:"+this.sidebar,this.group),this.$vuetify.bus.pub("sidebar:close:"+this.sidebar,{},!0)}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"sidebar-items",props:{items:{type:Array,default:function(){return[]}}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"slider",data:function(){return{current:null,items:[],slide_interval:{},reverse:!1}},props:{cycle:{type:Boolean,default:!0},icon:{type:String,default:"fiber_manual_record"},interval:{type:Number,default:6e3}},watch:{current:function(){this.items=this.$children.filter(function(t){return t.$el.classList&&t.$el.classList.contains("slider__item")}),this.cycle&&(clearInterval(this.slide_interval),this.startInterval()),this.$vuetify.bus.pub("slider:open",this.items[this.current]._uid,this.reverse)}},mounted:function(){this.init()},activated:function(){this.init()},methods:{init:function(){this.current=0},next:function(){return this.reverse=!1,this.current+1===this.items.length?this.current=0:void this.current++},prev:function(){return this.reverse=!0,this.current-1<0?this.current=this.items.length-1:void this.current--},select:function(t){this.reverse=te.clientWidth&&Boolean(r.dataset.right)&&(a=r.clientWidth-e.clientWidth),1==r.dataset.bottom&&(o=e.clientHeight),r.style.minWidth=e.clientWidth+"px",r.style.left=e.offsetLeft-a+"px",r.style.top=e.offsetTop+o+"px",i.pub("dropdown:open:"+n.arg)}}function s(t,e,n){t.dataset.dropdown=e.arg,t.onclick=function(s){return i(s,t,e,n.context.$vuetify.bus,!1)},t.onmouseenter=function(s){return i(s,t,e,n.context.$vuetify.bus,!0)}}e.a={bind:s,updated:s,componentUpdated:s,unbind:function(t){t.removeAttribute("onclick"),t.removeAttribute("onmouseenter"),t.removeAttribute("onmouseleave"),t.removeAttribute("data-dropdown")}}},function(t,e,n){"use strict";function i(t,e,n){t.dataset.modal=e.arg,t.onclick=function(t){t.preventDefault(),n.context.$vuetify.bus.pub("modal:open:"+e.arg)}}e.a={bind:i,updated:i,componentUpdated:i,unbind:function(t){t.removeAttribute("onclick"),t.removeAttribute("data-modal")}}},function(t,e,n){"use strict";function i(t,e,n){e.value&&("ontouchstart"in window&&(t.addEventListener("touchend",function(){return r.hide(t)},!1),t.addEventListener("touchcancel",function(){return r.hide(t)},!1)),t.addEventListener("mousedown",function(n){return r.show(n,t,e)},!1),t.addEventListener("mouseup",function(){return r.hide(t)},!1),t.addEventListener("mouseleave",function(){return r.hide(t)},!1))}function s(t,e){t.removeEventListener("touchstart",function(n){return r.show(n,t,e)},!1),t.removeEventListener("mousedown",function(n){return r.show(n,t,e)},!1),t.removeEventListener("touchend",function(){return r.hide(t)},!1),t.removeEventListener("touchcancel",function(){return r.hide(t)},!1),t.removeEventListener("mouseup",function(){return r.hide(t)},!1),t.removeEventListener("mouseleave",function(){return r.hide(t)},!1)}var r={show:function(t,e,n){var i=document.createElement("span"),s=document.createElement("span");i.appendChild(s),i.className="ripple__container",n.value.class&&i.classList.add(n.value.class),s.className="ripple__animation",s.style.width=2*e.clientWidth+"px",s.style.height=s.style.width,e.appendChild(i);var r=t.pageX-e.offsetLeft,a=t.pageY-e.offsetTop;s.classList.add("ripple__animation--enter"),s.classList.add("ripple__animation--visible"),s.style.transform="translate3d(-50%, -50%, 0) translate3d("+r+"px, "+a+"px, 0) scale3d(.001, .001, 1)",s.dataset.activated=Date.now(),setTimeout(function(){s.classList.remove("ripple__animation--enter"),s.style.transform="translate3d(-50%, -50%, 0) translate3d("+r+"px, "+a+"px, 0)"},0)},hide:function(t){var e=t.getElementsByClassName("ripple__animation");if(0!==e.length){var n=e[e.length-1],i=Date.now()-Number(n.dataset.activated),s=400-i;s=s<0?0:s,setTimeout(function(){n.classList.remove("ripple__animation--visible"),setTimeout(function(){n.parentNode.remove()},300)},s)}}};e.a={bind:i,unbind:s}},function(t,e,n){ +"use strict";function i(t,e,n){t.dataset.sidebar=e.arg,t.onclick=function(t){t.preventDefault(),n.context.$vuetify.bus.pub("sidebar:toggle:"+e.arg)}}e.a={bind:i,updated:i,componentUpdated:i,unbind:function(t){t.removeAttribute("onclick"),t.removeAttribute("data-sidebar")}}},function(t,e,n){"use strict";function i(t,e){var i=n.i(r.c)(e,{top:!0});s(t,e,i),t.dataset.tooltip=i.html,t.dataset.tooltipLocation=i.value}function s(t,e,n){t.removeAttribute("data-tooltip"),t.removeAttribute("data-tooltip-location")}var r=n(0);e.a={bind:i,updated:i,componentUpdated:i,unbind:s}},function(t,e,n){"use strict";e.a={props:{primary:Boolean,secondary:Boolean,success:Boolean,info:Boolean,warning:Boolean,error:Boolean}}},function(t,e){function n(){this._events=this._events||{},this._maxListeners=this._maxListeners||void 0}function i(t){return"function"==typeof t}function s(t){return"number"==typeof t}function r(t){return"object"==typeof t&&null!==t}function a(t){return void 0===t}t.exports=n,n.EventEmitter=n,n.prototype._events=void 0,n.prototype._maxListeners=void 0,n.defaultMaxListeners=10,n.prototype.setMaxListeners=function(t){if(!s(t)||t<0||isNaN(t))throw TypeError("n must be a positive number");return this._maxListeners=t,this},n.prototype.emit=function(t){var e,n,s,o,c,u;if(this._events||(this._events={}),"error"===t&&(!this._events.error||r(this._events.error)&&!this._events.error.length)){if(e=arguments[1],e instanceof Error)throw e;var l=new Error('Uncaught, unspecified "error" event. ('+e+")");throw l.context=e,l}if(n=this._events[t],a(n))return!1;if(i(n))switch(arguments.length){case 1:n.call(this);break;case 2:n.call(this,arguments[1]);break;case 3:n.call(this,arguments[1],arguments[2]);break;default:o=Array.prototype.slice.call(arguments,1),n.apply(this,o)}else if(r(n))for(o=Array.prototype.slice.call(arguments,1),u=n.slice(),s=u.length,c=0;c0&&this._events[t].length>s&&(this._events[t].warned=!0,console.error("(node) warning: possible EventEmitter memory leak detected. %d listeners added. Use emitter.setMaxListeners() to increase limit.",this._events[t].length),"function"==typeof console.trace&&console.trace())),this},n.prototype.on=n.prototype.addListener,n.prototype.once=function(t,e){function n(){this.removeListener(t,n),s||(s=!0,e.apply(this,arguments))}if(!i(e))throw TypeError("listener must be a function");var s=!1;return n.listener=e,this.on(t,n),this},n.prototype.removeListener=function(t,e){var n,s,a,o;if(!i(e))throw TypeError("listener must be a function");if(!this._events||!this._events[t])return this;if(n=this._events[t],a=n.length,s=-1,n===e||i(n.listener)&&n.listener===e)delete this._events[t],this._events.removeListener&&this.emit("removeListener",t,e);else if(r(n)){for(o=a;o-- >0;)if(n[o]===e||n[o].listener&&n[o].listener===e){s=o;break}if(s<0)return this;1===n.length?(n.length=0,delete this._events[t]):n.splice(s,1),this._events.removeListener&&this.emit("removeListener",t,e)}return this},n.prototype.removeAllListeners=function(t){var e,n;if(!this._events)return this;if(!this._events.removeListener)return 0===arguments.length?this._events={}:this._events[t]&&delete this._events[t],this;if(0===arguments.length){for(e in this._events)"removeListener"!==e&&this.removeAllListeners(e);return this.removeAllListeners("removeListener"),this._events={},this}if(n=this._events[t],i(n))this.removeListener(t,n);else if(n)for(;n.length;)this.removeListener(t,n[n.length-1]);return delete this._events[t],this},n.prototype.listeners=function(t){var e;return e=this._events&&this._events[t]?i(this._events[t])?[this._events[t]]:this._events[t].slice():[]},n.prototype.listenerCount=function(t){if(this._events){var e=this._events[t];if(i(e))return 1;if(e)return e.length}return 0},n.listenerCount=function(t,e){return t.listenerCount(e)}},function(t,e,n){var i,s;i=n(10);var r=n(133);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(11);var r=n(115);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(12);var r=n(137);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(13);var r=n(119);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(14);var r=n(120);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(15);var r=n(116);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(16);var r=n(145);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(17);var r=n(140);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(18);var r=n(135);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(19);var r=n(132);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(20);var r=n(146);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(21);var r=n(114);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(22);var r=n(139);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(23);var r=n(117);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(24);var r=n(124);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(25);var r=n(143);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(26);var r=n(121);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(27);var r=n(111);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(28);var r=n(125);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(29);var r=n(126);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(30);var r=n(131);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(31);var r=n(118);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(32);var r=n(136);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(33);var r=n(134);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(34);var r=n(142);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(35);var r=n(127);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(36);var r=n(138);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(37);var r=n(128);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(38);var r=n(129);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(39);var r=n(141);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(40);var r=n(113);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(41);var r=n(144);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(42);var r=n(123);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(43);var r=n(112);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(44);var r=n(130);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e,n){var i,s;i=n(45);var r=n(122);s=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(s=i=i.default),"function"==typeof s&&(s=s.options),s.render=r.render,s.staticRenderFns=r.staticRenderFns,t.exports=i},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{staticClass:"input-group",class:t.classes},[t._c("label",{attrs:{for:t.id},domProps:{innerHTML:t._s(t.label)}}),t._c("input",{ref:"input",attrs:{disabled:t.disabled,id:t.id,name:t.name,placeholder:t.placeholder,type:t.type},domProps:{value:t.inputValue},on:{blur:function(e){t.focused=!1},input:t.updateValue,focus:function(e){t.focused=!0}}})])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("transition",{attrs:{name:t.transition}},[t._c("div",{directives:[{name:"show",rawName:"v-show",value:t.active,expression:"active"}],staticClass:"slider__item",class:{reverse:t.reverse},style:t.styles},[t._t("default")],!0)])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("li",[t.router?t._c("router-link",{staticClass:"sidebar__item",attrs:{"active-class":"sidebar__item--active",exact:"/"===t.item.href,to:t.item.href},nativeOn:{click:function(e){t.click()}}},[t.item.icon?t._c("v-icon",[t._v(t._s(t.item.icon))]):t._e(),t._c("span",{domProps:{textContent:t._s(t.item.text)}}),t._t("default")],!0):t._c("a",{staticClass:"sidebar__item",attrs:{href:t.item.href},on:{click:function(e){t.click()}}},[t.item.icon?t._c("v-icon",[t._v(t._s(t.item.icon))]):t._e(),t._c("span",{domProps:{textContent:t._s(t.item.text)}}),t._t("default")],!0)])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("ul",{staticClass:"dropdown",class:t.classes,attrs:{"data-bottom":t.bottom,"data-hover":t.hover,"data-right":t.right,id:t.id}},[t._l(t.items,function(e){return t._c("v-dropdown-item",{attrs:{item:e}})}),t._t("default")],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{staticClass:"with",class:t.classes,attrs:{id:t.id}},[t._t("default")],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{staticClass:"card",class:t.classes,style:t.styles},[t._t("default")],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("footer",{staticClass:"footer"},[t._t("default")],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("li",[t.router?t._c("router-link",{staticClass:"navbar__item",attrs:{"active-class":"navbar__item--active",exact:"/"===t.item.href,to:t.item.href},nativeOn:{click:function(e){t.click()}}},[t.item.icon?t._c("v-icon",[t._v(t._s(t.item.text))]):t._c("span",{domProps:{innerHTML:t._s(t.item.text)}})]):t._c("a",{staticClass:"navbar__item",attrs:{href:t.item.href}},[t.item.icon?t._c("v-icon",[t._v(t._s(t.item.text))]):t._c("span",{domProps:{innerHTML:t._s(t.item.text)}})])])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("li",[t._c("a",{staticClass:"breadcrumbs__item",class:t.classes,attrs:{href:t.item.href},domProps:{innerHTML:t._s(t.item.text)}})])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("button",{directives:[{name:"ripple",rawName:"v-ripple",value:t.ripple,expression:"ripple"}],staticClass:"btn",class:t.classes,attrs:{type:t.type}},[t._c("span",{staticClass:"btn__content"},[t._t("default")],!0),t.loading?t._c("span",{staticClass:"btn__loading"},[t._t("loader"),t.$slots.loader?t._e():t._c("v-progress-circular",{attrs:{indeterminate:"indeterminate"}})],!0):t._e()])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{staticClass:"input-group",class:t.classes},[t._c("label",{attrs:{for:t.id},domProps:{textContent:t._s(t.label)}}),t._c("select",{ref:"select",attrs:{disabled:t.disabled,id:t.id,name:t.name,multiple:t.multiple},domProps:{value:t.value},on:{blur:function(e){t.focused=!1},click:function(e){t.focused=!0},input:t.update}},[t._c("option",{attrs:{value:"",disabled:"disabled",selected:"selected"},domProps:{textContent:t._s(t.defaultText)}}),t._l(t.options,function(e){return t._c("option",{ref:"options",refInFor:!0,domProps:{value:e.value,textContent:t._s(e.text)}})})],!0)])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("transition",{attrs:{name:t.transition}},[t._c("div",{directives:[{name:"show",rawName:"v-show",value:t.active,expression:"active"}],staticClass:"tabs__item shift",attrs:{id:t.id}},[t._t("default")],!0)])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{staticClass:"slider"},[t._c("div",{staticClass:"slider__left"},[t._c("v-btn",{attrs:{icon:"icon"},nativeOn:{click:function(e){t.prev(e)}}},[t._c("v-icon",[t._v("chevron_left")])])]),t._c("div",{staticClass:"slider__right"},[t._c("v-btn",{attrs:{icon:"icon"},nativeOn:{click:function(e){t.next(e)}}},[t._c("v-icon",[t._v("chevron_right")])])]),t._c("div",{staticClass:"slider__controls"},t._l(t.items,function(e,n){return t._c("v-btn",{staticClass:"slider__controls__item",class:{"slider__controls__item--active":n===t.current},attrs:{icon:"icon"}},[t._c("v-icon",{nativeOn:{click:function(e){t.select(n)}}},[t._v(t._s(t.icon))])])})),t._t("default")],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{staticClass:"input-group"},[t._c("input",{ref:"input",class:t.classes,attrs:{type:"checkbox",disabled:t.disabled,id:t.id,name:t.name},domProps:{value:t.value}}),t._c("label",{attrs:{for:t.id},domProps:{innerHTML:t._s(t.label)}})])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("i",{staticClass:"material-icons icon",class:t.classes},[t._c("span",[t._t("default")],!0)])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{staticClass:"modal-overlay",class:{"modal-overlay--open":this.active}},[t._c("transition",{attrs:{name:"modal"}},[t._c("div",{directives:[{name:"show",rawName:"v-show",value:t.active,expression:"active"}],ref:"modal",staticClass:"modal",class:t.classes,attrs:{id:t.id}},[t._t("default")],!0)])])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{staticClass:"parallax__content",style:t.styles},[t._t("default")],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{staticClass:"progress-circular",class:t.classes,style:t.styles},[t._c("svg",{style:t.svgStyles,attrs:{xmlns:"http://www.w3.org/2000/svg",height:t.svgSize,width:t.svgSize,viewBox:t.viewBox}},[t.indeterminate?t._e():t._c("circle",{staticClass:"progress-circular__underlay",attrs:{fill:"transparent",cx:t.cxy,cy:t.cxy,r:t.radius,"stroke-width":t.width,"stroke-dasharray":t.strokeDashArray,"stroke-dashoffset":0}}),t._c("circle",{staticClass:"progress-circular__overlay",attrs:{fill:t.fill,cx:t.cxy,cy:t.cxy,r:t.radius,"stroke-width":t.width,"stroke-dasharray":t.strokeDashArray,"stroke-dashoffset":t.strokeDashOffset}})]),t._c("div",{staticClass:"progress-circular__info"},[t._t("default")],!0)])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("aside",{staticClass:"sidebar",class:t.classes,style:t.styles,attrs:{id:t.id}},[t._t("top"),t.items.length>0?t._c("v-sidebar-items",{attrs:{items:t.items}}):t._e(),t._t("default")],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("a",{staticClass:"tabs__tab",class:t.classes,attrs:{href:t.href},on:{click:function(e){e.preventDefault(),t.click(e)}}},[t._t("default")],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("nav",{staticClass:"navbar",class:t.classes},[t._t("default")],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("transition",{on:{enter:t.enter,leave:t.leave}},[t._c("div",{directives:[{name:"show",rawName:"v-show",value:t.active,expression:"active"}],staticClass:"collapsible__body",attrs:{uid:t._uid}},[t._t("default")],!0)])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{directives:[{name:"show",rawName:"v-show",value:t.value,expression:"value"}],staticClass:"alert",class:t.classes},[t.hideIcon?t._e():t._c("v-icon",{staticClass:"alert__icon"},[t._v(t._s(t.mdIcon))]),t._c("div",[t._t("default")],!0),t.dismissible?t._c("a",{staticClass:"alert__dismissible",attrs:{href:"#!"},on:{click:function(e){e.preventDefault(),t.$emit("input",!1)}}},[t._c("v-icon",{attrs:{right:"right"}},[t._v("cancel")])]):t._e()])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("ul",{staticClass:"pagination",class:t.classes},[t._c("li",[t._c("a",{staticClass:"pagination__navigation",class:{"pagination__navigation--disabled":1===t.value},attrs:{href:"#!"},on:{click:function(e){e.preventDefault(),t.$emit("input",t.value-1)}}},[t._c("v-icon",[t._v("chevron_left")])])]),t._l(t.items,function(e){return t._c("li",[isNaN(e)?t._c("span",{staticClass:"pagination__more",domProps:{textContent:t._s(e)}}):t._c("a",{staticClass:"pagination__item",class:{"pagination__item--active":e===t.selected},attrs:{href:"#!"},domProps:{textContent:t._s(e)},on:{click:function(n){n.preventDefault(),t.$emit("input",e)}}})])}),t._c("li",[t._c("a",{staticClass:"pagination__navigation",class:{"pagination__navigation--disabled":t.value===t.length},attrs:{href:"#!"},on:{click:function(e){e.preventDefault(),t.$emit("input",t.value+1)}}},[t._c("v-icon",[t._v("chevron_right")])])])],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("ul",{class:t.classes},[t._t("default")],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("ul",{staticClass:"navbar__items"},[t._l(t.items,function(e){return t._c("v-navbar-item",{attrs:{item:e,router:e.router||!1}})}),t._t("default")],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("ul",{staticClass:"breadcrumbs",class:t.classes,attrs:{items:t.items}},[t._l(t.items,function(e){return t._c("v-breadcrumbs-item",{attrs:{item:e,disabled:e.disabled}})}),t._t("default")],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{staticClass:"progress",class:t.classes,style:{height:this.height}},[t._c("div",{staticClass:"progress__bar",style:t.styles})])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("li",[t._c("a",{staticClass:"dropdown__item",attrs:{href:t.item.href},domProps:{innerHTML:t._s(t.item.text)}})])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("span",{directives:[{name:"show",rawName:"v-show",value:t.value,expression:"value"}],staticClass:"chip",class:t.classes},[t._t("default"),t.close?t._c("a",{staticClass:"chip__close",attrs:{href:"#!"},on:{click:function(e){e.preventDefault(),t.$emit("input",!1)}}},[t._c("v-icon",{attrs:{right:"right"}},[t._v("cancel")])]):t._e()],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("li",{staticClass:"sidebar__group"},[t._c("a",{staticClass:"sidebar__item-header",class:{"sidebar__item-header--active":t.active},attrs:{href:t.item.href},on:{click:function(e){e.preventDefault(),t.toggle()}}},[t.item.icon?t._c("v-icon",[t._v(t._s(t.item.icon))]):t._e(),t._c("span",{domProps:{textContent:t._s(t.item.text)}})]),t._c("transition",{on:{enter:t.enter,leave:t.leave}},[t._c("v-sidebar-items",{directives:[{name:"show",rawName:"v-show",value:t.active,expression:"active"}],ref:"group"},[t._t("default")],!0)])])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{staticClass:"parallax",style:{minHeight:this.height+"px"}},[t._c("div",{staticClass:"parallax__image-container"},[t._c("img",{ref:"img",staticClass:"parallax__image",style:t.styles,attrs:{src:t.src}}),t._t("default")],!0)])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{staticClass:"input-group"},[t._c("input",{ref:"input",class:t.classes,attrs:{type:"radio",disabled:t.disabled,id:t.id,name:t.name},domProps:{value:t.value}}),t._c("label",{attrs:{for:t.id},domProps:{innerHTML:t._s(t.label)}})])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("ul",{staticClass:"sidebar__items"},[t._l(t.items,function(e){return[e.items?t._c("v-sidebar-group",{attrs:{item:e.parent}},t._l(e.items,function(n){return t._c("v-sidebar-item",{attrs:{item:n,router:e.router||!0}})})):t._c("v-sidebar-item",{attrs:{item:e,router:e.router||!0}})]}),t._t("default")],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{staticClass:"card__row",class:t.classes,style:t.styles},[t._t("default")],!0)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this;return t._c("div",{staticClass:"collapsible__header",on:{click:t.click}},[t._t("default")],!0)},staticRenderFns:[]}},function(t,e,n){"use strict";function i(t){Object.keys(a.a).forEach(function(e){t.directive(e,a.a[e])}),Object.keys(r.a).forEach(function(e){t.component(e,r.a[e])}),t.prototype.$vuetify={bus:s.a,load:c.a,init:o.a,toast:u.a}}Object.defineProperty(e,"__esModule",{value:!0});var s=n(3),r=n(5),a=n(6),o=n(8),c=n(9),u=n(7);"undefined"!=typeof window&&window.Vue&&window.Vue.use(i),t.exports=i}])}); \ No newline at end of file