From 096f163197f1c04c7d7a75387e99ca1dc91dc686 Mon Sep 17 00:00:00 2001 From: = <=> Date: Wed, 4 Sep 2024 13:19:49 +0700 Subject: [PATCH] minify --- app/Views/kewilayahan/dist/kpdl.js | 63630 +-------------------------- 1 file changed, 2 insertions(+), 63628 deletions(-) diff --git a/app/Views/kewilayahan/dist/kpdl.js b/app/Views/kewilayahan/dist/kpdl.js index 135d83fb..575a4b3b 100644 --- a/app/Views/kewilayahan/dist/kpdl.js +++ b/app/Views/kewilayahan/dist/kpdl.js @@ -1,63628 +1,2 @@ -/******/ (() => { // webpackBootstrap -/******/ var __webpack_modules__ = ({ - -/***/ 3148: -/***/ ((module) => { - -"use strict"; - -/** - * Clone helper - * - * Clone an array or object - * - * @param items - * @returns {*} - */ - -function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); } - -function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } - -function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } - -function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); } - -function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); } - -function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } - -module.exports = function clone(items) { - var cloned; - - if (Array.isArray(items)) { - var _cloned; - - cloned = []; - - (_cloned = cloned).push.apply(_cloned, _toConsumableArray(items)); - } else { - cloned = {}; - Object.keys(items).forEach(function (prop) { - cloned[prop] = items[prop]; - }); - } - - return cloned; -}; - -/***/ }), - -/***/ 4718: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var variadic = __webpack_require__(6736); -/** - * Delete keys helper - * - * Delete one or multiple keys from an object - * - * @param obj - * @param keys - * @returns {void} - */ - - -module.exports = function deleteKeys(obj) { - for (var _len = arguments.length, keys = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { - keys[_key - 1] = arguments[_key]; - } - - variadic(keys).forEach(function (key) { - // eslint-disable-next-line - delete obj[key]; - }); -}; - -/***/ }), - -/***/ 9937: -/***/ ((module) => { - -"use strict"; - - -function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); } - -module.exports = { - /** - * @returns {boolean} - */ - isArray: function isArray(item) { - return Array.isArray(item); - }, - - /** - * @returns {boolean} - */ - isObject: function isObject(item) { - return _typeof(item) === 'object' && Array.isArray(item) === false && item !== null; - }, - - /** - * @returns {boolean} - */ - isFunction: function isFunction(item) { - return typeof item === 'function'; - } -}; - -/***/ }), - -/***/ 6325: -/***/ ((module) => { - -"use strict"; - -/** - * Get value of a nested property - * - * @param mainObject - * @param key - * @returns {*} - */ - -module.exports = function nestedValue(mainObject, key) { - try { - return key.split('.').reduce(function (obj, property) { - return obj[property]; - }, mainObject); - } catch (err) { - // If we end up here, we're not working with an object, and @var mainObject is the value itself - return mainObject; - } -}; - -/***/ }), - -/***/ 7015: -/***/ ((module) => { - -"use strict"; - -/** - * Values helper - * - * Retrieve values from [this.items] when it is an array, object or Collection - * - * @param items - * @returns {*} - */ - -function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); } - -function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } - -function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } - -function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); } - -function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); } - -function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } - -module.exports = function values(items) { - var valuesArray = []; - - if (Array.isArray(items)) { - valuesArray.push.apply(valuesArray, _toConsumableArray(items)); - } else if (items.constructor.name === 'Collection') { - valuesArray.push.apply(valuesArray, _toConsumableArray(items.all())); - } else { - Object.keys(items).forEach(function (prop) { - return valuesArray.push(items[prop]); - }); - } - - return valuesArray; -}; - -/***/ }), - -/***/ 6736: -/***/ ((module) => { - -"use strict"; - -/** - * Variadic helper function - * - * @param args - * @returns {Array} - */ - -module.exports = function variadic(args) { - if (Array.isArray(args[0])) { - return args[0]; - } - - return args; -}; - -/***/ }), - -/***/ 6035: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); } - -function Collection(collection) { - if (collection !== undefined && !Array.isArray(collection) && _typeof(collection) !== 'object') { - this.items = [collection]; - } else if (collection instanceof this.constructor) { - this.items = collection.all(); - } else { - this.items = collection || []; - } -} -/** - * Symbol.iterator - * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/iterator - */ - - -var SymbolIterator = __webpack_require__(8766); - -if (typeof Symbol !== 'undefined') { - Collection.prototype[Symbol.iterator] = SymbolIterator; -} -/** - * Support JSON.stringify - * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify - */ - - -Collection.prototype.toJSON = function toJSON() { - return this.items; -}; - -Collection.prototype.all = __webpack_require__(7793); -Collection.prototype.average = __webpack_require__(8137); -Collection.prototype.avg = __webpack_require__(4294); -Collection.prototype.chunk = __webpack_require__(7647); -Collection.prototype.collapse = __webpack_require__(4735); -Collection.prototype.combine = __webpack_require__(3899); -Collection.prototype.concat = __webpack_require__(1344); -Collection.prototype.contains = __webpack_require__(4309); -Collection.prototype.containsOneItem = __webpack_require__(130); -Collection.prototype.count = __webpack_require__(6853); -Collection.prototype.countBy = __webpack_require__(9920); -Collection.prototype.crossJoin = __webpack_require__(6862); -Collection.prototype.dd = __webpack_require__(6688); -Collection.prototype.diff = __webpack_require__(9695); -Collection.prototype.diffAssoc = __webpack_require__(1640); -Collection.prototype.diffKeys = __webpack_require__(3635); -Collection.prototype.diffUsing = __webpack_require__(9787); -Collection.prototype.doesntContain = __webpack_require__(3931); -Collection.prototype.dump = __webpack_require__(4198); -Collection.prototype.duplicates = __webpack_require__(3990); -Collection.prototype.each = __webpack_require__(2917); -Collection.prototype.eachSpread = __webpack_require__(5010); -Collection.prototype.every = __webpack_require__(7065); -Collection.prototype.except = __webpack_require__(5253); -Collection.prototype.filter = __webpack_require__(3222); -Collection.prototype.first = __webpack_require__(4980); -Collection.prototype.firstOrFail = __webpack_require__(2033); -Collection.prototype.firstWhere = __webpack_require__(5193); -Collection.prototype.flatMap = __webpack_require__(6829); -Collection.prototype.flatten = __webpack_require__(6200); -Collection.prototype.flip = __webpack_require__(5735); -Collection.prototype.forPage = __webpack_require__(6142); -Collection.prototype.forget = __webpack_require__(1893); -Collection.prototype.get = __webpack_require__(7766); -Collection.prototype.groupBy = __webpack_require__(1008); -Collection.prototype.has = __webpack_require__(7538); -Collection.prototype.implode = __webpack_require__(1666); -Collection.prototype.intersect = __webpack_require__(479); -Collection.prototype.intersectByKeys = __webpack_require__(9758); -Collection.prototype.isEmpty = __webpack_require__(9635); -Collection.prototype.isNotEmpty = __webpack_require__(4154); -Collection.prototype.join = __webpack_require__(2800); -Collection.prototype.keyBy = __webpack_require__(5024); -Collection.prototype.keys = __webpack_require__(5968); -Collection.prototype.last = __webpack_require__(8080); -Collection.prototype.macro = __webpack_require__(6498); -Collection.prototype.make = __webpack_require__(7074); -Collection.prototype.map = __webpack_require__(5008); -Collection.prototype.mapSpread = __webpack_require__(4595); -Collection.prototype.mapToDictionary = __webpack_require__(1357); -Collection.prototype.mapInto = __webpack_require__(1922); -Collection.prototype.mapToGroups = __webpack_require__(7985); -Collection.prototype.mapWithKeys = __webpack_require__(3976); -Collection.prototype.max = __webpack_require__(5400); -Collection.prototype.median = __webpack_require__(4178); -Collection.prototype.merge = __webpack_require__(2202); -Collection.prototype.mergeRecursive = __webpack_require__(2488); -Collection.prototype.min = __webpack_require__(2678); -Collection.prototype.mode = __webpack_require__(171); -Collection.prototype.nth = __webpack_require__(8088); -Collection.prototype.only = __webpack_require__(3310); -Collection.prototype.pad = __webpack_require__(3555); -Collection.prototype.partition = __webpack_require__(8644); -Collection.prototype.pipe = __webpack_require__(4159); -Collection.prototype.pluck = __webpack_require__(1339); -Collection.prototype.pop = __webpack_require__(4505); -Collection.prototype.prepend = __webpack_require__(4242); -Collection.prototype.pull = __webpack_require__(2963); -Collection.prototype.push = __webpack_require__(52); -Collection.prototype.put = __webpack_require__(255); -Collection.prototype.random = __webpack_require__(4579); -Collection.prototype.reduce = __webpack_require__(5598); -Collection.prototype.reject = __webpack_require__(3351); -Collection.prototype.replace = __webpack_require__(1478); -Collection.prototype.replaceRecursive = __webpack_require__(4908); -Collection.prototype.reverse = __webpack_require__(9828); -Collection.prototype.search = __webpack_require__(7568); -Collection.prototype.shift = __webpack_require__(1770); -Collection.prototype.shuffle = __webpack_require__(2819); -Collection.prototype.skip = __webpack_require__(8207); -Collection.prototype.skipUntil = __webpack_require__(5231); -Collection.prototype.skipWhile = __webpack_require__(8918); -Collection.prototype.slice = __webpack_require__(3680); -Collection.prototype.sole = __webpack_require__(2357); -Collection.prototype.some = __webpack_require__(7724); -Collection.prototype.sort = __webpack_require__(7336); -Collection.prototype.sortDesc = __webpack_require__(25); -Collection.prototype.sortBy = __webpack_require__(4025); -Collection.prototype.sortByDesc = __webpack_require__(8700); -Collection.prototype.sortKeys = __webpack_require__(968); -Collection.prototype.sortKeysDesc = __webpack_require__(905); -Collection.prototype.splice = __webpack_require__(8104); -Collection.prototype.split = __webpack_require__(1442); -Collection.prototype.sum = __webpack_require__(2561); -Collection.prototype.take = __webpack_require__(9911); -Collection.prototype.takeUntil = __webpack_require__(7719); -Collection.prototype.takeWhile = __webpack_require__(286); -Collection.prototype.tap = __webpack_require__(5331); -Collection.prototype.times = __webpack_require__(1608); -Collection.prototype.toArray = __webpack_require__(452); -Collection.prototype.toJson = __webpack_require__(3647); -Collection.prototype.transform = __webpack_require__(4206); -Collection.prototype.undot = __webpack_require__(4952); -Collection.prototype.unless = __webpack_require__(1254); -Collection.prototype.unlessEmpty = __webpack_require__(5818); -Collection.prototype.unlessNotEmpty = __webpack_require__(6419); -Collection.prototype.union = __webpack_require__(2453); -Collection.prototype.unique = __webpack_require__(7543); -Collection.prototype.unwrap = __webpack_require__(9743); -Collection.prototype.values = __webpack_require__(1914); -Collection.prototype.when = __webpack_require__(1196); -Collection.prototype.whenEmpty = __webpack_require__(6419); -Collection.prototype.whenNotEmpty = __webpack_require__(5818); -Collection.prototype.where = __webpack_require__(4245); -Collection.prototype.whereBetween = __webpack_require__(2709); -Collection.prototype.whereIn = __webpack_require__(5350); -Collection.prototype.whereInstanceOf = __webpack_require__(3791); -Collection.prototype.whereNotBetween = __webpack_require__(9202); -Collection.prototype.whereNotIn = __webpack_require__(2947); -Collection.prototype.whereNull = __webpack_require__(9864); -Collection.prototype.whereNotNull = __webpack_require__(2037); -Collection.prototype.wrap = __webpack_require__(5576); -Collection.prototype.zip = __webpack_require__(3445); - -var collect = function collect(collection) { - return new Collection(collection); -}; - -module.exports = collect; -module.exports.collect = collect; -module.exports["default"] = collect; -module.exports.Collection = Collection; - -/***/ }), - -/***/ 7793: -/***/ ((module) => { - -"use strict"; - - -module.exports = function all() { - return this.items; -}; - -/***/ }), - -/***/ 8137: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var _require = __webpack_require__(9937), - isFunction = _require.isFunction; - -module.exports = function average(key) { - if (key === undefined) { - return this.sum() / this.items.length; - } - - if (isFunction(key)) { - return new this.constructor(this.items).sum(key) / this.items.length; - } - - return new this.constructor(this.items).pluck(key).sum() / this.items.length; -}; - -/***/ }), - -/***/ 4294: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var average = __webpack_require__(8137); - -module.exports = average; - -/***/ }), - -/***/ 7647: -/***/ ((module) => { - -"use strict"; - - -function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); } - -module.exports = function chunk(size) { - var _this = this; - - var chunks = []; - var index = 0; - - if (Array.isArray(this.items)) { - do { - var items = this.items.slice(index, index + size); - var collection = new this.constructor(items); - chunks.push(collection); - index += size; - } while (index < this.items.length); - } else if (_typeof(this.items) === 'object') { - var keys = Object.keys(this.items); - - var _loop = function _loop() { - var keysOfChunk = keys.slice(index, index + size); - var collection = new _this.constructor({}); - keysOfChunk.forEach(function (key) { - return collection.put(key, _this.items[key]); - }); - chunks.push(collection); - index += size; - }; - - do { - _loop(); - } while (index < keys.length); - } else { - chunks.push(new this.constructor([this.items])); - } - - return new this.constructor(chunks); -}; - -/***/ }), - -/***/ 4735: -/***/ ((module) => { - -"use strict"; - - -function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); } - -function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } - -function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } - -function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); } - -function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); } - -function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } - -module.exports = function collapse() { - var _ref; - - return new this.constructor((_ref = []).concat.apply(_ref, _toConsumableArray(this.items))); -}; - -/***/ }), - -/***/ 3899: -/***/ ((module) => { - -"use strict"; - - -function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); } - -function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } - -function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } - -function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } - -function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } - -function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } - -function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); } - -module.exports = function combine(array) { - var _this = this; - - var values = array; - - if (values instanceof this.constructor) { - values = array.all(); - } - - var collection = {}; - - if (Array.isArray(this.items) && Array.isArray(values)) { - this.items.forEach(function (key, iterator) { - collection[key] = values[iterator]; - }); - } else if (_typeof(this.items) === 'object' && _typeof(values) === 'object') { - Object.keys(this.items).forEach(function (key, index) { - collection[_this.items[key]] = values[Object.keys(values)[index]]; - }); - } else if (Array.isArray(this.items)) { - collection[this.items[0]] = values; - } else if (typeof this.items === 'string' && Array.isArray(values)) { - var _values = values; - - var _values2 = _slicedToArray(_values, 1); - - collection[this.items] = _values2[0]; - } else if (typeof this.items === 'string') { - collection[this.items] = values; - } - - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 1344: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); } - -var clone = __webpack_require__(3148); - -module.exports = function concat(collectionOrArrayOrObject) { - var list = collectionOrArrayOrObject; - - if (collectionOrArrayOrObject instanceof this.constructor) { - list = collectionOrArrayOrObject.all(); - } else if (_typeof(collectionOrArrayOrObject) === 'object') { - list = []; - Object.keys(collectionOrArrayOrObject).forEach(function (property) { - list.push(collectionOrArrayOrObject[property]); - }); - } - - var collection = clone(this.items); - list.forEach(function (item) { - if (_typeof(item) === 'object') { - Object.keys(item).forEach(function (key) { - return collection.push(item[key]); - }); - } else { - collection.push(item); - } - }); - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 4309: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); } - -function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } - -function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } - -function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); } - -function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); } - -function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } - -var values = __webpack_require__(7015); - -var _require = __webpack_require__(9937), - isFunction = _require.isFunction; - -module.exports = function contains(key, value) { - if (value !== undefined) { - if (Array.isArray(this.items)) { - return this.items.filter(function (items) { - return items[key] !== undefined && items[key] === value; - }).length > 0; - } - - return this.items[key] !== undefined && this.items[key] === value; - } - - if (isFunction(key)) { - return this.items.filter(function (item, index) { - return key(item, index); - }).length > 0; - } - - if (Array.isArray(this.items)) { - return this.items.indexOf(key) !== -1; - } - - var keysAndValues = values(this.items); - keysAndValues.push.apply(keysAndValues, _toConsumableArray(Object.keys(this.items))); - return keysAndValues.indexOf(key) !== -1; -}; - -/***/ }), - -/***/ 130: -/***/ ((module) => { - -"use strict"; - - -module.exports = function containsOneItem() { - return this.count() === 1; -}; - -/***/ }), - -/***/ 6853: -/***/ ((module) => { - -"use strict"; - - -module.exports = function count() { - var arrayLength = 0; - - if (Array.isArray(this.items)) { - arrayLength = this.items.length; - } - - return Math.max(Object.keys(this.items).length, arrayLength); -}; - -/***/ }), - -/***/ 9920: -/***/ ((module) => { - -"use strict"; - - -module.exports = function countBy() { - var fn = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : function (value) { - return value; - }; - return new this.constructor(this.items).groupBy(fn).map(function (value) { - return value.count(); - }); -}; - -/***/ }), - -/***/ 6862: -/***/ ((module) => { - -"use strict"; - - -module.exports = function crossJoin() { - function join(collection, constructor, args) { - var current = args[0]; - - if (current instanceof constructor) { - current = current.all(); - } - - var rest = args.slice(1); - var last = !rest.length; - var result = []; - - for (var i = 0; i < current.length; i += 1) { - var collectionCopy = collection.slice(); - collectionCopy.push(current[i]); - - if (last) { - result.push(collectionCopy); - } else { - result = result.concat(join(collectionCopy, constructor, rest)); - } - } - - return result; - } - - for (var _len = arguments.length, values = new Array(_len), _key = 0; _key < _len; _key++) { - values[_key] = arguments[_key]; - } - - return new this.constructor(join([], this.constructor, [].concat([this.items], values))); -}; - -/***/ }), - -/***/ 6688: -/***/ ((module) => { - -"use strict"; - - -module.exports = function dd() { - this.dump(); - - if (typeof process !== 'undefined') { - process.exit(1); - } -}; - -/***/ }), - -/***/ 9695: -/***/ ((module) => { - -"use strict"; - - -module.exports = function diff(values) { - var valuesToDiff; - - if (values instanceof this.constructor) { - valuesToDiff = values.all(); - } else { - valuesToDiff = values; - } - - var collection = this.items.filter(function (item) { - return valuesToDiff.indexOf(item) === -1; - }); - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 1640: -/***/ ((module) => { - -"use strict"; - - -module.exports = function diffAssoc(values) { - var _this = this; - - var diffValues = values; - - if (values instanceof this.constructor) { - diffValues = values.all(); - } - - var collection = {}; - Object.keys(this.items).forEach(function (key) { - if (diffValues[key] === undefined || diffValues[key] !== _this.items[key]) { - collection[key] = _this.items[key]; - } - }); - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 3635: -/***/ ((module) => { - -"use strict"; - - -module.exports = function diffKeys(object) { - var objectToDiff; - - if (object instanceof this.constructor) { - objectToDiff = object.all(); - } else { - objectToDiff = object; - } - - var objectKeys = Object.keys(objectToDiff); - var remainingKeys = Object.keys(this.items).filter(function (item) { - return objectKeys.indexOf(item) === -1; - }); - return new this.constructor(this.items).only(remainingKeys); -}; - -/***/ }), - -/***/ 9787: -/***/ ((module) => { - -"use strict"; - - -module.exports = function diffUsing(values, callback) { - var collection = this.items.filter(function (item) { - return !(values && values.some(function (otherItem) { - return callback(item, otherItem) === 0; - })); - }); - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 3931: -/***/ ((module) => { - -"use strict"; - - -module.exports = function contains(key, value) { - return !this.contains(key, value); -}; - -/***/ }), - -/***/ 4198: -/***/ ((module) => { - -"use strict"; - - -module.exports = function dump() { - // eslint-disable-next-line - console.log(this); - return this; -}; - -/***/ }), - -/***/ 3990: -/***/ ((module) => { - -"use strict"; - - -function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); } - -module.exports = function duplicates() { - var _this = this; - - var occuredValues = []; - var duplicateValues = {}; - - var stringifiedValue = function stringifiedValue(value) { - if (Array.isArray(value) || _typeof(value) === 'object') { - return JSON.stringify(value); - } - - return value; - }; - - if (Array.isArray(this.items)) { - this.items.forEach(function (value, index) { - var valueAsString = stringifiedValue(value); - - if (occuredValues.indexOf(valueAsString) === -1) { - occuredValues.push(valueAsString); - } else { - duplicateValues[index] = value; - } - }); - } else if (_typeof(this.items) === 'object') { - Object.keys(this.items).forEach(function (key) { - var valueAsString = stringifiedValue(_this.items[key]); - - if (occuredValues.indexOf(valueAsString) === -1) { - occuredValues.push(valueAsString); - } else { - duplicateValues[key] = _this.items[key]; - } - }); - } - - return new this.constructor(duplicateValues); -}; - -/***/ }), - -/***/ 2917: -/***/ ((module) => { - -"use strict"; - - -module.exports = function each(fn) { - var stop = false; - - if (Array.isArray(this.items)) { - var length = this.items.length; - - for (var index = 0; index < length && !stop; index += 1) { - stop = fn(this.items[index], index, this.items) === false; - } - } else { - var keys = Object.keys(this.items); - var _length = keys.length; - - for (var _index = 0; _index < _length && !stop; _index += 1) { - var key = keys[_index]; - stop = fn(this.items[key], key, this.items) === false; - } - } - - return this; -}; - -/***/ }), - -/***/ 5010: -/***/ ((module) => { - -"use strict"; - - -function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); } - -function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } - -function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } - -function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); } - -function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); } - -function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } - -module.exports = function eachSpread(fn) { - this.each(function (values, key) { - fn.apply(void 0, _toConsumableArray(values).concat([key])); - }); - return this; -}; - -/***/ }), - -/***/ 7065: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var values = __webpack_require__(7015); - -module.exports = function every(fn) { - var items = values(this.items); - return items.every(fn); -}; - -/***/ }), - -/***/ 5253: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var variadic = __webpack_require__(6736); - -module.exports = function except() { - var _this = this; - - for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { - args[_key] = arguments[_key]; - } - - var properties = variadic(args); - - if (Array.isArray(this.items)) { - var _collection = this.items.filter(function (item) { - return properties.indexOf(item) === -1; - }); - - return new this.constructor(_collection); - } - - var collection = {}; - Object.keys(this.items).forEach(function (property) { - if (properties.indexOf(property) === -1) { - collection[property] = _this.items[property]; - } - }); - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 3222: -/***/ ((module) => { - -"use strict"; - - -function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); } - -function falsyValue(item) { - if (Array.isArray(item)) { - if (item.length) { - return false; - } - } else if (item !== undefined && item !== null && _typeof(item) === 'object') { - if (Object.keys(item).length) { - return false; - } - } else if (item) { - return false; - } - - return true; -} - -function filterObject(func, items) { - var result = {}; - Object.keys(items).forEach(function (key) { - if (func) { - if (func(items[key], key)) { - result[key] = items[key]; - } - } else if (!falsyValue(items[key])) { - result[key] = items[key]; - } - }); - return result; -} - -function filterArray(func, items) { - if (func) { - return items.filter(func); - } - - var result = []; - - for (var i = 0; i < items.length; i += 1) { - var item = items[i]; - - if (!falsyValue(item)) { - result.push(item); - } - } - - return result; -} - -module.exports = function filter(fn) { - var func = fn || false; - var filteredItems = null; - - if (Array.isArray(this.items)) { - filteredItems = filterArray(func, this.items); - } else { - filteredItems = filterObject(func, this.items); - } - - return new this.constructor(filteredItems); -}; - -/***/ }), - -/***/ 4980: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var _require = __webpack_require__(9937), - isFunction = _require.isFunction; - -module.exports = function first(fn, defaultValue) { - if (isFunction(fn)) { - var keys = Object.keys(this.items); - - for (var i = 0; i < keys.length; i += 1) { - var key = keys[i]; - var item = this.items[key]; - - if (fn(item, key)) { - return item; - } - } - - if (isFunction(defaultValue)) { - return defaultValue(); - } - - return defaultValue; - } - - if (Array.isArray(this.items) && this.items.length || Object.keys(this.items).length) { - if (Array.isArray(this.items)) { - return this.items[0]; - } - - var firstKey = Object.keys(this.items)[0]; - return this.items[firstKey]; - } - - if (isFunction(defaultValue)) { - return defaultValue(); - } - - return defaultValue; -}; - -/***/ }), - -/***/ 2033: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var _require = __webpack_require__(9937), - isFunction = _require.isFunction; - -module.exports = function firstOrFail(key, operator, value) { - if (isFunction(key)) { - return this.first(key, function () { - throw new Error('Item not found.'); - }); - } - - var collection = this.where(key, operator, value); - - if (collection.isEmpty()) { - throw new Error('Item not found.'); - } - - return collection.first(); -}; - -/***/ }), - -/***/ 5193: -/***/ ((module) => { - -"use strict"; - - -module.exports = function firstWhere(key, operator, value) { - return this.where(key, operator, value).first() || null; -}; - -/***/ }), - -/***/ 6829: -/***/ ((module) => { - -"use strict"; - - -module.exports = function flatMap(fn) { - return this.map(fn).collapse(); -}; - -/***/ }), - -/***/ 6200: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var _require = __webpack_require__(9937), - isArray = _require.isArray, - isObject = _require.isObject; - -module.exports = function flatten(depth) { - var flattenDepth = depth || Infinity; - var fullyFlattened = false; - var collection = []; - - var flat = function flat(items) { - collection = []; - - if (isArray(items)) { - items.forEach(function (item) { - if (isArray(item)) { - collection = collection.concat(item); - } else if (isObject(item)) { - Object.keys(item).forEach(function (property) { - collection = collection.concat(item[property]); - }); - } else { - collection.push(item); - } - }); - } else { - Object.keys(items).forEach(function (property) { - if (isArray(items[property])) { - collection = collection.concat(items[property]); - } else if (isObject(items[property])) { - Object.keys(items[property]).forEach(function (prop) { - collection = collection.concat(items[property][prop]); - }); - } else { - collection.push(items[property]); - } - }); - } - - fullyFlattened = collection.filter(function (item) { - return isObject(item); - }); - fullyFlattened = fullyFlattened.length === 0; - flattenDepth -= 1; - }; - - flat(this.items); - - while (!fullyFlattened && flattenDepth > 0) { - flat(collection); - } - - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 5735: -/***/ ((module) => { - -"use strict"; - - -module.exports = function flip() { - var _this = this; - - var collection = {}; - - if (Array.isArray(this.items)) { - Object.keys(this.items).forEach(function (key) { - collection[_this.items[key]] = Number(key); - }); - } else { - Object.keys(this.items).forEach(function (key) { - collection[_this.items[key]] = key; - }); - } - - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 6142: -/***/ ((module) => { - -"use strict"; - - -module.exports = function forPage(page, chunk) { - var _this = this; - - var collection = {}; - - if (Array.isArray(this.items)) { - collection = this.items.slice(page * chunk - chunk, page * chunk); - } else { - Object.keys(this.items).slice(page * chunk - chunk, page * chunk).forEach(function (key) { - collection[key] = _this.items[key]; - }); - } - - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 1893: -/***/ ((module) => { - -"use strict"; - - -module.exports = function forget(key) { - if (Array.isArray(this.items)) { - this.items.splice(key, 1); - } else { - delete this.items[key]; - } - - return this; -}; - -/***/ }), - -/***/ 7766: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var _require = __webpack_require__(9937), - isFunction = _require.isFunction; - -module.exports = function get(key) { - var defaultValue = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; - - if (this.items[key] !== undefined) { - return this.items[key]; - } - - if (isFunction(defaultValue)) { - return defaultValue(); - } - - if (defaultValue !== null) { - return defaultValue; - } - - return null; -}; - -/***/ }), - -/***/ 1008: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var nestedValue = __webpack_require__(6325); - -var _require = __webpack_require__(9937), - isFunction = _require.isFunction; - -module.exports = function groupBy(key) { - var _this = this; - - var collection = {}; - this.items.forEach(function (item, index) { - var resolvedKey; - - if (isFunction(key)) { - resolvedKey = key(item, index); - } else if (nestedValue(item, key) || nestedValue(item, key) === 0) { - resolvedKey = nestedValue(item, key); - } else { - resolvedKey = ''; - } - - if (collection[resolvedKey] === undefined) { - collection[resolvedKey] = new _this.constructor([]); - } - - collection[resolvedKey].push(item); - }); - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 7538: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var variadic = __webpack_require__(6736); - -module.exports = function has() { - var _this = this; - - for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { - args[_key] = arguments[_key]; - } - - var properties = variadic(args); - return properties.filter(function (key) { - return Object.hasOwnProperty.call(_this.items, key); - }).length === properties.length; -}; - -/***/ }), - -/***/ 1666: -/***/ ((module) => { - -"use strict"; - - -module.exports = function implode(key, glue) { - if (glue === undefined) { - return this.items.join(key); - } - - return new this.constructor(this.items).pluck(key).all().join(glue); -}; - -/***/ }), - -/***/ 479: -/***/ ((module) => { - -"use strict"; - - -module.exports = function intersect(values) { - var intersectValues = values; - - if (values instanceof this.constructor) { - intersectValues = values.all(); - } - - var collection = this.items.filter(function (item) { - return intersectValues.indexOf(item) !== -1; - }); - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 9758: -/***/ ((module) => { - -"use strict"; - - -module.exports = function intersectByKeys(values) { - var _this = this; - - var intersectKeys = Object.keys(values); - - if (values instanceof this.constructor) { - intersectKeys = Object.keys(values.all()); - } - - var collection = {}; - Object.keys(this.items).forEach(function (key) { - if (intersectKeys.indexOf(key) !== -1) { - collection[key] = _this.items[key]; - } - }); - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 9635: -/***/ ((module) => { - -"use strict"; - - -module.exports = function isEmpty() { - if (Array.isArray(this.items)) { - return !this.items.length; - } - - return !Object.keys(this.items).length; -}; - -/***/ }), - -/***/ 4154: -/***/ ((module) => { - -"use strict"; - - -module.exports = function isNotEmpty() { - return !this.isEmpty(); -}; - -/***/ }), - -/***/ 2800: -/***/ ((module) => { - -"use strict"; - - -module.exports = function join(glue, finalGlue) { - var collection = this.values(); - - if (finalGlue === undefined) { - return collection.implode(glue); - } - - var count = collection.count(); - - if (count === 0) { - return ''; - } - - if (count === 1) { - return collection.last(); - } - - var finalItem = collection.pop(); - return collection.implode(glue) + finalGlue + finalItem; -}; - -/***/ }), - -/***/ 5024: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var nestedValue = __webpack_require__(6325); - -var _require = __webpack_require__(9937), - isFunction = _require.isFunction; - -module.exports = function keyBy(key) { - var collection = {}; - - if (isFunction(key)) { - this.items.forEach(function (item) { - collection[key(item)] = item; - }); - } else { - this.items.forEach(function (item) { - var keyValue = nestedValue(item, key); - collection[keyValue || ''] = item; - }); - } - - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 5968: -/***/ ((module) => { - -"use strict"; - - -module.exports = function keys() { - var collection = Object.keys(this.items); - - if (Array.isArray(this.items)) { - collection = collection.map(Number); - } - - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 8080: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var _require = __webpack_require__(9937), - isFunction = _require.isFunction; - -module.exports = function last(fn, defaultValue) { - var items = this.items; - - if (isFunction(fn)) { - items = this.filter(fn).all(); - } - - if (Array.isArray(items) && !items.length || !Object.keys(items).length) { - if (isFunction(defaultValue)) { - return defaultValue(); - } - - return defaultValue; - } - - if (Array.isArray(items)) { - return items[items.length - 1]; - } - - var keys = Object.keys(items); - return items[keys[keys.length - 1]]; -}; - -/***/ }), - -/***/ 6498: -/***/ ((module) => { - -"use strict"; - - -module.exports = function macro(name, fn) { - this.constructor.prototype[name] = fn; -}; - -/***/ }), - -/***/ 7074: -/***/ ((module) => { - -"use strict"; - - -module.exports = function make() { - var items = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : []; - return new this.constructor(items); -}; - -/***/ }), - -/***/ 5008: -/***/ ((module) => { - -"use strict"; - - -module.exports = function map(fn) { - var _this = this; - - if (Array.isArray(this.items)) { - return new this.constructor(this.items.map(fn)); - } - - var collection = {}; - Object.keys(this.items).forEach(function (key) { - collection[key] = fn(_this.items[key], key); - }); - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 1922: -/***/ ((module) => { - -"use strict"; - - -module.exports = function mapInto(ClassName) { - return this.map(function (value, key) { - return new ClassName(value, key); - }); -}; - -/***/ }), - -/***/ 4595: -/***/ ((module) => { - -"use strict"; - - -function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); } - -function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } - -function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } - -function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); } - -function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); } - -function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } - -module.exports = function mapSpread(fn) { - return this.map(function (values, key) { - return fn.apply(void 0, _toConsumableArray(values).concat([key])); - }); -}; - -/***/ }), - -/***/ 1357: -/***/ ((module) => { - -"use strict"; - - -function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); } - -function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } - -function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } - -function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } - -function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } - -function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } - -module.exports = function mapToDictionary(fn) { - var collection = {}; - this.items.forEach(function (item, k) { - var _fn = fn(item, k), - _fn2 = _slicedToArray(_fn, 2), - key = _fn2[0], - value = _fn2[1]; - - if (collection[key] === undefined) { - collection[key] = [value]; - } else { - collection[key].push(value); - } - }); - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 7985: -/***/ ((module) => { - -"use strict"; - - -function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); } - -function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } - -function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } - -function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } - -function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } - -function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } - -module.exports = function mapToGroups(fn) { - var collection = {}; - this.items.forEach(function (item, key) { - var _fn = fn(item, key), - _fn2 = _slicedToArray(_fn, 2), - keyed = _fn2[0], - value = _fn2[1]; - - if (collection[keyed] === undefined) { - collection[keyed] = [value]; - } else { - collection[keyed].push(value); - } - }); - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 3976: -/***/ ((module) => { - -"use strict"; - - -function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); } - -function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } - -function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } - -function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } - -function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } - -function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } - -module.exports = function mapWithKeys(fn) { - var _this = this; - - var collection = {}; - - if (Array.isArray(this.items)) { - this.items.forEach(function (item, index) { - var _fn = fn(item, index), - _fn2 = _slicedToArray(_fn, 2), - keyed = _fn2[0], - value = _fn2[1]; - - collection[keyed] = value; - }); - } else { - Object.keys(this.items).forEach(function (key) { - var _fn3 = fn(_this.items[key], key), - _fn4 = _slicedToArray(_fn3, 2), - keyed = _fn4[0], - value = _fn4[1]; - - collection[keyed] = value; - }); - } - - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 5400: -/***/ ((module) => { - -"use strict"; - - -function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); } - -function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } - -function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } - -function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); } - -function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); } - -function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } - -module.exports = function max(key) { - if (typeof key === 'string') { - var filtered = this.items.filter(function (item) { - return item[key] !== undefined; - }); - return Math.max.apply(Math, _toConsumableArray(filtered.map(function (item) { - return item[key]; - }))); - } - - return Math.max.apply(Math, _toConsumableArray(this.items)); -}; - -/***/ }), - -/***/ 4178: -/***/ ((module) => { - -"use strict"; - - -module.exports = function median(key) { - var length = this.items.length; - - if (key === undefined) { - if (length % 2 === 0) { - return (this.items[length / 2 - 1] + this.items[length / 2]) / 2; - } - - return this.items[Math.floor(length / 2)]; - } - - if (length % 2 === 0) { - return (this.items[length / 2 - 1][key] + this.items[length / 2][key]) / 2; - } - - return this.items[Math.floor(length / 2)][key]; -}; - -/***/ }), - -/***/ 2202: -/***/ ((module) => { - -"use strict"; - - -module.exports = function merge(value) { - var arrayOrObject = value; - - if (typeof arrayOrObject === 'string') { - arrayOrObject = [arrayOrObject]; - } - - if (Array.isArray(this.items) && Array.isArray(arrayOrObject)) { - return new this.constructor(this.items.concat(arrayOrObject)); - } - - var collection = JSON.parse(JSON.stringify(this.items)); - Object.keys(arrayOrObject).forEach(function (key) { - collection[key] = arrayOrObject[key]; - }); - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 2488: -/***/ ((module) => { - -"use strict"; - - -function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); } - -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; } - -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } - -function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -module.exports = function mergeRecursive(items) { - var merge = function merge(target, source) { - var merged = {}; - var mergedKeys = Object.keys(_objectSpread(_objectSpread({}, target), source)); - mergedKeys.forEach(function (key) { - if (target[key] === undefined && source[key] !== undefined) { - merged[key] = source[key]; - } else if (target[key] !== undefined && source[key] === undefined) { - merged[key] = target[key]; - } else if (target[key] !== undefined && source[key] !== undefined) { - if (target[key] === source[key]) { - merged[key] = target[key]; - } else if (!Array.isArray(target[key]) && _typeof(target[key]) === 'object' && !Array.isArray(source[key]) && _typeof(source[key]) === 'object') { - merged[key] = merge(target[key], source[key]); - } else { - merged[key] = [].concat(target[key], source[key]); - } - } - }); - return merged; - }; - - if (!items) { - return this; - } - - if (items.constructor.name === 'Collection') { - return new this.constructor(merge(this.items, items.all())); - } - - return new this.constructor(merge(this.items, items)); -}; - -/***/ }), - -/***/ 2678: -/***/ ((module) => { - -"use strict"; - - -function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); } - -function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } - -function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } - -function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); } - -function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); } - -function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } - -module.exports = function min(key) { - if (key !== undefined) { - var filtered = this.items.filter(function (item) { - return item[key] !== undefined; - }); - return Math.min.apply(Math, _toConsumableArray(filtered.map(function (item) { - return item[key]; - }))); - } - - return Math.min.apply(Math, _toConsumableArray(this.items)); -}; - -/***/ }), - -/***/ 171: -/***/ ((module) => { - -"use strict"; - - -module.exports = function mode(key) { - var values = []; - var highestCount = 1; - - if (!this.items.length) { - return null; - } - - this.items.forEach(function (item) { - var tempValues = values.filter(function (value) { - if (key !== undefined) { - return value.key === item[key]; - } - - return value.key === item; - }); - - if (!tempValues.length) { - if (key !== undefined) { - values.push({ - key: item[key], - count: 1 - }); - } else { - values.push({ - key: item, - count: 1 - }); - } - } else { - tempValues[0].count += 1; - var count = tempValues[0].count; - - if (count > highestCount) { - highestCount = count; - } - } - }); - return values.filter(function (value) { - return value.count === highestCount; - }).map(function (value) { - return value.key; - }); -}; - -/***/ }), - -/***/ 8088: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var values = __webpack_require__(7015); - -module.exports = function nth(n) { - var offset = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; - var items = values(this.items); - var collection = items.slice(offset).filter(function (item, index) { - return index % n === 0; - }); - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 3310: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var variadic = __webpack_require__(6736); - -module.exports = function only() { - var _this = this; - - for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { - args[_key] = arguments[_key]; - } - - var properties = variadic(args); - - if (Array.isArray(this.items)) { - var _collection = this.items.filter(function (item) { - return properties.indexOf(item) !== -1; - }); - - return new this.constructor(_collection); - } - - var collection = {}; - Object.keys(this.items).forEach(function (prop) { - if (properties.indexOf(prop) !== -1) { - collection[prop] = _this.items[prop]; - } - }); - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 3555: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var clone = __webpack_require__(3148); - -module.exports = function pad(size, value) { - var abs = Math.abs(size); - var count = this.count(); - - if (abs <= count) { - return this; - } - - var diff = abs - count; - var items = clone(this.items); - var isArray = Array.isArray(this.items); - var prepend = size < 0; - - for (var iterator = 0; iterator < diff;) { - if (!isArray) { - if (items[iterator] !== undefined) { - diff += 1; - } else { - items[iterator] = value; - } - } else if (prepend) { - items.unshift(value); - } else { - items.push(value); - } - - iterator += 1; - } - - return new this.constructor(items); -}; - -/***/ }), - -/***/ 8644: -/***/ ((module) => { - -"use strict"; - - -module.exports = function partition(fn) { - var _this = this; - - var arrays; - - if (Array.isArray(this.items)) { - arrays = [new this.constructor([]), new this.constructor([])]; - this.items.forEach(function (item) { - if (fn(item) === true) { - arrays[0].push(item); - } else { - arrays[1].push(item); - } - }); - } else { - arrays = [new this.constructor({}), new this.constructor({})]; - Object.keys(this.items).forEach(function (prop) { - var value = _this.items[prop]; - - if (fn(value) === true) { - arrays[0].put(prop, value); - } else { - arrays[1].put(prop, value); - } - }); - } - - return new this.constructor(arrays); -}; - -/***/ }), - -/***/ 4159: -/***/ ((module) => { - -"use strict"; - - -module.exports = function pipe(fn) { - return fn(this); -}; - -/***/ }), - -/***/ 1339: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var _require = __webpack_require__(9937), - isArray = _require.isArray, - isObject = _require.isObject; - -var nestedValue = __webpack_require__(6325); - -var buildKeyPathMap = function buildKeyPathMap(items) { - var keyPaths = {}; - items.forEach(function (item, index) { - function buildKeyPath(val, keyPath) { - if (isObject(val)) { - Object.keys(val).forEach(function (prop) { - buildKeyPath(val[prop], "".concat(keyPath, ".").concat(prop)); - }); - } else if (isArray(val)) { - val.forEach(function (v, i) { - buildKeyPath(v, "".concat(keyPath, ".").concat(i)); - }); - } - - keyPaths[keyPath] = val; - } - - buildKeyPath(item, index); - }); - return keyPaths; -}; - -module.exports = function pluck(value, key) { - if (value.indexOf('*') !== -1) { - var keyPathMap = buildKeyPathMap(this.items); - var keyMatches = []; - - if (key !== undefined) { - var keyRegex = new RegExp("0.".concat(key), 'g'); - var keyNumberOfLevels = "0.".concat(key).split('.').length; - Object.keys(keyPathMap).forEach(function (k) { - var matchingKey = k.match(keyRegex); - - if (matchingKey) { - var match = matchingKey[0]; - - if (match.split('.').length === keyNumberOfLevels) { - keyMatches.push(keyPathMap[match]); - } - } - }); - } - - var valueMatches = []; - var valueRegex = new RegExp("0.".concat(value), 'g'); - var valueNumberOfLevels = "0.".concat(value).split('.').length; - Object.keys(keyPathMap).forEach(function (k) { - var matchingValue = k.match(valueRegex); - - if (matchingValue) { - var match = matchingValue[0]; - - if (match.split('.').length === valueNumberOfLevels) { - valueMatches.push(keyPathMap[match]); - } - } - }); - - if (key !== undefined) { - var collection = {}; - this.items.forEach(function (item, index) { - collection[keyMatches[index] || ''] = valueMatches; - }); - return new this.constructor(collection); - } - - return new this.constructor([valueMatches]); - } - - if (key !== undefined) { - var _collection = {}; - this.items.forEach(function (item) { - if (nestedValue(item, value) !== undefined) { - _collection[item[key] || ''] = nestedValue(item, value); - } else { - _collection[item[key] || ''] = null; - } - }); - return new this.constructor(_collection); - } - - return this.map(function (item) { - if (nestedValue(item, value) !== undefined) { - return nestedValue(item, value); - } - - return null; - }); -}; - -/***/ }), - -/***/ 4505: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var _require = __webpack_require__(9937), - isArray = _require.isArray, - isObject = _require.isObject; - -var deleteKeys = __webpack_require__(4718); - -module.exports = function pop() { - var _this = this; - - var count = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 1; - - if (this.isEmpty()) { - return null; - } - - if (isArray(this.items)) { - if (count === 1) { - return this.items.pop(); - } - - return new this.constructor(this.items.splice(-count)); - } - - if (isObject(this.items)) { - var keys = Object.keys(this.items); - - if (count === 1) { - var key = keys[keys.length - 1]; - var last = this.items[key]; - deleteKeys(this.items, key); - return last; - } - - var poppedKeys = keys.slice(-count); - var newObject = poppedKeys.reduce(function (acc, current) { - acc[current] = _this.items[current]; - return acc; - }, {}); - deleteKeys(this.items, poppedKeys); - return new this.constructor(newObject); - } - - return null; -}; - -/***/ }), - -/***/ 4242: -/***/ ((module) => { - -"use strict"; - - -module.exports = function prepend(value, key) { - if (key !== undefined) { - return this.put(key, value); - } - - this.items.unshift(value); - return this; -}; - -/***/ }), - -/***/ 2963: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var _require = __webpack_require__(9937), - isFunction = _require.isFunction; - -module.exports = function pull(key, defaultValue) { - var returnValue = this.items[key] || null; - - if (!returnValue && defaultValue !== undefined) { - if (isFunction(defaultValue)) { - returnValue = defaultValue(); - } else { - returnValue = defaultValue; - } - } - - delete this.items[key]; - return returnValue; -}; - -/***/ }), - -/***/ 52: -/***/ ((module) => { - -"use strict"; - - -module.exports = function push() { - var _this$items; - - (_this$items = this.items).push.apply(_this$items, arguments); - - return this; -}; - -/***/ }), - -/***/ 255: -/***/ ((module) => { - -"use strict"; - - -module.exports = function put(key, value) { - this.items[key] = value; - return this; -}; - -/***/ }), - -/***/ 4579: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var values = __webpack_require__(7015); - -module.exports = function random() { - var length = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null; - var items = values(this.items); - var collection = new this.constructor(items).shuffle(); // If not a length was specified - - if (length !== parseInt(length, 10)) { - return collection.first(); - } - - return collection.take(length); -}; - -/***/ }), - -/***/ 5598: -/***/ ((module) => { - -"use strict"; - - -module.exports = function reduce(fn, carry) { - var _this = this; - - var reduceCarry = null; - - if (carry !== undefined) { - reduceCarry = carry; - } - - if (Array.isArray(this.items)) { - this.items.forEach(function (item) { - reduceCarry = fn(reduceCarry, item); - }); - } else { - Object.keys(this.items).forEach(function (key) { - reduceCarry = fn(reduceCarry, _this.items[key], key); - }); - } - - return reduceCarry; -}; - -/***/ }), - -/***/ 3351: -/***/ ((module) => { - -"use strict"; - - -module.exports = function reject(fn) { - return new this.constructor(this.items).filter(function (item) { - return !fn(item); - }); -}; - -/***/ }), - -/***/ 1478: -/***/ ((module) => { - -"use strict"; - - -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; } - -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } - -function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -module.exports = function replace(items) { - if (!items) { - return this; - } - - if (Array.isArray(items)) { - var _replaced = this.items.map(function (value, index) { - return items[index] || value; - }); - - return new this.constructor(_replaced); - } - - if (items.constructor.name === 'Collection') { - var _replaced2 = _objectSpread(_objectSpread({}, this.items), items.all()); - - return new this.constructor(_replaced2); - } - - var replaced = _objectSpread(_objectSpread({}, this.items), items); - - return new this.constructor(replaced); -}; - -/***/ }), - -/***/ 4908: -/***/ ((module) => { - -"use strict"; - - -function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); } - -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; } - -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } - -function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -module.exports = function replaceRecursive(items) { - var replace = function replace(target, source) { - var replaced = _objectSpread({}, target); - - var mergedKeys = Object.keys(_objectSpread(_objectSpread({}, target), source)); - mergedKeys.forEach(function (key) { - if (!Array.isArray(source[key]) && _typeof(source[key]) === 'object') { - replaced[key] = replace(target[key], source[key]); - } else if (target[key] === undefined && source[key] !== undefined) { - if (_typeof(target[key]) === 'object') { - replaced[key] = _objectSpread({}, source[key]); - } else { - replaced[key] = source[key]; - } - } else if (target[key] !== undefined && source[key] === undefined) { - if (_typeof(target[key]) === 'object') { - replaced[key] = _objectSpread({}, target[key]); - } else { - replaced[key] = target[key]; - } - } else if (target[key] !== undefined && source[key] !== undefined) { - if (_typeof(source[key]) === 'object') { - replaced[key] = _objectSpread({}, source[key]); - } else { - replaced[key] = source[key]; - } - } - }); - return replaced; - }; - - if (!items) { - return this; - } - - if (!Array.isArray(items) && _typeof(items) !== 'object') { - return new this.constructor(replace(this.items, [items])); - } - - if (items.constructor.name === 'Collection') { - return new this.constructor(replace(this.items, items.all())); - } - - return new this.constructor(replace(this.items, items)); -}; - -/***/ }), - -/***/ 9828: -/***/ ((module) => { - -"use strict"; - - -module.exports = function reverse() { - var collection = [].concat(this.items).reverse(); - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 7568: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - -/* eslint-disable eqeqeq */ - -var _require = __webpack_require__(9937), - isArray = _require.isArray, - isObject = _require.isObject, - isFunction = _require.isFunction; - -module.exports = function search(valueOrFunction, strict) { - var _this = this; - - var result; - - var find = function find(item, key) { - if (isFunction(valueOrFunction)) { - return valueOrFunction(_this.items[key], key); - } - - if (strict) { - return _this.items[key] === valueOrFunction; - } - - return _this.items[key] == valueOrFunction; - }; - - if (isArray(this.items)) { - result = this.items.findIndex(find); - } else if (isObject(this.items)) { - result = Object.keys(this.items).find(function (key) { - return find(_this.items[key], key); - }); - } - - if (result === undefined || result < 0) { - return false; - } - - return result; -}; - -/***/ }), - -/***/ 1770: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var _require = __webpack_require__(9937), - isArray = _require.isArray, - isObject = _require.isObject; - -var deleteKeys = __webpack_require__(4718); - -module.exports = function shift() { - var _this = this; - - var count = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 1; - - if (this.isEmpty()) { - return null; - } - - if (isArray(this.items)) { - if (count === 1) { - return this.items.shift(); - } - - return new this.constructor(this.items.splice(0, count)); - } - - if (isObject(this.items)) { - if (count === 1) { - var key = Object.keys(this.items)[0]; - var value = this.items[key]; - delete this.items[key]; - return value; - } - - var keys = Object.keys(this.items); - var poppedKeys = keys.slice(0, count); - var newObject = poppedKeys.reduce(function (acc, current) { - acc[current] = _this.items[current]; - return acc; - }, {}); - deleteKeys(this.items, poppedKeys); - return new this.constructor(newObject); - } - - return null; -}; - -/***/ }), - -/***/ 2819: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var values = __webpack_require__(7015); - -module.exports = function shuffle() { - var items = values(this.items); - var j; - var x; - var i; - - for (i = items.length; i; i -= 1) { - j = Math.floor(Math.random() * i); - x = items[i - 1]; - items[i - 1] = items[j]; - items[j] = x; - } - - this.items = items; - return this; -}; - -/***/ }), - -/***/ 8207: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var _require = __webpack_require__(9937), - isObject = _require.isObject; - -module.exports = function skip(number) { - var _this = this; - - if (isObject(this.items)) { - return new this.constructor(Object.keys(this.items).reduce(function (accumulator, key, index) { - if (index + 1 > number) { - accumulator[key] = _this.items[key]; - } - - return accumulator; - }, {})); - } - - return new this.constructor(this.items.slice(number)); -}; - -/***/ }), - -/***/ 5231: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var _require = __webpack_require__(9937), - isArray = _require.isArray, - isObject = _require.isObject, - isFunction = _require.isFunction; - -module.exports = function skipUntil(valueOrFunction) { - var _this = this; - - var previous = null; - var items; - - var callback = function callback(value) { - return value === valueOrFunction; - }; - - if (isFunction(valueOrFunction)) { - callback = valueOrFunction; - } - - if (isArray(this.items)) { - items = this.items.filter(function (item) { - if (previous !== true) { - previous = callback(item); - } - - return previous; - }); - } - - if (isObject(this.items)) { - items = Object.keys(this.items).reduce(function (acc, key) { - if (previous !== true) { - previous = callback(_this.items[key]); - } - - if (previous !== false) { - acc[key] = _this.items[key]; - } - - return acc; - }, {}); - } - - return new this.constructor(items); -}; - -/***/ }), - -/***/ 8918: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var _require = __webpack_require__(9937), - isArray = _require.isArray, - isObject = _require.isObject, - isFunction = _require.isFunction; - -module.exports = function skipWhile(valueOrFunction) { - var _this = this; - - var previous = null; - var items; - - var callback = function callback(value) { - return value === valueOrFunction; - }; - - if (isFunction(valueOrFunction)) { - callback = valueOrFunction; - } - - if (isArray(this.items)) { - items = this.items.filter(function (item) { - if (previous !== true) { - previous = !callback(item); - } - - return previous; - }); - } - - if (isObject(this.items)) { - items = Object.keys(this.items).reduce(function (acc, key) { - if (previous !== true) { - previous = !callback(_this.items[key]); - } - - if (previous !== false) { - acc[key] = _this.items[key]; - } - - return acc; - }, {}); - } - - return new this.constructor(items); -}; - -/***/ }), - -/***/ 3680: -/***/ ((module) => { - -"use strict"; - - -module.exports = function slice(remove, limit) { - var collection = this.items.slice(remove); - - if (limit !== undefined) { - collection = collection.slice(0, limit); - } - - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 2357: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var _require = __webpack_require__(9937), - isFunction = _require.isFunction; - -module.exports = function sole(key, operator, value) { - var collection; - - if (isFunction(key)) { - collection = this.filter(key); - } else { - collection = this.where(key, operator, value); - } - - if (collection.isEmpty()) { - throw new Error('Item not found.'); - } - - if (collection.count() > 1) { - throw new Error('Multiple items found.'); - } - - return collection.first(); -}; - -/***/ }), - -/***/ 7724: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var contains = __webpack_require__(4309); - -module.exports = contains; - -/***/ }), - -/***/ 7336: -/***/ ((module) => { - -"use strict"; - - -module.exports = function sort(fn) { - var collection = [].concat(this.items); - - if (fn === undefined) { - if (this.every(function (item) { - return typeof item === 'number'; - })) { - collection.sort(function (a, b) { - return a - b; - }); - } else { - collection.sort(); - } - } else { - collection.sort(fn); - } - - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 4025: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var nestedValue = __webpack_require__(6325); - -var _require = __webpack_require__(9937), - isFunction = _require.isFunction; - -module.exports = function sortBy(valueOrFunction) { - var collection = [].concat(this.items); - - var getValue = function getValue(item) { - if (isFunction(valueOrFunction)) { - return valueOrFunction(item); - } - - return nestedValue(item, valueOrFunction); - }; - - collection.sort(function (a, b) { - var valueA = getValue(a); - var valueB = getValue(b); - - if (valueA === null || valueA === undefined) { - return 1; - } - - if (valueB === null || valueB === undefined) { - return -1; - } - - if (valueA < valueB) { - return -1; - } - - if (valueA > valueB) { - return 1; - } - - return 0; - }); - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 8700: -/***/ ((module) => { - -"use strict"; - - -module.exports = function sortByDesc(valueOrFunction) { - return this.sortBy(valueOrFunction).reverse(); -}; - -/***/ }), - -/***/ 25: -/***/ ((module) => { - -"use strict"; - - -module.exports = function sortDesc() { - return this.sort().reverse(); -}; - -/***/ }), - -/***/ 968: -/***/ ((module) => { - -"use strict"; - - -module.exports = function sortKeys() { - var _this = this; - - var ordered = {}; - Object.keys(this.items).sort().forEach(function (key) { - ordered[key] = _this.items[key]; - }); - return new this.constructor(ordered); -}; - -/***/ }), - -/***/ 905: -/***/ ((module) => { - -"use strict"; - - -module.exports = function sortKeysDesc() { - var _this = this; - - var ordered = {}; - Object.keys(this.items).sort().reverse().forEach(function (key) { - ordered[key] = _this.items[key]; - }); - return new this.constructor(ordered); -}; - -/***/ }), - -/***/ 8104: -/***/ ((module) => { - -"use strict"; - - -module.exports = function splice(index, limit, replace) { - var slicedCollection = this.slice(index, limit); - this.items = this.diff(slicedCollection.all()).all(); - - if (Array.isArray(replace)) { - for (var iterator = 0, length = replace.length; iterator < length; iterator += 1) { - this.items.splice(index + iterator, 0, replace[iterator]); - } - } - - return slicedCollection; -}; - -/***/ }), - -/***/ 1442: -/***/ ((module) => { - -"use strict"; - - -module.exports = function split(numberOfGroups) { - var itemsPerGroup = Math.round(this.items.length / numberOfGroups); - var items = JSON.parse(JSON.stringify(this.items)); - var collection = []; - - for (var iterator = 0; iterator < numberOfGroups; iterator += 1) { - collection.push(new this.constructor(items.splice(0, itemsPerGroup))); - } - - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 2561: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var values = __webpack_require__(7015); - -var _require = __webpack_require__(9937), - isFunction = _require.isFunction; - -module.exports = function sum(key) { - var items = values(this.items); - var total = 0; - - if (key === undefined) { - for (var i = 0, length = items.length; i < length; i += 1) { - total += parseFloat(items[i]); - } - } else if (isFunction(key)) { - for (var _i = 0, _length = items.length; _i < _length; _i += 1) { - total += parseFloat(key(items[_i])); - } - } else { - for (var _i2 = 0, _length2 = items.length; _i2 < _length2; _i2 += 1) { - total += parseFloat(items[_i2][key]); - } - } - - return parseFloat(total.toPrecision(12)); -}; - -/***/ }), - -/***/ 8766: -/***/ ((module) => { - -"use strict"; - - -module.exports = function SymbolIterator() { - var _this = this; - - var index = -1; - return { - next: function next() { - index += 1; - return { - value: _this.items[index], - done: index >= _this.items.length - }; - } - }; -}; - -/***/ }), - -/***/ 9911: -/***/ ((module) => { - -"use strict"; - - -function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); } - -module.exports = function take(length) { - var _this = this; - - if (!Array.isArray(this.items) && _typeof(this.items) === 'object') { - var keys = Object.keys(this.items); - var slicedKeys; - - if (length < 0) { - slicedKeys = keys.slice(length); - } else { - slicedKeys = keys.slice(0, length); - } - - var collection = {}; - keys.forEach(function (prop) { - if (slicedKeys.indexOf(prop) !== -1) { - collection[prop] = _this.items[prop]; - } - }); - return new this.constructor(collection); - } - - if (length < 0) { - return new this.constructor(this.items.slice(length)); - } - - return new this.constructor(this.items.slice(0, length)); -}; - -/***/ }), - -/***/ 7719: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var _require = __webpack_require__(9937), - isArray = _require.isArray, - isObject = _require.isObject, - isFunction = _require.isFunction; - -module.exports = function takeUntil(valueOrFunction) { - var _this = this; - - var previous = null; - var items; - - var callback = function callback(value) { - return value === valueOrFunction; - }; - - if (isFunction(valueOrFunction)) { - callback = valueOrFunction; - } - - if (isArray(this.items)) { - items = this.items.filter(function (item) { - if (previous !== false) { - previous = !callback(item); - } - - return previous; - }); - } - - if (isObject(this.items)) { - items = Object.keys(this.items).reduce(function (acc, key) { - if (previous !== false) { - previous = !callback(_this.items[key]); - } - - if (previous !== false) { - acc[key] = _this.items[key]; - } - - return acc; - }, {}); - } - - return new this.constructor(items); -}; - -/***/ }), - -/***/ 286: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var _require = __webpack_require__(9937), - isArray = _require.isArray, - isObject = _require.isObject, - isFunction = _require.isFunction; - -module.exports = function takeWhile(valueOrFunction) { - var _this = this; - - var previous = null; - var items; - - var callback = function callback(value) { - return value === valueOrFunction; - }; - - if (isFunction(valueOrFunction)) { - callback = valueOrFunction; - } - - if (isArray(this.items)) { - items = this.items.filter(function (item) { - if (previous !== false) { - previous = callback(item); - } - - return previous; - }); - } - - if (isObject(this.items)) { - items = Object.keys(this.items).reduce(function (acc, key) { - if (previous !== false) { - previous = callback(_this.items[key]); - } - - if (previous !== false) { - acc[key] = _this.items[key]; - } - - return acc; - }, {}); - } - - return new this.constructor(items); -}; - -/***/ }), - -/***/ 5331: -/***/ ((module) => { - -"use strict"; - - -module.exports = function tap(fn) { - fn(this); - return this; -}; - -/***/ }), - -/***/ 1608: -/***/ ((module) => { - -"use strict"; - - -module.exports = function times(n, fn) { - for (var iterator = 1; iterator <= n; iterator += 1) { - this.items.push(fn(iterator)); - } - - return this; -}; - -/***/ }), - -/***/ 452: -/***/ ((module) => { - -"use strict"; - - -module.exports = function toArray() { - var collectionInstance = this.constructor; - - function iterate(list, collection) { - var childCollection = []; - - if (list instanceof collectionInstance) { - list.items.forEach(function (i) { - return iterate(i, childCollection); - }); - collection.push(childCollection); - } else if (Array.isArray(list)) { - list.forEach(function (i) { - return iterate(i, childCollection); - }); - collection.push(childCollection); - } else { - collection.push(list); - } - } - - if (Array.isArray(this.items)) { - var collection = []; - this.items.forEach(function (items) { - iterate(items, collection); - }); - return collection; - } - - return this.values().all(); -}; - -/***/ }), - -/***/ 3647: -/***/ ((module) => { - -"use strict"; - - -function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); } - -module.exports = function toJson() { - if (_typeof(this.items) === 'object' && !Array.isArray(this.items)) { - return JSON.stringify(this.all()); - } - - return JSON.stringify(this.toArray()); -}; - -/***/ }), - -/***/ 4206: -/***/ ((module) => { - -"use strict"; - - -module.exports = function transform(fn) { - var _this = this; - - if (Array.isArray(this.items)) { - this.items = this.items.map(fn); - } else { - var collection = {}; - Object.keys(this.items).forEach(function (key) { - collection[key] = fn(_this.items[key], key); - }); - this.items = collection; - } - - return this; -}; - -/***/ }), - -/***/ 4952: -/***/ ((module) => { - -"use strict"; - - -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; } - -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } - -function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -module.exports = function undot() { - var _this = this; - - if (Array.isArray(this.items)) { - return this; - } - - var collection = {}; - Object.keys(this.items).forEach(function (key) { - if (key.indexOf('.') !== -1) { - var obj = collection; - key.split('.').reduce(function (acc, current, index, array) { - if (!acc[current]) { - acc[current] = {}; - } - - if (index === array.length - 1) { - acc[current] = _this.items[key]; - } - - return acc[current]; - }, obj); - collection = _objectSpread(_objectSpread({}, collection), obj); - } else { - collection[key] = _this.items[key]; - } - }); - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 2453: -/***/ ((module) => { - -"use strict"; - - -module.exports = function union(object) { - var _this = this; - - var collection = JSON.parse(JSON.stringify(this.items)); - Object.keys(object).forEach(function (prop) { - if (_this.items[prop] === undefined) { - collection[prop] = object[prop]; - } - }); - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 7543: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var _require = __webpack_require__(9937), - isFunction = _require.isFunction; - -module.exports = function unique(key) { - var collection; - - if (key === undefined) { - collection = this.items.filter(function (element, index, self) { - return self.indexOf(element) === index; - }); - } else { - collection = []; - var usedKeys = []; - - for (var iterator = 0, length = this.items.length; iterator < length; iterator += 1) { - var uniqueKey = void 0; - - if (isFunction(key)) { - uniqueKey = key(this.items[iterator]); - } else { - uniqueKey = this.items[iterator][key]; - } - - if (usedKeys.indexOf(uniqueKey) === -1) { - collection.push(this.items[iterator]); - usedKeys.push(uniqueKey); - } - } - } - - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 1254: -/***/ ((module) => { - -"use strict"; - - -module.exports = function when(value, fn, defaultFn) { - if (!value) { - fn(this); - } else { - defaultFn(this); - } -}; - -/***/ }), - -/***/ 9743: -/***/ ((module) => { - -"use strict"; - - -module.exports = function unwrap(value) { - if (value instanceof this.constructor) { - return value.all(); - } - - return value; -}; - -/***/ }), - -/***/ 1914: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var getValues = __webpack_require__(7015); - -module.exports = function values() { - return new this.constructor(getValues(this.items)); -}; - -/***/ }), - -/***/ 1196: -/***/ ((module) => { - -"use strict"; - - -module.exports = function when(value, fn, defaultFn) { - if (value) { - return fn(this, value); - } - - if (defaultFn) { - return defaultFn(this, value); - } - - return this; -}; - -/***/ }), - -/***/ 6419: -/***/ ((module) => { - -"use strict"; - - -module.exports = function whenEmpty(fn, defaultFn) { - if (Array.isArray(this.items) && !this.items.length) { - return fn(this); - } - - if (!Object.keys(this.items).length) { - return fn(this); - } - - if (defaultFn !== undefined) { - if (Array.isArray(this.items) && this.items.length) { - return defaultFn(this); - } - - if (Object.keys(this.items).length) { - return defaultFn(this); - } - } - - return this; -}; - -/***/ }), - -/***/ 5818: -/***/ ((module) => { - -"use strict"; - - -module.exports = function whenNotEmpty(fn, defaultFn) { - if (Array.isArray(this.items) && this.items.length) { - return fn(this); - } - - if (Object.keys(this.items).length) { - return fn(this); - } - - if (defaultFn !== undefined) { - if (Array.isArray(this.items) && !this.items.length) { - return defaultFn(this); - } - - if (!Object.keys(this.items).length) { - return defaultFn(this); - } - } - - return this; -}; - -/***/ }), - -/***/ 4245: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var values = __webpack_require__(7015); - -var nestedValue = __webpack_require__(6325); - -module.exports = function where(key, operator, value) { - var comparisonOperator = operator; - var comparisonValue = value; - var items = values(this.items); - - if (operator === undefined || operator === true) { - return new this.constructor(items.filter(function (item) { - return nestedValue(item, key); - })); - } - - if (operator === false) { - return new this.constructor(items.filter(function (item) { - return !nestedValue(item, key); - })); - } - - if (value === undefined) { - comparisonValue = operator; - comparisonOperator = '==='; - } - - var collection = items.filter(function (item) { - switch (comparisonOperator) { - case '==': - return nestedValue(item, key) === Number(comparisonValue) || nestedValue(item, key) === comparisonValue.toString(); - - default: - case '===': - return nestedValue(item, key) === comparisonValue; - - case '!=': - case '<>': - return nestedValue(item, key) !== Number(comparisonValue) && nestedValue(item, key) !== comparisonValue.toString(); - - case '!==': - return nestedValue(item, key) !== comparisonValue; - - case '<': - return nestedValue(item, key) < comparisonValue; - - case '<=': - return nestedValue(item, key) <= comparisonValue; - - case '>': - return nestedValue(item, key) > comparisonValue; - - case '>=': - return nestedValue(item, key) >= comparisonValue; - } - }); - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 2709: -/***/ ((module) => { - -"use strict"; - - -module.exports = function whereBetween(key, values) { - return this.where(key, '>=', values[0]).where(key, '<=', values[values.length - 1]); -}; - -/***/ }), - -/***/ 5350: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var extractValues = __webpack_require__(7015); - -var nestedValue = __webpack_require__(6325); - -module.exports = function whereIn(key, values) { - var items = extractValues(values); - var collection = this.items.filter(function (item) { - return items.indexOf(nestedValue(item, key)) !== -1; - }); - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 3791: -/***/ ((module) => { - -"use strict"; - - -module.exports = function whereInstanceOf(type) { - return this.filter(function (item) { - return item instanceof type; - }); -}; - -/***/ }), - -/***/ 9202: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var nestedValue = __webpack_require__(6325); - -module.exports = function whereNotBetween(key, values) { - return this.filter(function (item) { - return nestedValue(item, key) < values[0] || nestedValue(item, key) > values[values.length - 1]; - }); -}; - -/***/ }), - -/***/ 2947: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var extractValues = __webpack_require__(7015); - -var nestedValue = __webpack_require__(6325); - -module.exports = function whereNotIn(key, values) { - var items = extractValues(values); - var collection = this.items.filter(function (item) { - return items.indexOf(nestedValue(item, key)) === -1; - }); - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 2037: -/***/ ((module) => { - -"use strict"; - - -module.exports = function whereNotNull() { - var key = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null; - return this.where(key, '!==', null); -}; - -/***/ }), - -/***/ 9864: -/***/ ((module) => { - -"use strict"; - - -module.exports = function whereNull() { - var key = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null; - return this.where(key, '===', null); -}; - -/***/ }), - -/***/ 5576: -/***/ ((module) => { - -"use strict"; - - -function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); } - -module.exports = function wrap(value) { - if (value instanceof this.constructor) { - return value; - } - - if (_typeof(value) === 'object') { - return new this.constructor(value); - } - - return new this.constructor([value]); -}; - -/***/ }), - -/***/ 3445: -/***/ ((module) => { - -"use strict"; - - -module.exports = function zip(array) { - var _this = this; - - var values = array; - - if (values instanceof this.constructor) { - values = values.all(); - } - - var collection = this.items.map(function (item, index) { - return new _this.constructor([item, values[index]]); - }); - return new this.constructor(collection); -}; - -/***/ }), - -/***/ 8032: -/***/ ((module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ A: () => (__WEBPACK_DEFAULT_EXPORT__) -/* harmony export */ }); -/* harmony import */ var _css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1601); -/* harmony import */ var _css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0__); -/* harmony import */ var _css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(6314); -/* harmony import */ var _css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__); -// Imports - - -var ___CSS_LOADER_EXPORT___ = _css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default())); -// Module -___CSS_LOADER_EXPORT___.push([module.id, `.grid { - display: flex; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - margin-top: -0.5rem; -} - -.grid > .col, -.grid > [class*=col] { - box-sizing: border-box; -} - -.grid-nogutter { - margin-right: 0; - margin-left: 0; - margin-top: 0; -} - -.grid-nogutter > .col, -.grid-nogutter > [class*=col-] { - padding: 0; -} - -.col { - flex-grow: 1; - flex-basis: 0; - padding: 0.5rem; -} - -.col-fixed { - flex: 0 0 auto; - padding: 0.5rem; -} - -.col-1 { - flex: 0 0 auto; - padding: 0.5rem; - width: 8.3333%; -} - -.col-2 { - flex: 0 0 auto; - padding: 0.5rem; - width: 16.6667%; -} - -.col-3 { - flex: 0 0 auto; - padding: 0.5rem; - width: 25%; -} - -.col-4 { - flex: 0 0 auto; - padding: 0.5rem; - width: 33.3333%; -} - -.col-5 { - flex: 0 0 auto; - padding: 0.5rem; - width: 41.6667%; -} - -.col-6 { - flex: 0 0 auto; - padding: 0.5rem; - width: 50%; -} - -.col-7 { - flex: 0 0 auto; - padding: 0.5rem; - width: 58.3333%; -} - -.col-8 { - flex: 0 0 auto; - padding: 0.5rem; - width: 66.6667%; -} - -.col-9 { - flex: 0 0 auto; - padding: 0.5rem; - width: 75%; -} - -.col-10 { - flex: 0 0 auto; - padding: 0.5rem; - width: 83.3333%; -} - -.col-11 { - flex: 0 0 auto; - padding: 0.5rem; - width: 91.6667%; -} - -.col-12 { - flex: 0 0 auto; - padding: 0.5rem; - width: 100%; -} - -@media screen and (min-width: 576px) { - .sm\\:col { - flex-grow: 1; - flex-basis: 0; - padding: 0.5rem; - } - .sm\\:col-fixed { - flex: 0 0 auto; - padding: 0.5rem; - } - .sm\\:col-1 { - flex: 0 0 auto; - padding: 0.5rem; - width: 8.3333%; - } - .sm\\:col-2 { - flex: 0 0 auto; - padding: 0.5rem; - width: 16.6667%; - } - .sm\\:col-3 { - flex: 0 0 auto; - padding: 0.5rem; - width: 25%; - } - .sm\\:col-4 { - flex: 0 0 auto; - padding: 0.5rem; - width: 33.3333%; - } - .sm\\:col-5 { - flex: 0 0 auto; - padding: 0.5rem; - width: 41.6667%; - } - .sm\\:col-6 { - flex: 0 0 auto; - padding: 0.5rem; - width: 50%; - } - .sm\\:col-7 { - flex: 0 0 auto; - padding: 0.5rem; - width: 58.3333%; - } - .sm\\:col-8 { - flex: 0 0 auto; - padding: 0.5rem; - width: 66.6667%; - } - .sm\\:col-9 { - flex: 0 0 auto; - padding: 0.5rem; - width: 75%; - } - .sm\\:col-10 { - flex: 0 0 auto; - padding: 0.5rem; - width: 83.3333%; - } - .sm\\:col-11 { - flex: 0 0 auto; - padding: 0.5rem; - width: 91.6667%; - } - .sm\\:col-12 { - flex: 0 0 auto; - padding: 0.5rem; - width: 100%; - } -} -@media screen and (min-width: 768px) { - .md\\:col { - flex-grow: 1; - flex-basis: 0; - padding: 0.5rem; - } - .md\\:col-fixed { - flex: 0 0 auto; - padding: 0.5rem; - } - .md\\:col-1 { - flex: 0 0 auto; - padding: 0.5rem; - width: 8.3333%; - } - .md\\:col-2 { - flex: 0 0 auto; - padding: 0.5rem; - width: 16.6667%; - } - .md\\:col-3 { - flex: 0 0 auto; - padding: 0.5rem; - width: 25%; - } - .md\\:col-4 { - flex: 0 0 auto; - padding: 0.5rem; - width: 33.3333%; - } - .md\\:col-5 { - flex: 0 0 auto; - padding: 0.5rem; - width: 41.6667%; - } - .md\\:col-6 { - flex: 0 0 auto; - padding: 0.5rem; - width: 50%; - } - .md\\:col-7 { - flex: 0 0 auto; - padding: 0.5rem; - width: 58.3333%; - } - .md\\:col-8 { - flex: 0 0 auto; - padding: 0.5rem; - width: 66.6667%; - } - .md\\:col-9 { - flex: 0 0 auto; - padding: 0.5rem; - width: 75%; - } - .md\\:col-10 { - flex: 0 0 auto; - padding: 0.5rem; - width: 83.3333%; - } - .md\\:col-11 { - flex: 0 0 auto; - padding: 0.5rem; - width: 91.6667%; - } - .md\\:col-12 { - flex: 0 0 auto; - padding: 0.5rem; - width: 100%; - } -} -@media screen and (min-width: 992px) { - .lg\\:col { - flex-grow: 1; - flex-basis: 0; - padding: 0.5rem; - } - .lg\\:col-fixed { - flex: 0 0 auto; - padding: 0.5rem; - } - .lg\\:col-1 { - flex: 0 0 auto; - padding: 0.5rem; - width: 8.3333%; - } - .lg\\:col-2 { - flex: 0 0 auto; - padding: 0.5rem; - width: 16.6667%; - } - .lg\\:col-3 { - flex: 0 0 auto; - padding: 0.5rem; - width: 25%; - } - .lg\\:col-4 { - flex: 0 0 auto; - padding: 0.5rem; - width: 33.3333%; - } - .lg\\:col-5 { - flex: 0 0 auto; - padding: 0.5rem; - width: 41.6667%; - } - .lg\\:col-6 { - flex: 0 0 auto; - padding: 0.5rem; - width: 50%; - } - .lg\\:col-7 { - flex: 0 0 auto; - padding: 0.5rem; - width: 58.3333%; - } - .lg\\:col-8 { - flex: 0 0 auto; - padding: 0.5rem; - width: 66.6667%; - } - .lg\\:col-9 { - flex: 0 0 auto; - padding: 0.5rem; - width: 75%; - } - .lg\\:col-10 { - flex: 0 0 auto; - padding: 0.5rem; - width: 83.3333%; - } - .lg\\:col-11 { - flex: 0 0 auto; - padding: 0.5rem; - width: 91.6667%; - } - .lg\\:col-12 { - flex: 0 0 auto; - padding: 0.5rem; - width: 100%; - } -} -@media screen and (min-width: 1200px) { - .xl\\:col { - flex-grow: 1; - flex-basis: 0; - padding: 0.5rem; - } - .xl\\:col-fixed { - flex: 0 0 auto; - padding: 0.5rem; - } - .xl\\:col-1 { - flex: 0 0 auto; - padding: 0.5rem; - width: 8.3333%; - } - .xl\\:col-2 { - flex: 0 0 auto; - padding: 0.5rem; - width: 16.6667%; - } - .xl\\:col-3 { - flex: 0 0 auto; - padding: 0.5rem; - width: 25%; - } - .xl\\:col-4 { - flex: 0 0 auto; - padding: 0.5rem; - width: 33.3333%; - } - .xl\\:col-5 { - flex: 0 0 auto; - padding: 0.5rem; - width: 41.6667%; - } - .xl\\:col-6 { - flex: 0 0 auto; - padding: 0.5rem; - width: 50%; - } - .xl\\:col-7 { - flex: 0 0 auto; - padding: 0.5rem; - width: 58.3333%; - } - .xl\\:col-8 { - flex: 0 0 auto; - padding: 0.5rem; - width: 66.6667%; - } - .xl\\:col-9 { - flex: 0 0 auto; - padding: 0.5rem; - width: 75%; - } - .xl\\:col-10 { - flex: 0 0 auto; - padding: 0.5rem; - width: 83.3333%; - } - .xl\\:col-11 { - flex: 0 0 auto; - padding: 0.5rem; - width: 91.6667%; - } - .xl\\:col-12 { - flex: 0 0 auto; - padding: 0.5rem; - width: 100%; - } -} -.col-offset-0 { - margin-left: 0 !important; -} - -.col-offset-1 { - margin-left: 8.3333% !important; -} - -.col-offset-2 { - margin-left: 16.6667% !important; -} - -.col-offset-3 { - margin-left: 25% !important; -} - -.col-offset-4 { - margin-left: 33.3333% !important; -} - -.col-offset-5 { - margin-left: 41.6667% !important; -} - -.col-offset-6 { - margin-left: 50% !important; -} - -.col-offset-7 { - margin-left: 58.3333% !important; -} - -.col-offset-8 { - margin-left: 66.6667% !important; -} - -.col-offset-9 { - margin-left: 75% !important; -} - -.col-offset-10 { - margin-left: 83.3333% !important; -} - -.col-offset-11 { - margin-left: 91.6667% !important; -} - -.col-offset-12 { - margin-left: 100% !important; -} - -@media screen and (min-width: 576px) { - .sm\\:col-offset-0 { - margin-left: 0 !important; - } - .sm\\:col-offset-1 { - margin-left: 8.3333% !important; - } - .sm\\:col-offset-2 { - margin-left: 16.6667% !important; - } - .sm\\:col-offset-3 { - margin-left: 25% !important; - } - .sm\\:col-offset-4 { - margin-left: 33.3333% !important; - } - .sm\\:col-offset-5 { - margin-left: 41.6667% !important; - } - .sm\\:col-offset-6 { - margin-left: 50% !important; - } - .sm\\:col-offset-7 { - margin-left: 58.3333% !important; - } - .sm\\:col-offset-8 { - margin-left: 66.6667% !important; - } - .sm\\:col-offset-9 { - margin-left: 75% !important; - } - .sm\\:col-offset-10 { - margin-left: 83.3333% !important; - } - .sm\\:col-offset-11 { - margin-left: 91.6667% !important; - } - .sm\\:col-offset-12 { - margin-left: 100% !important; - } -} -@media screen and (min-width: 768px) { - .md\\:col-offset-0 { - margin-left: 0 !important; - } - .md\\:col-offset-1 { - margin-left: 8.3333% !important; - } - .md\\:col-offset-2 { - margin-left: 16.6667% !important; - } - .md\\:col-offset-3 { - margin-left: 25% !important; - } - .md\\:col-offset-4 { - margin-left: 33.3333% !important; - } - .md\\:col-offset-5 { - margin-left: 41.6667% !important; - } - .md\\:col-offset-6 { - margin-left: 50% !important; - } - .md\\:col-offset-7 { - margin-left: 58.3333% !important; - } - .md\\:col-offset-8 { - margin-left: 66.6667% !important; - } - .md\\:col-offset-9 { - margin-left: 75% !important; - } - .md\\:col-offset-10 { - margin-left: 83.3333% !important; - } - .md\\:col-offset-11 { - margin-left: 91.6667% !important; - } - .md\\:col-offset-12 { - margin-left: 100% !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:col-offset-0 { - margin-left: 0 !important; - } - .lg\\:col-offset-1 { - margin-left: 8.3333% !important; - } - .lg\\:col-offset-2 { - margin-left: 16.6667% !important; - } - .lg\\:col-offset-3 { - margin-left: 25% !important; - } - .lg\\:col-offset-4 { - margin-left: 33.3333% !important; - } - .lg\\:col-offset-5 { - margin-left: 41.6667% !important; - } - .lg\\:col-offset-6 { - margin-left: 50% !important; - } - .lg\\:col-offset-7 { - margin-left: 58.3333% !important; - } - .lg\\:col-offset-8 { - margin-left: 66.6667% !important; - } - .lg\\:col-offset-9 { - margin-left: 75% !important; - } - .lg\\:col-offset-10 { - margin-left: 83.3333% !important; - } - .lg\\:col-offset-11 { - margin-left: 91.6667% !important; - } - .lg\\:col-offset-12 { - margin-left: 100% !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:col-offset-0 { - margin-left: 0 !important; - } - .xl\\:col-offset-1 { - margin-left: 8.3333% !important; - } - .xl\\:col-offset-2 { - margin-left: 16.6667% !important; - } - .xl\\:col-offset-3 { - margin-left: 25% !important; - } - .xl\\:col-offset-4 { - margin-left: 33.3333% !important; - } - .xl\\:col-offset-5 { - margin-left: 41.6667% !important; - } - .xl\\:col-offset-6 { - margin-left: 50% !important; - } - .xl\\:col-offset-7 { - margin-left: 58.3333% !important; - } - .xl\\:col-offset-8 { - margin-left: 66.6667% !important; - } - .xl\\:col-offset-9 { - margin-left: 75% !important; - } - .xl\\:col-offset-10 { - margin-left: 83.3333% !important; - } - .xl\\:col-offset-11 { - margin-left: 91.6667% !important; - } - .xl\\:col-offset-12 { - margin-left: 100% !important; - } -} -.text-0 { - color: var(--surface-0) !important; -} - -.text-50 { - color: var(--surface-50) !important; -} - -.text-100 { - color: var(--surface-100) !important; -} - -.text-200 { - color: var(--surface-200) !important; -} - -.text-300 { - color: var(--surface-300) !important; -} - -.text-400 { - color: var(--surface-400) !important; -} - -.text-500 { - color: var(--surface-500) !important; -} - -.text-600 { - color: var(--surface-600) !important; -} - -.text-700 { - color: var(--surface-700) !important; -} - -.text-800 { - color: var(--surface-800) !important; -} - -.text-900 { - color: var(--surface-900) !important; -} - -.focus\\:text-0:focus { - color: var(--surface-0) !important; -} - -.hover\\:text-0:hover { - color: var(--surface-0) !important; -} - -.active\\:text-0:active { - color: var(--surface-0) !important; -} - -.focus\\:text-50:focus { - color: var(--surface-50) !important; -} - -.hover\\:text-50:hover { - color: var(--surface-50) !important; -} - -.active\\:text-50:active { - color: var(--surface-50) !important; -} - -.focus\\:text-100:focus { - color: var(--surface-100) !important; -} - -.hover\\:text-100:hover { - color: var(--surface-100) !important; -} - -.active\\:text-100:active { - color: var(--surface-100) !important; -} - -.focus\\:text-200:focus { - color: var(--surface-200) !important; -} - -.hover\\:text-200:hover { - color: var(--surface-200) !important; -} - -.active\\:text-200:active { - color: var(--surface-200) !important; -} - -.focus\\:text-300:focus { - color: var(--surface-300) !important; -} - -.hover\\:text-300:hover { - color: var(--surface-300) !important; -} - -.active\\:text-300:active { - color: var(--surface-300) !important; -} - -.focus\\:text-400:focus { - color: var(--surface-400) !important; -} - -.hover\\:text-400:hover { - color: var(--surface-400) !important; -} - -.active\\:text-400:active { - color: var(--surface-400) !important; -} - -.focus\\:text-500:focus { - color: var(--surface-500) !important; -} - -.hover\\:text-500:hover { - color: var(--surface-500) !important; -} - -.active\\:text-500:active { - color: var(--surface-500) !important; -} - -.focus\\:text-600:focus { - color: var(--surface-600) !important; -} - -.hover\\:text-600:hover { - color: var(--surface-600) !important; -} - -.active\\:text-600:active { - color: var(--surface-600) !important; -} - -.focus\\:text-700:focus { - color: var(--surface-700) !important; -} - -.hover\\:text-700:hover { - color: var(--surface-700) !important; -} - -.active\\:text-700:active { - color: var(--surface-700) !important; -} - -.focus\\:text-800:focus { - color: var(--surface-800) !important; -} - -.hover\\:text-800:hover { - color: var(--surface-800) !important; -} - -.active\\:text-800:active { - color: var(--surface-800) !important; -} - -.focus\\:text-900:focus { - color: var(--surface-900) !important; -} - -.hover\\:text-900:hover { - color: var(--surface-900) !important; -} - -.active\\:text-900:active { - color: var(--surface-900) !important; -} - -.surface-0 { - background-color: var(--surface-0) !important; -} - -.surface-50 { - background-color: var(--surface-50) !important; -} - -.surface-100 { - background-color: var(--surface-100) !important; -} - -.surface-200 { - background-color: var(--surface-200) !important; -} - -.surface-300 { - background-color: var(--surface-300) !important; -} - -.surface-400 { - background-color: var(--surface-400) !important; -} - -.surface-500 { - background-color: var(--surface-500) !important; -} - -.surface-600 { - background-color: var(--surface-600) !important; -} - -.surface-700 { - background-color: var(--surface-700) !important; -} - -.surface-800 { - background-color: var(--surface-800) !important; -} - -.surface-900 { - background-color: var(--surface-900) !important; -} - -.focus\\:surface-0:focus { - background-color: var(--surface-0) !important; -} - -.hover\\:surface-0:hover { - background-color: var(--surface-0) !important; -} - -.active\\:surface-0:active { - background-color: var(--surface-0) !important; -} - -.focus\\:surface-50:focus { - background-color: var(--surface-50) !important; -} - -.hover\\:surface-50:hover { - background-color: var(--surface-50) !important; -} - -.active\\:surface-50:active { - background-color: var(--surface-50) !important; -} - -.focus\\:surface-100:focus { - background-color: var(--surface-100) !important; -} - -.hover\\:surface-100:hover { - background-color: var(--surface-100) !important; -} - -.active\\:surface-100:active { - background-color: var(--surface-100) !important; -} - -.focus\\:surface-200:focus { - background-color: var(--surface-200) !important; -} - -.hover\\:surface-200:hover { - background-color: var(--surface-200) !important; -} - -.active\\:surface-200:active { - background-color: var(--surface-200) !important; -} - -.focus\\:surface-300:focus { - background-color: var(--surface-300) !important; -} - -.hover\\:surface-300:hover { - background-color: var(--surface-300) !important; -} - -.active\\:surface-300:active { - background-color: var(--surface-300) !important; -} - -.focus\\:surface-400:focus { - background-color: var(--surface-400) !important; -} - -.hover\\:surface-400:hover { - background-color: var(--surface-400) !important; -} - -.active\\:surface-400:active { - background-color: var(--surface-400) !important; -} - -.focus\\:surface-500:focus { - background-color: var(--surface-500) !important; -} - -.hover\\:surface-500:hover { - background-color: var(--surface-500) !important; -} - -.active\\:surface-500:active { - background-color: var(--surface-500) !important; -} - -.focus\\:surface-600:focus { - background-color: var(--surface-600) !important; -} - -.hover\\:surface-600:hover { - background-color: var(--surface-600) !important; -} - -.active\\:surface-600:active { - background-color: var(--surface-600) !important; -} - -.focus\\:surface-700:focus { - background-color: var(--surface-700) !important; -} - -.hover\\:surface-700:hover { - background-color: var(--surface-700) !important; -} - -.active\\:surface-700:active { - background-color: var(--surface-700) !important; -} - -.focus\\:surface-800:focus { - background-color: var(--surface-800) !important; -} - -.hover\\:surface-800:hover { - background-color: var(--surface-800) !important; -} - -.active\\:surface-800:active { - background-color: var(--surface-800) !important; -} - -.focus\\:surface-900:focus { - background-color: var(--surface-900) !important; -} - -.hover\\:surface-900:hover { - background-color: var(--surface-900) !important; -} - -.active\\:surface-900:active { - background-color: var(--surface-900) !important; -} - -.border-0 { - border-color: var(--surface-0) !important; -} - -.border-50 { - border-color: var(--surface-50) !important; -} - -.border-100 { - border-color: var(--surface-100) !important; -} - -.border-200 { - border-color: var(--surface-200) !important; -} - -.border-300 { - border-color: var(--surface-300) !important; -} - -.border-400 { - border-color: var(--surface-400) !important; -} - -.border-500 { - border-color: var(--surface-500) !important; -} - -.border-600 { - border-color: var(--surface-600) !important; -} - -.border-700 { - border-color: var(--surface-700) !important; -} - -.border-800 { - border-color: var(--surface-800) !important; -} - -.border-900 { - border-color: var(--surface-900) !important; -} - -.focus\\:border-0:focus { - border-color: var(--surface-0) !important; -} - -.hover\\:border-0:hover { - border-color: var(--surface-0) !important; -} - -.active\\:border-0:active { - border-color: var(--surface-0) !important; -} - -.focus\\:border-50:focus { - border-color: var(--surface-50) !important; -} - -.hover\\:border-50:hover { - border-color: var(--surface-50) !important; -} - -.active\\:border-50:active { - border-color: var(--surface-50) !important; -} - -.focus\\:border-100:focus { - border-color: var(--surface-100) !important; -} - -.hover\\:border-100:hover { - border-color: var(--surface-100) !important; -} - -.active\\:border-100:active { - border-color: var(--surface-100) !important; -} - -.focus\\:border-200:focus { - border-color: var(--surface-200) !important; -} - -.hover\\:border-200:hover { - border-color: var(--surface-200) !important; -} - -.active\\:border-200:active { - border-color: var(--surface-200) !important; -} - -.focus\\:border-300:focus { - border-color: var(--surface-300) !important; -} - -.hover\\:border-300:hover { - border-color: var(--surface-300) !important; -} - -.active\\:border-300:active { - border-color: var(--surface-300) !important; -} - -.focus\\:border-400:focus { - border-color: var(--surface-400) !important; -} - -.hover\\:border-400:hover { - border-color: var(--surface-400) !important; -} - -.active\\:border-400:active { - border-color: var(--surface-400) !important; -} - -.focus\\:border-500:focus { - border-color: var(--surface-500) !important; -} - -.hover\\:border-500:hover { - border-color: var(--surface-500) !important; -} - -.active\\:border-500:active { - border-color: var(--surface-500) !important; -} - -.focus\\:border-600:focus { - border-color: var(--surface-600) !important; -} - -.hover\\:border-600:hover { - border-color: var(--surface-600) !important; -} - -.active\\:border-600:active { - border-color: var(--surface-600) !important; -} - -.focus\\:border-700:focus { - border-color: var(--surface-700) !important; -} - -.hover\\:border-700:hover { - border-color: var(--surface-700) !important; -} - -.active\\:border-700:active { - border-color: var(--surface-700) !important; -} - -.focus\\:border-800:focus { - border-color: var(--surface-800) !important; -} - -.hover\\:border-800:hover { - border-color: var(--surface-800) !important; -} - -.active\\:border-800:active { - border-color: var(--surface-800) !important; -} - -.focus\\:border-900:focus { - border-color: var(--surface-900) !important; -} - -.hover\\:border-900:hover { - border-color: var(--surface-900) !important; -} - -.active\\:border-900:active { - border-color: var(--surface-900) !important; -} - -.bg-transparent { - background-color: transparent !important; -} - -@media screen and (min-width: 576px) { - .sm\\:bg-transparent { - background-color: transparent !important; - } -} -@media screen and (min-width: 768px) { - .md\\:bg-transparent { - background-color: transparent !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:bg-transparent { - background-color: transparent !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:bg-transparent { - background-color: transparent !important; - } -} -.border-transparent { - border-color: transparent !important; -} - -@media screen and (min-width: 576px) { - .sm\\:border-transparent { - border-color: transparent !important; - } -} -@media screen and (min-width: 768px) { - .md\\:border-transparent { - border-color: transparent !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:border-transparent { - border-color: transparent !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:border-transparent { - border-color: transparent !important; - } -} -.text-blue-50 { - color: var(--blue-50) !important; -} -.text-blue-100 { - color: var(--blue-100) !important; -} -.text-blue-200 { - color: var(--blue-200) !important; -} -.text-blue-300 { - color: var(--blue-300) !important; -} -.text-blue-400 { - color: var(--blue-400) !important; -} -.text-blue-500 { - color: var(--blue-500) !important; -} -.text-blue-600 { - color: var(--blue-600) !important; -} -.text-blue-700 { - color: var(--blue-700) !important; -} -.text-blue-800 { - color: var(--blue-800) !important; -} -.text-blue-900 { - color: var(--blue-900) !important; -} - -.focus\\:text-blue-50:focus { - color: var(--blue-50) !important; -} -.focus\\:text-blue-100:focus { - color: var(--blue-100) !important; -} -.focus\\:text-blue-200:focus { - color: var(--blue-200) !important; -} -.focus\\:text-blue-300:focus { - color: var(--blue-300) !important; -} -.focus\\:text-blue-400:focus { - color: var(--blue-400) !important; -} -.focus\\:text-blue-500:focus { - color: var(--blue-500) !important; -} -.focus\\:text-blue-600:focus { - color: var(--blue-600) !important; -} -.focus\\:text-blue-700:focus { - color: var(--blue-700) !important; -} -.focus\\:text-blue-800:focus { - color: var(--blue-800) !important; -} -.focus\\:text-blue-900:focus { - color: var(--blue-900) !important; -} - -.hover\\:text-blue-50:hover { - color: var(--blue-50) !important; -} -.hover\\:text-blue-100:hover { - color: var(--blue-100) !important; -} -.hover\\:text-blue-200:hover { - color: var(--blue-200) !important; -} -.hover\\:text-blue-300:hover { - color: var(--blue-300) !important; -} -.hover\\:text-blue-400:hover { - color: var(--blue-400) !important; -} -.hover\\:text-blue-500:hover { - color: var(--blue-500) !important; -} -.hover\\:text-blue-600:hover { - color: var(--blue-600) !important; -} -.hover\\:text-blue-700:hover { - color: var(--blue-700) !important; -} -.hover\\:text-blue-800:hover { - color: var(--blue-800) !important; -} -.hover\\:text-blue-900:hover { - color: var(--blue-900) !important; -} - -.active\\:text-blue-50:active { - color: var(--blue-50) !important; -} -.active\\:text-blue-100:active { - color: var(--blue-100) !important; -} -.active\\:text-blue-200:active { - color: var(--blue-200) !important; -} -.active\\:text-blue-300:active { - color: var(--blue-300) !important; -} -.active\\:text-blue-400:active { - color: var(--blue-400) !important; -} -.active\\:text-blue-500:active { - color: var(--blue-500) !important; -} -.active\\:text-blue-600:active { - color: var(--blue-600) !important; -} -.active\\:text-blue-700:active { - color: var(--blue-700) !important; -} -.active\\:text-blue-800:active { - color: var(--blue-800) !important; -} -.active\\:text-blue-900:active { - color: var(--blue-900) !important; -} - -.text-green-50 { - color: var(--green-50) !important; -} -.text-green-100 { - color: var(--green-100) !important; -} -.text-green-200 { - color: var(--green-200) !important; -} -.text-green-300 { - color: var(--green-300) !important; -} -.text-green-400 { - color: var(--green-400) !important; -} -.text-green-500 { - color: var(--green-500) !important; -} -.text-green-600 { - color: var(--green-600) !important; -} -.text-green-700 { - color: var(--green-700) !important; -} -.text-green-800 { - color: var(--green-800) !important; -} -.text-green-900 { - color: var(--green-900) !important; -} - -.focus\\:text-green-50:focus { - color: var(--green-50) !important; -} -.focus\\:text-green-100:focus { - color: var(--green-100) !important; -} -.focus\\:text-green-200:focus { - color: var(--green-200) !important; -} -.focus\\:text-green-300:focus { - color: var(--green-300) !important; -} -.focus\\:text-green-400:focus { - color: var(--green-400) !important; -} -.focus\\:text-green-500:focus { - color: var(--green-500) !important; -} -.focus\\:text-green-600:focus { - color: var(--green-600) !important; -} -.focus\\:text-green-700:focus { - color: var(--green-700) !important; -} -.focus\\:text-green-800:focus { - color: var(--green-800) !important; -} -.focus\\:text-green-900:focus { - color: var(--green-900) !important; -} - -.hover\\:text-green-50:hover { - color: var(--green-50) !important; -} -.hover\\:text-green-100:hover { - color: var(--green-100) !important; -} -.hover\\:text-green-200:hover { - color: var(--green-200) !important; -} -.hover\\:text-green-300:hover { - color: var(--green-300) !important; -} -.hover\\:text-green-400:hover { - color: var(--green-400) !important; -} -.hover\\:text-green-500:hover { - color: var(--green-500) !important; -} -.hover\\:text-green-600:hover { - color: var(--green-600) !important; -} -.hover\\:text-green-700:hover { - color: var(--green-700) !important; -} -.hover\\:text-green-800:hover { - color: var(--green-800) !important; -} -.hover\\:text-green-900:hover { - color: var(--green-900) !important; -} - -.active\\:text-green-50:active { - color: var(--green-50) !important; -} -.active\\:text-green-100:active { - color: var(--green-100) !important; -} -.active\\:text-green-200:active { - color: var(--green-200) !important; -} -.active\\:text-green-300:active { - color: var(--green-300) !important; -} -.active\\:text-green-400:active { - color: var(--green-400) !important; -} -.active\\:text-green-500:active { - color: var(--green-500) !important; -} -.active\\:text-green-600:active { - color: var(--green-600) !important; -} -.active\\:text-green-700:active { - color: var(--green-700) !important; -} -.active\\:text-green-800:active { - color: var(--green-800) !important; -} -.active\\:text-green-900:active { - color: var(--green-900) !important; -} - -.text-yellow-50 { - color: var(--yellow-50) !important; -} -.text-yellow-100 { - color: var(--yellow-100) !important; -} -.text-yellow-200 { - color: var(--yellow-200) !important; -} -.text-yellow-300 { - color: var(--yellow-300) !important; -} -.text-yellow-400 { - color: var(--yellow-400) !important; -} -.text-yellow-500 { - color: var(--yellow-500) !important; -} -.text-yellow-600 { - color: var(--yellow-600) !important; -} -.text-yellow-700 { - color: var(--yellow-700) !important; -} -.text-yellow-800 { - color: var(--yellow-800) !important; -} -.text-yellow-900 { - color: var(--yellow-900) !important; -} - -.focus\\:text-yellow-50:focus { - color: var(--yellow-50) !important; -} -.focus\\:text-yellow-100:focus { - color: var(--yellow-100) !important; -} -.focus\\:text-yellow-200:focus { - color: var(--yellow-200) !important; -} -.focus\\:text-yellow-300:focus { - color: var(--yellow-300) !important; -} -.focus\\:text-yellow-400:focus { - color: var(--yellow-400) !important; -} -.focus\\:text-yellow-500:focus { - color: var(--yellow-500) !important; -} -.focus\\:text-yellow-600:focus { - color: var(--yellow-600) !important; -} -.focus\\:text-yellow-700:focus { - color: var(--yellow-700) !important; -} -.focus\\:text-yellow-800:focus { - color: var(--yellow-800) !important; -} -.focus\\:text-yellow-900:focus { - color: var(--yellow-900) !important; -} - -.hover\\:text-yellow-50:hover { - color: var(--yellow-50) !important; -} -.hover\\:text-yellow-100:hover { - color: var(--yellow-100) !important; -} -.hover\\:text-yellow-200:hover { - color: var(--yellow-200) !important; -} -.hover\\:text-yellow-300:hover { - color: var(--yellow-300) !important; -} -.hover\\:text-yellow-400:hover { - color: var(--yellow-400) !important; -} -.hover\\:text-yellow-500:hover { - color: var(--yellow-500) !important; -} -.hover\\:text-yellow-600:hover { - color: var(--yellow-600) !important; -} -.hover\\:text-yellow-700:hover { - color: var(--yellow-700) !important; -} -.hover\\:text-yellow-800:hover { - color: var(--yellow-800) !important; -} -.hover\\:text-yellow-900:hover { - color: var(--yellow-900) !important; -} - -.active\\:text-yellow-50:active { - color: var(--yellow-50) !important; -} -.active\\:text-yellow-100:active { - color: var(--yellow-100) !important; -} -.active\\:text-yellow-200:active { - color: var(--yellow-200) !important; -} -.active\\:text-yellow-300:active { - color: var(--yellow-300) !important; -} -.active\\:text-yellow-400:active { - color: var(--yellow-400) !important; -} -.active\\:text-yellow-500:active { - color: var(--yellow-500) !important; -} -.active\\:text-yellow-600:active { - color: var(--yellow-600) !important; -} -.active\\:text-yellow-700:active { - color: var(--yellow-700) !important; -} -.active\\:text-yellow-800:active { - color: var(--yellow-800) !important; -} -.active\\:text-yellow-900:active { - color: var(--yellow-900) !important; -} - -.text-cyan-50 { - color: var(--cyan-50) !important; -} -.text-cyan-100 { - color: var(--cyan-100) !important; -} -.text-cyan-200 { - color: var(--cyan-200) !important; -} -.text-cyan-300 { - color: var(--cyan-300) !important; -} -.text-cyan-400 { - color: var(--cyan-400) !important; -} -.text-cyan-500 { - color: var(--cyan-500) !important; -} -.text-cyan-600 { - color: var(--cyan-600) !important; -} -.text-cyan-700 { - color: var(--cyan-700) !important; -} -.text-cyan-800 { - color: var(--cyan-800) !important; -} -.text-cyan-900 { - color: var(--cyan-900) !important; -} - -.focus\\:text-cyan-50:focus { - color: var(--cyan-50) !important; -} -.focus\\:text-cyan-100:focus { - color: var(--cyan-100) !important; -} -.focus\\:text-cyan-200:focus { - color: var(--cyan-200) !important; -} -.focus\\:text-cyan-300:focus { - color: var(--cyan-300) !important; -} -.focus\\:text-cyan-400:focus { - color: var(--cyan-400) !important; -} -.focus\\:text-cyan-500:focus { - color: var(--cyan-500) !important; -} -.focus\\:text-cyan-600:focus { - color: var(--cyan-600) !important; -} -.focus\\:text-cyan-700:focus { - color: var(--cyan-700) !important; -} -.focus\\:text-cyan-800:focus { - color: var(--cyan-800) !important; -} -.focus\\:text-cyan-900:focus { - color: var(--cyan-900) !important; -} - -.hover\\:text-cyan-50:hover { - color: var(--cyan-50) !important; -} -.hover\\:text-cyan-100:hover { - color: var(--cyan-100) !important; -} -.hover\\:text-cyan-200:hover { - color: var(--cyan-200) !important; -} -.hover\\:text-cyan-300:hover { - color: var(--cyan-300) !important; -} -.hover\\:text-cyan-400:hover { - color: var(--cyan-400) !important; -} -.hover\\:text-cyan-500:hover { - color: var(--cyan-500) !important; -} -.hover\\:text-cyan-600:hover { - color: var(--cyan-600) !important; -} -.hover\\:text-cyan-700:hover { - color: var(--cyan-700) !important; -} -.hover\\:text-cyan-800:hover { - color: var(--cyan-800) !important; -} -.hover\\:text-cyan-900:hover { - color: var(--cyan-900) !important; -} - -.active\\:text-cyan-50:active { - color: var(--cyan-50) !important; -} -.active\\:text-cyan-100:active { - color: var(--cyan-100) !important; -} -.active\\:text-cyan-200:active { - color: var(--cyan-200) !important; -} -.active\\:text-cyan-300:active { - color: var(--cyan-300) !important; -} -.active\\:text-cyan-400:active { - color: var(--cyan-400) !important; -} -.active\\:text-cyan-500:active { - color: var(--cyan-500) !important; -} -.active\\:text-cyan-600:active { - color: var(--cyan-600) !important; -} -.active\\:text-cyan-700:active { - color: var(--cyan-700) !important; -} -.active\\:text-cyan-800:active { - color: var(--cyan-800) !important; -} -.active\\:text-cyan-900:active { - color: var(--cyan-900) !important; -} - -.text-pink-50 { - color: var(--pink-50) !important; -} -.text-pink-100 { - color: var(--pink-100) !important; -} -.text-pink-200 { - color: var(--pink-200) !important; -} -.text-pink-300 { - color: var(--pink-300) !important; -} -.text-pink-400 { - color: var(--pink-400) !important; -} -.text-pink-500 { - color: var(--pink-500) !important; -} -.text-pink-600 { - color: var(--pink-600) !important; -} -.text-pink-700 { - color: var(--pink-700) !important; -} -.text-pink-800 { - color: var(--pink-800) !important; -} -.text-pink-900 { - color: var(--pink-900) !important; -} - -.focus\\:text-pink-50:focus { - color: var(--pink-50) !important; -} -.focus\\:text-pink-100:focus { - color: var(--pink-100) !important; -} -.focus\\:text-pink-200:focus { - color: var(--pink-200) !important; -} -.focus\\:text-pink-300:focus { - color: var(--pink-300) !important; -} -.focus\\:text-pink-400:focus { - color: var(--pink-400) !important; -} -.focus\\:text-pink-500:focus { - color: var(--pink-500) !important; -} -.focus\\:text-pink-600:focus { - color: var(--pink-600) !important; -} -.focus\\:text-pink-700:focus { - color: var(--pink-700) !important; -} -.focus\\:text-pink-800:focus { - color: var(--pink-800) !important; -} -.focus\\:text-pink-900:focus { - color: var(--pink-900) !important; -} - -.hover\\:text-pink-50:hover { - color: var(--pink-50) !important; -} -.hover\\:text-pink-100:hover { - color: var(--pink-100) !important; -} -.hover\\:text-pink-200:hover { - color: var(--pink-200) !important; -} -.hover\\:text-pink-300:hover { - color: var(--pink-300) !important; -} -.hover\\:text-pink-400:hover { - color: var(--pink-400) !important; -} -.hover\\:text-pink-500:hover { - color: var(--pink-500) !important; -} -.hover\\:text-pink-600:hover { - color: var(--pink-600) !important; -} -.hover\\:text-pink-700:hover { - color: var(--pink-700) !important; -} -.hover\\:text-pink-800:hover { - color: var(--pink-800) !important; -} -.hover\\:text-pink-900:hover { - color: var(--pink-900) !important; -} - -.active\\:text-pink-50:active { - color: var(--pink-50) !important; -} -.active\\:text-pink-100:active { - color: var(--pink-100) !important; -} -.active\\:text-pink-200:active { - color: var(--pink-200) !important; -} -.active\\:text-pink-300:active { - color: var(--pink-300) !important; -} -.active\\:text-pink-400:active { - color: var(--pink-400) !important; -} -.active\\:text-pink-500:active { - color: var(--pink-500) !important; -} -.active\\:text-pink-600:active { - color: var(--pink-600) !important; -} -.active\\:text-pink-700:active { - color: var(--pink-700) !important; -} -.active\\:text-pink-800:active { - color: var(--pink-800) !important; -} -.active\\:text-pink-900:active { - color: var(--pink-900) !important; -} - -.text-indigo-50 { - color: var(--indigo-50) !important; -} -.text-indigo-100 { - color: var(--indigo-100) !important; -} -.text-indigo-200 { - color: var(--indigo-200) !important; -} -.text-indigo-300 { - color: var(--indigo-300) !important; -} -.text-indigo-400 { - color: var(--indigo-400) !important; -} -.text-indigo-500 { - color: var(--indigo-500) !important; -} -.text-indigo-600 { - color: var(--indigo-600) !important; -} -.text-indigo-700 { - color: var(--indigo-700) !important; -} -.text-indigo-800 { - color: var(--indigo-800) !important; -} -.text-indigo-900 { - color: var(--indigo-900) !important; -} - -.focus\\:text-indigo-50:focus { - color: var(--indigo-50) !important; -} -.focus\\:text-indigo-100:focus { - color: var(--indigo-100) !important; -} -.focus\\:text-indigo-200:focus { - color: var(--indigo-200) !important; -} -.focus\\:text-indigo-300:focus { - color: var(--indigo-300) !important; -} -.focus\\:text-indigo-400:focus { - color: var(--indigo-400) !important; -} -.focus\\:text-indigo-500:focus { - color: var(--indigo-500) !important; -} -.focus\\:text-indigo-600:focus { - color: var(--indigo-600) !important; -} -.focus\\:text-indigo-700:focus { - color: var(--indigo-700) !important; -} -.focus\\:text-indigo-800:focus { - color: var(--indigo-800) !important; -} -.focus\\:text-indigo-900:focus { - color: var(--indigo-900) !important; -} - -.hover\\:text-indigo-50:hover { - color: var(--indigo-50) !important; -} -.hover\\:text-indigo-100:hover { - color: var(--indigo-100) !important; -} -.hover\\:text-indigo-200:hover { - color: var(--indigo-200) !important; -} -.hover\\:text-indigo-300:hover { - color: var(--indigo-300) !important; -} -.hover\\:text-indigo-400:hover { - color: var(--indigo-400) !important; -} -.hover\\:text-indigo-500:hover { - color: var(--indigo-500) !important; -} -.hover\\:text-indigo-600:hover { - color: var(--indigo-600) !important; -} -.hover\\:text-indigo-700:hover { - color: var(--indigo-700) !important; -} -.hover\\:text-indigo-800:hover { - color: var(--indigo-800) !important; -} -.hover\\:text-indigo-900:hover { - color: var(--indigo-900) !important; -} - -.active\\:text-indigo-50:active { - color: var(--indigo-50) !important; -} -.active\\:text-indigo-100:active { - color: var(--indigo-100) !important; -} -.active\\:text-indigo-200:active { - color: var(--indigo-200) !important; -} -.active\\:text-indigo-300:active { - color: var(--indigo-300) !important; -} -.active\\:text-indigo-400:active { - color: var(--indigo-400) !important; -} -.active\\:text-indigo-500:active { - color: var(--indigo-500) !important; -} -.active\\:text-indigo-600:active { - color: var(--indigo-600) !important; -} -.active\\:text-indigo-700:active { - color: var(--indigo-700) !important; -} -.active\\:text-indigo-800:active { - color: var(--indigo-800) !important; -} -.active\\:text-indigo-900:active { - color: var(--indigo-900) !important; -} - -.text-teal-50 { - color: var(--teal-50) !important; -} -.text-teal-100 { - color: var(--teal-100) !important; -} -.text-teal-200 { - color: var(--teal-200) !important; -} -.text-teal-300 { - color: var(--teal-300) !important; -} -.text-teal-400 { - color: var(--teal-400) !important; -} -.text-teal-500 { - color: var(--teal-500) !important; -} -.text-teal-600 { - color: var(--teal-600) !important; -} -.text-teal-700 { - color: var(--teal-700) !important; -} -.text-teal-800 { - color: var(--teal-800) !important; -} -.text-teal-900 { - color: var(--teal-900) !important; -} - -.focus\\:text-teal-50:focus { - color: var(--teal-50) !important; -} -.focus\\:text-teal-100:focus { - color: var(--teal-100) !important; -} -.focus\\:text-teal-200:focus { - color: var(--teal-200) !important; -} -.focus\\:text-teal-300:focus { - color: var(--teal-300) !important; -} -.focus\\:text-teal-400:focus { - color: var(--teal-400) !important; -} -.focus\\:text-teal-500:focus { - color: var(--teal-500) !important; -} -.focus\\:text-teal-600:focus { - color: var(--teal-600) !important; -} -.focus\\:text-teal-700:focus { - color: var(--teal-700) !important; -} -.focus\\:text-teal-800:focus { - color: var(--teal-800) !important; -} -.focus\\:text-teal-900:focus { - color: var(--teal-900) !important; -} - -.hover\\:text-teal-50:hover { - color: var(--teal-50) !important; -} -.hover\\:text-teal-100:hover { - color: var(--teal-100) !important; -} -.hover\\:text-teal-200:hover { - color: var(--teal-200) !important; -} -.hover\\:text-teal-300:hover { - color: var(--teal-300) !important; -} -.hover\\:text-teal-400:hover { - color: var(--teal-400) !important; -} -.hover\\:text-teal-500:hover { - color: var(--teal-500) !important; -} -.hover\\:text-teal-600:hover { - color: var(--teal-600) !important; -} -.hover\\:text-teal-700:hover { - color: var(--teal-700) !important; -} -.hover\\:text-teal-800:hover { - color: var(--teal-800) !important; -} -.hover\\:text-teal-900:hover { - color: var(--teal-900) !important; -} - -.active\\:text-teal-50:active { - color: var(--teal-50) !important; -} -.active\\:text-teal-100:active { - color: var(--teal-100) !important; -} -.active\\:text-teal-200:active { - color: var(--teal-200) !important; -} -.active\\:text-teal-300:active { - color: var(--teal-300) !important; -} -.active\\:text-teal-400:active { - color: var(--teal-400) !important; -} -.active\\:text-teal-500:active { - color: var(--teal-500) !important; -} -.active\\:text-teal-600:active { - color: var(--teal-600) !important; -} -.active\\:text-teal-700:active { - color: var(--teal-700) !important; -} -.active\\:text-teal-800:active { - color: var(--teal-800) !important; -} -.active\\:text-teal-900:active { - color: var(--teal-900) !important; -} - -.text-orange-50 { - color: var(--orange-50) !important; -} -.text-orange-100 { - color: var(--orange-100) !important; -} -.text-orange-200 { - color: var(--orange-200) !important; -} -.text-orange-300 { - color: var(--orange-300) !important; -} -.text-orange-400 { - color: var(--orange-400) !important; -} -.text-orange-500 { - color: var(--orange-500) !important; -} -.text-orange-600 { - color: var(--orange-600) !important; -} -.text-orange-700 { - color: var(--orange-700) !important; -} -.text-orange-800 { - color: var(--orange-800) !important; -} -.text-orange-900 { - color: var(--orange-900) !important; -} - -.focus\\:text-orange-50:focus { - color: var(--orange-50) !important; -} -.focus\\:text-orange-100:focus { - color: var(--orange-100) !important; -} -.focus\\:text-orange-200:focus { - color: var(--orange-200) !important; -} -.focus\\:text-orange-300:focus { - color: var(--orange-300) !important; -} -.focus\\:text-orange-400:focus { - color: var(--orange-400) !important; -} -.focus\\:text-orange-500:focus { - color: var(--orange-500) !important; -} -.focus\\:text-orange-600:focus { - color: var(--orange-600) !important; -} -.focus\\:text-orange-700:focus { - color: var(--orange-700) !important; -} -.focus\\:text-orange-800:focus { - color: var(--orange-800) !important; -} -.focus\\:text-orange-900:focus { - color: var(--orange-900) !important; -} - -.hover\\:text-orange-50:hover { - color: var(--orange-50) !important; -} -.hover\\:text-orange-100:hover { - color: var(--orange-100) !important; -} -.hover\\:text-orange-200:hover { - color: var(--orange-200) !important; -} -.hover\\:text-orange-300:hover { - color: var(--orange-300) !important; -} -.hover\\:text-orange-400:hover { - color: var(--orange-400) !important; -} -.hover\\:text-orange-500:hover { - color: var(--orange-500) !important; -} -.hover\\:text-orange-600:hover { - color: var(--orange-600) !important; -} -.hover\\:text-orange-700:hover { - color: var(--orange-700) !important; -} -.hover\\:text-orange-800:hover { - color: var(--orange-800) !important; -} -.hover\\:text-orange-900:hover { - color: var(--orange-900) !important; -} - -.active\\:text-orange-50:active { - color: var(--orange-50) !important; -} -.active\\:text-orange-100:active { - color: var(--orange-100) !important; -} -.active\\:text-orange-200:active { - color: var(--orange-200) !important; -} -.active\\:text-orange-300:active { - color: var(--orange-300) !important; -} -.active\\:text-orange-400:active { - color: var(--orange-400) !important; -} -.active\\:text-orange-500:active { - color: var(--orange-500) !important; -} -.active\\:text-orange-600:active { - color: var(--orange-600) !important; -} -.active\\:text-orange-700:active { - color: var(--orange-700) !important; -} -.active\\:text-orange-800:active { - color: var(--orange-800) !important; -} -.active\\:text-orange-900:active { - color: var(--orange-900) !important; -} - -.text-bluegray-50 { - color: var(--bluegray-50) !important; -} -.text-bluegray-100 { - color: var(--bluegray-100) !important; -} -.text-bluegray-200 { - color: var(--bluegray-200) !important; -} -.text-bluegray-300 { - color: var(--bluegray-300) !important; -} -.text-bluegray-400 { - color: var(--bluegray-400) !important; -} -.text-bluegray-500 { - color: var(--bluegray-500) !important; -} -.text-bluegray-600 { - color: var(--bluegray-600) !important; -} -.text-bluegray-700 { - color: var(--bluegray-700) !important; -} -.text-bluegray-800 { - color: var(--bluegray-800) !important; -} -.text-bluegray-900 { - color: var(--bluegray-900) !important; -} - -.focus\\:text-bluegray-50:focus { - color: var(--bluegray-50) !important; -} -.focus\\:text-bluegray-100:focus { - color: var(--bluegray-100) !important; -} -.focus\\:text-bluegray-200:focus { - color: var(--bluegray-200) !important; -} -.focus\\:text-bluegray-300:focus { - color: var(--bluegray-300) !important; -} -.focus\\:text-bluegray-400:focus { - color: var(--bluegray-400) !important; -} -.focus\\:text-bluegray-500:focus { - color: var(--bluegray-500) !important; -} -.focus\\:text-bluegray-600:focus { - color: var(--bluegray-600) !important; -} -.focus\\:text-bluegray-700:focus { - color: var(--bluegray-700) !important; -} -.focus\\:text-bluegray-800:focus { - color: var(--bluegray-800) !important; -} -.focus\\:text-bluegray-900:focus { - color: var(--bluegray-900) !important; -} - -.hover\\:text-bluegray-50:hover { - color: var(--bluegray-50) !important; -} -.hover\\:text-bluegray-100:hover { - color: var(--bluegray-100) !important; -} -.hover\\:text-bluegray-200:hover { - color: var(--bluegray-200) !important; -} -.hover\\:text-bluegray-300:hover { - color: var(--bluegray-300) !important; -} -.hover\\:text-bluegray-400:hover { - color: var(--bluegray-400) !important; -} -.hover\\:text-bluegray-500:hover { - color: var(--bluegray-500) !important; -} -.hover\\:text-bluegray-600:hover { - color: var(--bluegray-600) !important; -} -.hover\\:text-bluegray-700:hover { - color: var(--bluegray-700) !important; -} -.hover\\:text-bluegray-800:hover { - color: var(--bluegray-800) !important; -} -.hover\\:text-bluegray-900:hover { - color: var(--bluegray-900) !important; -} - -.active\\:text-bluegray-50:active { - color: var(--bluegray-50) !important; -} -.active\\:text-bluegray-100:active { - color: var(--bluegray-100) !important; -} -.active\\:text-bluegray-200:active { - color: var(--bluegray-200) !important; -} -.active\\:text-bluegray-300:active { - color: var(--bluegray-300) !important; -} -.active\\:text-bluegray-400:active { - color: var(--bluegray-400) !important; -} -.active\\:text-bluegray-500:active { - color: var(--bluegray-500) !important; -} -.active\\:text-bluegray-600:active { - color: var(--bluegray-600) !important; -} -.active\\:text-bluegray-700:active { - color: var(--bluegray-700) !important; -} -.active\\:text-bluegray-800:active { - color: var(--bluegray-800) !important; -} -.active\\:text-bluegray-900:active { - color: var(--bluegray-900) !important; -} - -.text-purple-50 { - color: var(--purple-50) !important; -} -.text-purple-100 { - color: var(--purple-100) !important; -} -.text-purple-200 { - color: var(--purple-200) !important; -} -.text-purple-300 { - color: var(--purple-300) !important; -} -.text-purple-400 { - color: var(--purple-400) !important; -} -.text-purple-500 { - color: var(--purple-500) !important; -} -.text-purple-600 { - color: var(--purple-600) !important; -} -.text-purple-700 { - color: var(--purple-700) !important; -} -.text-purple-800 { - color: var(--purple-800) !important; -} -.text-purple-900 { - color: var(--purple-900) !important; -} - -.focus\\:text-purple-50:focus { - color: var(--purple-50) !important; -} -.focus\\:text-purple-100:focus { - color: var(--purple-100) !important; -} -.focus\\:text-purple-200:focus { - color: var(--purple-200) !important; -} -.focus\\:text-purple-300:focus { - color: var(--purple-300) !important; -} -.focus\\:text-purple-400:focus { - color: var(--purple-400) !important; -} -.focus\\:text-purple-500:focus { - color: var(--purple-500) !important; -} -.focus\\:text-purple-600:focus { - color: var(--purple-600) !important; -} -.focus\\:text-purple-700:focus { - color: var(--purple-700) !important; -} -.focus\\:text-purple-800:focus { - color: var(--purple-800) !important; -} -.focus\\:text-purple-900:focus { - color: var(--purple-900) !important; -} - -.hover\\:text-purple-50:hover { - color: var(--purple-50) !important; -} -.hover\\:text-purple-100:hover { - color: var(--purple-100) !important; -} -.hover\\:text-purple-200:hover { - color: var(--purple-200) !important; -} -.hover\\:text-purple-300:hover { - color: var(--purple-300) !important; -} -.hover\\:text-purple-400:hover { - color: var(--purple-400) !important; -} -.hover\\:text-purple-500:hover { - color: var(--purple-500) !important; -} -.hover\\:text-purple-600:hover { - color: var(--purple-600) !important; -} -.hover\\:text-purple-700:hover { - color: var(--purple-700) !important; -} -.hover\\:text-purple-800:hover { - color: var(--purple-800) !important; -} -.hover\\:text-purple-900:hover { - color: var(--purple-900) !important; -} - -.active\\:text-purple-50:active { - color: var(--purple-50) !important; -} -.active\\:text-purple-100:active { - color: var(--purple-100) !important; -} -.active\\:text-purple-200:active { - color: var(--purple-200) !important; -} -.active\\:text-purple-300:active { - color: var(--purple-300) !important; -} -.active\\:text-purple-400:active { - color: var(--purple-400) !important; -} -.active\\:text-purple-500:active { - color: var(--purple-500) !important; -} -.active\\:text-purple-600:active { - color: var(--purple-600) !important; -} -.active\\:text-purple-700:active { - color: var(--purple-700) !important; -} -.active\\:text-purple-800:active { - color: var(--purple-800) !important; -} -.active\\:text-purple-900:active { - color: var(--purple-900) !important; -} - -.text-gray-50 { - color: var(--gray-50) !important; -} -.text-gray-100 { - color: var(--gray-100) !important; -} -.text-gray-200 { - color: var(--gray-200) !important; -} -.text-gray-300 { - color: var(--gray-300) !important; -} -.text-gray-400 { - color: var(--gray-400) !important; -} -.text-gray-500 { - color: var(--gray-500) !important; -} -.text-gray-600 { - color: var(--gray-600) !important; -} -.text-gray-700 { - color: var(--gray-700) !important; -} -.text-gray-800 { - color: var(--gray-800) !important; -} -.text-gray-900 { - color: var(--gray-900) !important; -} - -.focus\\:text-gray-50:focus { - color: var(--gray-50) !important; -} -.focus\\:text-gray-100:focus { - color: var(--gray-100) !important; -} -.focus\\:text-gray-200:focus { - color: var(--gray-200) !important; -} -.focus\\:text-gray-300:focus { - color: var(--gray-300) !important; -} -.focus\\:text-gray-400:focus { - color: var(--gray-400) !important; -} -.focus\\:text-gray-500:focus { - color: var(--gray-500) !important; -} -.focus\\:text-gray-600:focus { - color: var(--gray-600) !important; -} -.focus\\:text-gray-700:focus { - color: var(--gray-700) !important; -} -.focus\\:text-gray-800:focus { - color: var(--gray-800) !important; -} -.focus\\:text-gray-900:focus { - color: var(--gray-900) !important; -} - -.hover\\:text-gray-50:hover { - color: var(--gray-50) !important; -} -.hover\\:text-gray-100:hover { - color: var(--gray-100) !important; -} -.hover\\:text-gray-200:hover { - color: var(--gray-200) !important; -} -.hover\\:text-gray-300:hover { - color: var(--gray-300) !important; -} -.hover\\:text-gray-400:hover { - color: var(--gray-400) !important; -} -.hover\\:text-gray-500:hover { - color: var(--gray-500) !important; -} -.hover\\:text-gray-600:hover { - color: var(--gray-600) !important; -} -.hover\\:text-gray-700:hover { - color: var(--gray-700) !important; -} -.hover\\:text-gray-800:hover { - color: var(--gray-800) !important; -} -.hover\\:text-gray-900:hover { - color: var(--gray-900) !important; -} - -.active\\:text-gray-50:active { - color: var(--gray-50) !important; -} -.active\\:text-gray-100:active { - color: var(--gray-100) !important; -} -.active\\:text-gray-200:active { - color: var(--gray-200) !important; -} -.active\\:text-gray-300:active { - color: var(--gray-300) !important; -} -.active\\:text-gray-400:active { - color: var(--gray-400) !important; -} -.active\\:text-gray-500:active { - color: var(--gray-500) !important; -} -.active\\:text-gray-600:active { - color: var(--gray-600) !important; -} -.active\\:text-gray-700:active { - color: var(--gray-700) !important; -} -.active\\:text-gray-800:active { - color: var(--gray-800) !important; -} -.active\\:text-gray-900:active { - color: var(--gray-900) !important; -} - -.text-red-50 { - color: var(--red-50) !important; -} -.text-red-100 { - color: var(--red-100) !important; -} -.text-red-200 { - color: var(--red-200) !important; -} -.text-red-300 { - color: var(--red-300) !important; -} -.text-red-400 { - color: var(--red-400) !important; -} -.text-red-500 { - color: var(--red-500) !important; -} -.text-red-600 { - color: var(--red-600) !important; -} -.text-red-700 { - color: var(--red-700) !important; -} -.text-red-800 { - color: var(--red-800) !important; -} -.text-red-900 { - color: var(--red-900) !important; -} - -.focus\\:text-red-50:focus { - color: var(--red-50) !important; -} -.focus\\:text-red-100:focus { - color: var(--red-100) !important; -} -.focus\\:text-red-200:focus { - color: var(--red-200) !important; -} -.focus\\:text-red-300:focus { - color: var(--red-300) !important; -} -.focus\\:text-red-400:focus { - color: var(--red-400) !important; -} -.focus\\:text-red-500:focus { - color: var(--red-500) !important; -} -.focus\\:text-red-600:focus { - color: var(--red-600) !important; -} -.focus\\:text-red-700:focus { - color: var(--red-700) !important; -} -.focus\\:text-red-800:focus { - color: var(--red-800) !important; -} -.focus\\:text-red-900:focus { - color: var(--red-900) !important; -} - -.hover\\:text-red-50:hover { - color: var(--red-50) !important; -} -.hover\\:text-red-100:hover { - color: var(--red-100) !important; -} -.hover\\:text-red-200:hover { - color: var(--red-200) !important; -} -.hover\\:text-red-300:hover { - color: var(--red-300) !important; -} -.hover\\:text-red-400:hover { - color: var(--red-400) !important; -} -.hover\\:text-red-500:hover { - color: var(--red-500) !important; -} -.hover\\:text-red-600:hover { - color: var(--red-600) !important; -} -.hover\\:text-red-700:hover { - color: var(--red-700) !important; -} -.hover\\:text-red-800:hover { - color: var(--red-800) !important; -} -.hover\\:text-red-900:hover { - color: var(--red-900) !important; -} - -.active\\:text-red-50:active { - color: var(--red-50) !important; -} -.active\\:text-red-100:active { - color: var(--red-100) !important; -} -.active\\:text-red-200:active { - color: var(--red-200) !important; -} -.active\\:text-red-300:active { - color: var(--red-300) !important; -} -.active\\:text-red-400:active { - color: var(--red-400) !important; -} -.active\\:text-red-500:active { - color: var(--red-500) !important; -} -.active\\:text-red-600:active { - color: var(--red-600) !important; -} -.active\\:text-red-700:active { - color: var(--red-700) !important; -} -.active\\:text-red-800:active { - color: var(--red-800) !important; -} -.active\\:text-red-900:active { - color: var(--red-900) !important; -} - -.text-primary-50 { - color: var(--primary-50) !important; -} -.text-primary-100 { - color: var(--primary-100) !important; -} -.text-primary-200 { - color: var(--primary-200) !important; -} -.text-primary-300 { - color: var(--primary-300) !important; -} -.text-primary-400 { - color: var(--primary-400) !important; -} -.text-primary-500 { - color: var(--primary-500) !important; -} -.text-primary-600 { - color: var(--primary-600) !important; -} -.text-primary-700 { - color: var(--primary-700) !important; -} -.text-primary-800 { - color: var(--primary-800) !important; -} -.text-primary-900 { - color: var(--primary-900) !important; -} - -.focus\\:text-primary-50:focus { - color: var(--primary-50) !important; -} -.focus\\:text-primary-100:focus { - color: var(--primary-100) !important; -} -.focus\\:text-primary-200:focus { - color: var(--primary-200) !important; -} -.focus\\:text-primary-300:focus { - color: var(--primary-300) !important; -} -.focus\\:text-primary-400:focus { - color: var(--primary-400) !important; -} -.focus\\:text-primary-500:focus { - color: var(--primary-500) !important; -} -.focus\\:text-primary-600:focus { - color: var(--primary-600) !important; -} -.focus\\:text-primary-700:focus { - color: var(--primary-700) !important; -} -.focus\\:text-primary-800:focus { - color: var(--primary-800) !important; -} -.focus\\:text-primary-900:focus { - color: var(--primary-900) !important; -} - -.hover\\:text-primary-50:hover { - color: var(--primary-50) !important; -} -.hover\\:text-primary-100:hover { - color: var(--primary-100) !important; -} -.hover\\:text-primary-200:hover { - color: var(--primary-200) !important; -} -.hover\\:text-primary-300:hover { - color: var(--primary-300) !important; -} -.hover\\:text-primary-400:hover { - color: var(--primary-400) !important; -} -.hover\\:text-primary-500:hover { - color: var(--primary-500) !important; -} -.hover\\:text-primary-600:hover { - color: var(--primary-600) !important; -} -.hover\\:text-primary-700:hover { - color: var(--primary-700) !important; -} -.hover\\:text-primary-800:hover { - color: var(--primary-800) !important; -} -.hover\\:text-primary-900:hover { - color: var(--primary-900) !important; -} - -.active\\:text-primary-50:active { - color: var(--primary-50) !important; -} -.active\\:text-primary-100:active { - color: var(--primary-100) !important; -} -.active\\:text-primary-200:active { - color: var(--primary-200) !important; -} -.active\\:text-primary-300:active { - color: var(--primary-300) !important; -} -.active\\:text-primary-400:active { - color: var(--primary-400) !important; -} -.active\\:text-primary-500:active { - color: var(--primary-500) !important; -} -.active\\:text-primary-600:active { - color: var(--primary-600) !important; -} -.active\\:text-primary-700:active { - color: var(--primary-700) !important; -} -.active\\:text-primary-800:active { - color: var(--primary-800) !important; -} -.active\\:text-primary-900:active { - color: var(--primary-900) !important; -} - -.bg-blue-50 { - background-color: var(--blue-50) !important; -} -.bg-blue-100 { - background-color: var(--blue-100) !important; -} -.bg-blue-200 { - background-color: var(--blue-200) !important; -} -.bg-blue-300 { - background-color: var(--blue-300) !important; -} -.bg-blue-400 { - background-color: var(--blue-400) !important; -} -.bg-blue-500 { - background-color: var(--blue-500) !important; -} -.bg-blue-600 { - background-color: var(--blue-600) !important; -} -.bg-blue-700 { - background-color: var(--blue-700) !important; -} -.bg-blue-800 { - background-color: var(--blue-800) !important; -} -.bg-blue-900 { - background-color: var(--blue-900) !important; -} - -.focus\\:bg-blue-50:focus { - background-color: var(--blue-50) !important; -} -.focus\\:bg-blue-100:focus { - background-color: var(--blue-100) !important; -} -.focus\\:bg-blue-200:focus { - background-color: var(--blue-200) !important; -} -.focus\\:bg-blue-300:focus { - background-color: var(--blue-300) !important; -} -.focus\\:bg-blue-400:focus { - background-color: var(--blue-400) !important; -} -.focus\\:bg-blue-500:focus { - background-color: var(--blue-500) !important; -} -.focus\\:bg-blue-600:focus { - background-color: var(--blue-600) !important; -} -.focus\\:bg-blue-700:focus { - background-color: var(--blue-700) !important; -} -.focus\\:bg-blue-800:focus { - background-color: var(--blue-800) !important; -} -.focus\\:bg-blue-900:focus { - background-color: var(--blue-900) !important; -} - -.hover\\:bg-blue-50:hover { - background-color: var(--blue-50) !important; -} -.hover\\:bg-blue-100:hover { - background-color: var(--blue-100) !important; -} -.hover\\:bg-blue-200:hover { - background-color: var(--blue-200) !important; -} -.hover\\:bg-blue-300:hover { - background-color: var(--blue-300) !important; -} -.hover\\:bg-blue-400:hover { - background-color: var(--blue-400) !important; -} -.hover\\:bg-blue-500:hover { - background-color: var(--blue-500) !important; -} -.hover\\:bg-blue-600:hover { - background-color: var(--blue-600) !important; -} -.hover\\:bg-blue-700:hover { - background-color: var(--blue-700) !important; -} -.hover\\:bg-blue-800:hover { - background-color: var(--blue-800) !important; -} -.hover\\:bg-blue-900:hover { - background-color: var(--blue-900) !important; -} - -.active\\:bg-blue-50:active { - background-color: var(--blue-50) !important; -} -.active\\:bg-blue-100:active { - background-color: var(--blue-100) !important; -} -.active\\:bg-blue-200:active { - background-color: var(--blue-200) !important; -} -.active\\:bg-blue-300:active { - background-color: var(--blue-300) !important; -} -.active\\:bg-blue-400:active { - background-color: var(--blue-400) !important; -} -.active\\:bg-blue-500:active { - background-color: var(--blue-500) !important; -} -.active\\:bg-blue-600:active { - background-color: var(--blue-600) !important; -} -.active\\:bg-blue-700:active { - background-color: var(--blue-700) !important; -} -.active\\:bg-blue-800:active { - background-color: var(--blue-800) !important; -} -.active\\:bg-blue-900:active { - background-color: var(--blue-900) !important; -} - -.bg-green-50 { - background-color: var(--green-50) !important; -} -.bg-green-100 { - background-color: var(--green-100) !important; -} -.bg-green-200 { - background-color: var(--green-200) !important; -} -.bg-green-300 { - background-color: var(--green-300) !important; -} -.bg-green-400 { - background-color: var(--green-400) !important; -} -.bg-green-500 { - background-color: var(--green-500) !important; -} -.bg-green-600 { - background-color: var(--green-600) !important; -} -.bg-green-700 { - background-color: var(--green-700) !important; -} -.bg-green-800 { - background-color: var(--green-800) !important; -} -.bg-green-900 { - background-color: var(--green-900) !important; -} - -.focus\\:bg-green-50:focus { - background-color: var(--green-50) !important; -} -.focus\\:bg-green-100:focus { - background-color: var(--green-100) !important; -} -.focus\\:bg-green-200:focus { - background-color: var(--green-200) !important; -} -.focus\\:bg-green-300:focus { - background-color: var(--green-300) !important; -} -.focus\\:bg-green-400:focus { - background-color: var(--green-400) !important; -} -.focus\\:bg-green-500:focus { - background-color: var(--green-500) !important; -} -.focus\\:bg-green-600:focus { - background-color: var(--green-600) !important; -} -.focus\\:bg-green-700:focus { - background-color: var(--green-700) !important; -} -.focus\\:bg-green-800:focus { - background-color: var(--green-800) !important; -} -.focus\\:bg-green-900:focus { - background-color: var(--green-900) !important; -} - -.hover\\:bg-green-50:hover { - background-color: var(--green-50) !important; -} -.hover\\:bg-green-100:hover { - background-color: var(--green-100) !important; -} -.hover\\:bg-green-200:hover { - background-color: var(--green-200) !important; -} -.hover\\:bg-green-300:hover { - background-color: var(--green-300) !important; -} -.hover\\:bg-green-400:hover { - background-color: var(--green-400) !important; -} -.hover\\:bg-green-500:hover { - background-color: var(--green-500) !important; -} -.hover\\:bg-green-600:hover { - background-color: var(--green-600) !important; -} -.hover\\:bg-green-700:hover { - background-color: var(--green-700) !important; -} -.hover\\:bg-green-800:hover { - background-color: var(--green-800) !important; -} -.hover\\:bg-green-900:hover { - background-color: var(--green-900) !important; -} - -.active\\:bg-green-50:active { - background-color: var(--green-50) !important; -} -.active\\:bg-green-100:active { - background-color: var(--green-100) !important; -} -.active\\:bg-green-200:active { - background-color: var(--green-200) !important; -} -.active\\:bg-green-300:active { - background-color: var(--green-300) !important; -} -.active\\:bg-green-400:active { - background-color: var(--green-400) !important; -} -.active\\:bg-green-500:active { - background-color: var(--green-500) !important; -} -.active\\:bg-green-600:active { - background-color: var(--green-600) !important; -} -.active\\:bg-green-700:active { - background-color: var(--green-700) !important; -} -.active\\:bg-green-800:active { - background-color: var(--green-800) !important; -} -.active\\:bg-green-900:active { - background-color: var(--green-900) !important; -} - -.bg-yellow-50 { - background-color: var(--yellow-50) !important; -} -.bg-yellow-100 { - background-color: var(--yellow-100) !important; -} -.bg-yellow-200 { - background-color: var(--yellow-200) !important; -} -.bg-yellow-300 { - background-color: var(--yellow-300) !important; -} -.bg-yellow-400 { - background-color: var(--yellow-400) !important; -} -.bg-yellow-500 { - background-color: var(--yellow-500) !important; -} -.bg-yellow-600 { - background-color: var(--yellow-600) !important; -} -.bg-yellow-700 { - background-color: var(--yellow-700) !important; -} -.bg-yellow-800 { - background-color: var(--yellow-800) !important; -} -.bg-yellow-900 { - background-color: var(--yellow-900) !important; -} - -.focus\\:bg-yellow-50:focus { - background-color: var(--yellow-50) !important; -} -.focus\\:bg-yellow-100:focus { - background-color: var(--yellow-100) !important; -} -.focus\\:bg-yellow-200:focus { - background-color: var(--yellow-200) !important; -} -.focus\\:bg-yellow-300:focus { - background-color: var(--yellow-300) !important; -} -.focus\\:bg-yellow-400:focus { - background-color: var(--yellow-400) !important; -} -.focus\\:bg-yellow-500:focus { - background-color: var(--yellow-500) !important; -} -.focus\\:bg-yellow-600:focus { - background-color: var(--yellow-600) !important; -} -.focus\\:bg-yellow-700:focus { - background-color: var(--yellow-700) !important; -} -.focus\\:bg-yellow-800:focus { - background-color: var(--yellow-800) !important; -} -.focus\\:bg-yellow-900:focus { - background-color: var(--yellow-900) !important; -} - -.hover\\:bg-yellow-50:hover { - background-color: var(--yellow-50) !important; -} -.hover\\:bg-yellow-100:hover { - background-color: var(--yellow-100) !important; -} -.hover\\:bg-yellow-200:hover { - background-color: var(--yellow-200) !important; -} -.hover\\:bg-yellow-300:hover { - background-color: var(--yellow-300) !important; -} -.hover\\:bg-yellow-400:hover { - background-color: var(--yellow-400) !important; -} -.hover\\:bg-yellow-500:hover { - background-color: var(--yellow-500) !important; -} -.hover\\:bg-yellow-600:hover { - background-color: var(--yellow-600) !important; -} -.hover\\:bg-yellow-700:hover { - background-color: var(--yellow-700) !important; -} -.hover\\:bg-yellow-800:hover { - background-color: var(--yellow-800) !important; -} -.hover\\:bg-yellow-900:hover { - background-color: var(--yellow-900) !important; -} - -.active\\:bg-yellow-50:active { - background-color: var(--yellow-50) !important; -} -.active\\:bg-yellow-100:active { - background-color: var(--yellow-100) !important; -} -.active\\:bg-yellow-200:active { - background-color: var(--yellow-200) !important; -} -.active\\:bg-yellow-300:active { - background-color: var(--yellow-300) !important; -} -.active\\:bg-yellow-400:active { - background-color: var(--yellow-400) !important; -} -.active\\:bg-yellow-500:active { - background-color: var(--yellow-500) !important; -} -.active\\:bg-yellow-600:active { - background-color: var(--yellow-600) !important; -} -.active\\:bg-yellow-700:active { - background-color: var(--yellow-700) !important; -} -.active\\:bg-yellow-800:active { - background-color: var(--yellow-800) !important; -} -.active\\:bg-yellow-900:active { - background-color: var(--yellow-900) !important; -} - -.bg-cyan-50 { - background-color: var(--cyan-50) !important; -} -.bg-cyan-100 { - background-color: var(--cyan-100) !important; -} -.bg-cyan-200 { - background-color: var(--cyan-200) !important; -} -.bg-cyan-300 { - background-color: var(--cyan-300) !important; -} -.bg-cyan-400 { - background-color: var(--cyan-400) !important; -} -.bg-cyan-500 { - background-color: var(--cyan-500) !important; -} -.bg-cyan-600 { - background-color: var(--cyan-600) !important; -} -.bg-cyan-700 { - background-color: var(--cyan-700) !important; -} -.bg-cyan-800 { - background-color: var(--cyan-800) !important; -} -.bg-cyan-900 { - background-color: var(--cyan-900) !important; -} - -.focus\\:bg-cyan-50:focus { - background-color: var(--cyan-50) !important; -} -.focus\\:bg-cyan-100:focus { - background-color: var(--cyan-100) !important; -} -.focus\\:bg-cyan-200:focus { - background-color: var(--cyan-200) !important; -} -.focus\\:bg-cyan-300:focus { - background-color: var(--cyan-300) !important; -} -.focus\\:bg-cyan-400:focus { - background-color: var(--cyan-400) !important; -} -.focus\\:bg-cyan-500:focus { - background-color: var(--cyan-500) !important; -} -.focus\\:bg-cyan-600:focus { - background-color: var(--cyan-600) !important; -} -.focus\\:bg-cyan-700:focus { - background-color: var(--cyan-700) !important; -} -.focus\\:bg-cyan-800:focus { - background-color: var(--cyan-800) !important; -} -.focus\\:bg-cyan-900:focus { - background-color: var(--cyan-900) !important; -} - -.hover\\:bg-cyan-50:hover { - background-color: var(--cyan-50) !important; -} -.hover\\:bg-cyan-100:hover { - background-color: var(--cyan-100) !important; -} -.hover\\:bg-cyan-200:hover { - background-color: var(--cyan-200) !important; -} -.hover\\:bg-cyan-300:hover { - background-color: var(--cyan-300) !important; -} -.hover\\:bg-cyan-400:hover { - background-color: var(--cyan-400) !important; -} -.hover\\:bg-cyan-500:hover { - background-color: var(--cyan-500) !important; -} -.hover\\:bg-cyan-600:hover { - background-color: var(--cyan-600) !important; -} -.hover\\:bg-cyan-700:hover { - background-color: var(--cyan-700) !important; -} -.hover\\:bg-cyan-800:hover { - background-color: var(--cyan-800) !important; -} -.hover\\:bg-cyan-900:hover { - background-color: var(--cyan-900) !important; -} - -.active\\:bg-cyan-50:active { - background-color: var(--cyan-50) !important; -} -.active\\:bg-cyan-100:active { - background-color: var(--cyan-100) !important; -} -.active\\:bg-cyan-200:active { - background-color: var(--cyan-200) !important; -} -.active\\:bg-cyan-300:active { - background-color: var(--cyan-300) !important; -} -.active\\:bg-cyan-400:active { - background-color: var(--cyan-400) !important; -} -.active\\:bg-cyan-500:active { - background-color: var(--cyan-500) !important; -} -.active\\:bg-cyan-600:active { - background-color: var(--cyan-600) !important; -} -.active\\:bg-cyan-700:active { - background-color: var(--cyan-700) !important; -} -.active\\:bg-cyan-800:active { - background-color: var(--cyan-800) !important; -} -.active\\:bg-cyan-900:active { - background-color: var(--cyan-900) !important; -} - -.bg-pink-50 { - background-color: var(--pink-50) !important; -} -.bg-pink-100 { - background-color: var(--pink-100) !important; -} -.bg-pink-200 { - background-color: var(--pink-200) !important; -} -.bg-pink-300 { - background-color: var(--pink-300) !important; -} -.bg-pink-400 { - background-color: var(--pink-400) !important; -} -.bg-pink-500 { - background-color: var(--pink-500) !important; -} -.bg-pink-600 { - background-color: var(--pink-600) !important; -} -.bg-pink-700 { - background-color: var(--pink-700) !important; -} -.bg-pink-800 { - background-color: var(--pink-800) !important; -} -.bg-pink-900 { - background-color: var(--pink-900) !important; -} - -.focus\\:bg-pink-50:focus { - background-color: var(--pink-50) !important; -} -.focus\\:bg-pink-100:focus { - background-color: var(--pink-100) !important; -} -.focus\\:bg-pink-200:focus { - background-color: var(--pink-200) !important; -} -.focus\\:bg-pink-300:focus { - background-color: var(--pink-300) !important; -} -.focus\\:bg-pink-400:focus { - background-color: var(--pink-400) !important; -} -.focus\\:bg-pink-500:focus { - background-color: var(--pink-500) !important; -} -.focus\\:bg-pink-600:focus { - background-color: var(--pink-600) !important; -} -.focus\\:bg-pink-700:focus { - background-color: var(--pink-700) !important; -} -.focus\\:bg-pink-800:focus { - background-color: var(--pink-800) !important; -} -.focus\\:bg-pink-900:focus { - background-color: var(--pink-900) !important; -} - -.hover\\:bg-pink-50:hover { - background-color: var(--pink-50) !important; -} -.hover\\:bg-pink-100:hover { - background-color: var(--pink-100) !important; -} -.hover\\:bg-pink-200:hover { - background-color: var(--pink-200) !important; -} -.hover\\:bg-pink-300:hover { - background-color: var(--pink-300) !important; -} -.hover\\:bg-pink-400:hover { - background-color: var(--pink-400) !important; -} -.hover\\:bg-pink-500:hover { - background-color: var(--pink-500) !important; -} -.hover\\:bg-pink-600:hover { - background-color: var(--pink-600) !important; -} -.hover\\:bg-pink-700:hover { - background-color: var(--pink-700) !important; -} -.hover\\:bg-pink-800:hover { - background-color: var(--pink-800) !important; -} -.hover\\:bg-pink-900:hover { - background-color: var(--pink-900) !important; -} - -.active\\:bg-pink-50:active { - background-color: var(--pink-50) !important; -} -.active\\:bg-pink-100:active { - background-color: var(--pink-100) !important; -} -.active\\:bg-pink-200:active { - background-color: var(--pink-200) !important; -} -.active\\:bg-pink-300:active { - background-color: var(--pink-300) !important; -} -.active\\:bg-pink-400:active { - background-color: var(--pink-400) !important; -} -.active\\:bg-pink-500:active { - background-color: var(--pink-500) !important; -} -.active\\:bg-pink-600:active { - background-color: var(--pink-600) !important; -} -.active\\:bg-pink-700:active { - background-color: var(--pink-700) !important; -} -.active\\:bg-pink-800:active { - background-color: var(--pink-800) !important; -} -.active\\:bg-pink-900:active { - background-color: var(--pink-900) !important; -} - -.bg-indigo-50 { - background-color: var(--indigo-50) !important; -} -.bg-indigo-100 { - background-color: var(--indigo-100) !important; -} -.bg-indigo-200 { - background-color: var(--indigo-200) !important; -} -.bg-indigo-300 { - background-color: var(--indigo-300) !important; -} -.bg-indigo-400 { - background-color: var(--indigo-400) !important; -} -.bg-indigo-500 { - background-color: var(--indigo-500) !important; -} -.bg-indigo-600 { - background-color: var(--indigo-600) !important; -} -.bg-indigo-700 { - background-color: var(--indigo-700) !important; -} -.bg-indigo-800 { - background-color: var(--indigo-800) !important; -} -.bg-indigo-900 { - background-color: var(--indigo-900) !important; -} - -.focus\\:bg-indigo-50:focus { - background-color: var(--indigo-50) !important; -} -.focus\\:bg-indigo-100:focus { - background-color: var(--indigo-100) !important; -} -.focus\\:bg-indigo-200:focus { - background-color: var(--indigo-200) !important; -} -.focus\\:bg-indigo-300:focus { - background-color: var(--indigo-300) !important; -} -.focus\\:bg-indigo-400:focus { - background-color: var(--indigo-400) !important; -} -.focus\\:bg-indigo-500:focus { - background-color: var(--indigo-500) !important; -} -.focus\\:bg-indigo-600:focus { - background-color: var(--indigo-600) !important; -} -.focus\\:bg-indigo-700:focus { - background-color: var(--indigo-700) !important; -} -.focus\\:bg-indigo-800:focus { - background-color: var(--indigo-800) !important; -} -.focus\\:bg-indigo-900:focus { - background-color: var(--indigo-900) !important; -} - -.hover\\:bg-indigo-50:hover { - background-color: var(--indigo-50) !important; -} -.hover\\:bg-indigo-100:hover { - background-color: var(--indigo-100) !important; -} -.hover\\:bg-indigo-200:hover { - background-color: var(--indigo-200) !important; -} -.hover\\:bg-indigo-300:hover { - background-color: var(--indigo-300) !important; -} -.hover\\:bg-indigo-400:hover { - background-color: var(--indigo-400) !important; -} -.hover\\:bg-indigo-500:hover { - background-color: var(--indigo-500) !important; -} -.hover\\:bg-indigo-600:hover { - background-color: var(--indigo-600) !important; -} -.hover\\:bg-indigo-700:hover { - background-color: var(--indigo-700) !important; -} -.hover\\:bg-indigo-800:hover { - background-color: var(--indigo-800) !important; -} -.hover\\:bg-indigo-900:hover { - background-color: var(--indigo-900) !important; -} - -.active\\:bg-indigo-50:active { - background-color: var(--indigo-50) !important; -} -.active\\:bg-indigo-100:active { - background-color: var(--indigo-100) !important; -} -.active\\:bg-indigo-200:active { - background-color: var(--indigo-200) !important; -} -.active\\:bg-indigo-300:active { - background-color: var(--indigo-300) !important; -} -.active\\:bg-indigo-400:active { - background-color: var(--indigo-400) !important; -} -.active\\:bg-indigo-500:active { - background-color: var(--indigo-500) !important; -} -.active\\:bg-indigo-600:active { - background-color: var(--indigo-600) !important; -} -.active\\:bg-indigo-700:active { - background-color: var(--indigo-700) !important; -} -.active\\:bg-indigo-800:active { - background-color: var(--indigo-800) !important; -} -.active\\:bg-indigo-900:active { - background-color: var(--indigo-900) !important; -} - -.bg-teal-50 { - background-color: var(--teal-50) !important; -} -.bg-teal-100 { - background-color: var(--teal-100) !important; -} -.bg-teal-200 { - background-color: var(--teal-200) !important; -} -.bg-teal-300 { - background-color: var(--teal-300) !important; -} -.bg-teal-400 { - background-color: var(--teal-400) !important; -} -.bg-teal-500 { - background-color: var(--teal-500) !important; -} -.bg-teal-600 { - background-color: var(--teal-600) !important; -} -.bg-teal-700 { - background-color: var(--teal-700) !important; -} -.bg-teal-800 { - background-color: var(--teal-800) !important; -} -.bg-teal-900 { - background-color: var(--teal-900) !important; -} - -.focus\\:bg-teal-50:focus { - background-color: var(--teal-50) !important; -} -.focus\\:bg-teal-100:focus { - background-color: var(--teal-100) !important; -} -.focus\\:bg-teal-200:focus { - background-color: var(--teal-200) !important; -} -.focus\\:bg-teal-300:focus { - background-color: var(--teal-300) !important; -} -.focus\\:bg-teal-400:focus { - background-color: var(--teal-400) !important; -} -.focus\\:bg-teal-500:focus { - background-color: var(--teal-500) !important; -} -.focus\\:bg-teal-600:focus { - background-color: var(--teal-600) !important; -} -.focus\\:bg-teal-700:focus { - background-color: var(--teal-700) !important; -} -.focus\\:bg-teal-800:focus { - background-color: var(--teal-800) !important; -} -.focus\\:bg-teal-900:focus { - background-color: var(--teal-900) !important; -} - -.hover\\:bg-teal-50:hover { - background-color: var(--teal-50) !important; -} -.hover\\:bg-teal-100:hover { - background-color: var(--teal-100) !important; -} -.hover\\:bg-teal-200:hover { - background-color: var(--teal-200) !important; -} -.hover\\:bg-teal-300:hover { - background-color: var(--teal-300) !important; -} -.hover\\:bg-teal-400:hover { - background-color: var(--teal-400) !important; -} -.hover\\:bg-teal-500:hover { - background-color: var(--teal-500) !important; -} -.hover\\:bg-teal-600:hover { - background-color: var(--teal-600) !important; -} -.hover\\:bg-teal-700:hover { - background-color: var(--teal-700) !important; -} -.hover\\:bg-teal-800:hover { - background-color: var(--teal-800) !important; -} -.hover\\:bg-teal-900:hover { - background-color: var(--teal-900) !important; -} - -.active\\:bg-teal-50:active { - background-color: var(--teal-50) !important; -} -.active\\:bg-teal-100:active { - background-color: var(--teal-100) !important; -} -.active\\:bg-teal-200:active { - background-color: var(--teal-200) !important; -} -.active\\:bg-teal-300:active { - background-color: var(--teal-300) !important; -} -.active\\:bg-teal-400:active { - background-color: var(--teal-400) !important; -} -.active\\:bg-teal-500:active { - background-color: var(--teal-500) !important; -} -.active\\:bg-teal-600:active { - background-color: var(--teal-600) !important; -} -.active\\:bg-teal-700:active { - background-color: var(--teal-700) !important; -} -.active\\:bg-teal-800:active { - background-color: var(--teal-800) !important; -} -.active\\:bg-teal-900:active { - background-color: var(--teal-900) !important; -} - -.bg-orange-50 { - background-color: var(--orange-50) !important; -} -.bg-orange-100 { - background-color: var(--orange-100) !important; -} -.bg-orange-200 { - background-color: var(--orange-200) !important; -} -.bg-orange-300 { - background-color: var(--orange-300) !important; -} -.bg-orange-400 { - background-color: var(--orange-400) !important; -} -.bg-orange-500 { - background-color: var(--orange-500) !important; -} -.bg-orange-600 { - background-color: var(--orange-600) !important; -} -.bg-orange-700 { - background-color: var(--orange-700) !important; -} -.bg-orange-800 { - background-color: var(--orange-800) !important; -} -.bg-orange-900 { - background-color: var(--orange-900) !important; -} - -.focus\\:bg-orange-50:focus { - background-color: var(--orange-50) !important; -} -.focus\\:bg-orange-100:focus { - background-color: var(--orange-100) !important; -} -.focus\\:bg-orange-200:focus { - background-color: var(--orange-200) !important; -} -.focus\\:bg-orange-300:focus { - background-color: var(--orange-300) !important; -} -.focus\\:bg-orange-400:focus { - background-color: var(--orange-400) !important; -} -.focus\\:bg-orange-500:focus { - background-color: var(--orange-500) !important; -} -.focus\\:bg-orange-600:focus { - background-color: var(--orange-600) !important; -} -.focus\\:bg-orange-700:focus { - background-color: var(--orange-700) !important; -} -.focus\\:bg-orange-800:focus { - background-color: var(--orange-800) !important; -} -.focus\\:bg-orange-900:focus { - background-color: var(--orange-900) !important; -} - -.hover\\:bg-orange-50:hover { - background-color: var(--orange-50) !important; -} -.hover\\:bg-orange-100:hover { - background-color: var(--orange-100) !important; -} -.hover\\:bg-orange-200:hover { - background-color: var(--orange-200) !important; -} -.hover\\:bg-orange-300:hover { - background-color: var(--orange-300) !important; -} -.hover\\:bg-orange-400:hover { - background-color: var(--orange-400) !important; -} -.hover\\:bg-orange-500:hover { - background-color: var(--orange-500) !important; -} -.hover\\:bg-orange-600:hover { - background-color: var(--orange-600) !important; -} -.hover\\:bg-orange-700:hover { - background-color: var(--orange-700) !important; -} -.hover\\:bg-orange-800:hover { - background-color: var(--orange-800) !important; -} -.hover\\:bg-orange-900:hover { - background-color: var(--orange-900) !important; -} - -.active\\:bg-orange-50:active { - background-color: var(--orange-50) !important; -} -.active\\:bg-orange-100:active { - background-color: var(--orange-100) !important; -} -.active\\:bg-orange-200:active { - background-color: var(--orange-200) !important; -} -.active\\:bg-orange-300:active { - background-color: var(--orange-300) !important; -} -.active\\:bg-orange-400:active { - background-color: var(--orange-400) !important; -} -.active\\:bg-orange-500:active { - background-color: var(--orange-500) !important; -} -.active\\:bg-orange-600:active { - background-color: var(--orange-600) !important; -} -.active\\:bg-orange-700:active { - background-color: var(--orange-700) !important; -} -.active\\:bg-orange-800:active { - background-color: var(--orange-800) !important; -} -.active\\:bg-orange-900:active { - background-color: var(--orange-900) !important; -} - -.bg-bluegray-50 { - background-color: var(--bluegray-50) !important; -} -.bg-bluegray-100 { - background-color: var(--bluegray-100) !important; -} -.bg-bluegray-200 { - background-color: var(--bluegray-200) !important; -} -.bg-bluegray-300 { - background-color: var(--bluegray-300) !important; -} -.bg-bluegray-400 { - background-color: var(--bluegray-400) !important; -} -.bg-bluegray-500 { - background-color: var(--bluegray-500) !important; -} -.bg-bluegray-600 { - background-color: var(--bluegray-600) !important; -} -.bg-bluegray-700 { - background-color: var(--bluegray-700) !important; -} -.bg-bluegray-800 { - background-color: var(--bluegray-800) !important; -} -.bg-bluegray-900 { - background-color: var(--bluegray-900) !important; -} - -.focus\\:bg-bluegray-50:focus { - background-color: var(--bluegray-50) !important; -} -.focus\\:bg-bluegray-100:focus { - background-color: var(--bluegray-100) !important; -} -.focus\\:bg-bluegray-200:focus { - background-color: var(--bluegray-200) !important; -} -.focus\\:bg-bluegray-300:focus { - background-color: var(--bluegray-300) !important; -} -.focus\\:bg-bluegray-400:focus { - background-color: var(--bluegray-400) !important; -} -.focus\\:bg-bluegray-500:focus { - background-color: var(--bluegray-500) !important; -} -.focus\\:bg-bluegray-600:focus { - background-color: var(--bluegray-600) !important; -} -.focus\\:bg-bluegray-700:focus { - background-color: var(--bluegray-700) !important; -} -.focus\\:bg-bluegray-800:focus { - background-color: var(--bluegray-800) !important; -} -.focus\\:bg-bluegray-900:focus { - background-color: var(--bluegray-900) !important; -} - -.hover\\:bg-bluegray-50:hover { - background-color: var(--bluegray-50) !important; -} -.hover\\:bg-bluegray-100:hover { - background-color: var(--bluegray-100) !important; -} -.hover\\:bg-bluegray-200:hover { - background-color: var(--bluegray-200) !important; -} -.hover\\:bg-bluegray-300:hover { - background-color: var(--bluegray-300) !important; -} -.hover\\:bg-bluegray-400:hover { - background-color: var(--bluegray-400) !important; -} -.hover\\:bg-bluegray-500:hover { - background-color: var(--bluegray-500) !important; -} -.hover\\:bg-bluegray-600:hover { - background-color: var(--bluegray-600) !important; -} -.hover\\:bg-bluegray-700:hover { - background-color: var(--bluegray-700) !important; -} -.hover\\:bg-bluegray-800:hover { - background-color: var(--bluegray-800) !important; -} -.hover\\:bg-bluegray-900:hover { - background-color: var(--bluegray-900) !important; -} - -.active\\:bg-bluegray-50:active { - background-color: var(--bluegray-50) !important; -} -.active\\:bg-bluegray-100:active { - background-color: var(--bluegray-100) !important; -} -.active\\:bg-bluegray-200:active { - background-color: var(--bluegray-200) !important; -} -.active\\:bg-bluegray-300:active { - background-color: var(--bluegray-300) !important; -} -.active\\:bg-bluegray-400:active { - background-color: var(--bluegray-400) !important; -} -.active\\:bg-bluegray-500:active { - background-color: var(--bluegray-500) !important; -} -.active\\:bg-bluegray-600:active { - background-color: var(--bluegray-600) !important; -} -.active\\:bg-bluegray-700:active { - background-color: var(--bluegray-700) !important; -} -.active\\:bg-bluegray-800:active { - background-color: var(--bluegray-800) !important; -} -.active\\:bg-bluegray-900:active { - background-color: var(--bluegray-900) !important; -} - -.bg-purple-50 { - background-color: var(--purple-50) !important; -} -.bg-purple-100 { - background-color: var(--purple-100) !important; -} -.bg-purple-200 { - background-color: var(--purple-200) !important; -} -.bg-purple-300 { - background-color: var(--purple-300) !important; -} -.bg-purple-400 { - background-color: var(--purple-400) !important; -} -.bg-purple-500 { - background-color: var(--purple-500) !important; -} -.bg-purple-600 { - background-color: var(--purple-600) !important; -} -.bg-purple-700 { - background-color: var(--purple-700) !important; -} -.bg-purple-800 { - background-color: var(--purple-800) !important; -} -.bg-purple-900 { - background-color: var(--purple-900) !important; -} - -.focus\\:bg-purple-50:focus { - background-color: var(--purple-50) !important; -} -.focus\\:bg-purple-100:focus { - background-color: var(--purple-100) !important; -} -.focus\\:bg-purple-200:focus { - background-color: var(--purple-200) !important; -} -.focus\\:bg-purple-300:focus { - background-color: var(--purple-300) !important; -} -.focus\\:bg-purple-400:focus { - background-color: var(--purple-400) !important; -} -.focus\\:bg-purple-500:focus { - background-color: var(--purple-500) !important; -} -.focus\\:bg-purple-600:focus { - background-color: var(--purple-600) !important; -} -.focus\\:bg-purple-700:focus { - background-color: var(--purple-700) !important; -} -.focus\\:bg-purple-800:focus { - background-color: var(--purple-800) !important; -} -.focus\\:bg-purple-900:focus { - background-color: var(--purple-900) !important; -} - -.hover\\:bg-purple-50:hover { - background-color: var(--purple-50) !important; -} -.hover\\:bg-purple-100:hover { - background-color: var(--purple-100) !important; -} -.hover\\:bg-purple-200:hover { - background-color: var(--purple-200) !important; -} -.hover\\:bg-purple-300:hover { - background-color: var(--purple-300) !important; -} -.hover\\:bg-purple-400:hover { - background-color: var(--purple-400) !important; -} -.hover\\:bg-purple-500:hover { - background-color: var(--purple-500) !important; -} -.hover\\:bg-purple-600:hover { - background-color: var(--purple-600) !important; -} -.hover\\:bg-purple-700:hover { - background-color: var(--purple-700) !important; -} -.hover\\:bg-purple-800:hover { - background-color: var(--purple-800) !important; -} -.hover\\:bg-purple-900:hover { - background-color: var(--purple-900) !important; -} - -.active\\:bg-purple-50:active { - background-color: var(--purple-50) !important; -} -.active\\:bg-purple-100:active { - background-color: var(--purple-100) !important; -} -.active\\:bg-purple-200:active { - background-color: var(--purple-200) !important; -} -.active\\:bg-purple-300:active { - background-color: var(--purple-300) !important; -} -.active\\:bg-purple-400:active { - background-color: var(--purple-400) !important; -} -.active\\:bg-purple-500:active { - background-color: var(--purple-500) !important; -} -.active\\:bg-purple-600:active { - background-color: var(--purple-600) !important; -} -.active\\:bg-purple-700:active { - background-color: var(--purple-700) !important; -} -.active\\:bg-purple-800:active { - background-color: var(--purple-800) !important; -} -.active\\:bg-purple-900:active { - background-color: var(--purple-900) !important; -} - -.bg-gray-50 { - background-color: var(--gray-50) !important; -} -.bg-gray-100 { - background-color: var(--gray-100) !important; -} -.bg-gray-200 { - background-color: var(--gray-200) !important; -} -.bg-gray-300 { - background-color: var(--gray-300) !important; -} -.bg-gray-400 { - background-color: var(--gray-400) !important; -} -.bg-gray-500 { - background-color: var(--gray-500) !important; -} -.bg-gray-600 { - background-color: var(--gray-600) !important; -} -.bg-gray-700 { - background-color: var(--gray-700) !important; -} -.bg-gray-800 { - background-color: var(--gray-800) !important; -} -.bg-gray-900 { - background-color: var(--gray-900) !important; -} - -.focus\\:bg-gray-50:focus { - background-color: var(--gray-50) !important; -} -.focus\\:bg-gray-100:focus { - background-color: var(--gray-100) !important; -} -.focus\\:bg-gray-200:focus { - background-color: var(--gray-200) !important; -} -.focus\\:bg-gray-300:focus { - background-color: var(--gray-300) !important; -} -.focus\\:bg-gray-400:focus { - background-color: var(--gray-400) !important; -} -.focus\\:bg-gray-500:focus { - background-color: var(--gray-500) !important; -} -.focus\\:bg-gray-600:focus { - background-color: var(--gray-600) !important; -} -.focus\\:bg-gray-700:focus { - background-color: var(--gray-700) !important; -} -.focus\\:bg-gray-800:focus { - background-color: var(--gray-800) !important; -} -.focus\\:bg-gray-900:focus { - background-color: var(--gray-900) !important; -} - -.hover\\:bg-gray-50:hover { - background-color: var(--gray-50) !important; -} -.hover\\:bg-gray-100:hover { - background-color: var(--gray-100) !important; -} -.hover\\:bg-gray-200:hover { - background-color: var(--gray-200) !important; -} -.hover\\:bg-gray-300:hover { - background-color: var(--gray-300) !important; -} -.hover\\:bg-gray-400:hover { - background-color: var(--gray-400) !important; -} -.hover\\:bg-gray-500:hover { - background-color: var(--gray-500) !important; -} -.hover\\:bg-gray-600:hover { - background-color: var(--gray-600) !important; -} -.hover\\:bg-gray-700:hover { - background-color: var(--gray-700) !important; -} -.hover\\:bg-gray-800:hover { - background-color: var(--gray-800) !important; -} -.hover\\:bg-gray-900:hover { - background-color: var(--gray-900) !important; -} - -.active\\:bg-gray-50:active { - background-color: var(--gray-50) !important; -} -.active\\:bg-gray-100:active { - background-color: var(--gray-100) !important; -} -.active\\:bg-gray-200:active { - background-color: var(--gray-200) !important; -} -.active\\:bg-gray-300:active { - background-color: var(--gray-300) !important; -} -.active\\:bg-gray-400:active { - background-color: var(--gray-400) !important; -} -.active\\:bg-gray-500:active { - background-color: var(--gray-500) !important; -} -.active\\:bg-gray-600:active { - background-color: var(--gray-600) !important; -} -.active\\:bg-gray-700:active { - background-color: var(--gray-700) !important; -} -.active\\:bg-gray-800:active { - background-color: var(--gray-800) !important; -} -.active\\:bg-gray-900:active { - background-color: var(--gray-900) !important; -} - -.bg-red-50 { - background-color: var(--red-50) !important; -} -.bg-red-100 { - background-color: var(--red-100) !important; -} -.bg-red-200 { - background-color: var(--red-200) !important; -} -.bg-red-300 { - background-color: var(--red-300) !important; -} -.bg-red-400 { - background-color: var(--red-400) !important; -} -.bg-red-500 { - background-color: var(--red-500) !important; -} -.bg-red-600 { - background-color: var(--red-600) !important; -} -.bg-red-700 { - background-color: var(--red-700) !important; -} -.bg-red-800 { - background-color: var(--red-800) !important; -} -.bg-red-900 { - background-color: var(--red-900) !important; -} - -.focus\\:bg-red-50:focus { - background-color: var(--red-50) !important; -} -.focus\\:bg-red-100:focus { - background-color: var(--red-100) !important; -} -.focus\\:bg-red-200:focus { - background-color: var(--red-200) !important; -} -.focus\\:bg-red-300:focus { - background-color: var(--red-300) !important; -} -.focus\\:bg-red-400:focus { - background-color: var(--red-400) !important; -} -.focus\\:bg-red-500:focus { - background-color: var(--red-500) !important; -} -.focus\\:bg-red-600:focus { - background-color: var(--red-600) !important; -} -.focus\\:bg-red-700:focus { - background-color: var(--red-700) !important; -} -.focus\\:bg-red-800:focus { - background-color: var(--red-800) !important; -} -.focus\\:bg-red-900:focus { - background-color: var(--red-900) !important; -} - -.hover\\:bg-red-50:hover { - background-color: var(--red-50) !important; -} -.hover\\:bg-red-100:hover { - background-color: var(--red-100) !important; -} -.hover\\:bg-red-200:hover { - background-color: var(--red-200) !important; -} -.hover\\:bg-red-300:hover { - background-color: var(--red-300) !important; -} -.hover\\:bg-red-400:hover { - background-color: var(--red-400) !important; -} -.hover\\:bg-red-500:hover { - background-color: var(--red-500) !important; -} -.hover\\:bg-red-600:hover { - background-color: var(--red-600) !important; -} -.hover\\:bg-red-700:hover { - background-color: var(--red-700) !important; -} -.hover\\:bg-red-800:hover { - background-color: var(--red-800) !important; -} -.hover\\:bg-red-900:hover { - background-color: var(--red-900) !important; -} - -.active\\:bg-red-50:active { - background-color: var(--red-50) !important; -} -.active\\:bg-red-100:active { - background-color: var(--red-100) !important; -} -.active\\:bg-red-200:active { - background-color: var(--red-200) !important; -} -.active\\:bg-red-300:active { - background-color: var(--red-300) !important; -} -.active\\:bg-red-400:active { - background-color: var(--red-400) !important; -} -.active\\:bg-red-500:active { - background-color: var(--red-500) !important; -} -.active\\:bg-red-600:active { - background-color: var(--red-600) !important; -} -.active\\:bg-red-700:active { - background-color: var(--red-700) !important; -} -.active\\:bg-red-800:active { - background-color: var(--red-800) !important; -} -.active\\:bg-red-900:active { - background-color: var(--red-900) !important; -} - -.bg-primary-50 { - background-color: var(--primary-50) !important; -} -.bg-primary-100 { - background-color: var(--primary-100) !important; -} -.bg-primary-200 { - background-color: var(--primary-200) !important; -} -.bg-primary-300 { - background-color: var(--primary-300) !important; -} -.bg-primary-400 { - background-color: var(--primary-400) !important; -} -.bg-primary-500 { - background-color: var(--primary-500) !important; -} -.bg-primary-600 { - background-color: var(--primary-600) !important; -} -.bg-primary-700 { - background-color: var(--primary-700) !important; -} -.bg-primary-800 { - background-color: var(--primary-800) !important; -} -.bg-primary-900 { - background-color: var(--primary-900) !important; -} - -.focus\\:bg-primary-50:focus { - background-color: var(--primary-50) !important; -} -.focus\\:bg-primary-100:focus { - background-color: var(--primary-100) !important; -} -.focus\\:bg-primary-200:focus { - background-color: var(--primary-200) !important; -} -.focus\\:bg-primary-300:focus { - background-color: var(--primary-300) !important; -} -.focus\\:bg-primary-400:focus { - background-color: var(--primary-400) !important; -} -.focus\\:bg-primary-500:focus { - background-color: var(--primary-500) !important; -} -.focus\\:bg-primary-600:focus { - background-color: var(--primary-600) !important; -} -.focus\\:bg-primary-700:focus { - background-color: var(--primary-700) !important; -} -.focus\\:bg-primary-800:focus { - background-color: var(--primary-800) !important; -} -.focus\\:bg-primary-900:focus { - background-color: var(--primary-900) !important; -} - -.hover\\:bg-primary-50:hover { - background-color: var(--primary-50) !important; -} -.hover\\:bg-primary-100:hover { - background-color: var(--primary-100) !important; -} -.hover\\:bg-primary-200:hover { - background-color: var(--primary-200) !important; -} -.hover\\:bg-primary-300:hover { - background-color: var(--primary-300) !important; -} -.hover\\:bg-primary-400:hover { - background-color: var(--primary-400) !important; -} -.hover\\:bg-primary-500:hover { - background-color: var(--primary-500) !important; -} -.hover\\:bg-primary-600:hover { - background-color: var(--primary-600) !important; -} -.hover\\:bg-primary-700:hover { - background-color: var(--primary-700) !important; -} -.hover\\:bg-primary-800:hover { - background-color: var(--primary-800) !important; -} -.hover\\:bg-primary-900:hover { - background-color: var(--primary-900) !important; -} - -.active\\:bg-primary-50:active { - background-color: var(--primary-50) !important; -} -.active\\:bg-primary-100:active { - background-color: var(--primary-100) !important; -} -.active\\:bg-primary-200:active { - background-color: var(--primary-200) !important; -} -.active\\:bg-primary-300:active { - background-color: var(--primary-300) !important; -} -.active\\:bg-primary-400:active { - background-color: var(--primary-400) !important; -} -.active\\:bg-primary-500:active { - background-color: var(--primary-500) !important; -} -.active\\:bg-primary-600:active { - background-color: var(--primary-600) !important; -} -.active\\:bg-primary-700:active { - background-color: var(--primary-700) !important; -} -.active\\:bg-primary-800:active { - background-color: var(--primary-800) !important; -} -.active\\:bg-primary-900:active { - background-color: var(--primary-900) !important; -} - -.border-blue-50 { - border-color: var(--blue-50) !important; -} -.border-blue-100 { - border-color: var(--blue-100) !important; -} -.border-blue-200 { - border-color: var(--blue-200) !important; -} -.border-blue-300 { - border-color: var(--blue-300) !important; -} -.border-blue-400 { - border-color: var(--blue-400) !important; -} -.border-blue-500 { - border-color: var(--blue-500) !important; -} -.border-blue-600 { - border-color: var(--blue-600) !important; -} -.border-blue-700 { - border-color: var(--blue-700) !important; -} -.border-blue-800 { - border-color: var(--blue-800) !important; -} -.border-blue-900 { - border-color: var(--blue-900) !important; -} - -.focus\\:border-blue-50:focus { - border-color: var(--blue-50) !important; -} -.focus\\:border-blue-100:focus { - border-color: var(--blue-100) !important; -} -.focus\\:border-blue-200:focus { - border-color: var(--blue-200) !important; -} -.focus\\:border-blue-300:focus { - border-color: var(--blue-300) !important; -} -.focus\\:border-blue-400:focus { - border-color: var(--blue-400) !important; -} -.focus\\:border-blue-500:focus { - border-color: var(--blue-500) !important; -} -.focus\\:border-blue-600:focus { - border-color: var(--blue-600) !important; -} -.focus\\:border-blue-700:focus { - border-color: var(--blue-700) !important; -} -.focus\\:border-blue-800:focus { - border-color: var(--blue-800) !important; -} -.focus\\:border-blue-900:focus { - border-color: var(--blue-900) !important; -} - -.hover\\:border-blue-50:hover { - border-color: var(--blue-50) !important; -} -.hover\\:border-blue-100:hover { - border-color: var(--blue-100) !important; -} -.hover\\:border-blue-200:hover { - border-color: var(--blue-200) !important; -} -.hover\\:border-blue-300:hover { - border-color: var(--blue-300) !important; -} -.hover\\:border-blue-400:hover { - border-color: var(--blue-400) !important; -} -.hover\\:border-blue-500:hover { - border-color: var(--blue-500) !important; -} -.hover\\:border-blue-600:hover { - border-color: var(--blue-600) !important; -} -.hover\\:border-blue-700:hover { - border-color: var(--blue-700) !important; -} -.hover\\:border-blue-800:hover { - border-color: var(--blue-800) !important; -} -.hover\\:border-blue-900:hover { - border-color: var(--blue-900) !important; -} - -.active\\:border-blue-50:active { - border-color: var(--blue-50) !important; -} -.active\\:border-blue-100:active { - border-color: var(--blue-100) !important; -} -.active\\:border-blue-200:active { - border-color: var(--blue-200) !important; -} -.active\\:border-blue-300:active { - border-color: var(--blue-300) !important; -} -.active\\:border-blue-400:active { - border-color: var(--blue-400) !important; -} -.active\\:border-blue-500:active { - border-color: var(--blue-500) !important; -} -.active\\:border-blue-600:active { - border-color: var(--blue-600) !important; -} -.active\\:border-blue-700:active { - border-color: var(--blue-700) !important; -} -.active\\:border-blue-800:active { - border-color: var(--blue-800) !important; -} -.active\\:border-blue-900:active { - border-color: var(--blue-900) !important; -} - -.border-green-50 { - border-color: var(--green-50) !important; -} -.border-green-100 { - border-color: var(--green-100) !important; -} -.border-green-200 { - border-color: var(--green-200) !important; -} -.border-green-300 { - border-color: var(--green-300) !important; -} -.border-green-400 { - border-color: var(--green-400) !important; -} -.border-green-500 { - border-color: var(--green-500) !important; -} -.border-green-600 { - border-color: var(--green-600) !important; -} -.border-green-700 { - border-color: var(--green-700) !important; -} -.border-green-800 { - border-color: var(--green-800) !important; -} -.border-green-900 { - border-color: var(--green-900) !important; -} - -.focus\\:border-green-50:focus { - border-color: var(--green-50) !important; -} -.focus\\:border-green-100:focus { - border-color: var(--green-100) !important; -} -.focus\\:border-green-200:focus { - border-color: var(--green-200) !important; -} -.focus\\:border-green-300:focus { - border-color: var(--green-300) !important; -} -.focus\\:border-green-400:focus { - border-color: var(--green-400) !important; -} -.focus\\:border-green-500:focus { - border-color: var(--green-500) !important; -} -.focus\\:border-green-600:focus { - border-color: var(--green-600) !important; -} -.focus\\:border-green-700:focus { - border-color: var(--green-700) !important; -} -.focus\\:border-green-800:focus { - border-color: var(--green-800) !important; -} -.focus\\:border-green-900:focus { - border-color: var(--green-900) !important; -} - -.hover\\:border-green-50:hover { - border-color: var(--green-50) !important; -} -.hover\\:border-green-100:hover { - border-color: var(--green-100) !important; -} -.hover\\:border-green-200:hover { - border-color: var(--green-200) !important; -} -.hover\\:border-green-300:hover { - border-color: var(--green-300) !important; -} -.hover\\:border-green-400:hover { - border-color: var(--green-400) !important; -} -.hover\\:border-green-500:hover { - border-color: var(--green-500) !important; -} -.hover\\:border-green-600:hover { - border-color: var(--green-600) !important; -} -.hover\\:border-green-700:hover { - border-color: var(--green-700) !important; -} -.hover\\:border-green-800:hover { - border-color: var(--green-800) !important; -} -.hover\\:border-green-900:hover { - border-color: var(--green-900) !important; -} - -.active\\:border-green-50:active { - border-color: var(--green-50) !important; -} -.active\\:border-green-100:active { - border-color: var(--green-100) !important; -} -.active\\:border-green-200:active { - border-color: var(--green-200) !important; -} -.active\\:border-green-300:active { - border-color: var(--green-300) !important; -} -.active\\:border-green-400:active { - border-color: var(--green-400) !important; -} -.active\\:border-green-500:active { - border-color: var(--green-500) !important; -} -.active\\:border-green-600:active { - border-color: var(--green-600) !important; -} -.active\\:border-green-700:active { - border-color: var(--green-700) !important; -} -.active\\:border-green-800:active { - border-color: var(--green-800) !important; -} -.active\\:border-green-900:active { - border-color: var(--green-900) !important; -} - -.border-yellow-50 { - border-color: var(--yellow-50) !important; -} -.border-yellow-100 { - border-color: var(--yellow-100) !important; -} -.border-yellow-200 { - border-color: var(--yellow-200) !important; -} -.border-yellow-300 { - border-color: var(--yellow-300) !important; -} -.border-yellow-400 { - border-color: var(--yellow-400) !important; -} -.border-yellow-500 { - border-color: var(--yellow-500) !important; -} -.border-yellow-600 { - border-color: var(--yellow-600) !important; -} -.border-yellow-700 { - border-color: var(--yellow-700) !important; -} -.border-yellow-800 { - border-color: var(--yellow-800) !important; -} -.border-yellow-900 { - border-color: var(--yellow-900) !important; -} - -.focus\\:border-yellow-50:focus { - border-color: var(--yellow-50) !important; -} -.focus\\:border-yellow-100:focus { - border-color: var(--yellow-100) !important; -} -.focus\\:border-yellow-200:focus { - border-color: var(--yellow-200) !important; -} -.focus\\:border-yellow-300:focus { - border-color: var(--yellow-300) !important; -} -.focus\\:border-yellow-400:focus { - border-color: var(--yellow-400) !important; -} -.focus\\:border-yellow-500:focus { - border-color: var(--yellow-500) !important; -} -.focus\\:border-yellow-600:focus { - border-color: var(--yellow-600) !important; -} -.focus\\:border-yellow-700:focus { - border-color: var(--yellow-700) !important; -} -.focus\\:border-yellow-800:focus { - border-color: var(--yellow-800) !important; -} -.focus\\:border-yellow-900:focus { - border-color: var(--yellow-900) !important; -} - -.hover\\:border-yellow-50:hover { - border-color: var(--yellow-50) !important; -} -.hover\\:border-yellow-100:hover { - border-color: var(--yellow-100) !important; -} -.hover\\:border-yellow-200:hover { - border-color: var(--yellow-200) !important; -} -.hover\\:border-yellow-300:hover { - border-color: var(--yellow-300) !important; -} -.hover\\:border-yellow-400:hover { - border-color: var(--yellow-400) !important; -} -.hover\\:border-yellow-500:hover { - border-color: var(--yellow-500) !important; -} -.hover\\:border-yellow-600:hover { - border-color: var(--yellow-600) !important; -} -.hover\\:border-yellow-700:hover { - border-color: var(--yellow-700) !important; -} -.hover\\:border-yellow-800:hover { - border-color: var(--yellow-800) !important; -} -.hover\\:border-yellow-900:hover { - border-color: var(--yellow-900) !important; -} - -.active\\:border-yellow-50:active { - border-color: var(--yellow-50) !important; -} -.active\\:border-yellow-100:active { - border-color: var(--yellow-100) !important; -} -.active\\:border-yellow-200:active { - border-color: var(--yellow-200) !important; -} -.active\\:border-yellow-300:active { - border-color: var(--yellow-300) !important; -} -.active\\:border-yellow-400:active { - border-color: var(--yellow-400) !important; -} -.active\\:border-yellow-500:active { - border-color: var(--yellow-500) !important; -} -.active\\:border-yellow-600:active { - border-color: var(--yellow-600) !important; -} -.active\\:border-yellow-700:active { - border-color: var(--yellow-700) !important; -} -.active\\:border-yellow-800:active { - border-color: var(--yellow-800) !important; -} -.active\\:border-yellow-900:active { - border-color: var(--yellow-900) !important; -} - -.border-cyan-50 { - border-color: var(--cyan-50) !important; -} -.border-cyan-100 { - border-color: var(--cyan-100) !important; -} -.border-cyan-200 { - border-color: var(--cyan-200) !important; -} -.border-cyan-300 { - border-color: var(--cyan-300) !important; -} -.border-cyan-400 { - border-color: var(--cyan-400) !important; -} -.border-cyan-500 { - border-color: var(--cyan-500) !important; -} -.border-cyan-600 { - border-color: var(--cyan-600) !important; -} -.border-cyan-700 { - border-color: var(--cyan-700) !important; -} -.border-cyan-800 { - border-color: var(--cyan-800) !important; -} -.border-cyan-900 { - border-color: var(--cyan-900) !important; -} - -.focus\\:border-cyan-50:focus { - border-color: var(--cyan-50) !important; -} -.focus\\:border-cyan-100:focus { - border-color: var(--cyan-100) !important; -} -.focus\\:border-cyan-200:focus { - border-color: var(--cyan-200) !important; -} -.focus\\:border-cyan-300:focus { - border-color: var(--cyan-300) !important; -} -.focus\\:border-cyan-400:focus { - border-color: var(--cyan-400) !important; -} -.focus\\:border-cyan-500:focus { - border-color: var(--cyan-500) !important; -} -.focus\\:border-cyan-600:focus { - border-color: var(--cyan-600) !important; -} -.focus\\:border-cyan-700:focus { - border-color: var(--cyan-700) !important; -} -.focus\\:border-cyan-800:focus { - border-color: var(--cyan-800) !important; -} -.focus\\:border-cyan-900:focus { - border-color: var(--cyan-900) !important; -} - -.hover\\:border-cyan-50:hover { - border-color: var(--cyan-50) !important; -} -.hover\\:border-cyan-100:hover { - border-color: var(--cyan-100) !important; -} -.hover\\:border-cyan-200:hover { - border-color: var(--cyan-200) !important; -} -.hover\\:border-cyan-300:hover { - border-color: var(--cyan-300) !important; -} -.hover\\:border-cyan-400:hover { - border-color: var(--cyan-400) !important; -} -.hover\\:border-cyan-500:hover { - border-color: var(--cyan-500) !important; -} -.hover\\:border-cyan-600:hover { - border-color: var(--cyan-600) !important; -} -.hover\\:border-cyan-700:hover { - border-color: var(--cyan-700) !important; -} -.hover\\:border-cyan-800:hover { - border-color: var(--cyan-800) !important; -} -.hover\\:border-cyan-900:hover { - border-color: var(--cyan-900) !important; -} - -.active\\:border-cyan-50:active { - border-color: var(--cyan-50) !important; -} -.active\\:border-cyan-100:active { - border-color: var(--cyan-100) !important; -} -.active\\:border-cyan-200:active { - border-color: var(--cyan-200) !important; -} -.active\\:border-cyan-300:active { - border-color: var(--cyan-300) !important; -} -.active\\:border-cyan-400:active { - border-color: var(--cyan-400) !important; -} -.active\\:border-cyan-500:active { - border-color: var(--cyan-500) !important; -} -.active\\:border-cyan-600:active { - border-color: var(--cyan-600) !important; -} -.active\\:border-cyan-700:active { - border-color: var(--cyan-700) !important; -} -.active\\:border-cyan-800:active { - border-color: var(--cyan-800) !important; -} -.active\\:border-cyan-900:active { - border-color: var(--cyan-900) !important; -} - -.border-pink-50 { - border-color: var(--pink-50) !important; -} -.border-pink-100 { - border-color: var(--pink-100) !important; -} -.border-pink-200 { - border-color: var(--pink-200) !important; -} -.border-pink-300 { - border-color: var(--pink-300) !important; -} -.border-pink-400 { - border-color: var(--pink-400) !important; -} -.border-pink-500 { - border-color: var(--pink-500) !important; -} -.border-pink-600 { - border-color: var(--pink-600) !important; -} -.border-pink-700 { - border-color: var(--pink-700) !important; -} -.border-pink-800 { - border-color: var(--pink-800) !important; -} -.border-pink-900 { - border-color: var(--pink-900) !important; -} - -.focus\\:border-pink-50:focus { - border-color: var(--pink-50) !important; -} -.focus\\:border-pink-100:focus { - border-color: var(--pink-100) !important; -} -.focus\\:border-pink-200:focus { - border-color: var(--pink-200) !important; -} -.focus\\:border-pink-300:focus { - border-color: var(--pink-300) !important; -} -.focus\\:border-pink-400:focus { - border-color: var(--pink-400) !important; -} -.focus\\:border-pink-500:focus { - border-color: var(--pink-500) !important; -} -.focus\\:border-pink-600:focus { - border-color: var(--pink-600) !important; -} -.focus\\:border-pink-700:focus { - border-color: var(--pink-700) !important; -} -.focus\\:border-pink-800:focus { - border-color: var(--pink-800) !important; -} -.focus\\:border-pink-900:focus { - border-color: var(--pink-900) !important; -} - -.hover\\:border-pink-50:hover { - border-color: var(--pink-50) !important; -} -.hover\\:border-pink-100:hover { - border-color: var(--pink-100) !important; -} -.hover\\:border-pink-200:hover { - border-color: var(--pink-200) !important; -} -.hover\\:border-pink-300:hover { - border-color: var(--pink-300) !important; -} -.hover\\:border-pink-400:hover { - border-color: var(--pink-400) !important; -} -.hover\\:border-pink-500:hover { - border-color: var(--pink-500) !important; -} -.hover\\:border-pink-600:hover { - border-color: var(--pink-600) !important; -} -.hover\\:border-pink-700:hover { - border-color: var(--pink-700) !important; -} -.hover\\:border-pink-800:hover { - border-color: var(--pink-800) !important; -} -.hover\\:border-pink-900:hover { - border-color: var(--pink-900) !important; -} - -.active\\:border-pink-50:active { - border-color: var(--pink-50) !important; -} -.active\\:border-pink-100:active { - border-color: var(--pink-100) !important; -} -.active\\:border-pink-200:active { - border-color: var(--pink-200) !important; -} -.active\\:border-pink-300:active { - border-color: var(--pink-300) !important; -} -.active\\:border-pink-400:active { - border-color: var(--pink-400) !important; -} -.active\\:border-pink-500:active { - border-color: var(--pink-500) !important; -} -.active\\:border-pink-600:active { - border-color: var(--pink-600) !important; -} -.active\\:border-pink-700:active { - border-color: var(--pink-700) !important; -} -.active\\:border-pink-800:active { - border-color: var(--pink-800) !important; -} -.active\\:border-pink-900:active { - border-color: var(--pink-900) !important; -} - -.border-indigo-50 { - border-color: var(--indigo-50) !important; -} -.border-indigo-100 { - border-color: var(--indigo-100) !important; -} -.border-indigo-200 { - border-color: var(--indigo-200) !important; -} -.border-indigo-300 { - border-color: var(--indigo-300) !important; -} -.border-indigo-400 { - border-color: var(--indigo-400) !important; -} -.border-indigo-500 { - border-color: var(--indigo-500) !important; -} -.border-indigo-600 { - border-color: var(--indigo-600) !important; -} -.border-indigo-700 { - border-color: var(--indigo-700) !important; -} -.border-indigo-800 { - border-color: var(--indigo-800) !important; -} -.border-indigo-900 { - border-color: var(--indigo-900) !important; -} - -.focus\\:border-indigo-50:focus { - border-color: var(--indigo-50) !important; -} -.focus\\:border-indigo-100:focus { - border-color: var(--indigo-100) !important; -} -.focus\\:border-indigo-200:focus { - border-color: var(--indigo-200) !important; -} -.focus\\:border-indigo-300:focus { - border-color: var(--indigo-300) !important; -} -.focus\\:border-indigo-400:focus { - border-color: var(--indigo-400) !important; -} -.focus\\:border-indigo-500:focus { - border-color: var(--indigo-500) !important; -} -.focus\\:border-indigo-600:focus { - border-color: var(--indigo-600) !important; -} -.focus\\:border-indigo-700:focus { - border-color: var(--indigo-700) !important; -} -.focus\\:border-indigo-800:focus { - border-color: var(--indigo-800) !important; -} -.focus\\:border-indigo-900:focus { - border-color: var(--indigo-900) !important; -} - -.hover\\:border-indigo-50:hover { - border-color: var(--indigo-50) !important; -} -.hover\\:border-indigo-100:hover { - border-color: var(--indigo-100) !important; -} -.hover\\:border-indigo-200:hover { - border-color: var(--indigo-200) !important; -} -.hover\\:border-indigo-300:hover { - border-color: var(--indigo-300) !important; -} -.hover\\:border-indigo-400:hover { - border-color: var(--indigo-400) !important; -} -.hover\\:border-indigo-500:hover { - border-color: var(--indigo-500) !important; -} -.hover\\:border-indigo-600:hover { - border-color: var(--indigo-600) !important; -} -.hover\\:border-indigo-700:hover { - border-color: var(--indigo-700) !important; -} -.hover\\:border-indigo-800:hover { - border-color: var(--indigo-800) !important; -} -.hover\\:border-indigo-900:hover { - border-color: var(--indigo-900) !important; -} - -.active\\:border-indigo-50:active { - border-color: var(--indigo-50) !important; -} -.active\\:border-indigo-100:active { - border-color: var(--indigo-100) !important; -} -.active\\:border-indigo-200:active { - border-color: var(--indigo-200) !important; -} -.active\\:border-indigo-300:active { - border-color: var(--indigo-300) !important; -} -.active\\:border-indigo-400:active { - border-color: var(--indigo-400) !important; -} -.active\\:border-indigo-500:active { - border-color: var(--indigo-500) !important; -} -.active\\:border-indigo-600:active { - border-color: var(--indigo-600) !important; -} -.active\\:border-indigo-700:active { - border-color: var(--indigo-700) !important; -} -.active\\:border-indigo-800:active { - border-color: var(--indigo-800) !important; -} -.active\\:border-indigo-900:active { - border-color: var(--indigo-900) !important; -} - -.border-teal-50 { - border-color: var(--teal-50) !important; -} -.border-teal-100 { - border-color: var(--teal-100) !important; -} -.border-teal-200 { - border-color: var(--teal-200) !important; -} -.border-teal-300 { - border-color: var(--teal-300) !important; -} -.border-teal-400 { - border-color: var(--teal-400) !important; -} -.border-teal-500 { - border-color: var(--teal-500) !important; -} -.border-teal-600 { - border-color: var(--teal-600) !important; -} -.border-teal-700 { - border-color: var(--teal-700) !important; -} -.border-teal-800 { - border-color: var(--teal-800) !important; -} -.border-teal-900 { - border-color: var(--teal-900) !important; -} - -.focus\\:border-teal-50:focus { - border-color: var(--teal-50) !important; -} -.focus\\:border-teal-100:focus { - border-color: var(--teal-100) !important; -} -.focus\\:border-teal-200:focus { - border-color: var(--teal-200) !important; -} -.focus\\:border-teal-300:focus { - border-color: var(--teal-300) !important; -} -.focus\\:border-teal-400:focus { - border-color: var(--teal-400) !important; -} -.focus\\:border-teal-500:focus { - border-color: var(--teal-500) !important; -} -.focus\\:border-teal-600:focus { - border-color: var(--teal-600) !important; -} -.focus\\:border-teal-700:focus { - border-color: var(--teal-700) !important; -} -.focus\\:border-teal-800:focus { - border-color: var(--teal-800) !important; -} -.focus\\:border-teal-900:focus { - border-color: var(--teal-900) !important; -} - -.hover\\:border-teal-50:hover { - border-color: var(--teal-50) !important; -} -.hover\\:border-teal-100:hover { - border-color: var(--teal-100) !important; -} -.hover\\:border-teal-200:hover { - border-color: var(--teal-200) !important; -} -.hover\\:border-teal-300:hover { - border-color: var(--teal-300) !important; -} -.hover\\:border-teal-400:hover { - border-color: var(--teal-400) !important; -} -.hover\\:border-teal-500:hover { - border-color: var(--teal-500) !important; -} -.hover\\:border-teal-600:hover { - border-color: var(--teal-600) !important; -} -.hover\\:border-teal-700:hover { - border-color: var(--teal-700) !important; -} -.hover\\:border-teal-800:hover { - border-color: var(--teal-800) !important; -} -.hover\\:border-teal-900:hover { - border-color: var(--teal-900) !important; -} - -.active\\:border-teal-50:active { - border-color: var(--teal-50) !important; -} -.active\\:border-teal-100:active { - border-color: var(--teal-100) !important; -} -.active\\:border-teal-200:active { - border-color: var(--teal-200) !important; -} -.active\\:border-teal-300:active { - border-color: var(--teal-300) !important; -} -.active\\:border-teal-400:active { - border-color: var(--teal-400) !important; -} -.active\\:border-teal-500:active { - border-color: var(--teal-500) !important; -} -.active\\:border-teal-600:active { - border-color: var(--teal-600) !important; -} -.active\\:border-teal-700:active { - border-color: var(--teal-700) !important; -} -.active\\:border-teal-800:active { - border-color: var(--teal-800) !important; -} -.active\\:border-teal-900:active { - border-color: var(--teal-900) !important; -} - -.border-orange-50 { - border-color: var(--orange-50) !important; -} -.border-orange-100 { - border-color: var(--orange-100) !important; -} -.border-orange-200 { - border-color: var(--orange-200) !important; -} -.border-orange-300 { - border-color: var(--orange-300) !important; -} -.border-orange-400 { - border-color: var(--orange-400) !important; -} -.border-orange-500 { - border-color: var(--orange-500) !important; -} -.border-orange-600 { - border-color: var(--orange-600) !important; -} -.border-orange-700 { - border-color: var(--orange-700) !important; -} -.border-orange-800 { - border-color: var(--orange-800) !important; -} -.border-orange-900 { - border-color: var(--orange-900) !important; -} - -.focus\\:border-orange-50:focus { - border-color: var(--orange-50) !important; -} -.focus\\:border-orange-100:focus { - border-color: var(--orange-100) !important; -} -.focus\\:border-orange-200:focus { - border-color: var(--orange-200) !important; -} -.focus\\:border-orange-300:focus { - border-color: var(--orange-300) !important; -} -.focus\\:border-orange-400:focus { - border-color: var(--orange-400) !important; -} -.focus\\:border-orange-500:focus { - border-color: var(--orange-500) !important; -} -.focus\\:border-orange-600:focus { - border-color: var(--orange-600) !important; -} -.focus\\:border-orange-700:focus { - border-color: var(--orange-700) !important; -} -.focus\\:border-orange-800:focus { - border-color: var(--orange-800) !important; -} -.focus\\:border-orange-900:focus { - border-color: var(--orange-900) !important; -} - -.hover\\:border-orange-50:hover { - border-color: var(--orange-50) !important; -} -.hover\\:border-orange-100:hover { - border-color: var(--orange-100) !important; -} -.hover\\:border-orange-200:hover { - border-color: var(--orange-200) !important; -} -.hover\\:border-orange-300:hover { - border-color: var(--orange-300) !important; -} -.hover\\:border-orange-400:hover { - border-color: var(--orange-400) !important; -} -.hover\\:border-orange-500:hover { - border-color: var(--orange-500) !important; -} -.hover\\:border-orange-600:hover { - border-color: var(--orange-600) !important; -} -.hover\\:border-orange-700:hover { - border-color: var(--orange-700) !important; -} -.hover\\:border-orange-800:hover { - border-color: var(--orange-800) !important; -} -.hover\\:border-orange-900:hover { - border-color: var(--orange-900) !important; -} - -.active\\:border-orange-50:active { - border-color: var(--orange-50) !important; -} -.active\\:border-orange-100:active { - border-color: var(--orange-100) !important; -} -.active\\:border-orange-200:active { - border-color: var(--orange-200) !important; -} -.active\\:border-orange-300:active { - border-color: var(--orange-300) !important; -} -.active\\:border-orange-400:active { - border-color: var(--orange-400) !important; -} -.active\\:border-orange-500:active { - border-color: var(--orange-500) !important; -} -.active\\:border-orange-600:active { - border-color: var(--orange-600) !important; -} -.active\\:border-orange-700:active { - border-color: var(--orange-700) !important; -} -.active\\:border-orange-800:active { - border-color: var(--orange-800) !important; -} -.active\\:border-orange-900:active { - border-color: var(--orange-900) !important; -} - -.border-bluegray-50 { - border-color: var(--bluegray-50) !important; -} -.border-bluegray-100 { - border-color: var(--bluegray-100) !important; -} -.border-bluegray-200 { - border-color: var(--bluegray-200) !important; -} -.border-bluegray-300 { - border-color: var(--bluegray-300) !important; -} -.border-bluegray-400 { - border-color: var(--bluegray-400) !important; -} -.border-bluegray-500 { - border-color: var(--bluegray-500) !important; -} -.border-bluegray-600 { - border-color: var(--bluegray-600) !important; -} -.border-bluegray-700 { - border-color: var(--bluegray-700) !important; -} -.border-bluegray-800 { - border-color: var(--bluegray-800) !important; -} -.border-bluegray-900 { - border-color: var(--bluegray-900) !important; -} - -.focus\\:border-bluegray-50:focus { - border-color: var(--bluegray-50) !important; -} -.focus\\:border-bluegray-100:focus { - border-color: var(--bluegray-100) !important; -} -.focus\\:border-bluegray-200:focus { - border-color: var(--bluegray-200) !important; -} -.focus\\:border-bluegray-300:focus { - border-color: var(--bluegray-300) !important; -} -.focus\\:border-bluegray-400:focus { - border-color: var(--bluegray-400) !important; -} -.focus\\:border-bluegray-500:focus { - border-color: var(--bluegray-500) !important; -} -.focus\\:border-bluegray-600:focus { - border-color: var(--bluegray-600) !important; -} -.focus\\:border-bluegray-700:focus { - border-color: var(--bluegray-700) !important; -} -.focus\\:border-bluegray-800:focus { - border-color: var(--bluegray-800) !important; -} -.focus\\:border-bluegray-900:focus { - border-color: var(--bluegray-900) !important; -} - -.hover\\:border-bluegray-50:hover { - border-color: var(--bluegray-50) !important; -} -.hover\\:border-bluegray-100:hover { - border-color: var(--bluegray-100) !important; -} -.hover\\:border-bluegray-200:hover { - border-color: var(--bluegray-200) !important; -} -.hover\\:border-bluegray-300:hover { - border-color: var(--bluegray-300) !important; -} -.hover\\:border-bluegray-400:hover { - border-color: var(--bluegray-400) !important; -} -.hover\\:border-bluegray-500:hover { - border-color: var(--bluegray-500) !important; -} -.hover\\:border-bluegray-600:hover { - border-color: var(--bluegray-600) !important; -} -.hover\\:border-bluegray-700:hover { - border-color: var(--bluegray-700) !important; -} -.hover\\:border-bluegray-800:hover { - border-color: var(--bluegray-800) !important; -} -.hover\\:border-bluegray-900:hover { - border-color: var(--bluegray-900) !important; -} - -.active\\:border-bluegray-50:active { - border-color: var(--bluegray-50) !important; -} -.active\\:border-bluegray-100:active { - border-color: var(--bluegray-100) !important; -} -.active\\:border-bluegray-200:active { - border-color: var(--bluegray-200) !important; -} -.active\\:border-bluegray-300:active { - border-color: var(--bluegray-300) !important; -} -.active\\:border-bluegray-400:active { - border-color: var(--bluegray-400) !important; -} -.active\\:border-bluegray-500:active { - border-color: var(--bluegray-500) !important; -} -.active\\:border-bluegray-600:active { - border-color: var(--bluegray-600) !important; -} -.active\\:border-bluegray-700:active { - border-color: var(--bluegray-700) !important; -} -.active\\:border-bluegray-800:active { - border-color: var(--bluegray-800) !important; -} -.active\\:border-bluegray-900:active { - border-color: var(--bluegray-900) !important; -} - -.border-purple-50 { - border-color: var(--purple-50) !important; -} -.border-purple-100 { - border-color: var(--purple-100) !important; -} -.border-purple-200 { - border-color: var(--purple-200) !important; -} -.border-purple-300 { - border-color: var(--purple-300) !important; -} -.border-purple-400 { - border-color: var(--purple-400) !important; -} -.border-purple-500 { - border-color: var(--purple-500) !important; -} -.border-purple-600 { - border-color: var(--purple-600) !important; -} -.border-purple-700 { - border-color: var(--purple-700) !important; -} -.border-purple-800 { - border-color: var(--purple-800) !important; -} -.border-purple-900 { - border-color: var(--purple-900) !important; -} - -.focus\\:border-purple-50:focus { - border-color: var(--purple-50) !important; -} -.focus\\:border-purple-100:focus { - border-color: var(--purple-100) !important; -} -.focus\\:border-purple-200:focus { - border-color: var(--purple-200) !important; -} -.focus\\:border-purple-300:focus { - border-color: var(--purple-300) !important; -} -.focus\\:border-purple-400:focus { - border-color: var(--purple-400) !important; -} -.focus\\:border-purple-500:focus { - border-color: var(--purple-500) !important; -} -.focus\\:border-purple-600:focus { - border-color: var(--purple-600) !important; -} -.focus\\:border-purple-700:focus { - border-color: var(--purple-700) !important; -} -.focus\\:border-purple-800:focus { - border-color: var(--purple-800) !important; -} -.focus\\:border-purple-900:focus { - border-color: var(--purple-900) !important; -} - -.hover\\:border-purple-50:hover { - border-color: var(--purple-50) !important; -} -.hover\\:border-purple-100:hover { - border-color: var(--purple-100) !important; -} -.hover\\:border-purple-200:hover { - border-color: var(--purple-200) !important; -} -.hover\\:border-purple-300:hover { - border-color: var(--purple-300) !important; -} -.hover\\:border-purple-400:hover { - border-color: var(--purple-400) !important; -} -.hover\\:border-purple-500:hover { - border-color: var(--purple-500) !important; -} -.hover\\:border-purple-600:hover { - border-color: var(--purple-600) !important; -} -.hover\\:border-purple-700:hover { - border-color: var(--purple-700) !important; -} -.hover\\:border-purple-800:hover { - border-color: var(--purple-800) !important; -} -.hover\\:border-purple-900:hover { - border-color: var(--purple-900) !important; -} - -.active\\:border-purple-50:active { - border-color: var(--purple-50) !important; -} -.active\\:border-purple-100:active { - border-color: var(--purple-100) !important; -} -.active\\:border-purple-200:active { - border-color: var(--purple-200) !important; -} -.active\\:border-purple-300:active { - border-color: var(--purple-300) !important; -} -.active\\:border-purple-400:active { - border-color: var(--purple-400) !important; -} -.active\\:border-purple-500:active { - border-color: var(--purple-500) !important; -} -.active\\:border-purple-600:active { - border-color: var(--purple-600) !important; -} -.active\\:border-purple-700:active { - border-color: var(--purple-700) !important; -} -.active\\:border-purple-800:active { - border-color: var(--purple-800) !important; -} -.active\\:border-purple-900:active { - border-color: var(--purple-900) !important; -} - -.border-gray-50 { - border-color: var(--gray-50) !important; -} -.border-gray-100 { - border-color: var(--gray-100) !important; -} -.border-gray-200 { - border-color: var(--gray-200) !important; -} -.border-gray-300 { - border-color: var(--gray-300) !important; -} -.border-gray-400 { - border-color: var(--gray-400) !important; -} -.border-gray-500 { - border-color: var(--gray-500) !important; -} -.border-gray-600 { - border-color: var(--gray-600) !important; -} -.border-gray-700 { - border-color: var(--gray-700) !important; -} -.border-gray-800 { - border-color: var(--gray-800) !important; -} -.border-gray-900 { - border-color: var(--gray-900) !important; -} - -.focus\\:border-gray-50:focus { - border-color: var(--gray-50) !important; -} -.focus\\:border-gray-100:focus { - border-color: var(--gray-100) !important; -} -.focus\\:border-gray-200:focus { - border-color: var(--gray-200) !important; -} -.focus\\:border-gray-300:focus { - border-color: var(--gray-300) !important; -} -.focus\\:border-gray-400:focus { - border-color: var(--gray-400) !important; -} -.focus\\:border-gray-500:focus { - border-color: var(--gray-500) !important; -} -.focus\\:border-gray-600:focus { - border-color: var(--gray-600) !important; -} -.focus\\:border-gray-700:focus { - border-color: var(--gray-700) !important; -} -.focus\\:border-gray-800:focus { - border-color: var(--gray-800) !important; -} -.focus\\:border-gray-900:focus { - border-color: var(--gray-900) !important; -} - -.hover\\:border-gray-50:hover { - border-color: var(--gray-50) !important; -} -.hover\\:border-gray-100:hover { - border-color: var(--gray-100) !important; -} -.hover\\:border-gray-200:hover { - border-color: var(--gray-200) !important; -} -.hover\\:border-gray-300:hover { - border-color: var(--gray-300) !important; -} -.hover\\:border-gray-400:hover { - border-color: var(--gray-400) !important; -} -.hover\\:border-gray-500:hover { - border-color: var(--gray-500) !important; -} -.hover\\:border-gray-600:hover { - border-color: var(--gray-600) !important; -} -.hover\\:border-gray-700:hover { - border-color: var(--gray-700) !important; -} -.hover\\:border-gray-800:hover { - border-color: var(--gray-800) !important; -} -.hover\\:border-gray-900:hover { - border-color: var(--gray-900) !important; -} - -.active\\:border-gray-50:active { - border-color: var(--gray-50) !important; -} -.active\\:border-gray-100:active { - border-color: var(--gray-100) !important; -} -.active\\:border-gray-200:active { - border-color: var(--gray-200) !important; -} -.active\\:border-gray-300:active { - border-color: var(--gray-300) !important; -} -.active\\:border-gray-400:active { - border-color: var(--gray-400) !important; -} -.active\\:border-gray-500:active { - border-color: var(--gray-500) !important; -} -.active\\:border-gray-600:active { - border-color: var(--gray-600) !important; -} -.active\\:border-gray-700:active { - border-color: var(--gray-700) !important; -} -.active\\:border-gray-800:active { - border-color: var(--gray-800) !important; -} -.active\\:border-gray-900:active { - border-color: var(--gray-900) !important; -} - -.border-red-50 { - border-color: var(--red-50) !important; -} -.border-red-100 { - border-color: var(--red-100) !important; -} -.border-red-200 { - border-color: var(--red-200) !important; -} -.border-red-300 { - border-color: var(--red-300) !important; -} -.border-red-400 { - border-color: var(--red-400) !important; -} -.border-red-500 { - border-color: var(--red-500) !important; -} -.border-red-600 { - border-color: var(--red-600) !important; -} -.border-red-700 { - border-color: var(--red-700) !important; -} -.border-red-800 { - border-color: var(--red-800) !important; -} -.border-red-900 { - border-color: var(--red-900) !important; -} - -.focus\\:border-red-50:focus { - border-color: var(--red-50) !important; -} -.focus\\:border-red-100:focus { - border-color: var(--red-100) !important; -} -.focus\\:border-red-200:focus { - border-color: var(--red-200) !important; -} -.focus\\:border-red-300:focus { - border-color: var(--red-300) !important; -} -.focus\\:border-red-400:focus { - border-color: var(--red-400) !important; -} -.focus\\:border-red-500:focus { - border-color: var(--red-500) !important; -} -.focus\\:border-red-600:focus { - border-color: var(--red-600) !important; -} -.focus\\:border-red-700:focus { - border-color: var(--red-700) !important; -} -.focus\\:border-red-800:focus { - border-color: var(--red-800) !important; -} -.focus\\:border-red-900:focus { - border-color: var(--red-900) !important; -} - -.hover\\:border-red-50:hover { - border-color: var(--red-50) !important; -} -.hover\\:border-red-100:hover { - border-color: var(--red-100) !important; -} -.hover\\:border-red-200:hover { - border-color: var(--red-200) !important; -} -.hover\\:border-red-300:hover { - border-color: var(--red-300) !important; -} -.hover\\:border-red-400:hover { - border-color: var(--red-400) !important; -} -.hover\\:border-red-500:hover { - border-color: var(--red-500) !important; -} -.hover\\:border-red-600:hover { - border-color: var(--red-600) !important; -} -.hover\\:border-red-700:hover { - border-color: var(--red-700) !important; -} -.hover\\:border-red-800:hover { - border-color: var(--red-800) !important; -} -.hover\\:border-red-900:hover { - border-color: var(--red-900) !important; -} - -.active\\:border-red-50:active { - border-color: var(--red-50) !important; -} -.active\\:border-red-100:active { - border-color: var(--red-100) !important; -} -.active\\:border-red-200:active { - border-color: var(--red-200) !important; -} -.active\\:border-red-300:active { - border-color: var(--red-300) !important; -} -.active\\:border-red-400:active { - border-color: var(--red-400) !important; -} -.active\\:border-red-500:active { - border-color: var(--red-500) !important; -} -.active\\:border-red-600:active { - border-color: var(--red-600) !important; -} -.active\\:border-red-700:active { - border-color: var(--red-700) !important; -} -.active\\:border-red-800:active { - border-color: var(--red-800) !important; -} -.active\\:border-red-900:active { - border-color: var(--red-900) !important; -} - -.border-primary-50 { - border-color: var(--primary-50) !important; -} -.border-primary-100 { - border-color: var(--primary-100) !important; -} -.border-primary-200 { - border-color: var(--primary-200) !important; -} -.border-primary-300 { - border-color: var(--primary-300) !important; -} -.border-primary-400 { - border-color: var(--primary-400) !important; -} -.border-primary-500 { - border-color: var(--primary-500) !important; -} -.border-primary-600 { - border-color: var(--primary-600) !important; -} -.border-primary-700 { - border-color: var(--primary-700) !important; -} -.border-primary-800 { - border-color: var(--primary-800) !important; -} -.border-primary-900 { - border-color: var(--primary-900) !important; -} - -.focus\\:border-primary-50:focus { - border-color: var(--primary-50) !important; -} -.focus\\:border-primary-100:focus { - border-color: var(--primary-100) !important; -} -.focus\\:border-primary-200:focus { - border-color: var(--primary-200) !important; -} -.focus\\:border-primary-300:focus { - border-color: var(--primary-300) !important; -} -.focus\\:border-primary-400:focus { - border-color: var(--primary-400) !important; -} -.focus\\:border-primary-500:focus { - border-color: var(--primary-500) !important; -} -.focus\\:border-primary-600:focus { - border-color: var(--primary-600) !important; -} -.focus\\:border-primary-700:focus { - border-color: var(--primary-700) !important; -} -.focus\\:border-primary-800:focus { - border-color: var(--primary-800) !important; -} -.focus\\:border-primary-900:focus { - border-color: var(--primary-900) !important; -} - -.hover\\:border-primary-50:hover { - border-color: var(--primary-50) !important; -} -.hover\\:border-primary-100:hover { - border-color: var(--primary-100) !important; -} -.hover\\:border-primary-200:hover { - border-color: var(--primary-200) !important; -} -.hover\\:border-primary-300:hover { - border-color: var(--primary-300) !important; -} -.hover\\:border-primary-400:hover { - border-color: var(--primary-400) !important; -} -.hover\\:border-primary-500:hover { - border-color: var(--primary-500) !important; -} -.hover\\:border-primary-600:hover { - border-color: var(--primary-600) !important; -} -.hover\\:border-primary-700:hover { - border-color: var(--primary-700) !important; -} -.hover\\:border-primary-800:hover { - border-color: var(--primary-800) !important; -} -.hover\\:border-primary-900:hover { - border-color: var(--primary-900) !important; -} - -.active\\:border-primary-50:active { - border-color: var(--primary-50) !important; -} -.active\\:border-primary-100:active { - border-color: var(--primary-100) !important; -} -.active\\:border-primary-200:active { - border-color: var(--primary-200) !important; -} -.active\\:border-primary-300:active { - border-color: var(--primary-300) !important; -} -.active\\:border-primary-400:active { - border-color: var(--primary-400) !important; -} -.active\\:border-primary-500:active { - border-color: var(--primary-500) !important; -} -.active\\:border-primary-600:active { - border-color: var(--primary-600) !important; -} -.active\\:border-primary-700:active { - border-color: var(--primary-700) !important; -} -.active\\:border-primary-800:active { - border-color: var(--primary-800) !important; -} -.active\\:border-primary-900:active { - border-color: var(--primary-900) !important; -} - -.bg-white-alpha-10 { - background-color: rgba(255,255,255,0.1) !important; -} -.bg-white-alpha-20 { - background-color: rgba(255,255,255,0.2) !important; -} -.bg-white-alpha-30 { - background-color: rgba(255,255,255,0.3) !important; -} -.bg-white-alpha-40 { - background-color: rgba(255,255,255,0.4) !important; -} -.bg-white-alpha-50 { - background-color: rgba(255,255,255,0.5) !important; -} -.bg-white-alpha-60 { - background-color: rgba(255,255,255,0.6) !important; -} -.bg-white-alpha-70 { - background-color: rgba(255,255,255,0.7) !important; -} -.bg-white-alpha-80 { - background-color: rgba(255,255,255,0.8) !important; -} -.bg-white-alpha-90 { - background-color: rgba(255,255,255,0.9) !important; -} - -.hover\\:bg-white-alpha-10:hover { - background-color: rgba(255,255,255,0.1) !important; -} -.hover\\:bg-white-alpha-20:hover { - background-color: rgba(255,255,255,0.2) !important; -} -.hover\\:bg-white-alpha-30:hover { - background-color: rgba(255,255,255,0.3) !important; -} -.hover\\:bg-white-alpha-40:hover { - background-color: rgba(255,255,255,0.4) !important; -} -.hover\\:bg-white-alpha-50:hover { - background-color: rgba(255,255,255,0.5) !important; -} -.hover\\:bg-white-alpha-60:hover { - background-color: rgba(255,255,255,0.6) !important; -} -.hover\\:bg-white-alpha-70:hover { - background-color: rgba(255,255,255,0.7) !important; -} -.hover\\:bg-white-alpha-80:hover { - background-color: rgba(255,255,255,0.8) !important; -} -.hover\\:bg-white-alpha-90:hover { - background-color: rgba(255,255,255,0.9) !important; -} - -.focus\\:bg-white-alpha-10:focus { - background-color: rgba(255,255,255,0.1) !important; -} -.focus\\:bg-white-alpha-20:focus { - background-color: rgba(255,255,255,0.2) !important; -} -.focus\\:bg-white-alpha-30:focus { - background-color: rgba(255,255,255,0.3) !important; -} -.focus\\:bg-white-alpha-40:focus { - background-color: rgba(255,255,255,0.4) !important; -} -.focus\\:bg-white-alpha-50:focus { - background-color: rgba(255,255,255,0.5) !important; -} -.focus\\:bg-white-alpha-60:focus { - background-color: rgba(255,255,255,0.6) !important; -} -.focus\\:bg-white-alpha-70:focus { - background-color: rgba(255,255,255,0.7) !important; -} -.focus\\:bg-white-alpha-80:focus { - background-color: rgba(255,255,255,0.8) !important; -} -.focus\\:bg-white-alpha-90:focus { - background-color: rgba(255,255,255,0.9) !important; -} - -.active\\:bg-white-alpha-10:active { - background-color: rgba(255,255,255,0.1) !important; -} -.active\\:bg-white-alpha-20:active { - background-color: rgba(255,255,255,0.2) !important; -} -.active\\:bg-white-alpha-30:active { - background-color: rgba(255,255,255,0.3) !important; -} -.active\\:bg-white-alpha-40:active { - background-color: rgba(255,255,255,0.4) !important; -} -.active\\:bg-white-alpha-50:active { - background-color: rgba(255,255,255,0.5) !important; -} -.active\\:bg-white-alpha-60:active { - background-color: rgba(255,255,255,0.6) !important; -} -.active\\:bg-white-alpha-70:active { - background-color: rgba(255,255,255,0.7) !important; -} -.active\\:bg-white-alpha-80:active { - background-color: rgba(255,255,255,0.8) !important; -} -.active\\:bg-white-alpha-90:active { - background-color: rgba(255,255,255,0.9) !important; -} - -.bg-black-alpha-10 { - background-color: rgba(0,0,0,0.1) !important; -} -.bg-black-alpha-20 { - background-color: rgba(0,0,0,0.2) !important; -} -.bg-black-alpha-30 { - background-color: rgba(0,0,0,0.3) !important; -} -.bg-black-alpha-40 { - background-color: rgba(0,0,0,0.4) !important; -} -.bg-black-alpha-50 { - background-color: rgba(0,0,0,0.5) !important; -} -.bg-black-alpha-60 { - background-color: rgba(0,0,0,0.6) !important; -} -.bg-black-alpha-70 { - background-color: rgba(0,0,0,0.7) !important; -} -.bg-black-alpha-80 { - background-color: rgba(0,0,0,0.8) !important; -} -.bg-black-alpha-90 { - background-color: rgba(0,0,0,0.9) !important; -} - -.hover\\:bg-black-alpha-10:hover { - background-color: rgba(0,0,0,0.1) !important; -} -.hover\\:bg-black-alpha-20:hover { - background-color: rgba(0,0,0,0.2) !important; -} -.hover\\:bg-black-alpha-30:hover { - background-color: rgba(0,0,0,0.3) !important; -} -.hover\\:bg-black-alpha-40:hover { - background-color: rgba(0,0,0,0.4) !important; -} -.hover\\:bg-black-alpha-50:hover { - background-color: rgba(0,0,0,0.5) !important; -} -.hover\\:bg-black-alpha-60:hover { - background-color: rgba(0,0,0,0.6) !important; -} -.hover\\:bg-black-alpha-70:hover { - background-color: rgba(0,0,0,0.7) !important; -} -.hover\\:bg-black-alpha-80:hover { - background-color: rgba(0,0,0,0.8) !important; -} -.hover\\:bg-black-alpha-90:hover { - background-color: rgba(0,0,0,0.9) !important; -} - -.focus\\:bg-black-alpha-10:focus { - background-color: rgba(0,0,0,0.1) !important; -} -.focus\\:bg-black-alpha-20:focus { - background-color: rgba(0,0,0,0.2) !important; -} -.focus\\:bg-black-alpha-30:focus { - background-color: rgba(0,0,0,0.3) !important; -} -.focus\\:bg-black-alpha-40:focus { - background-color: rgba(0,0,0,0.4) !important; -} -.focus\\:bg-black-alpha-50:focus { - background-color: rgba(0,0,0,0.5) !important; -} -.focus\\:bg-black-alpha-60:focus { - background-color: rgba(0,0,0,0.6) !important; -} -.focus\\:bg-black-alpha-70:focus { - background-color: rgba(0,0,0,0.7) !important; -} -.focus\\:bg-black-alpha-80:focus { - background-color: rgba(0,0,0,0.8) !important; -} -.focus\\:bg-black-alpha-90:focus { - background-color: rgba(0,0,0,0.9) !important; -} - -.active\\:bg-black-alpha-10:active { - background-color: rgba(0,0,0,0.1) !important; -} -.active\\:bg-black-alpha-20:active { - background-color: rgba(0,0,0,0.2) !important; -} -.active\\:bg-black-alpha-30:active { - background-color: rgba(0,0,0,0.3) !important; -} -.active\\:bg-black-alpha-40:active { - background-color: rgba(0,0,0,0.4) !important; -} -.active\\:bg-black-alpha-50:active { - background-color: rgba(0,0,0,0.5) !important; -} -.active\\:bg-black-alpha-60:active { - background-color: rgba(0,0,0,0.6) !important; -} -.active\\:bg-black-alpha-70:active { - background-color: rgba(0,0,0,0.7) !important; -} -.active\\:bg-black-alpha-80:active { - background-color: rgba(0,0,0,0.8) !important; -} -.active\\:bg-black-alpha-90:active { - background-color: rgba(0,0,0,0.9) !important; -} - -.border-white-alpha-10 { - border-color: rgba(255,255,255,0.1) !important; -} -.border-white-alpha-20 { - border-color: rgba(255,255,255,0.2) !important; -} -.border-white-alpha-30 { - border-color: rgba(255,255,255,0.3) !important; -} -.border-white-alpha-40 { - border-color: rgba(255,255,255,0.4) !important; -} -.border-white-alpha-50 { - border-color: rgba(255,255,255,0.5) !important; -} -.border-white-alpha-60 { - border-color: rgba(255,255,255,0.6) !important; -} -.border-white-alpha-70 { - border-color: rgba(255,255,255,0.7) !important; -} -.border-white-alpha-80 { - border-color: rgba(255,255,255,0.8) !important; -} -.border-white-alpha-90 { - border-color: rgba(255,255,255,0.9) !important; -} - -.hover\\:border-white-alpha-10:hover { - border-color: rgba(255,255,255,0.1) !important; -} -.hover\\:border-white-alpha-20:hover { - border-color: rgba(255,255,255,0.2) !important; -} -.hover\\:border-white-alpha-30:hover { - border-color: rgba(255,255,255,0.3) !important; -} -.hover\\:border-white-alpha-40:hover { - border-color: rgba(255,255,255,0.4) !important; -} -.hover\\:border-white-alpha-50:hover { - border-color: rgba(255,255,255,0.5) !important; -} -.hover\\:border-white-alpha-60:hover { - border-color: rgba(255,255,255,0.6) !important; -} -.hover\\:border-white-alpha-70:hover { - border-color: rgba(255,255,255,0.7) !important; -} -.hover\\:border-white-alpha-80:hover { - border-color: rgba(255,255,255,0.8) !important; -} -.hover\\:border-white-alpha-90:hover { - border-color: rgba(255,255,255,0.9) !important; -} - -.focus\\:border-white-alpha-10:focus { - border-color: rgba(255,255,255,0.1) !important; -} -.focus\\:border-white-alpha-20:focus { - border-color: rgba(255,255,255,0.2) !important; -} -.focus\\:border-white-alpha-30:focus { - border-color: rgba(255,255,255,0.3) !important; -} -.focus\\:border-white-alpha-40:focus { - border-color: rgba(255,255,255,0.4) !important; -} -.focus\\:border-white-alpha-50:focus { - border-color: rgba(255,255,255,0.5) !important; -} -.focus\\:border-white-alpha-60:focus { - border-color: rgba(255,255,255,0.6) !important; -} -.focus\\:border-white-alpha-70:focus { - border-color: rgba(255,255,255,0.7) !important; -} -.focus\\:border-white-alpha-80:focus { - border-color: rgba(255,255,255,0.8) !important; -} -.focus\\:border-white-alpha-90:focus { - border-color: rgba(255,255,255,0.9) !important; -} - -.active\\:border-white-alpha-10:active { - border-color: rgba(255,255,255,0.1) !important; -} -.active\\:border-white-alpha-20:active { - border-color: rgba(255,255,255,0.2) !important; -} -.active\\:border-white-alpha-30:active { - border-color: rgba(255,255,255,0.3) !important; -} -.active\\:border-white-alpha-40:active { - border-color: rgba(255,255,255,0.4) !important; -} -.active\\:border-white-alpha-50:active { - border-color: rgba(255,255,255,0.5) !important; -} -.active\\:border-white-alpha-60:active { - border-color: rgba(255,255,255,0.6) !important; -} -.active\\:border-white-alpha-70:active { - border-color: rgba(255,255,255,0.7) !important; -} -.active\\:border-white-alpha-80:active { - border-color: rgba(255,255,255,0.8) !important; -} -.active\\:border-white-alpha-90:active { - border-color: rgba(255,255,255,0.9) !important; -} - -.border-black-alpha-10 { - border-color: rgba(0,0,0,0.1) !important; -} -.border-black-alpha-20 { - border-color: rgba(0,0,0,0.2) !important; -} -.border-black-alpha-30 { - border-color: rgba(0,0,0,0.3) !important; -} -.border-black-alpha-40 { - border-color: rgba(0,0,0,0.4) !important; -} -.border-black-alpha-50 { - border-color: rgba(0,0,0,0.5) !important; -} -.border-black-alpha-60 { - border-color: rgba(0,0,0,0.6) !important; -} -.border-black-alpha-70 { - border-color: rgba(0,0,0,0.7) !important; -} -.border-black-alpha-80 { - border-color: rgba(0,0,0,0.8) !important; -} -.border-black-alpha-90 { - border-color: rgba(0,0,0,0.9) !important; -} - -.hover\\:border-black-alpha-10:hover { - border-color: rgba(0,0,0,0.1) !important; -} -.hover\\:border-black-alpha-20:hover { - border-color: rgba(0,0,0,0.2) !important; -} -.hover\\:border-black-alpha-30:hover { - border-color: rgba(0,0,0,0.3) !important; -} -.hover\\:border-black-alpha-40:hover { - border-color: rgba(0,0,0,0.4) !important; -} -.hover\\:border-black-alpha-50:hover { - border-color: rgba(0,0,0,0.5) !important; -} -.hover\\:border-black-alpha-60:hover { - border-color: rgba(0,0,0,0.6) !important; -} -.hover\\:border-black-alpha-70:hover { - border-color: rgba(0,0,0,0.7) !important; -} -.hover\\:border-black-alpha-80:hover { - border-color: rgba(0,0,0,0.8) !important; -} -.hover\\:border-black-alpha-90:hover { - border-color: rgba(0,0,0,0.9) !important; -} - -.focus\\:border-black-alpha-10:focus { - border-color: rgba(0,0,0,0.1) !important; -} -.focus\\:border-black-alpha-20:focus { - border-color: rgba(0,0,0,0.2) !important; -} -.focus\\:border-black-alpha-30:focus { - border-color: rgba(0,0,0,0.3) !important; -} -.focus\\:border-black-alpha-40:focus { - border-color: rgba(0,0,0,0.4) !important; -} -.focus\\:border-black-alpha-50:focus { - border-color: rgba(0,0,0,0.5) !important; -} -.focus\\:border-black-alpha-60:focus { - border-color: rgba(0,0,0,0.6) !important; -} -.focus\\:border-black-alpha-70:focus { - border-color: rgba(0,0,0,0.7) !important; -} -.focus\\:border-black-alpha-80:focus { - border-color: rgba(0,0,0,0.8) !important; -} -.focus\\:border-black-alpha-90:focus { - border-color: rgba(0,0,0,0.9) !important; -} - -.active\\:border-black-alpha-10:active { - border-color: rgba(0,0,0,0.1) !important; -} -.active\\:border-black-alpha-20:active { - border-color: rgba(0,0,0,0.2) !important; -} -.active\\:border-black-alpha-30:active { - border-color: rgba(0,0,0,0.3) !important; -} -.active\\:border-black-alpha-40:active { - border-color: rgba(0,0,0,0.4) !important; -} -.active\\:border-black-alpha-50:active { - border-color: rgba(0,0,0,0.5) !important; -} -.active\\:border-black-alpha-60:active { - border-color: rgba(0,0,0,0.6) !important; -} -.active\\:border-black-alpha-70:active { - border-color: rgba(0,0,0,0.7) !important; -} -.active\\:border-black-alpha-80:active { - border-color: rgba(0,0,0,0.8) !important; -} -.active\\:border-black-alpha-90:active { - border-color: rgba(0,0,0,0.9) !important; -} - -.text-white-alpha-10 { - color: rgba(255,255,255,0.1) !important; -} -.text-white-alpha-20 { - color: rgba(255,255,255,0.2) !important; -} -.text-white-alpha-30 { - color: rgba(255,255,255,0.3) !important; -} -.text-white-alpha-40 { - color: rgba(255,255,255,0.4) !important; -} -.text-white-alpha-50 { - color: rgba(255,255,255,0.5) !important; -} -.text-white-alpha-60 { - color: rgba(255,255,255,0.6) !important; -} -.text-white-alpha-70 { - color: rgba(255,255,255,0.7) !important; -} -.text-white-alpha-80 { - color: rgba(255,255,255,0.8) !important; -} -.text-white-alpha-90 { - color: rgba(255,255,255,0.9) !important; -} - -.hover\\:text-white-alpha-10:hover { - color: rgba(255,255,255,0.1) !important; -} -.hover\\:text-white-alpha-20:hover { - color: rgba(255,255,255,0.2) !important; -} -.hover\\:text-white-alpha-30:hover { - color: rgba(255,255,255,0.3) !important; -} -.hover\\:text-white-alpha-40:hover { - color: rgba(255,255,255,0.4) !important; -} -.hover\\:text-white-alpha-50:hover { - color: rgba(255,255,255,0.5) !important; -} -.hover\\:text-white-alpha-60:hover { - color: rgba(255,255,255,0.6) !important; -} -.hover\\:text-white-alpha-70:hover { - color: rgba(255,255,255,0.7) !important; -} -.hover\\:text-white-alpha-80:hover { - color: rgba(255,255,255,0.8) !important; -} -.hover\\:text-white-alpha-90:hover { - color: rgba(255,255,255,0.9) !important; -} - -.focus\\:text-white-alpha-10:focus { - color: rgba(255,255,255,0.1) !important; -} -.focus\\:text-white-alpha-20:focus { - color: rgba(255,255,255,0.2) !important; -} -.focus\\:text-white-alpha-30:focus { - color: rgba(255,255,255,0.3) !important; -} -.focus\\:text-white-alpha-40:focus { - color: rgba(255,255,255,0.4) !important; -} -.focus\\:text-white-alpha-50:focus { - color: rgba(255,255,255,0.5) !important; -} -.focus\\:text-white-alpha-60:focus { - color: rgba(255,255,255,0.6) !important; -} -.focus\\:text-white-alpha-70:focus { - color: rgba(255,255,255,0.7) !important; -} -.focus\\:text-white-alpha-80:focus { - color: rgba(255,255,255,0.8) !important; -} -.focus\\:text-white-alpha-90:focus { - color: rgba(255,255,255,0.9) !important; -} - -.active\\:text-white-alpha-10:active { - color: rgba(255,255,255,0.1) !important; -} -.active\\:text-white-alpha-20:active { - color: rgba(255,255,255,0.2) !important; -} -.active\\:text-white-alpha-30:active { - color: rgba(255,255,255,0.3) !important; -} -.active\\:text-white-alpha-40:active { - color: rgba(255,255,255,0.4) !important; -} -.active\\:text-white-alpha-50:active { - color: rgba(255,255,255,0.5) !important; -} -.active\\:text-white-alpha-60:active { - color: rgba(255,255,255,0.6) !important; -} -.active\\:text-white-alpha-70:active { - color: rgba(255,255,255,0.7) !important; -} -.active\\:text-white-alpha-80:active { - color: rgba(255,255,255,0.8) !important; -} -.active\\:text-white-alpha-90:active { - color: rgba(255,255,255,0.9) !important; -} - -.text-black-alpha-10 { - color: rgba(0,0,0,0.1) !important; -} -.text-black-alpha-20 { - color: rgba(0,0,0,0.2) !important; -} -.text-black-alpha-30 { - color: rgba(0,0,0,0.3) !important; -} -.text-black-alpha-40 { - color: rgba(0,0,0,0.4) !important; -} -.text-black-alpha-50 { - color: rgba(0,0,0,0.5) !important; -} -.text-black-alpha-60 { - color: rgba(0,0,0,0.6) !important; -} -.text-black-alpha-70 { - color: rgba(0,0,0,0.7) !important; -} -.text-black-alpha-80 { - color: rgba(0,0,0,0.8) !important; -} -.text-black-alpha-90 { - color: rgba(0,0,0,0.9) !important; -} - -.hover\\:text-black-alpha-10:hover { - color: rgba(0,0,0,0.1) !important; -} -.hover\\:text-black-alpha-20:hover { - color: rgba(0,0,0,0.2) !important; -} -.hover\\:text-black-alpha-30:hover { - color: rgba(0,0,0,0.3) !important; -} -.hover\\:text-black-alpha-40:hover { - color: rgba(0,0,0,0.4) !important; -} -.hover\\:text-black-alpha-50:hover { - color: rgba(0,0,0,0.5) !important; -} -.hover\\:text-black-alpha-60:hover { - color: rgba(0,0,0,0.6) !important; -} -.hover\\:text-black-alpha-70:hover { - color: rgba(0,0,0,0.7) !important; -} -.hover\\:text-black-alpha-80:hover { - color: rgba(0,0,0,0.8) !important; -} -.hover\\:text-black-alpha-90:hover { - color: rgba(0,0,0,0.9) !important; -} - -.focus\\:text-black-alpha-10:focus { - color: rgba(0,0,0,0.1) !important; -} -.focus\\:text-black-alpha-20:focus { - color: rgba(0,0,0,0.2) !important; -} -.focus\\:text-black-alpha-30:focus { - color: rgba(0,0,0,0.3) !important; -} -.focus\\:text-black-alpha-40:focus { - color: rgba(0,0,0,0.4) !important; -} -.focus\\:text-black-alpha-50:focus { - color: rgba(0,0,0,0.5) !important; -} -.focus\\:text-black-alpha-60:focus { - color: rgba(0,0,0,0.6) !important; -} -.focus\\:text-black-alpha-70:focus { - color: rgba(0,0,0,0.7) !important; -} -.focus\\:text-black-alpha-80:focus { - color: rgba(0,0,0,0.8) !important; -} -.focus\\:text-black-alpha-90:focus { - color: rgba(0,0,0,0.9) !important; -} - -.active\\:text-black-alpha-10:active { - color: rgba(0,0,0,0.1) !important; -} -.active\\:text-black-alpha-20:active { - color: rgba(0,0,0,0.2) !important; -} -.active\\:text-black-alpha-30:active { - color: rgba(0,0,0,0.3) !important; -} -.active\\:text-black-alpha-40:active { - color: rgba(0,0,0,0.4) !important; -} -.active\\:text-black-alpha-50:active { - color: rgba(0,0,0,0.5) !important; -} -.active\\:text-black-alpha-60:active { - color: rgba(0,0,0,0.6) !important; -} -.active\\:text-black-alpha-70:active { - color: rgba(0,0,0,0.7) !important; -} -.active\\:text-black-alpha-80:active { - color: rgba(0,0,0,0.8) !important; -} -.active\\:text-black-alpha-90:active { - color: rgba(0,0,0,0.9) !important; -} - -.text-primary { - color: var(--primary-color) !important; -} - -.bg-primary { - color: var(--primary-color-text) !important; - background-color: var(--primary-color) !important; -} - -.bg-primary-reverse { - color: var(--primary-color) !important; - background-color: var(--primary-color-text) !important; -} - -.bg-white { - background-color: #ffffff !important; -} - -.border-primary { - border-color: var(--primary-color) !important; -} - -.text-white { - color: #ffffff !important; -} - -.border-white { - border-color: #ffffff !important; -} - -.text-color { - color: var(--text-color) !important; -} - -.text-color-secondary { - color: var(--text-color-secondary) !important; -} - -.surface-ground { - background-color: var(--surface-ground) !important; -} - -.surface-section { - background-color: var(--surface-section) !important; -} - -.surface-card { - background-color: var(--surface-card) !important; -} - -.surface-overlay { - background-color: var(--surface-overlay) !important; -} - -.surface-hover { - background-color: var(--surface-hover) !important; -} - -.surface-border { - border-color: var(--surface-border) !important; -} - -.focus\\:text-primary:focus { - color: var(--primary-color) !important; -} - -.hover\\:text-primary:hover { - color: var(--primary-color) !important; -} - -.active\\:text-primary:active { - color: var(--primary-color) !important; -} - -.focus\\:bg-primary:focus { - color: var(--primary-color-text) !important; - background-color: var(--primary-color) !important; -} - -.hover\\:bg-primary:hover { - color: var(--primary-color-text) !important; - background-color: var(--primary-color) !important; -} - -.active\\:bg-primary:active { - color: var(--primary-color-text) !important; - background-color: var(--primary-color) !important; -} - -.focus\\:bg-primary-reverse:focus { - color: var(--primary-color) !important; - background-color: var(--primary-color-text) !important; -} - -.hover\\:bg-primary-reverse:hover { - color: var(--primary-color) !important; - background-color: var(--primary-color-text) !important; -} - -.active\\:bg-primary-reverse:active { - color: var(--primary-color) !important; - background-color: var(--primary-color-text) !important; -} - -.focus\\:bg-white:focus { - background-color: #ffffff !important; -} - -.hover\\:bg-white:hover { - background-color: #ffffff !important; -} - -.active\\:bg-white:active { - background-color: #ffffff !important; -} - -.focus\\:border-primary:focus { - border-color: var(--primary-color) !important; -} - -.hover\\:border-primary:hover { - border-color: var(--primary-color) !important; -} - -.active\\:border-primary:active { - border-color: var(--primary-color) !important; -} - -.focus\\:text-white:focus { - color: #ffffff !important; -} - -.hover\\:text-white:hover { - color: #ffffff !important; -} - -.active\\:text-white:active { - color: #ffffff !important; -} - -.focus\\:border-white:focus { - border-color: #ffffff !important; -} - -.hover\\:border-white:hover { - border-color: #ffffff !important; -} - -.active\\:border-white:active { - border-color: #ffffff !important; -} - -.focus\\:text-color:focus { - color: var(--text-color) !important; -} - -.hover\\:text-color:hover { - color: var(--text-color) !important; -} - -.active\\:text-color:active { - color: var(--text-color) !important; -} - -.focus\\:text-color-secondary:focus { - color: var(--text-color-secondary) !important; -} - -.hover\\:text-color-secondary:hover { - color: var(--text-color-secondary) !important; -} - -.active\\:text-color-secondary:active { - color: var(--text-color-secondary) !important; -} - -.focus\\:surface-ground:focus { - background-color: var(--surface-ground) !important; -} - -.hover\\:surface-ground:hover { - background-color: var(--surface-ground) !important; -} - -.active\\:surface-ground:active { - background-color: var(--surface-ground) !important; -} - -.focus\\:surface-section:focus { - background-color: var(--surface-section) !important; -} - -.hover\\:surface-section:hover { - background-color: var(--surface-section) !important; -} - -.active\\:surface-section:active { - background-color: var(--surface-section) !important; -} - -.focus\\:surface-card:focus { - background-color: var(--surface-card) !important; -} - -.hover\\:surface-card:hover { - background-color: var(--surface-card) !important; -} - -.active\\:surface-card:active { - background-color: var(--surface-card) !important; -} - -.focus\\:surface-overlay:focus { - background-color: var(--surface-overlay) !important; -} - -.hover\\:surface-overlay:hover { - background-color: var(--surface-overlay) !important; -} - -.active\\:surface-overlay:active { - background-color: var(--surface-overlay) !important; -} - -.focus\\:surface-hover:focus { - background-color: var(--surface-hover) !important; -} - -.hover\\:surface-hover:hover { - background-color: var(--surface-hover) !important; -} - -.active\\:surface-hover:active { - background-color: var(--surface-hover) !important; -} - -.focus\\:surface-border:focus { - border-color: var(--surface-border) !important; -} - -.hover\\:surface-border:hover { - border-color: var(--surface-border) !important; -} - -.active\\:surface-border:active { - border-color: var(--surface-border) !important; -} - -@media screen and (min-width: 576px) { - .sm\\:text-primary { - color: var(--primary-color) !important; - } - .sm\\:bg-primary { - color: var(--primary-color-text) !important; - background-color: var(--primary-color) !important; - } - .sm\\:bg-primary-reverse { - color: var(--primary-color) !important; - background-color: var(--primary-color-text) !important; - } - .sm\\:bg-white { - background-color: #ffffff !important; - } - .sm\\:border-primary { - border-color: var(--primary-color) !important; - } - .sm\\:text-white { - color: #ffffff !important; - } - .sm\\:border-white { - border-color: #ffffff !important; - } - .sm\\:text-color { - color: var(--text-color) !important; - } - .sm\\:text-color-secondary { - color: var(--text-color-secondary) !important; - } - .sm\\:surface-ground { - background-color: var(--surface-ground) !important; - } - .sm\\:surface-section { - background-color: var(--surface-section) !important; - } - .sm\\:surface-card { - background-color: var(--surface-card) !important; - } - .sm\\:surface-overlay { - background-color: var(--surface-overlay) !important; - } - .sm\\:surface-hover { - background-color: var(--surface-hover) !important; - } - .sm\\:surface-border { - border-color: var(--surface-border) !important; - } - .sm\\:focus\\:text-primary:focus { - color: var(--primary-color) !important; - } - .sm\\:hover\\:text-primary:hover { - color: var(--primary-color) !important; - } - .sm\\:active\\:text-primary:active { - color: var(--primary-color) !important; - } - .sm\\:focus\\:bg-primary:focus { - color: var(--primary-color-text) !important; - background-color: var(--primary-color) !important; - } - .sm\\:hover\\:bg-primary:hover { - color: var(--primary-color-text) !important; - background-color: var(--primary-color) !important; - } - .sm\\:active\\:bg-primary:active { - color: var(--primary-color-text) !important; - background-color: var(--primary-color) !important; - } - .sm\\:focus\\:bg-primary-reverse:focus { - color: var(--primary-color) !important; - background-color: var(--primary-color-text) !important; - } - .sm\\:hover\\:bg-primary-reverse:hover { - color: var(--primary-color) !important; - background-color: var(--primary-color-text) !important; - } - .sm\\:active\\:bg-primary-reverse:active { - color: var(--primary-color) !important; - background-color: var(--primary-color-text) !important; - } - .sm\\:focus\\:bg-white:focus { - background-color: #ffffff !important; - } - .sm\\:hover\\:bg-white:hover { - background-color: #ffffff !important; - } - .sm\\:active\\:bg-white:active { - background-color: #ffffff !important; - } - .sm\\:focus\\:border-primary:focus { - border-color: var(--primary-color) !important; - } - .sm\\:hover\\:border-primary:hover { - border-color: var(--primary-color) !important; - } - .sm\\:active\\:border-primary:active { - border-color: var(--primary-color) !important; - } - .sm\\:focus\\:text-white:focus { - color: #ffffff !important; - } - .sm\\:hover\\:text-white:hover { - color: #ffffff !important; - } - .sm\\:active\\:text-white:active { - color: #ffffff !important; - } - .sm\\:focus\\:border-white:focus { - border-color: #ffffff !important; - } - .sm\\:hover\\:border-white:hover { - border-color: #ffffff !important; - } - .sm\\:active\\:border-white:active { - border-color: #ffffff !important; - } - .sm\\:focus\\:text-color:focus { - color: var(--text-color) !important; - } - .sm\\:hover\\:text-color:hover { - color: var(--text-color) !important; - } - .sm\\:active\\:text-color:active { - color: var(--text-color) !important; - } - .sm\\:focus\\:text-color-secondary:focus { - color: var(--text-color-secondary) !important; - } - .sm\\:hover\\:text-color-secondary:hover { - color: var(--text-color-secondary) !important; - } - .sm\\:active\\:text-color-secondary:active { - color: var(--text-color-secondary) !important; - } - .sm\\:focus\\:surface-ground:focus { - background-color: var(--surface-ground) !important; - } - .sm\\:hover\\:surface-ground:hover { - background-color: var(--surface-ground) !important; - } - .sm\\:active\\:surface-ground:active { - background-color: var(--surface-ground) !important; - } - .sm\\:focus\\:surface-section:focus { - background-color: var(--surface-section) !important; - } - .sm\\:hover\\:surface-section:hover { - background-color: var(--surface-section) !important; - } - .sm\\:active\\:surface-section:active { - background-color: var(--surface-section) !important; - } - .sm\\:focus\\:surface-card:focus { - background-color: var(--surface-card) !important; - } - .sm\\:hover\\:surface-card:hover { - background-color: var(--surface-card) !important; - } - .sm\\:active\\:surface-card:active { - background-color: var(--surface-card) !important; - } - .sm\\:focus\\:surface-overlay:focus { - background-color: var(--surface-overlay) !important; - } - .sm\\:hover\\:surface-overlay:hover { - background-color: var(--surface-overlay) !important; - } - .sm\\:active\\:surface-overlay:active { - background-color: var(--surface-overlay) !important; - } - .sm\\:focus\\:surface-hover:focus { - background-color: var(--surface-hover) !important; - } - .sm\\:hover\\:surface-hover:hover { - background-color: var(--surface-hover) !important; - } - .sm\\:active\\:surface-hover:active { - background-color: var(--surface-hover) !important; - } - .sm\\:focus\\:surface-border:focus { - border-color: var(--surface-border) !important; - } - .sm\\:hover\\:surface-border:hover { - border-color: var(--surface-border) !important; - } - .sm\\:active\\:surface-border:active { - border-color: var(--surface-border) !important; - } -} -@media screen and (min-width: 768px) { - .md\\:text-primary { - color: var(--primary-color) !important; - } - .md\\:bg-primary { - color: var(--primary-color-text) !important; - background-color: var(--primary-color) !important; - } - .md\\:bg-primary-reverse { - color: var(--primary-color) !important; - background-color: var(--primary-color-text) !important; - } - .md\\:bg-white { - background-color: #ffffff !important; - } - .md\\:border-primary { - border-color: var(--primary-color) !important; - } - .md\\:text-white { - color: #ffffff !important; - } - .md\\:border-white { - border-color: #ffffff !important; - } - .md\\:text-color { - color: var(--text-color) !important; - } - .md\\:text-color-secondary { - color: var(--text-color-secondary) !important; - } - .md\\:surface-ground { - background-color: var(--surface-ground) !important; - } - .md\\:surface-section { - background-color: var(--surface-section) !important; - } - .md\\:surface-card { - background-color: var(--surface-card) !important; - } - .md\\:surface-overlay { - background-color: var(--surface-overlay) !important; - } - .md\\:surface-hover { - background-color: var(--surface-hover) !important; - } - .md\\:surface-border { - border-color: var(--surface-border) !important; - } - .md\\:focus\\:text-primary:focus { - color: var(--primary-color) !important; - } - .md\\:hover\\:text-primary:hover { - color: var(--primary-color) !important; - } - .md\\:active\\:text-primary:active { - color: var(--primary-color) !important; - } - .md\\:focus\\:bg-primary:focus { - color: var(--primary-color-text) !important; - background-color: var(--primary-color) !important; - } - .md\\:hover\\:bg-primary:hover { - color: var(--primary-color-text) !important; - background-color: var(--primary-color) !important; - } - .md\\:active\\:bg-primary:active { - color: var(--primary-color-text) !important; - background-color: var(--primary-color) !important; - } - .md\\:focus\\:bg-primary-reverse:focus { - color: var(--primary-color) !important; - background-color: var(--primary-color-text) !important; - } - .md\\:hover\\:bg-primary-reverse:hover { - color: var(--primary-color) !important; - background-color: var(--primary-color-text) !important; - } - .md\\:active\\:bg-primary-reverse:active { - color: var(--primary-color) !important; - background-color: var(--primary-color-text) !important; - } - .md\\:focus\\:bg-white:focus { - background-color: #ffffff !important; - } - .md\\:hover\\:bg-white:hover { - background-color: #ffffff !important; - } - .md\\:active\\:bg-white:active { - background-color: #ffffff !important; - } - .md\\:focus\\:border-primary:focus { - border-color: var(--primary-color) !important; - } - .md\\:hover\\:border-primary:hover { - border-color: var(--primary-color) !important; - } - .md\\:active\\:border-primary:active { - border-color: var(--primary-color) !important; - } - .md\\:focus\\:text-white:focus { - color: #ffffff !important; - } - .md\\:hover\\:text-white:hover { - color: #ffffff !important; - } - .md\\:active\\:text-white:active { - color: #ffffff !important; - } - .md\\:focus\\:border-white:focus { - border-color: #ffffff !important; - } - .md\\:hover\\:border-white:hover { - border-color: #ffffff !important; - } - .md\\:active\\:border-white:active { - border-color: #ffffff !important; - } - .md\\:focus\\:text-color:focus { - color: var(--text-color) !important; - } - .md\\:hover\\:text-color:hover { - color: var(--text-color) !important; - } - .md\\:active\\:text-color:active { - color: var(--text-color) !important; - } - .md\\:focus\\:text-color-secondary:focus { - color: var(--text-color-secondary) !important; - } - .md\\:hover\\:text-color-secondary:hover { - color: var(--text-color-secondary) !important; - } - .md\\:active\\:text-color-secondary:active { - color: var(--text-color-secondary) !important; - } - .md\\:focus\\:surface-ground:focus { - background-color: var(--surface-ground) !important; - } - .md\\:hover\\:surface-ground:hover { - background-color: var(--surface-ground) !important; - } - .md\\:active\\:surface-ground:active { - background-color: var(--surface-ground) !important; - } - .md\\:focus\\:surface-section:focus { - background-color: var(--surface-section) !important; - } - .md\\:hover\\:surface-section:hover { - background-color: var(--surface-section) !important; - } - .md\\:active\\:surface-section:active { - background-color: var(--surface-section) !important; - } - .md\\:focus\\:surface-card:focus { - background-color: var(--surface-card) !important; - } - .md\\:hover\\:surface-card:hover { - background-color: var(--surface-card) !important; - } - .md\\:active\\:surface-card:active { - background-color: var(--surface-card) !important; - } - .md\\:focus\\:surface-overlay:focus { - background-color: var(--surface-overlay) !important; - } - .md\\:hover\\:surface-overlay:hover { - background-color: var(--surface-overlay) !important; - } - .md\\:active\\:surface-overlay:active { - background-color: var(--surface-overlay) !important; - } - .md\\:focus\\:surface-hover:focus { - background-color: var(--surface-hover) !important; - } - .md\\:hover\\:surface-hover:hover { - background-color: var(--surface-hover) !important; - } - .md\\:active\\:surface-hover:active { - background-color: var(--surface-hover) !important; - } - .md\\:focus\\:surface-border:focus { - border-color: var(--surface-border) !important; - } - .md\\:hover\\:surface-border:hover { - border-color: var(--surface-border) !important; - } - .md\\:active\\:surface-border:active { - border-color: var(--surface-border) !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:text-primary { - color: var(--primary-color) !important; - } - .lg\\:bg-primary { - color: var(--primary-color-text) !important; - background-color: var(--primary-color) !important; - } - .lg\\:bg-primary-reverse { - color: var(--primary-color) !important; - background-color: var(--primary-color-text) !important; - } - .lg\\:bg-white { - background-color: #ffffff !important; - } - .lg\\:border-primary { - border-color: var(--primary-color) !important; - } - .lg\\:text-white { - color: #ffffff !important; - } - .lg\\:border-white { - border-color: #ffffff !important; - } - .lg\\:text-color { - color: var(--text-color) !important; - } - .lg\\:text-color-secondary { - color: var(--text-color-secondary) !important; - } - .lg\\:surface-ground { - background-color: var(--surface-ground) !important; - } - .lg\\:surface-section { - background-color: var(--surface-section) !important; - } - .lg\\:surface-card { - background-color: var(--surface-card) !important; - } - .lg\\:surface-overlay { - background-color: var(--surface-overlay) !important; - } - .lg\\:surface-hover { - background-color: var(--surface-hover) !important; - } - .lg\\:surface-border { - border-color: var(--surface-border) !important; - } - .lg\\:focus\\:text-primary:focus { - color: var(--primary-color) !important; - } - .lg\\:hover\\:text-primary:hover { - color: var(--primary-color) !important; - } - .lg\\:active\\:text-primary:active { - color: var(--primary-color) !important; - } - .lg\\:focus\\:bg-primary:focus { - color: var(--primary-color-text) !important; - background-color: var(--primary-color) !important; - } - .lg\\:hover\\:bg-primary:hover { - color: var(--primary-color-text) !important; - background-color: var(--primary-color) !important; - } - .lg\\:active\\:bg-primary:active { - color: var(--primary-color-text) !important; - background-color: var(--primary-color) !important; - } - .lg\\:focus\\:bg-primary-reverse:focus { - color: var(--primary-color) !important; - background-color: var(--primary-color-text) !important; - } - .lg\\:hover\\:bg-primary-reverse:hover { - color: var(--primary-color) !important; - background-color: var(--primary-color-text) !important; - } - .lg\\:active\\:bg-primary-reverse:active { - color: var(--primary-color) !important; - background-color: var(--primary-color-text) !important; - } - .lg\\:focus\\:bg-white:focus { - background-color: #ffffff !important; - } - .lg\\:hover\\:bg-white:hover { - background-color: #ffffff !important; - } - .lg\\:active\\:bg-white:active { - background-color: #ffffff !important; - } - .lg\\:focus\\:border-primary:focus { - border-color: var(--primary-color) !important; - } - .lg\\:hover\\:border-primary:hover { - border-color: var(--primary-color) !important; - } - .lg\\:active\\:border-primary:active { - border-color: var(--primary-color) !important; - } - .lg\\:focus\\:text-white:focus { - color: #ffffff !important; - } - .lg\\:hover\\:text-white:hover { - color: #ffffff !important; - } - .lg\\:active\\:text-white:active { - color: #ffffff !important; - } - .lg\\:focus\\:border-white:focus { - border-color: #ffffff !important; - } - .lg\\:hover\\:border-white:hover { - border-color: #ffffff !important; - } - .lg\\:active\\:border-white:active { - border-color: #ffffff !important; - } - .lg\\:focus\\:text-color:focus { - color: var(--text-color) !important; - } - .lg\\:hover\\:text-color:hover { - color: var(--text-color) !important; - } - .lg\\:active\\:text-color:active { - color: var(--text-color) !important; - } - .lg\\:focus\\:text-color-secondary:focus { - color: var(--text-color-secondary) !important; - } - .lg\\:hover\\:text-color-secondary:hover { - color: var(--text-color-secondary) !important; - } - .lg\\:active\\:text-color-secondary:active { - color: var(--text-color-secondary) !important; - } - .lg\\:focus\\:surface-ground:focus { - background-color: var(--surface-ground) !important; - } - .lg\\:hover\\:surface-ground:hover { - background-color: var(--surface-ground) !important; - } - .lg\\:active\\:surface-ground:active { - background-color: var(--surface-ground) !important; - } - .lg\\:focus\\:surface-section:focus { - background-color: var(--surface-section) !important; - } - .lg\\:hover\\:surface-section:hover { - background-color: var(--surface-section) !important; - } - .lg\\:active\\:surface-section:active { - background-color: var(--surface-section) !important; - } - .lg\\:focus\\:surface-card:focus { - background-color: var(--surface-card) !important; - } - .lg\\:hover\\:surface-card:hover { - background-color: var(--surface-card) !important; - } - .lg\\:active\\:surface-card:active { - background-color: var(--surface-card) !important; - } - .lg\\:focus\\:surface-overlay:focus { - background-color: var(--surface-overlay) !important; - } - .lg\\:hover\\:surface-overlay:hover { - background-color: var(--surface-overlay) !important; - } - .lg\\:active\\:surface-overlay:active { - background-color: var(--surface-overlay) !important; - } - .lg\\:focus\\:surface-hover:focus { - background-color: var(--surface-hover) !important; - } - .lg\\:hover\\:surface-hover:hover { - background-color: var(--surface-hover) !important; - } - .lg\\:active\\:surface-hover:active { - background-color: var(--surface-hover) !important; - } - .lg\\:focus\\:surface-border:focus { - border-color: var(--surface-border) !important; - } - .lg\\:hover\\:surface-border:hover { - border-color: var(--surface-border) !important; - } - .lg\\:active\\:surface-border:active { - border-color: var(--surface-border) !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:text-primary { - color: var(--primary-color) !important; - } - .xl\\:bg-primary { - color: var(--primary-color-text) !important; - background-color: var(--primary-color) !important; - } - .xl\\:bg-primary-reverse { - color: var(--primary-color) !important; - background-color: var(--primary-color-text) !important; - } - .xl\\:bg-white { - background-color: #ffffff !important; - } - .xl\\:border-primary { - border-color: var(--primary-color) !important; - } - .xl\\:text-white { - color: #ffffff !important; - } - .xl\\:border-white { - border-color: #ffffff !important; - } - .xl\\:text-color { - color: var(--text-color) !important; - } - .xl\\:text-color-secondary { - color: var(--text-color-secondary) !important; - } - .xl\\:surface-ground { - background-color: var(--surface-ground) !important; - } - .xl\\:surface-section { - background-color: var(--surface-section) !important; - } - .xl\\:surface-card { - background-color: var(--surface-card) !important; - } - .xl\\:surface-overlay { - background-color: var(--surface-overlay) !important; - } - .xl\\:surface-hover { - background-color: var(--surface-hover) !important; - } - .xl\\:surface-border { - border-color: var(--surface-border) !important; - } - .xl\\:focus\\:text-primary:focus { - color: var(--primary-color) !important; - } - .xl\\:hover\\:text-primary:hover { - color: var(--primary-color) !important; - } - .xl\\:active\\:text-primary:active { - color: var(--primary-color) !important; - } - .xl\\:focus\\:bg-primary:focus { - color: var(--primary-color-text) !important; - background-color: var(--primary-color) !important; - } - .xl\\:hover\\:bg-primary:hover { - color: var(--primary-color-text) !important; - background-color: var(--primary-color) !important; - } - .xl\\:active\\:bg-primary:active { - color: var(--primary-color-text) !important; - background-color: var(--primary-color) !important; - } - .xl\\:focus\\:bg-primary-reverse:focus { - color: var(--primary-color) !important; - background-color: var(--primary-color-text) !important; - } - .xl\\:hover\\:bg-primary-reverse:hover { - color: var(--primary-color) !important; - background-color: var(--primary-color-text) !important; - } - .xl\\:active\\:bg-primary-reverse:active { - color: var(--primary-color) !important; - background-color: var(--primary-color-text) !important; - } - .xl\\:focus\\:bg-white:focus { - background-color: #ffffff !important; - } - .xl\\:hover\\:bg-white:hover { - background-color: #ffffff !important; - } - .xl\\:active\\:bg-white:active { - background-color: #ffffff !important; - } - .xl\\:focus\\:border-primary:focus { - border-color: var(--primary-color) !important; - } - .xl\\:hover\\:border-primary:hover { - border-color: var(--primary-color) !important; - } - .xl\\:active\\:border-primary:active { - border-color: var(--primary-color) !important; - } - .xl\\:focus\\:text-white:focus { - color: #ffffff !important; - } - .xl\\:hover\\:text-white:hover { - color: #ffffff !important; - } - .xl\\:active\\:text-white:active { - color: #ffffff !important; - } - .xl\\:focus\\:border-white:focus { - border-color: #ffffff !important; - } - .xl\\:hover\\:border-white:hover { - border-color: #ffffff !important; - } - .xl\\:active\\:border-white:active { - border-color: #ffffff !important; - } - .xl\\:focus\\:text-color:focus { - color: var(--text-color) !important; - } - .xl\\:hover\\:text-color:hover { - color: var(--text-color) !important; - } - .xl\\:active\\:text-color:active { - color: var(--text-color) !important; - } - .xl\\:focus\\:text-color-secondary:focus { - color: var(--text-color-secondary) !important; - } - .xl\\:hover\\:text-color-secondary:hover { - color: var(--text-color-secondary) !important; - } - .xl\\:active\\:text-color-secondary:active { - color: var(--text-color-secondary) !important; - } - .xl\\:focus\\:surface-ground:focus { - background-color: var(--surface-ground) !important; - } - .xl\\:hover\\:surface-ground:hover { - background-color: var(--surface-ground) !important; - } - .xl\\:active\\:surface-ground:active { - background-color: var(--surface-ground) !important; - } - .xl\\:focus\\:surface-section:focus { - background-color: var(--surface-section) !important; - } - .xl\\:hover\\:surface-section:hover { - background-color: var(--surface-section) !important; - } - .xl\\:active\\:surface-section:active { - background-color: var(--surface-section) !important; - } - .xl\\:focus\\:surface-card:focus { - background-color: var(--surface-card) !important; - } - .xl\\:hover\\:surface-card:hover { - background-color: var(--surface-card) !important; - } - .xl\\:active\\:surface-card:active { - background-color: var(--surface-card) !important; - } - .xl\\:focus\\:surface-overlay:focus { - background-color: var(--surface-overlay) !important; - } - .xl\\:hover\\:surface-overlay:hover { - background-color: var(--surface-overlay) !important; - } - .xl\\:active\\:surface-overlay:active { - background-color: var(--surface-overlay) !important; - } - .xl\\:focus\\:surface-hover:focus { - background-color: var(--surface-hover) !important; - } - .xl\\:hover\\:surface-hover:hover { - background-color: var(--surface-hover) !important; - } - .xl\\:active\\:surface-hover:active { - background-color: var(--surface-hover) !important; - } - .xl\\:focus\\:surface-border:focus { - border-color: var(--surface-border) !important; - } - .xl\\:hover\\:surface-border:hover { - border-color: var(--surface-border) !important; - } - .xl\\:active\\:surface-border:active { - border-color: var(--surface-border) !important; - } -} -.field { - margin-bottom: 1rem; -} - -.field > label { - display: inline-block; - margin-bottom: 0.5rem; -} - -.field.grid > label { - display: flex; - align-items: center; -} - -.field > small { - margin-top: 0.25rem; -} - -.field.grid, -.formgrid.grid { - margin-top: 0; -} - -.field.grid .col-fixed, -.formgrid.grid .col-fixed, -.field.grid .col, -.formgrid.grid .col, -.field.grid .col-1, -.formgrid.grid .col-1, -.field.grid .col-2, -.formgrid.grid .col-2, -.field.grid .col-3, -.formgrid.grid .col-3, -.field.grid .col-4, -.formgrid.grid .col-4, -.field.grid .col-5, -.formgrid.grid .col-5, -.field.grid .col-6, -.formgrid.grid .col-6, -.field.grid .col-7, -.formgrid.grid .col-7, -.field.grid .col-8, -.formgrid.grid .col-8, -.field.grid .col-9, -.formgrid.grid .col-9, -.field.grid .col-10, -.formgrid.grid .col-10, -.field.grid .col-11, -.formgrid.grid .col-11, -.field.grid .col-12, -.formgrid.grid .col-12 { - padding-top: 0; - padding-bottom: 0; -} - -.formgroup-inline { - display: flex; - flex-wrap: wrap; - align-items: flex-start; -} - -.formgroup-inline .field, -.formgroup-inline .field-checkbox, -.formgroup-inline .field-radiobutton { - margin-right: 1rem; -} - -.formgroup-inline .field > label, -.formgroup-inline .field-checkbox > label, -.formgroup-inline .field-radiobutton > label { - margin-right: 0.5rem; - margin-bottom: 0; -} - -.field-checkbox, -.field-radiobutton { - margin-bottom: 1rem; - display: flex; - align-items: center; -} - -.field-checkbox > label, -.field-radiobutton > label { - margin-left: 0.5rem; - line-height: 1; -} - -.hidden { - display: none !important; -} - -.block { - display: block !important; -} - -.inline { - display: inline !important; -} - -.inline-block { - display: inline-block !important; -} - -.flex { - display: flex !important; -} - -.inline-flex { - display: inline-flex !important; -} - -@media screen and (min-width: 576px) { - .sm\\:hidden { - display: none !important; - } - .sm\\:block { - display: block !important; - } - .sm\\:inline { - display: inline !important; - } - .sm\\:inline-block { - display: inline-block !important; - } - .sm\\:flex { - display: flex !important; - } - .sm\\:inline-flex { - display: inline-flex !important; - } -} -@media screen and (min-width: 768px) { - .md\\:hidden { - display: none !important; - } - .md\\:block { - display: block !important; - } - .md\\:inline { - display: inline !important; - } - .md\\:inline-block { - display: inline-block !important; - } - .md\\:flex { - display: flex !important; - } - .md\\:inline-flex { - display: inline-flex !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:hidden { - display: none !important; - } - .lg\\:block { - display: block !important; - } - .lg\\:inline { - display: inline !important; - } - .lg\\:inline-block { - display: inline-block !important; - } - .lg\\:flex { - display: flex !important; - } - .lg\\:inline-flex { - display: inline-flex !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:hidden { - display: none !important; - } - .xl\\:block { - display: block !important; - } - .xl\\:inline { - display: inline !important; - } - .xl\\:inline-block { - display: inline-block !important; - } - .xl\\:flex { - display: flex !important; - } - .xl\\:inline-flex { - display: inline-flex !important; - } -} -.text-center { - text-align: center !important; -} - -.text-justify { - text-align: justify !important; -} - -.text-left { - text-align: left !important; -} - -.text-right { - text-align: right !important; -} - -@media screen and (min-width: 576px) { - .sm\\:text-center { - text-align: center !important; - } - .sm\\:text-justify { - text-align: justify !important; - } - .sm\\:text-left { - text-align: left !important; - } - .sm\\:text-right { - text-align: right !important; - } -} -@media screen and (min-width: 768px) { - .md\\:text-center { - text-align: center !important; - } - .md\\:text-justify { - text-align: justify !important; - } - .md\\:text-left { - text-align: left !important; - } - .md\\:text-right { - text-align: right !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:text-center { - text-align: center !important; - } - .lg\\:text-justify { - text-align: justify !important; - } - .lg\\:text-left { - text-align: left !important; - } - .lg\\:text-right { - text-align: right !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:text-center { - text-align: center !important; - } - .xl\\:text-justify { - text-align: justify !important; - } - .xl\\:text-left { - text-align: left !important; - } - .xl\\:text-right { - text-align: right !important; - } -} -.underline { - text-decoration: underline !important; -} - -.line-through { - text-decoration: line-through !important; -} - -.no-underline { - text-decoration: none !important; -} - -.focus\\:underline:focus { - text-decoration: underline !important; -} - -.hover\\:underline:hover { - text-decoration: underline !important; -} - -.active\\:underline:active { - text-decoration: underline !important; -} - -.focus\\:line-through:focus { - text-decoration: line-through !important; -} - -.hover\\:line-through:hover { - text-decoration: line-through !important; -} - -.active\\:line-through:active { - text-decoration: line-through !important; -} - -.focus\\:no-underline:focus { - text-decoration: none !important; -} - -.hover\\:no-underline:hover { - text-decoration: none !important; -} - -.active\\:no-underline:active { - text-decoration: none !important; -} - -.lowercase { - text-transform: lowercase !important; -} - -.uppercase { - text-transform: uppercase !important; -} - -.capitalize { - text-transform: capitalize !important; -} - -.text-overflow-clip { - text-overflow: clip !important; -} - -.text-overflow-ellipsis { - text-overflow: ellipsis !important; -} - -@media screen and (min-width: 576px) { - .sm\\:text-overflow-clip { - text-overflow: clip !important; - } - .sm\\:text-overflow-ellipsis { - text-overflow: ellipsis !important; - } -} -@media screen and (min-width: 768px) { - .md\\:text-overflow-clip { - text-overflow: clip !important; - } - .md\\:text-overflow-ellipsis { - text-overflow: ellipsis !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:text-overflow-clip { - text-overflow: clip !important; - } - .lg\\:text-overflow-ellipsis { - text-overflow: ellipsis !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:text-overflow-clip { - text-overflow: clip !important; - } - .xl\\:text-overflow-ellipsis { - text-overflow: ellipsis !important; - } -} -.font-light { - font-weight: 300 !important; -} - -.font-normal { - font-weight: 400 !important; -} - -.font-medium { - font-weight: 500 !important; -} - -.font-semibold { - font-weight: 600 !important; -} - -.font-bold { - font-weight: 700 !important; -} - -@media screen and (min-width: 576px) { - .sm\\:font-light { - font-weight: 300 !important; - } - .sm\\:font-normal { - font-weight: 400 !important; - } - .sm\\:font-medium { - font-weight: 500 !important; - } - .sm\\:font-semibold { - font-weight: 600 !important; - } - .sm\\:font-bold { - font-weight: 700 !important; - } -} -@media screen and (min-width: 768px) { - .md\\:font-light { - font-weight: 300 !important; - } - .md\\:font-normal { - font-weight: 400 !important; - } - .md\\:font-medium { - font-weight: 500 !important; - } - .md\\:font-semibold { - font-weight: 600 !important; - } - .md\\:font-bold { - font-weight: 700 !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:font-light { - font-weight: 300 !important; - } - .lg\\:font-normal { - font-weight: 400 !important; - } - .lg\\:font-medium { - font-weight: 500 !important; - } - .lg\\:font-semibold { - font-weight: 600 !important; - } - .lg\\:font-bold { - font-weight: 700 !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:font-light { - font-weight: 300 !important; - } - .xl\\:font-normal { - font-weight: 400 !important; - } - .xl\\:font-medium { - font-weight: 500 !important; - } - .xl\\:font-semibold { - font-weight: 600 !important; - } - .xl\\:font-bold { - font-weight: 700 !important; - } -} -.font-italic { - font-style: italic !important; -} - -.text-xs { - font-size: 0.75rem !important; -} - -.text-sm { - font-size: 0.875rem !important; -} - -.text-base { - font-size: 1rem !important; -} - -.text-lg { - font-size: 1.125rem !important; -} - -.text-xl { - font-size: 1.25rem !important; -} - -.text-2xl { - font-size: 1.5rem !important; -} - -.text-3xl { - font-size: 1.75rem !important; -} - -.text-4xl { - font-size: 2rem !important; -} - -.text-5xl { - font-size: 2.5rem !important; -} - -.text-6xl { - font-size: 3rem !important; -} - -.text-7xl { - font-size: 4rem !important; -} - -.text-8xl { - font-size: 6rem !important; -} - -@media screen and (min-width: 576px) { - .sm\\:text-xs { - font-size: 0.75rem !important; - } - .sm\\:text-sm { - font-size: 0.875rem !important; - } - .sm\\:text-base { - font-size: 1rem !important; - } - .sm\\:text-lg { - font-size: 1.125rem !important; - } - .sm\\:text-xl { - font-size: 1.25rem !important; - } - .sm\\:text-2xl { - font-size: 1.5rem !important; - } - .sm\\:text-3xl { - font-size: 1.75rem !important; - } - .sm\\:text-4xl { - font-size: 2rem !important; - } - .sm\\:text-5xl { - font-size: 2.5rem !important; - } - .sm\\:text-6xl { - font-size: 3rem !important; - } - .sm\\:text-7xl { - font-size: 4rem !important; - } - .sm\\:text-8xl { - font-size: 6rem !important; - } -} -@media screen and (min-width: 768px) { - .md\\:text-xs { - font-size: 0.75rem !important; - } - .md\\:text-sm { - font-size: 0.875rem !important; - } - .md\\:text-base { - font-size: 1rem !important; - } - .md\\:text-lg { - font-size: 1.125rem !important; - } - .md\\:text-xl { - font-size: 1.25rem !important; - } - .md\\:text-2xl { - font-size: 1.5rem !important; - } - .md\\:text-3xl { - font-size: 1.75rem !important; - } - .md\\:text-4xl { - font-size: 2rem !important; - } - .md\\:text-5xl { - font-size: 2.5rem !important; - } - .md\\:text-6xl { - font-size: 3rem !important; - } - .md\\:text-7xl { - font-size: 4rem !important; - } - .md\\:text-8xl { - font-size: 6rem !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:text-xs { - font-size: 0.75rem !important; - } - .lg\\:text-sm { - font-size: 0.875rem !important; - } - .lg\\:text-base { - font-size: 1rem !important; - } - .lg\\:text-lg { - font-size: 1.125rem !important; - } - .lg\\:text-xl { - font-size: 1.25rem !important; - } - .lg\\:text-2xl { - font-size: 1.5rem !important; - } - .lg\\:text-3xl { - font-size: 1.75rem !important; - } - .lg\\:text-4xl { - font-size: 2rem !important; - } - .lg\\:text-5xl { - font-size: 2.5rem !important; - } - .lg\\:text-6xl { - font-size: 3rem !important; - } - .lg\\:text-7xl { - font-size: 4rem !important; - } - .lg\\:text-8xl { - font-size: 6rem !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:text-xs { - font-size: 0.75rem !important; - } - .xl\\:text-sm { - font-size: 0.875rem !important; - } - .xl\\:text-base { - font-size: 1rem !important; - } - .xl\\:text-lg { - font-size: 1.125rem !important; - } - .xl\\:text-xl { - font-size: 1.25rem !important; - } - .xl\\:text-2xl { - font-size: 1.5rem !important; - } - .xl\\:text-3xl { - font-size: 1.75rem !important; - } - .xl\\:text-4xl { - font-size: 2rem !important; - } - .xl\\:text-5xl { - font-size: 2.5rem !important; - } - .xl\\:text-6xl { - font-size: 3rem !important; - } - .xl\\:text-7xl { - font-size: 4rem !important; - } - .xl\\:text-8xl { - font-size: 6rem !important; - } -} -.line-height-1 { - line-height: 1 !important; -} - -.line-height-2 { - line-height: 1.25 !important; -} - -.line-height-3 { - line-height: 1.5 !important; -} - -.line-height-4 { - line-height: 2 !important; -} - -.white-space-normal { - white-space: normal !important; -} - -.white-space-nowrap { - white-space: nowrap !important; -} - -.vertical-align-baseline { - vertical-align: baseline !important; -} - -.vertical-align-top { - vertical-align: top !important; -} - -.vertical-align-middle { - vertical-align: middle !important; -} - -.vertical-align-bottom { - vertical-align: bottom !important; -} - -.vertical-align-text-top { - vertical-align: text-top !important; -} - -.vertical-align-text-bottom { - vertical-align: text-bottom !important; -} - -.vertical-align-sub { - vertical-align: sub !important; -} - -.vertical-align-super { - vertical-align: super !important; -} - -@media screen and (min-width: 576px) { - .sm\\:vertical-align-baseline { - vertical-align: baseline !important; - } - .sm\\:vertical-align-top { - vertical-align: top !important; - } - .sm\\:vertical-align-middle { - vertical-align: middle !important; - } - .sm\\:vertical-align-bottom { - vertical-align: bottom !important; - } - .sm\\:vertical-align-text-top { - vertical-align: text-top !important; - } - .sm\\:vertical-align-text-bottom { - vertical-align: text-bottom !important; - } - .sm\\:vertical-align-sub { - vertical-align: sub !important; - } - .sm\\:vertical-align-super { - vertical-align: super !important; - } -} -@media screen and (min-width: 768px) { - .md\\:vertical-align-baseline { - vertical-align: baseline !important; - } - .md\\:vertical-align-top { - vertical-align: top !important; - } - .md\\:vertical-align-middle { - vertical-align: middle !important; - } - .md\\:vertical-align-bottom { - vertical-align: bottom !important; - } - .md\\:vertical-align-text-top { - vertical-align: text-top !important; - } - .md\\:vertical-align-text-bottom { - vertical-align: text-bottom !important; - } - .md\\:vertical-align-sub { - vertical-align: sub !important; - } - .md\\:vertical-align-super { - vertical-align: super !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:vertical-align-baseline { - vertical-align: baseline !important; - } - .lg\\:vertical-align-top { - vertical-align: top !important; - } - .lg\\:vertical-align-middle { - vertical-align: middle !important; - } - .lg\\:vertical-align-bottom { - vertical-align: bottom !important; - } - .lg\\:vertical-align-text-top { - vertical-align: text-top !important; - } - .lg\\:vertical-align-text-bottom { - vertical-align: text-bottom !important; - } - .lg\\:vertical-align-sub { - vertical-align: sub !important; - } - .lg\\:vertical-align-super { - vertical-align: super !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:vertical-align-baseline { - vertical-align: baseline !important; - } - .xl\\:vertical-align-top { - vertical-align: top !important; - } - .xl\\:vertical-align-middle { - vertical-align: middle !important; - } - .xl\\:vertical-align-bottom { - vertical-align: bottom !important; - } - .xl\\:vertical-align-text-top { - vertical-align: text-top !important; - } - .xl\\:vertical-align-text-bottom { - vertical-align: text-bottom !important; - } - .xl\\:vertical-align-sub { - vertical-align: sub !important; - } - .xl\\:vertical-align-super { - vertical-align: super !important; - } -} -.flex-row { - flex-direction: row !important; -} - -.flex-row-reverse { - flex-direction: row-reverse !important; -} - -.flex-column { - flex-direction: column !important; -} - -.flex-column-reverse { - flex-direction: column-reverse !important; -} - -@media screen and (min-width: 576px) { - .sm\\:flex-row { - flex-direction: row !important; - } - .sm\\:flex-row-reverse { - flex-direction: row-reverse !important; - } - .sm\\:flex-column { - flex-direction: column !important; - } - .sm\\:flex-column-reverse { - flex-direction: column-reverse !important; - } -} -@media screen and (min-width: 768px) { - .md\\:flex-row { - flex-direction: row !important; - } - .md\\:flex-row-reverse { - flex-direction: row-reverse !important; - } - .md\\:flex-column { - flex-direction: column !important; - } - .md\\:flex-column-reverse { - flex-direction: column-reverse !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:flex-row { - flex-direction: row !important; - } - .lg\\:flex-row-reverse { - flex-direction: row-reverse !important; - } - .lg\\:flex-column { - flex-direction: column !important; - } - .lg\\:flex-column-reverse { - flex-direction: column-reverse !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:flex-row { - flex-direction: row !important; - } - .xl\\:flex-row-reverse { - flex-direction: row-reverse !important; - } - .xl\\:flex-column { - flex-direction: column !important; - } - .xl\\:flex-column-reverse { - flex-direction: column-reverse !important; - } -} -.flex-wrap { - flex-wrap: wrap !important; -} - -.flex-wrap-reverse { - flex-wrap: wrap-reverse !important; -} - -.flex-nowrap { - flex-wrap: nowrap !important; -} - -@media screen and (min-width: 576px) { - .sm\\:flex-wrap { - flex-wrap: wrap !important; - } - .sm\\:flex-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - .sm\\:flex-nowrap { - flex-wrap: nowrap !important; - } -} -@media screen and (min-width: 768px) { - .md\\:flex-wrap { - flex-wrap: wrap !important; - } - .md\\:flex-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - .md\\:flex-nowrap { - flex-wrap: nowrap !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:flex-wrap { - flex-wrap: wrap !important; - } - .lg\\:flex-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - .lg\\:flex-nowrap { - flex-wrap: nowrap !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:flex-wrap { - flex-wrap: wrap !important; - } - .xl\\:flex-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - .xl\\:flex-nowrap { - flex-wrap: nowrap !important; - } -} -.justify-content-start { - justify-content: flex-start !important; -} - -.justify-content-end { - justify-content: flex-end !important; -} - -.justify-content-center { - justify-content: center !important; -} - -.justify-content-between { - justify-content: space-between !important; -} - -.justify-content-around { - justify-content: space-around !important; -} - -.justify-content-evenly { - justify-content: space-evenly !important; -} - -@media screen and (min-width: 576px) { - .sm\\:justify-content-start { - justify-content: flex-start !important; - } - .sm\\:justify-content-end { - justify-content: flex-end !important; - } - .sm\\:justify-content-center { - justify-content: center !important; - } - .sm\\:justify-content-between { - justify-content: space-between !important; - } - .sm\\:justify-content-around { - justify-content: space-around !important; - } - .sm\\:justify-content-evenly { - justify-content: space-evenly !important; - } -} -@media screen and (min-width: 768px) { - .md\\:justify-content-start { - justify-content: flex-start !important; - } - .md\\:justify-content-end { - justify-content: flex-end !important; - } - .md\\:justify-content-center { - justify-content: center !important; - } - .md\\:justify-content-between { - justify-content: space-between !important; - } - .md\\:justify-content-around { - justify-content: space-around !important; - } - .md\\:justify-content-evenly { - justify-content: space-evenly !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:justify-content-start { - justify-content: flex-start !important; - } - .lg\\:justify-content-end { - justify-content: flex-end !important; - } - .lg\\:justify-content-center { - justify-content: center !important; - } - .lg\\:justify-content-between { - justify-content: space-between !important; - } - .lg\\:justify-content-around { - justify-content: space-around !important; - } - .lg\\:justify-content-evenly { - justify-content: space-evenly !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:justify-content-start { - justify-content: flex-start !important; - } - .xl\\:justify-content-end { - justify-content: flex-end !important; - } - .xl\\:justify-content-center { - justify-content: center !important; - } - .xl\\:justify-content-between { - justify-content: space-between !important; - } - .xl\\:justify-content-around { - justify-content: space-around !important; - } - .xl\\:justify-content-evenly { - justify-content: space-evenly !important; - } -} -.align-content-start { - align-content: flex-start !important; -} - -.align-content-end { - align-content: flex-end !important; -} - -.align-content-center { - align-content: center !important; -} - -.align-content-between { - align-content: space-between !important; -} - -.align-content-around { - align-content: space-around !important; -} - -.align-content-evenly { - align-content: space-evenly !important; -} - -@media screen and (min-width: 576px) { - .sm\\:align-content-start { - align-content: flex-start !important; - } - .sm\\:align-content-end { - align-content: flex-end !important; - } - .sm\\:align-content-center { - align-content: center !important; - } - .sm\\:align-content-between { - align-content: space-between !important; - } - .sm\\:align-content-around { - align-content: space-around !important; - } - .sm\\:align-content-evenly { - align-content: space-evenly !important; - } -} -@media screen and (min-width: 768px) { - .md\\:align-content-start { - align-content: flex-start !important; - } - .md\\:align-content-end { - align-content: flex-end !important; - } - .md\\:align-content-center { - align-content: center !important; - } - .md\\:align-content-between { - align-content: space-between !important; - } - .md\\:align-content-around { - align-content: space-around !important; - } - .md\\:align-content-evenly { - align-content: space-evenly !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:align-content-start { - align-content: flex-start !important; - } - .lg\\:align-content-end { - align-content: flex-end !important; - } - .lg\\:align-content-center { - align-content: center !important; - } - .lg\\:align-content-between { - align-content: space-between !important; - } - .lg\\:align-content-around { - align-content: space-around !important; - } - .lg\\:align-content-evenly { - align-content: space-evenly !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:align-content-start { - align-content: flex-start !important; - } - .xl\\:align-content-end { - align-content: flex-end !important; - } - .xl\\:align-content-center { - align-content: center !important; - } - .xl\\:align-content-between { - align-content: space-between !important; - } - .xl\\:align-content-around { - align-content: space-around !important; - } - .xl\\:align-content-evenly { - align-content: space-evenly !important; - } -} -.align-items-stretch { - align-items: stretch !important; -} - -.align-items-start { - align-items: flex-start !important; -} - -.align-items-center { - align-items: center !important; -} - -.align-items-end { - align-items: flex-end !important; -} - -.align-items-baseline { - align-items: baseline !important; -} - -@media screen and (min-width: 576px) { - .sm\\:align-items-stretch { - align-items: stretch !important; - } - .sm\\:align-items-start { - align-items: flex-start !important; - } - .sm\\:align-items-center { - align-items: center !important; - } - .sm\\:align-items-end { - align-items: flex-end !important; - } - .sm\\:align-items-baseline { - align-items: baseline !important; - } -} -@media screen and (min-width: 768px) { - .md\\:align-items-stretch { - align-items: stretch !important; - } - .md\\:align-items-start { - align-items: flex-start !important; - } - .md\\:align-items-center { - align-items: center !important; - } - .md\\:align-items-end { - align-items: flex-end !important; - } - .md\\:align-items-baseline { - align-items: baseline !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:align-items-stretch { - align-items: stretch !important; - } - .lg\\:align-items-start { - align-items: flex-start !important; - } - .lg\\:align-items-center { - align-items: center !important; - } - .lg\\:align-items-end { - align-items: flex-end !important; - } - .lg\\:align-items-baseline { - align-items: baseline !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:align-items-stretch { - align-items: stretch !important; - } - .xl\\:align-items-start { - align-items: flex-start !important; - } - .xl\\:align-items-center { - align-items: center !important; - } - .xl\\:align-items-end { - align-items: flex-end !important; - } - .xl\\:align-items-baseline { - align-items: baseline !important; - } -} -.align-self-auto { - align-self: auto !important; -} - -.align-self-start { - align-self: flex-start !important; -} - -.align-self-end { - align-self: flex-end !important; -} - -.align-self-center { - align-self: center !important; -} - -.align-self-stretch { - align-self: stretch !important; -} - -.align-self-baseline { - align-self: baseline !important; -} - -@media screen and (min-width: 576px) { - .sm\\:align-self-auto { - align-self: auto !important; - } - .sm\\:align-self-start { - align-self: flex-start !important; - } - .sm\\:align-self-end { - align-self: flex-end !important; - } - .sm\\:align-self-center { - align-self: center !important; - } - .sm\\:align-self-stretch { - align-self: stretch !important; - } - .sm\\:align-self-baseline { - align-self: baseline !important; - } -} -@media screen and (min-width: 768px) { - .md\\:align-self-auto { - align-self: auto !important; - } - .md\\:align-self-start { - align-self: flex-start !important; - } - .md\\:align-self-end { - align-self: flex-end !important; - } - .md\\:align-self-center { - align-self: center !important; - } - .md\\:align-self-stretch { - align-self: stretch !important; - } - .md\\:align-self-baseline { - align-self: baseline !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:align-self-auto { - align-self: auto !important; - } - .lg\\:align-self-start { - align-self: flex-start !important; - } - .lg\\:align-self-end { - align-self: flex-end !important; - } - .lg\\:align-self-center { - align-self: center !important; - } - .lg\\:align-self-stretch { - align-self: stretch !important; - } - .lg\\:align-self-baseline { - align-self: baseline !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:align-self-auto { - align-self: auto !important; - } - .xl\\:align-self-start { - align-self: flex-start !important; - } - .xl\\:align-self-end { - align-self: flex-end !important; - } - .xl\\:align-self-center { - align-self: center !important; - } - .xl\\:align-self-stretch { - align-self: stretch !important; - } - .xl\\:align-self-baseline { - align-self: baseline !important; - } -} -.flex-order-0 { - order: 0 !important; -} - -.flex-order-1 { - order: 1 !important; -} - -.flex-order-2 { - order: 2 !important; -} - -.flex-order-3 { - order: 3 !important; -} - -.flex-order-4 { - order: 4 !important; -} - -.flex-order-5 { - order: 5 !important; -} - -.flex-order-6 { - order: 6 !important; -} - -@media screen and (min-width: 576px) { - .sm\\:flex-order-0 { - order: 0 !important; - } - .sm\\:flex-order-1 { - order: 1 !important; - } - .sm\\:flex-order-2 { - order: 2 !important; - } - .sm\\:flex-order-3 { - order: 3 !important; - } - .sm\\:flex-order-4 { - order: 4 !important; - } - .sm\\:flex-order-5 { - order: 5 !important; - } - .sm\\:flex-order-6 { - order: 6 !important; - } -} -@media screen and (min-width: 768px) { - .md\\:flex-order-0 { - order: 0 !important; - } - .md\\:flex-order-1 { - order: 1 !important; - } - .md\\:flex-order-2 { - order: 2 !important; - } - .md\\:flex-order-3 { - order: 3 !important; - } - .md\\:flex-order-4 { - order: 4 !important; - } - .md\\:flex-order-5 { - order: 5 !important; - } - .md\\:flex-order-6 { - order: 6 !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:flex-order-0 { - order: 0 !important; - } - .lg\\:flex-order-1 { - order: 1 !important; - } - .lg\\:flex-order-2 { - order: 2 !important; - } - .lg\\:flex-order-3 { - order: 3 !important; - } - .lg\\:flex-order-4 { - order: 4 !important; - } - .lg\\:flex-order-5 { - order: 5 !important; - } - .lg\\:flex-order-6 { - order: 6 !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:flex-order-0 { - order: 0 !important; - } - .xl\\:flex-order-1 { - order: 1 !important; - } - .xl\\:flex-order-2 { - order: 2 !important; - } - .xl\\:flex-order-3 { - order: 3 !important; - } - .xl\\:flex-order-4 { - order: 4 !important; - } - .xl\\:flex-order-5 { - order: 5 !important; - } - .xl\\:flex-order-6 { - order: 6 !important; - } -} -.flex-1 { - flex: 1 1 0% !important; -} - -.flex-auto { - flex: 1 1 auto !important; -} - -.flex-initial { - flex: 0 1 auto !important; -} - -.flex-none { - flex: none !important; -} - -@media screen and (min-width: 576px) { - .sm\\:flex-1 { - flex: 1 1 0% !important; - } - .sm\\:flex-auto { - flex: 1 1 auto !important; - } - .sm\\:flex-initial { - flex: 0 1 auto !important; - } - .sm\\:flex-none { - flex: none !important; - } -} -@media screen and (min-width: 768px) { - .md\\:flex-1 { - flex: 1 1 0% !important; - } - .md\\:flex-auto { - flex: 1 1 auto !important; - } - .md\\:flex-initial { - flex: 0 1 auto !important; - } - .md\\:flex-none { - flex: none !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:flex-1 { - flex: 1 1 0% !important; - } - .lg\\:flex-auto { - flex: 1 1 auto !important; - } - .lg\\:flex-initial { - flex: 0 1 auto !important; - } - .lg\\:flex-none { - flex: none !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:flex-1 { - flex: 1 1 0% !important; - } - .xl\\:flex-auto { - flex: 1 1 auto !important; - } - .xl\\:flex-initial { - flex: 0 1 auto !important; - } - .xl\\:flex-none { - flex: none !important; - } -} -.flex-grow-0 { - flex-grow: 0 !important; -} - -.flex-grow-1 { - flex-grow: 1 !important; -} - -@media screen and (min-width: 576px) { - .sm\\:flex-grow-0 { - flex-grow: 0 !important; - } - .sm\\:flex-grow-1 { - flex-grow: 1 !important; - } -} -@media screen and (min-width: 768px) { - .md\\:flex-grow-0 { - flex-grow: 0 !important; - } - .md\\:flex-grow-1 { - flex-grow: 1 !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:flex-grow-0 { - flex-grow: 0 !important; - } - .lg\\:flex-grow-1 { - flex-grow: 1 !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:flex-grow-0 { - flex-grow: 0 !important; - } - .xl\\:flex-grow-1 { - flex-grow: 1 !important; - } -} -.flex-shrink-0 { - flex-shrink: 0 !important; -} - -.flex-shrink-1 { - flex-shrink: 1 !important; -} - -@media screen and (min-width: 576px) { - .sm\\:flex-shrink-0 { - flex-shrink: 0 !important; - } - .sm\\:flex-shrink-1 { - flex-shrink: 1 !important; - } -} -@media screen and (min-width: 768px) { - .md\\:flex-shrink-0 { - flex-shrink: 0 !important; - } - .md\\:flex-shrink-1 { - flex-shrink: 1 !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:flex-shrink-0 { - flex-shrink: 0 !important; - } - .lg\\:flex-shrink-1 { - flex-shrink: 1 !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:flex-shrink-0 { - flex-shrink: 0 !important; - } - .xl\\:flex-shrink-1 { - flex-shrink: 1 !important; - } -} -.gap-0 { - gap: 0rem !important; -} - -.gap-1 { - gap: 0.25rem !important; -} - -.gap-2 { - gap: 0.5rem !important; -} - -.gap-3 { - gap: 1rem !important; -} - -.gap-4 { - gap: 1.5rem !important; -} - -.gap-5 { - gap: 2rem !important; -} - -.gap-6 { - gap: 3rem !important; -} - -.gap-7 { - gap: 4rem !important; -} - -.gap-8 { - gap: 5rem !important; -} - -.row-gap-0 { - row-gap: 0rem !important; -} - -.row-gap-1 { - row-gap: 0.25rem !important; -} - -.row-gap-2 { - row-gap: 0.5rem !important; -} - -.row-gap-3 { - row-gap: 1rem !important; -} - -.row-gap-4 { - row-gap: 1.5rem !important; -} - -.row-gap-5 { - row-gap: 2rem !important; -} - -.row-gap-6 { - row-gap: 3rem !important; -} - -.row-gap-7 { - row-gap: 4rem !important; -} - -.row-gap-8 { - row-gap: 5rem !important; -} - -.column-gap-0 { - column-gap: 0rem !important; -} - -.column-gap-1 { - column-gap: 0.25rem !important; -} - -.column-gap-2 { - column-gap: 0.5rem !important; -} - -.column-gap-3 { - column-gap: 1rem !important; -} - -.column-gap-4 { - column-gap: 1.5rem !important; -} - -.column-gap-5 { - column-gap: 2rem !important; -} - -.column-gap-6 { - column-gap: 3rem !important; -} - -.column-gap-7 { - column-gap: 4rem !important; -} - -.column-gap-8 { - column-gap: 5rem !important; -} - -@media screen and (min-width: 576px) { - .sm\\:gap-0 { - gap: 0rem !important; - } - .sm\\:gap-1 { - gap: 0.25rem !important; - } - .sm\\:gap-2 { - gap: 0.5rem !important; - } - .sm\\:gap-3 { - gap: 1rem !important; - } - .sm\\:gap-4 { - gap: 1.5rem !important; - } - .sm\\:gap-5 { - gap: 2rem !important; - } - .sm\\:gap-6 { - gap: 3rem !important; - } - .sm\\:gap-7 { - gap: 4rem !important; - } - .sm\\:gap-8 { - gap: 5rem !important; - } - .sm\\:row-gap-0 { - row-gap: 0rem !important; - } - .sm\\:row-gap-1 { - row-gap: 0.25rem !important; - } - .sm\\:row-gap-2 { - row-gap: 0.5rem !important; - } - .sm\\:row-gap-3 { - row-gap: 1rem !important; - } - .sm\\:row-gap-4 { - row-gap: 1.5rem !important; - } - .sm\\:row-gap-5 { - row-gap: 2rem !important; - } - .sm\\:row-gap-6 { - row-gap: 3rem !important; - } - .sm\\:row-gap-7 { - row-gap: 4rem !important; - } - .sm\\:row-gap-8 { - row-gap: 5rem !important; - } - .sm\\:column-gap-0 { - column-gap: 0rem !important; - } - .sm\\:column-gap-1 { - column-gap: 0.25rem !important; - } - .sm\\:column-gap-2 { - column-gap: 0.5rem !important; - } - .sm\\:column-gap-3 { - column-gap: 1rem !important; - } - .sm\\:column-gap-4 { - column-gap: 1.5rem !important; - } - .sm\\:column-gap-5 { - column-gap: 2rem !important; - } - .sm\\:column-gap-6 { - column-gap: 3rem !important; - } - .sm\\:column-gap-7 { - column-gap: 4rem !important; - } - .sm\\:column-gap-8 { - column-gap: 5rem !important; - } -} -@media screen and (min-width: 768px) { - .md\\:gap-0 { - gap: 0rem !important; - } - .md\\:gap-1 { - gap: 0.25rem !important; - } - .md\\:gap-2 { - gap: 0.5rem !important; - } - .md\\:gap-3 { - gap: 1rem !important; - } - .md\\:gap-4 { - gap: 1.5rem !important; - } - .md\\:gap-5 { - gap: 2rem !important; - } - .md\\:gap-6 { - gap: 3rem !important; - } - .md\\:gap-7 { - gap: 4rem !important; - } - .md\\:gap-8 { - gap: 5rem !important; - } - .md\\:row-gap-0 { - row-gap: 0rem !important; - } - .md\\:row-gap-1 { - row-gap: 0.25rem !important; - } - .md\\:row-gap-2 { - row-gap: 0.5rem !important; - } - .md\\:row-gap-3 { - row-gap: 1rem !important; - } - .md\\:row-gap-4 { - row-gap: 1.5rem !important; - } - .md\\:row-gap-5 { - row-gap: 2rem !important; - } - .md\\:row-gap-6 { - row-gap: 3rem !important; - } - .md\\:row-gap-7 { - row-gap: 4rem !important; - } - .md\\:row-gap-8 { - row-gap: 5rem !important; - } - .md\\:column-gap-0 { - column-gap: 0rem !important; - } - .md\\:column-gap-1 { - column-gap: 0.25rem !important; - } - .md\\:column-gap-2 { - column-gap: 0.5rem !important; - } - .md\\:column-gap-3 { - column-gap: 1rem !important; - } - .md\\:column-gap-4 { - column-gap: 1.5rem !important; - } - .md\\:column-gap-5 { - column-gap: 2rem !important; - } - .md\\:column-gap-6 { - column-gap: 3rem !important; - } - .md\\:column-gap-7 { - column-gap: 4rem !important; - } - .md\\:column-gap-8 { - column-gap: 5rem !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:gap-0 { - gap: 0rem !important; - } - .lg\\:gap-1 { - gap: 0.25rem !important; - } - .lg\\:gap-2 { - gap: 0.5rem !important; - } - .lg\\:gap-3 { - gap: 1rem !important; - } - .lg\\:gap-4 { - gap: 1.5rem !important; - } - .lg\\:gap-5 { - gap: 2rem !important; - } - .lg\\:gap-6 { - gap: 3rem !important; - } - .lg\\:gap-7 { - gap: 4rem !important; - } - .lg\\:gap-8 { - gap: 5rem !important; - } - .lg\\:row-gap-0 { - row-gap: 0rem !important; - } - .lg\\:row-gap-1 { - row-gap: 0.25rem !important; - } - .lg\\:row-gap-2 { - row-gap: 0.5rem !important; - } - .lg\\:row-gap-3 { - row-gap: 1rem !important; - } - .lg\\:row-gap-4 { - row-gap: 1.5rem !important; - } - .lg\\:row-gap-5 { - row-gap: 2rem !important; - } - .lg\\:row-gap-6 { - row-gap: 3rem !important; - } - .lg\\:row-gap-7 { - row-gap: 4rem !important; - } - .lg\\:row-gap-8 { - row-gap: 5rem !important; - } - .lg\\:column-gap-0 { - column-gap: 0rem !important; - } - .lg\\:column-gap-1 { - column-gap: 0.25rem !important; - } - .lg\\:column-gap-2 { - column-gap: 0.5rem !important; - } - .lg\\:column-gap-3 { - column-gap: 1rem !important; - } - .lg\\:column-gap-4 { - column-gap: 1.5rem !important; - } - .lg\\:column-gap-5 { - column-gap: 2rem !important; - } - .lg\\:column-gap-6 { - column-gap: 3rem !important; - } - .lg\\:column-gap-7 { - column-gap: 4rem !important; - } - .lg\\:column-gap-8 { - column-gap: 5rem !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:gap-0 { - gap: 0rem !important; - } - .xl\\:gap-1 { - gap: 0.25rem !important; - } - .xl\\:gap-2 { - gap: 0.5rem !important; - } - .xl\\:gap-3 { - gap: 1rem !important; - } - .xl\\:gap-4 { - gap: 1.5rem !important; - } - .xl\\:gap-5 { - gap: 2rem !important; - } - .xl\\:gap-6 { - gap: 3rem !important; - } - .xl\\:gap-7 { - gap: 4rem !important; - } - .xl\\:gap-8 { - gap: 5rem !important; - } - .xl\\:row-gap-0 { - row-gap: 0rem !important; - } - .xl\\:row-gap-1 { - row-gap: 0.25rem !important; - } - .xl\\:row-gap-2 { - row-gap: 0.5rem !important; - } - .xl\\:row-gap-3 { - row-gap: 1rem !important; - } - .xl\\:row-gap-4 { - row-gap: 1.5rem !important; - } - .xl\\:row-gap-5 { - row-gap: 2rem !important; - } - .xl\\:row-gap-6 { - row-gap: 3rem !important; - } - .xl\\:row-gap-7 { - row-gap: 4rem !important; - } - .xl\\:row-gap-8 { - row-gap: 5rem !important; - } - .xl\\:column-gap-0 { - column-gap: 0rem !important; - } - .xl\\:column-gap-1 { - column-gap: 0.25rem !important; - } - .xl\\:column-gap-2 { - column-gap: 0.5rem !important; - } - .xl\\:column-gap-3 { - column-gap: 1rem !important; - } - .xl\\:column-gap-4 { - column-gap: 1.5rem !important; - } - .xl\\:column-gap-5 { - column-gap: 2rem !important; - } - .xl\\:column-gap-6 { - column-gap: 3rem !important; - } - .xl\\:column-gap-7 { - column-gap: 4rem !important; - } - .xl\\:column-gap-8 { - column-gap: 5rem !important; - } -} -.p-0 { - padding: 0rem !important; -} - -.p-1 { - padding: 0.25rem !important; -} - -.p-2 { - padding: 0.5rem !important; -} - -.p-3 { - padding: 1rem !important; -} - -.p-4 { - padding: 1.5rem !important; -} - -.p-5 { - padding: 2rem !important; -} - -.p-6 { - padding: 3rem !important; -} - -.p-7 { - padding: 4rem !important; -} - -.p-8 { - padding: 5rem !important; -} - -.pt-0 { - padding-top: 0rem !important; -} - -.pt-1 { - padding-top: 0.25rem !important; -} - -.pt-2 { - padding-top: 0.5rem !important; -} - -.pt-3 { - padding-top: 1rem !important; -} - -.pt-4 { - padding-top: 1.5rem !important; -} - -.pt-5 { - padding-top: 2rem !important; -} - -.pt-6 { - padding-top: 3rem !important; -} - -.pt-7 { - padding-top: 4rem !important; -} - -.pt-8 { - padding-top: 5rem !important; -} - -.pr-0 { - padding-right: 0rem !important; -} - -.pr-1 { - padding-right: 0.25rem !important; -} - -.pr-2 { - padding-right: 0.5rem !important; -} - -.pr-3 { - padding-right: 1rem !important; -} - -.pr-4 { - padding-right: 1.5rem !important; -} - -.pr-5 { - padding-right: 2rem !important; -} - -.pr-6 { - padding-right: 3rem !important; -} - -.pr-7 { - padding-right: 4rem !important; -} - -.pr-8 { - padding-right: 5rem !important; -} - -.pl-0 { - padding-left: 0rem !important; -} - -.pl-1 { - padding-left: 0.25rem !important; -} - -.pl-2 { - padding-left: 0.5rem !important; -} - -.pl-3 { - padding-left: 1rem !important; -} - -.pl-4 { - padding-left: 1.5rem !important; -} - -.pl-5 { - padding-left: 2rem !important; -} - -.pl-6 { - padding-left: 3rem !important; -} - -.pl-7 { - padding-left: 4rem !important; -} - -.pl-8 { - padding-left: 5rem !important; -} - -.pb-0 { - padding-bottom: 0rem !important; -} - -.pb-1 { - padding-bottom: 0.25rem !important; -} - -.pb-2 { - padding-bottom: 0.5rem !important; -} - -.pb-3 { - padding-bottom: 1rem !important; -} - -.pb-4 { - padding-bottom: 1.5rem !important; -} - -.pb-5 { - padding-bottom: 2rem !important; -} - -.pb-6 { - padding-bottom: 3rem !important; -} - -.pb-7 { - padding-bottom: 4rem !important; -} - -.pb-8 { - padding-bottom: 5rem !important; -} - -.px-0 { - padding-left: 0rem !important; - padding-right: 0rem !important; -} - -.px-1 { - padding-left: 0.25rem !important; - padding-right: 0.25rem !important; -} - -.px-2 { - padding-left: 0.5rem !important; - padding-right: 0.5rem !important; -} - -.px-3 { - padding-left: 1rem !important; - padding-right: 1rem !important; -} - -.px-4 { - padding-left: 1.5rem !important; - padding-right: 1.5rem !important; -} - -.px-5 { - padding-left: 2rem !important; - padding-right: 2rem !important; -} - -.px-6 { - padding-left: 3rem !important; - padding-right: 3rem !important; -} - -.px-7 { - padding-left: 4rem !important; - padding-right: 4rem !important; -} - -.px-8 { - padding-left: 5rem !important; - padding-right: 5rem !important; -} - -.py-0 { - padding-top: 0rem !important; - padding-bottom: 0rem !important; -} - -.py-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; -} - -.py-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; -} - -.py-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; -} - -.py-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; -} - -.py-5 { - padding-top: 2rem !important; - padding-bottom: 2rem !important; -} - -.py-6 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; -} - -.py-7 { - padding-top: 4rem !important; - padding-bottom: 4rem !important; -} - -.py-8 { - padding-top: 5rem !important; - padding-bottom: 5rem !important; -} - -@media screen and (min-width: 576px) { - .sm\\:p-0 { - padding: 0rem !important; - } - .sm\\:p-1 { - padding: 0.25rem !important; - } - .sm\\:p-2 { - padding: 0.5rem !important; - } - .sm\\:p-3 { - padding: 1rem !important; - } - .sm\\:p-4 { - padding: 1.5rem !important; - } - .sm\\:p-5 { - padding: 2rem !important; - } - .sm\\:p-6 { - padding: 3rem !important; - } - .sm\\:p-7 { - padding: 4rem !important; - } - .sm\\:p-8 { - padding: 5rem !important; - } - .sm\\:pt-0 { - padding-top: 0rem !important; - } - .sm\\:pt-1 { - padding-top: 0.25rem !important; - } - .sm\\:pt-2 { - padding-top: 0.5rem !important; - } - .sm\\:pt-3 { - padding-top: 1rem !important; - } - .sm\\:pt-4 { - padding-top: 1.5rem !important; - } - .sm\\:pt-5 { - padding-top: 2rem !important; - } - .sm\\:pt-6 { - padding-top: 3rem !important; - } - .sm\\:pt-7 { - padding-top: 4rem !important; - } - .sm\\:pt-8 { - padding-top: 5rem !important; - } - .sm\\:pr-0 { - padding-right: 0rem !important; - } - .sm\\:pr-1 { - padding-right: 0.25rem !important; - } - .sm\\:pr-2 { - padding-right: 0.5rem !important; - } - .sm\\:pr-3 { - padding-right: 1rem !important; - } - .sm\\:pr-4 { - padding-right: 1.5rem !important; - } - .sm\\:pr-5 { - padding-right: 2rem !important; - } - .sm\\:pr-6 { - padding-right: 3rem !important; - } - .sm\\:pr-7 { - padding-right: 4rem !important; - } - .sm\\:pr-8 { - padding-right: 5rem !important; - } - .sm\\:pl-0 { - padding-left: 0rem !important; - } - .sm\\:pl-1 { - padding-left: 0.25rem !important; - } - .sm\\:pl-2 { - padding-left: 0.5rem !important; - } - .sm\\:pl-3 { - padding-left: 1rem !important; - } - .sm\\:pl-4 { - padding-left: 1.5rem !important; - } - .sm\\:pl-5 { - padding-left: 2rem !important; - } - .sm\\:pl-6 { - padding-left: 3rem !important; - } - .sm\\:pl-7 { - padding-left: 4rem !important; - } - .sm\\:pl-8 { - padding-left: 5rem !important; - } - .sm\\:pb-0 { - padding-bottom: 0rem !important; - } - .sm\\:pb-1 { - padding-bottom: 0.25rem !important; - } - .sm\\:pb-2 { - padding-bottom: 0.5rem !important; - } - .sm\\:pb-3 { - padding-bottom: 1rem !important; - } - .sm\\:pb-4 { - padding-bottom: 1.5rem !important; - } - .sm\\:pb-5 { - padding-bottom: 2rem !important; - } - .sm\\:pb-6 { - padding-bottom: 3rem !important; - } - .sm\\:pb-7 { - padding-bottom: 4rem !important; - } - .sm\\:pb-8 { - padding-bottom: 5rem !important; - } - .sm\\:px-0 { - padding-left: 0rem !important; - padding-right: 0rem !important; - } - .sm\\:px-1 { - padding-left: 0.25rem !important; - padding-right: 0.25rem !important; - } - .sm\\:px-2 { - padding-left: 0.5rem !important; - padding-right: 0.5rem !important; - } - .sm\\:px-3 { - padding-left: 1rem !important; - padding-right: 1rem !important; - } - .sm\\:px-4 { - padding-left: 1.5rem !important; - padding-right: 1.5rem !important; - } - .sm\\:px-5 { - padding-left: 2rem !important; - padding-right: 2rem !important; - } - .sm\\:px-6 { - padding-left: 3rem !important; - padding-right: 3rem !important; - } - .sm\\:px-7 { - padding-left: 4rem !important; - padding-right: 4rem !important; - } - .sm\\:px-8 { - padding-left: 5rem !important; - padding-right: 5rem !important; - } - .sm\\:py-0 { - padding-top: 0rem !important; - padding-bottom: 0rem !important; - } - .sm\\:py-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; - } - .sm\\:py-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; - } - .sm\\:py-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; - } - .sm\\:py-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; - } - .sm\\:py-5 { - padding-top: 2rem !important; - padding-bottom: 2rem !important; - } - .sm\\:py-6 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; - } - .sm\\:py-7 { - padding-top: 4rem !important; - padding-bottom: 4rem !important; - } - .sm\\:py-8 { - padding-top: 5rem !important; - padding-bottom: 5rem !important; - } -} -@media screen and (min-width: 768px) { - .md\\:p-0 { - padding: 0rem !important; - } - .md\\:p-1 { - padding: 0.25rem !important; - } - .md\\:p-2 { - padding: 0.5rem !important; - } - .md\\:p-3 { - padding: 1rem !important; - } - .md\\:p-4 { - padding: 1.5rem !important; - } - .md\\:p-5 { - padding: 2rem !important; - } - .md\\:p-6 { - padding: 3rem !important; - } - .md\\:p-7 { - padding: 4rem !important; - } - .md\\:p-8 { - padding: 5rem !important; - } - .md\\:pt-0 { - padding-top: 0rem !important; - } - .md\\:pt-1 { - padding-top: 0.25rem !important; - } - .md\\:pt-2 { - padding-top: 0.5rem !important; - } - .md\\:pt-3 { - padding-top: 1rem !important; - } - .md\\:pt-4 { - padding-top: 1.5rem !important; - } - .md\\:pt-5 { - padding-top: 2rem !important; - } - .md\\:pt-6 { - padding-top: 3rem !important; - } - .md\\:pt-7 { - padding-top: 4rem !important; - } - .md\\:pt-8 { - padding-top: 5rem !important; - } - .md\\:pr-0 { - padding-right: 0rem !important; - } - .md\\:pr-1 { - padding-right: 0.25rem !important; - } - .md\\:pr-2 { - padding-right: 0.5rem !important; - } - .md\\:pr-3 { - padding-right: 1rem !important; - } - .md\\:pr-4 { - padding-right: 1.5rem !important; - } - .md\\:pr-5 { - padding-right: 2rem !important; - } - .md\\:pr-6 { - padding-right: 3rem !important; - } - .md\\:pr-7 { - padding-right: 4rem !important; - } - .md\\:pr-8 { - padding-right: 5rem !important; - } - .md\\:pl-0 { - padding-left: 0rem !important; - } - .md\\:pl-1 { - padding-left: 0.25rem !important; - } - .md\\:pl-2 { - padding-left: 0.5rem !important; - } - .md\\:pl-3 { - padding-left: 1rem !important; - } - .md\\:pl-4 { - padding-left: 1.5rem !important; - } - .md\\:pl-5 { - padding-left: 2rem !important; - } - .md\\:pl-6 { - padding-left: 3rem !important; - } - .md\\:pl-7 { - padding-left: 4rem !important; - } - .md\\:pl-8 { - padding-left: 5rem !important; - } - .md\\:pb-0 { - padding-bottom: 0rem !important; - } - .md\\:pb-1 { - padding-bottom: 0.25rem !important; - } - .md\\:pb-2 { - padding-bottom: 0.5rem !important; - } - .md\\:pb-3 { - padding-bottom: 1rem !important; - } - .md\\:pb-4 { - padding-bottom: 1.5rem !important; - } - .md\\:pb-5 { - padding-bottom: 2rem !important; - } - .md\\:pb-6 { - padding-bottom: 3rem !important; - } - .md\\:pb-7 { - padding-bottom: 4rem !important; - } - .md\\:pb-8 { - padding-bottom: 5rem !important; - } - .md\\:px-0 { - padding-left: 0rem !important; - padding-right: 0rem !important; - } - .md\\:px-1 { - padding-left: 0.25rem !important; - padding-right: 0.25rem !important; - } - .md\\:px-2 { - padding-left: 0.5rem !important; - padding-right: 0.5rem !important; - } - .md\\:px-3 { - padding-left: 1rem !important; - padding-right: 1rem !important; - } - .md\\:px-4 { - padding-left: 1.5rem !important; - padding-right: 1.5rem !important; - } - .md\\:px-5 { - padding-left: 2rem !important; - padding-right: 2rem !important; - } - .md\\:px-6 { - padding-left: 3rem !important; - padding-right: 3rem !important; - } - .md\\:px-7 { - padding-left: 4rem !important; - padding-right: 4rem !important; - } - .md\\:px-8 { - padding-left: 5rem !important; - padding-right: 5rem !important; - } - .md\\:py-0 { - padding-top: 0rem !important; - padding-bottom: 0rem !important; - } - .md\\:py-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; - } - .md\\:py-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; - } - .md\\:py-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; - } - .md\\:py-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; - } - .md\\:py-5 { - padding-top: 2rem !important; - padding-bottom: 2rem !important; - } - .md\\:py-6 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; - } - .md\\:py-7 { - padding-top: 4rem !important; - padding-bottom: 4rem !important; - } - .md\\:py-8 { - padding-top: 5rem !important; - padding-bottom: 5rem !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:p-0 { - padding: 0rem !important; - } - .lg\\:p-1 { - padding: 0.25rem !important; - } - .lg\\:p-2 { - padding: 0.5rem !important; - } - .lg\\:p-3 { - padding: 1rem !important; - } - .lg\\:p-4 { - padding: 1.5rem !important; - } - .lg\\:p-5 { - padding: 2rem !important; - } - .lg\\:p-6 { - padding: 3rem !important; - } - .lg\\:p-7 { - padding: 4rem !important; - } - .lg\\:p-8 { - padding: 5rem !important; - } - .lg\\:pt-0 { - padding-top: 0rem !important; - } - .lg\\:pt-1 { - padding-top: 0.25rem !important; - } - .lg\\:pt-2 { - padding-top: 0.5rem !important; - } - .lg\\:pt-3 { - padding-top: 1rem !important; - } - .lg\\:pt-4 { - padding-top: 1.5rem !important; - } - .lg\\:pt-5 { - padding-top: 2rem !important; - } - .lg\\:pt-6 { - padding-top: 3rem !important; - } - .lg\\:pt-7 { - padding-top: 4rem !important; - } - .lg\\:pt-8 { - padding-top: 5rem !important; - } - .lg\\:pr-0 { - padding-right: 0rem !important; - } - .lg\\:pr-1 { - padding-right: 0.25rem !important; - } - .lg\\:pr-2 { - padding-right: 0.5rem !important; - } - .lg\\:pr-3 { - padding-right: 1rem !important; - } - .lg\\:pr-4 { - padding-right: 1.5rem !important; - } - .lg\\:pr-5 { - padding-right: 2rem !important; - } - .lg\\:pr-6 { - padding-right: 3rem !important; - } - .lg\\:pr-7 { - padding-right: 4rem !important; - } - .lg\\:pr-8 { - padding-right: 5rem !important; - } - .lg\\:pl-0 { - padding-left: 0rem !important; - } - .lg\\:pl-1 { - padding-left: 0.25rem !important; - } - .lg\\:pl-2 { - padding-left: 0.5rem !important; - } - .lg\\:pl-3 { - padding-left: 1rem !important; - } - .lg\\:pl-4 { - padding-left: 1.5rem !important; - } - .lg\\:pl-5 { - padding-left: 2rem !important; - } - .lg\\:pl-6 { - padding-left: 3rem !important; - } - .lg\\:pl-7 { - padding-left: 4rem !important; - } - .lg\\:pl-8 { - padding-left: 5rem !important; - } - .lg\\:pb-0 { - padding-bottom: 0rem !important; - } - .lg\\:pb-1 { - padding-bottom: 0.25rem !important; - } - .lg\\:pb-2 { - padding-bottom: 0.5rem !important; - } - .lg\\:pb-3 { - padding-bottom: 1rem !important; - } - .lg\\:pb-4 { - padding-bottom: 1.5rem !important; - } - .lg\\:pb-5 { - padding-bottom: 2rem !important; - } - .lg\\:pb-6 { - padding-bottom: 3rem !important; - } - .lg\\:pb-7 { - padding-bottom: 4rem !important; - } - .lg\\:pb-8 { - padding-bottom: 5rem !important; - } - .lg\\:px-0 { - padding-left: 0rem !important; - padding-right: 0rem !important; - } - .lg\\:px-1 { - padding-left: 0.25rem !important; - padding-right: 0.25rem !important; - } - .lg\\:px-2 { - padding-left: 0.5rem !important; - padding-right: 0.5rem !important; - } - .lg\\:px-3 { - padding-left: 1rem !important; - padding-right: 1rem !important; - } - .lg\\:px-4 { - padding-left: 1.5rem !important; - padding-right: 1.5rem !important; - } - .lg\\:px-5 { - padding-left: 2rem !important; - padding-right: 2rem !important; - } - .lg\\:px-6 { - padding-left: 3rem !important; - padding-right: 3rem !important; - } - .lg\\:px-7 { - padding-left: 4rem !important; - padding-right: 4rem !important; - } - .lg\\:px-8 { - padding-left: 5rem !important; - padding-right: 5rem !important; - } - .lg\\:py-0 { - padding-top: 0rem !important; - padding-bottom: 0rem !important; - } - .lg\\:py-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; - } - .lg\\:py-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; - } - .lg\\:py-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; - } - .lg\\:py-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; - } - .lg\\:py-5 { - padding-top: 2rem !important; - padding-bottom: 2rem !important; - } - .lg\\:py-6 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; - } - .lg\\:py-7 { - padding-top: 4rem !important; - padding-bottom: 4rem !important; - } - .lg\\:py-8 { - padding-top: 5rem !important; - padding-bottom: 5rem !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:p-0 { - padding: 0rem !important; - } - .xl\\:p-1 { - padding: 0.25rem !important; - } - .xl\\:p-2 { - padding: 0.5rem !important; - } - .xl\\:p-3 { - padding: 1rem !important; - } - .xl\\:p-4 { - padding: 1.5rem !important; - } - .xl\\:p-5 { - padding: 2rem !important; - } - .xl\\:p-6 { - padding: 3rem !important; - } - .xl\\:p-7 { - padding: 4rem !important; - } - .xl\\:p-8 { - padding: 5rem !important; - } - .xl\\:pt-0 { - padding-top: 0rem !important; - } - .xl\\:pt-1 { - padding-top: 0.25rem !important; - } - .xl\\:pt-2 { - padding-top: 0.5rem !important; - } - .xl\\:pt-3 { - padding-top: 1rem !important; - } - .xl\\:pt-4 { - padding-top: 1.5rem !important; - } - .xl\\:pt-5 { - padding-top: 2rem !important; - } - .xl\\:pt-6 { - padding-top: 3rem !important; - } - .xl\\:pt-7 { - padding-top: 4rem !important; - } - .xl\\:pt-8 { - padding-top: 5rem !important; - } - .xl\\:pr-0 { - padding-right: 0rem !important; - } - .xl\\:pr-1 { - padding-right: 0.25rem !important; - } - .xl\\:pr-2 { - padding-right: 0.5rem !important; - } - .xl\\:pr-3 { - padding-right: 1rem !important; - } - .xl\\:pr-4 { - padding-right: 1.5rem !important; - } - .xl\\:pr-5 { - padding-right: 2rem !important; - } - .xl\\:pr-6 { - padding-right: 3rem !important; - } - .xl\\:pr-7 { - padding-right: 4rem !important; - } - .xl\\:pr-8 { - padding-right: 5rem !important; - } - .xl\\:pl-0 { - padding-left: 0rem !important; - } - .xl\\:pl-1 { - padding-left: 0.25rem !important; - } - .xl\\:pl-2 { - padding-left: 0.5rem !important; - } - .xl\\:pl-3 { - padding-left: 1rem !important; - } - .xl\\:pl-4 { - padding-left: 1.5rem !important; - } - .xl\\:pl-5 { - padding-left: 2rem !important; - } - .xl\\:pl-6 { - padding-left: 3rem !important; - } - .xl\\:pl-7 { - padding-left: 4rem !important; - } - .xl\\:pl-8 { - padding-left: 5rem !important; - } - .xl\\:pb-0 { - padding-bottom: 0rem !important; - } - .xl\\:pb-1 { - padding-bottom: 0.25rem !important; - } - .xl\\:pb-2 { - padding-bottom: 0.5rem !important; - } - .xl\\:pb-3 { - padding-bottom: 1rem !important; - } - .xl\\:pb-4 { - padding-bottom: 1.5rem !important; - } - .xl\\:pb-5 { - padding-bottom: 2rem !important; - } - .xl\\:pb-6 { - padding-bottom: 3rem !important; - } - .xl\\:pb-7 { - padding-bottom: 4rem !important; - } - .xl\\:pb-8 { - padding-bottom: 5rem !important; - } - .xl\\:px-0 { - padding-left: 0rem !important; - padding-right: 0rem !important; - } - .xl\\:px-1 { - padding-left: 0.25rem !important; - padding-right: 0.25rem !important; - } - .xl\\:px-2 { - padding-left: 0.5rem !important; - padding-right: 0.5rem !important; - } - .xl\\:px-3 { - padding-left: 1rem !important; - padding-right: 1rem !important; - } - .xl\\:px-4 { - padding-left: 1.5rem !important; - padding-right: 1.5rem !important; - } - .xl\\:px-5 { - padding-left: 2rem !important; - padding-right: 2rem !important; - } - .xl\\:px-6 { - padding-left: 3rem !important; - padding-right: 3rem !important; - } - .xl\\:px-7 { - padding-left: 4rem !important; - padding-right: 4rem !important; - } - .xl\\:px-8 { - padding-left: 5rem !important; - padding-right: 5rem !important; - } - .xl\\:py-0 { - padding-top: 0rem !important; - padding-bottom: 0rem !important; - } - .xl\\:py-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; - } - .xl\\:py-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; - } - .xl\\:py-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; - } - .xl\\:py-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; - } - .xl\\:py-5 { - padding-top: 2rem !important; - padding-bottom: 2rem !important; - } - .xl\\:py-6 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; - } - .xl\\:py-7 { - padding-top: 4rem !important; - padding-bottom: 4rem !important; - } - .xl\\:py-8 { - padding-top: 5rem !important; - padding-bottom: 5rem !important; - } -} -.m-0 { - margin: 0rem !important; -} - -.m-1 { - margin: 0.25rem !important; -} - -.m-2 { - margin: 0.5rem !important; -} - -.m-3 { - margin: 1rem !important; -} - -.m-4 { - margin: 1.5rem !important; -} - -.m-5 { - margin: 2rem !important; -} - -.m-6 { - margin: 3rem !important; -} - -.m-7 { - margin: 4rem !important; -} - -.m-8 { - margin: 5rem !important; -} - -.-m-1 { - margin: -0.25rem !important; -} - -.-m-2 { - margin: -0.5rem !important; -} - -.-m-3 { - margin: -1rem !important; -} - -.-m-4 { - margin: -1.5rem !important; -} - -.-m-5 { - margin: -2rem !important; -} - -.-m-6 { - margin: -3rem !important; -} - -.-m-7 { - margin: -4rem !important; -} - -.-m-8 { - margin: -5rem !important; -} - -.m-auto { - margin: auto !important; -} - -.mt-0 { - margin-top: 0rem !important; -} - -.mt-1 { - margin-top: 0.25rem !important; -} - -.mt-2 { - margin-top: 0.5rem !important; -} - -.mt-3 { - margin-top: 1rem !important; -} - -.mt-4 { - margin-top: 1.5rem !important; -} - -.mt-5 { - margin-top: 2rem !important; -} - -.mt-6 { - margin-top: 3rem !important; -} - -.mt-7 { - margin-top: 4rem !important; -} - -.mt-8 { - margin-top: 5rem !important; -} - -.-mt-1 { - margin-top: -0.25rem !important; -} - -.-mt-2 { - margin-top: -0.5rem !important; -} - -.-mt-3 { - margin-top: -1rem !important; -} - -.-mt-4 { - margin-top: -1.5rem !important; -} - -.-mt-5 { - margin-top: -2rem !important; -} - -.-mt-6 { - margin-top: -3rem !important; -} - -.-mt-7 { - margin-top: -4rem !important; -} - -.-mt-8 { - margin-top: -5rem !important; -} - -.mt-auto { - margin-top: auto !important; -} - -.mr-0 { - margin-right: 0rem !important; -} - -.mr-1 { - margin-right: 0.25rem !important; -} - -.mr-2 { - margin-right: 0.5rem !important; -} - -.mr-3 { - margin-right: 1rem !important; -} - -.mr-4 { - margin-right: 1.5rem !important; -} - -.mr-5 { - margin-right: 2rem !important; -} - -.mr-6 { - margin-right: 3rem !important; -} - -.mr-7 { - margin-right: 4rem !important; -} - -.mr-8 { - margin-right: 5rem !important; -} - -.-mr-1 { - margin-right: -0.25rem !important; -} - -.-mr-2 { - margin-right: -0.5rem !important; -} - -.-mr-3 { - margin-right: -1rem !important; -} - -.-mr-4 { - margin-right: -1.5rem !important; -} - -.-mr-5 { - margin-right: -2rem !important; -} - -.-mr-6 { - margin-right: -3rem !important; -} - -.-mr-7 { - margin-right: -4rem !important; -} - -.-mr-8 { - margin-right: -5rem !important; -} - -.mr-auto { - margin-right: auto !important; -} - -.ml-0 { - margin-left: 0rem !important; -} - -.ml-1 { - margin-left: 0.25rem !important; -} - -.ml-2 { - margin-left: 0.5rem !important; -} - -.ml-3 { - margin-left: 1rem !important; -} - -.ml-4 { - margin-left: 1.5rem !important; -} - -.ml-5 { - margin-left: 2rem !important; -} - -.ml-6 { - margin-left: 3rem !important; -} - -.ml-7 { - margin-left: 4rem !important; -} - -.ml-8 { - margin-left: 5rem !important; -} - -.-ml-1 { - margin-left: -0.25rem !important; -} - -.-ml-2 { - margin-left: -0.5rem !important; -} - -.-ml-3 { - margin-left: -1rem !important; -} - -.-ml-4 { - margin-left: -1.5rem !important; -} - -.-ml-5 { - margin-left: -2rem !important; -} - -.-ml-6 { - margin-left: -3rem !important; -} - -.-ml-7 { - margin-left: -4rem !important; -} - -.-ml-8 { - margin-left: -5rem !important; -} - -.ml-auto { - margin-left: auto !important; -} - -.mb-0 { - margin-bottom: 0rem !important; -} - -.mb-1 { - margin-bottom: 0.25rem !important; -} - -.mb-2 { - margin-bottom: 0.5rem !important; -} - -.mb-3 { - margin-bottom: 1rem !important; -} - -.mb-4 { - margin-bottom: 1.5rem !important; -} - -.mb-5 { - margin-bottom: 2rem !important; -} - -.mb-6 { - margin-bottom: 3rem !important; -} - -.mb-7 { - margin-bottom: 4rem !important; -} - -.mb-8 { - margin-bottom: 5rem !important; -} - -.-mb-1 { - margin-bottom: -0.25rem !important; -} - -.-mb-2 { - margin-bottom: -0.5rem !important; -} - -.-mb-3 { - margin-bottom: -1rem !important; -} - -.-mb-4 { - margin-bottom: -1.5rem !important; -} - -.-mb-5 { - margin-bottom: -2rem !important; -} - -.-mb-6 { - margin-bottom: -3rem !important; -} - -.-mb-7 { - margin-bottom: -4rem !important; -} - -.-mb-8 { - margin-bottom: -5rem !important; -} - -.mb-auto { - margin-bottom: auto !important; -} - -.mx-0 { - margin-left: 0rem !important; - margin-right: 0rem !important; -} - -.mx-1 { - margin-left: 0.25rem !important; - margin-right: 0.25rem !important; -} - -.mx-2 { - margin-left: 0.5rem !important; - margin-right: 0.5rem !important; -} - -.mx-3 { - margin-left: 1rem !important; - margin-right: 1rem !important; -} - -.mx-4 { - margin-left: 1.5rem !important; - margin-right: 1.5rem !important; -} - -.mx-5 { - margin-left: 2rem !important; - margin-right: 2rem !important; -} - -.mx-6 { - margin-left: 3rem !important; - margin-right: 3rem !important; -} - -.mx-7 { - margin-left: 4rem !important; - margin-right: 4rem !important; -} - -.mx-8 { - margin-left: 5rem !important; - margin-right: 5rem !important; -} - -.-mx-1 { - margin-left: -0.25rem !important; - margin-right: -0.25rem !important; -} - -.-mx-2 { - margin-left: -0.5rem !important; - margin-right: -0.5rem !important; -} - -.-mx-3 { - margin-left: -1rem !important; - margin-right: -1rem !important; -} - -.-mx-4 { - margin-left: -1.5rem !important; - margin-right: -1.5rem !important; -} - -.-mx-5 { - margin-left: -2rem !important; - margin-right: -2rem !important; -} - -.-mx-6 { - margin-left: -3rem !important; - margin-right: -3rem !important; -} - -.-mx-7 { - margin-left: -4rem !important; - margin-right: -4rem !important; -} - -.-mx-8 { - margin-left: -5rem !important; - margin-right: -5rem !important; -} - -.mx-auto { - margin-left: auto !important; - margin-right: auto !important; -} - -.my-0 { - margin-top: 0rem !important; - margin-bottom: 0rem !important; -} - -.my-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; -} - -.my-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; -} - -.my-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; -} - -.my-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; -} - -.my-5 { - margin-top: 2rem !important; - margin-bottom: 2rem !important; -} - -.my-6 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; -} - -.my-7 { - margin-top: 4rem !important; - margin-bottom: 4rem !important; -} - -.my-8 { - margin-top: 5rem !important; - margin-bottom: 5rem !important; -} - -.-my-1 { - margin-top: -0.25rem !important; - margin-bottom: -0.25rem !important; -} - -.-my-2 { - margin-top: -0.5rem !important; - margin-bottom: -0.5rem !important; -} - -.-my-3 { - margin-top: -1rem !important; - margin-bottom: -1rem !important; -} - -.-my-4 { - margin-top: -1.5rem !important; - margin-bottom: -1.5rem !important; -} - -.-my-5 { - margin-top: -2rem !important; - margin-bottom: -2rem !important; -} - -.-my-6 { - margin-top: -3rem !important; - margin-bottom: -3rem !important; -} - -.-my-7 { - margin-top: -4rem !important; - margin-bottom: -4rem !important; -} - -.-my-8 { - margin-top: -5rem !important; - margin-bottom: -5rem !important; -} - -.my-auto { - margin-top: auto !important; - margin-bottom: auto !important; -} - -@media screen and (min-width: 576px) { - .sm\\:m-0 { - margin: 0rem !important; - } - .sm\\:m-1 { - margin: 0.25rem !important; - } - .sm\\:m-2 { - margin: 0.5rem !important; - } - .sm\\:m-3 { - margin: 1rem !important; - } - .sm\\:m-4 { - margin: 1.5rem !important; - } - .sm\\:m-5 { - margin: 2rem !important; - } - .sm\\:m-6 { - margin: 3rem !important; - } - .sm\\:m-7 { - margin: 4rem !important; - } - .sm\\:m-8 { - margin: 5rem !important; - } - .sm\\:-m-1 { - margin: -0.25rem !important; - } - .sm\\:-m-2 { - margin: -0.5rem !important; - } - .sm\\:-m-3 { - margin: -1rem !important; - } - .sm\\:-m-4 { - margin: -1.5rem !important; - } - .sm\\:-m-5 { - margin: -2rem !important; - } - .sm\\:-m-6 { - margin: -3rem !important; - } - .sm\\:-m-7 { - margin: -4rem !important; - } - .sm\\:-m-8 { - margin: -5rem !important; - } - .sm\\:m-auto { - margin: auto !important; - } - .sm\\:mt-0 { - margin-top: 0rem !important; - } - .sm\\:mt-1 { - margin-top: 0.25rem !important; - } - .sm\\:mt-2 { - margin-top: 0.5rem !important; - } - .sm\\:mt-3 { - margin-top: 1rem !important; - } - .sm\\:mt-4 { - margin-top: 1.5rem !important; - } - .sm\\:mt-5 { - margin-top: 2rem !important; - } - .sm\\:mt-6 { - margin-top: 3rem !important; - } - .sm\\:mt-7 { - margin-top: 4rem !important; - } - .sm\\:mt-8 { - margin-top: 5rem !important; - } - .sm\\:-mt-1 { - margin-top: -0.25rem !important; - } - .sm\\:-mt-2 { - margin-top: -0.5rem !important; - } - .sm\\:-mt-3 { - margin-top: -1rem !important; - } - .sm\\:-mt-4 { - margin-top: -1.5rem !important; - } - .sm\\:-mt-5 { - margin-top: -2rem !important; - } - .sm\\:-mt-6 { - margin-top: -3rem !important; - } - .sm\\:-mt-7 { - margin-top: -4rem !important; - } - .sm\\:-mt-8 { - margin-top: -5rem !important; - } - .sm\\:mt-auto { - margin-top: auto !important; - } - .sm\\:mr-0 { - margin-right: 0rem !important; - } - .sm\\:mr-1 { - margin-right: 0.25rem !important; - } - .sm\\:mr-2 { - margin-right: 0.5rem !important; - } - .sm\\:mr-3 { - margin-right: 1rem !important; - } - .sm\\:mr-4 { - margin-right: 1.5rem !important; - } - .sm\\:mr-5 { - margin-right: 2rem !important; - } - .sm\\:mr-6 { - margin-right: 3rem !important; - } - .sm\\:mr-7 { - margin-right: 4rem !important; - } - .sm\\:mr-8 { - margin-right: 5rem !important; - } - .sm\\:-mr-1 { - margin-right: -0.25rem !important; - } - .sm\\:-mr-2 { - margin-right: -0.5rem !important; - } - .sm\\:-mr-3 { - margin-right: -1rem !important; - } - .sm\\:-mr-4 { - margin-right: -1.5rem !important; - } - .sm\\:-mr-5 { - margin-right: -2rem !important; - } - .sm\\:-mr-6 { - margin-right: -3rem !important; - } - .sm\\:-mr-7 { - margin-right: -4rem !important; - } - .sm\\:-mr-8 { - margin-right: -5rem !important; - } - .sm\\:mr-auto { - margin-right: auto !important; - } - .sm\\:ml-0 { - margin-left: 0rem !important; - } - .sm\\:ml-1 { - margin-left: 0.25rem !important; - } - .sm\\:ml-2 { - margin-left: 0.5rem !important; - } - .sm\\:ml-3 { - margin-left: 1rem !important; - } - .sm\\:ml-4 { - margin-left: 1.5rem !important; - } - .sm\\:ml-5 { - margin-left: 2rem !important; - } - .sm\\:ml-6 { - margin-left: 3rem !important; - } - .sm\\:ml-7 { - margin-left: 4rem !important; - } - .sm\\:ml-8 { - margin-left: 5rem !important; - } - .sm\\:-ml-1 { - margin-left: -0.25rem !important; - } - .sm\\:-ml-2 { - margin-left: -0.5rem !important; - } - .sm\\:-ml-3 { - margin-left: -1rem !important; - } - .sm\\:-ml-4 { - margin-left: -1.5rem !important; - } - .sm\\:-ml-5 { - margin-left: -2rem !important; - } - .sm\\:-ml-6 { - margin-left: -3rem !important; - } - .sm\\:-ml-7 { - margin-left: -4rem !important; - } - .sm\\:-ml-8 { - margin-left: -5rem !important; - } - .sm\\:ml-auto { - margin-left: auto !important; - } - .sm\\:mb-0 { - margin-bottom: 0rem !important; - } - .sm\\:mb-1 { - margin-bottom: 0.25rem !important; - } - .sm\\:mb-2 { - margin-bottom: 0.5rem !important; - } - .sm\\:mb-3 { - margin-bottom: 1rem !important; - } - .sm\\:mb-4 { - margin-bottom: 1.5rem !important; - } - .sm\\:mb-5 { - margin-bottom: 2rem !important; - } - .sm\\:mb-6 { - margin-bottom: 3rem !important; - } - .sm\\:mb-7 { - margin-bottom: 4rem !important; - } - .sm\\:mb-8 { - margin-bottom: 5rem !important; - } - .sm\\:-mb-1 { - margin-bottom: -0.25rem !important; - } - .sm\\:-mb-2 { - margin-bottom: -0.5rem !important; - } - .sm\\:-mb-3 { - margin-bottom: -1rem !important; - } - .sm\\:-mb-4 { - margin-bottom: -1.5rem !important; - } - .sm\\:-mb-5 { - margin-bottom: -2rem !important; - } - .sm\\:-mb-6 { - margin-bottom: -3rem !important; - } - .sm\\:-mb-7 { - margin-bottom: -4rem !important; - } - .sm\\:-mb-8 { - margin-bottom: -5rem !important; - } - .sm\\:mb-auto { - margin-bottom: auto !important; - } - .sm\\:mx-0 { - margin-left: 0rem !important; - margin-right: 0rem !important; - } - .sm\\:mx-1 { - margin-left: 0.25rem !important; - margin-right: 0.25rem !important; - } - .sm\\:mx-2 { - margin-left: 0.5rem !important; - margin-right: 0.5rem !important; - } - .sm\\:mx-3 { - margin-left: 1rem !important; - margin-right: 1rem !important; - } - .sm\\:mx-4 { - margin-left: 1.5rem !important; - margin-right: 1.5rem !important; - } - .sm\\:mx-5 { - margin-left: 2rem !important; - margin-right: 2rem !important; - } - .sm\\:mx-6 { - margin-left: 3rem !important; - margin-right: 3rem !important; - } - .sm\\:mx-7 { - margin-left: 4rem !important; - margin-right: 4rem !important; - } - .sm\\:mx-8 { - margin-left: 5rem !important; - margin-right: 5rem !important; - } - .sm\\:-mx-1 { - margin-left: -0.25rem !important; - margin-right: -0.25rem !important; - } - .sm\\:-mx-2 { - margin-left: -0.5rem !important; - margin-right: -0.5rem !important; - } - .sm\\:-mx-3 { - margin-left: -1rem !important; - margin-right: -1rem !important; - } - .sm\\:-mx-4 { - margin-left: -1.5rem !important; - margin-right: -1.5rem !important; - } - .sm\\:-mx-5 { - margin-left: -2rem !important; - margin-right: -2rem !important; - } - .sm\\:-mx-6 { - margin-left: -3rem !important; - margin-right: -3rem !important; - } - .sm\\:-mx-7 { - margin-left: -4rem !important; - margin-right: -4rem !important; - } - .sm\\:-mx-8 { - margin-left: -5rem !important; - margin-right: -5rem !important; - } - .sm\\:mx-auto { - margin-left: auto !important; - margin-right: auto !important; - } - .sm\\:my-0 { - margin-top: 0rem !important; - margin-bottom: 0rem !important; - } - .sm\\:my-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; - } - .sm\\:my-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; - } - .sm\\:my-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; - } - .sm\\:my-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; - } - .sm\\:my-5 { - margin-top: 2rem !important; - margin-bottom: 2rem !important; - } - .sm\\:my-6 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; - } - .sm\\:my-7 { - margin-top: 4rem !important; - margin-bottom: 4rem !important; - } - .sm\\:my-8 { - margin-top: 5rem !important; - margin-bottom: 5rem !important; - } - .sm\\:-my-1 { - margin-top: -0.25rem !important; - margin-bottom: -0.25rem !important; - } - .sm\\:-my-2 { - margin-top: -0.5rem !important; - margin-bottom: -0.5rem !important; - } - .sm\\:-my-3 { - margin-top: -1rem !important; - margin-bottom: -1rem !important; - } - .sm\\:-my-4 { - margin-top: -1.5rem !important; - margin-bottom: -1.5rem !important; - } - .sm\\:-my-5 { - margin-top: -2rem !important; - margin-bottom: -2rem !important; - } - .sm\\:-my-6 { - margin-top: -3rem !important; - margin-bottom: -3rem !important; - } - .sm\\:-my-7 { - margin-top: -4rem !important; - margin-bottom: -4rem !important; - } - .sm\\:-my-8 { - margin-top: -5rem !important; - margin-bottom: -5rem !important; - } - .sm\\:my-auto { - margin-top: auto !important; - margin-bottom: auto !important; - } -} -@media screen and (min-width: 768px) { - .md\\:m-0 { - margin: 0rem !important; - } - .md\\:m-1 { - margin: 0.25rem !important; - } - .md\\:m-2 { - margin: 0.5rem !important; - } - .md\\:m-3 { - margin: 1rem !important; - } - .md\\:m-4 { - margin: 1.5rem !important; - } - .md\\:m-5 { - margin: 2rem !important; - } - .md\\:m-6 { - margin: 3rem !important; - } - .md\\:m-7 { - margin: 4rem !important; - } - .md\\:m-8 { - margin: 5rem !important; - } - .md\\:-m-1 { - margin: -0.25rem !important; - } - .md\\:-m-2 { - margin: -0.5rem !important; - } - .md\\:-m-3 { - margin: -1rem !important; - } - .md\\:-m-4 { - margin: -1.5rem !important; - } - .md\\:-m-5 { - margin: -2rem !important; - } - .md\\:-m-6 { - margin: -3rem !important; - } - .md\\:-m-7 { - margin: -4rem !important; - } - .md\\:-m-8 { - margin: -5rem !important; - } - .md\\:m-auto { - margin: auto !important; - } - .md\\:mt-0 { - margin-top: 0rem !important; - } - .md\\:mt-1 { - margin-top: 0.25rem !important; - } - .md\\:mt-2 { - margin-top: 0.5rem !important; - } - .md\\:mt-3 { - margin-top: 1rem !important; - } - .md\\:mt-4 { - margin-top: 1.5rem !important; - } - .md\\:mt-5 { - margin-top: 2rem !important; - } - .md\\:mt-6 { - margin-top: 3rem !important; - } - .md\\:mt-7 { - margin-top: 4rem !important; - } - .md\\:mt-8 { - margin-top: 5rem !important; - } - .md\\:-mt-1 { - margin-top: -0.25rem !important; - } - .md\\:-mt-2 { - margin-top: -0.5rem !important; - } - .md\\:-mt-3 { - margin-top: -1rem !important; - } - .md\\:-mt-4 { - margin-top: -1.5rem !important; - } - .md\\:-mt-5 { - margin-top: -2rem !important; - } - .md\\:-mt-6 { - margin-top: -3rem !important; - } - .md\\:-mt-7 { - margin-top: -4rem !important; - } - .md\\:-mt-8 { - margin-top: -5rem !important; - } - .md\\:mt-auto { - margin-top: auto !important; - } - .md\\:mr-0 { - margin-right: 0rem !important; - } - .md\\:mr-1 { - margin-right: 0.25rem !important; - } - .md\\:mr-2 { - margin-right: 0.5rem !important; - } - .md\\:mr-3 { - margin-right: 1rem !important; - } - .md\\:mr-4 { - margin-right: 1.5rem !important; - } - .md\\:mr-5 { - margin-right: 2rem !important; - } - .md\\:mr-6 { - margin-right: 3rem !important; - } - .md\\:mr-7 { - margin-right: 4rem !important; - } - .md\\:mr-8 { - margin-right: 5rem !important; - } - .md\\:-mr-1 { - margin-right: -0.25rem !important; - } - .md\\:-mr-2 { - margin-right: -0.5rem !important; - } - .md\\:-mr-3 { - margin-right: -1rem !important; - } - .md\\:-mr-4 { - margin-right: -1.5rem !important; - } - .md\\:-mr-5 { - margin-right: -2rem !important; - } - .md\\:-mr-6 { - margin-right: -3rem !important; - } - .md\\:-mr-7 { - margin-right: -4rem !important; - } - .md\\:-mr-8 { - margin-right: -5rem !important; - } - .md\\:mr-auto { - margin-right: auto !important; - } - .md\\:ml-0 { - margin-left: 0rem !important; - } - .md\\:ml-1 { - margin-left: 0.25rem !important; - } - .md\\:ml-2 { - margin-left: 0.5rem !important; - } - .md\\:ml-3 { - margin-left: 1rem !important; - } - .md\\:ml-4 { - margin-left: 1.5rem !important; - } - .md\\:ml-5 { - margin-left: 2rem !important; - } - .md\\:ml-6 { - margin-left: 3rem !important; - } - .md\\:ml-7 { - margin-left: 4rem !important; - } - .md\\:ml-8 { - margin-left: 5rem !important; - } - .md\\:-ml-1 { - margin-left: -0.25rem !important; - } - .md\\:-ml-2 { - margin-left: -0.5rem !important; - } - .md\\:-ml-3 { - margin-left: -1rem !important; - } - .md\\:-ml-4 { - margin-left: -1.5rem !important; - } - .md\\:-ml-5 { - margin-left: -2rem !important; - } - .md\\:-ml-6 { - margin-left: -3rem !important; - } - .md\\:-ml-7 { - margin-left: -4rem !important; - } - .md\\:-ml-8 { - margin-left: -5rem !important; - } - .md\\:ml-auto { - margin-left: auto !important; - } - .md\\:mb-0 { - margin-bottom: 0rem !important; - } - .md\\:mb-1 { - margin-bottom: 0.25rem !important; - } - .md\\:mb-2 { - margin-bottom: 0.5rem !important; - } - .md\\:mb-3 { - margin-bottom: 1rem !important; - } - .md\\:mb-4 { - margin-bottom: 1.5rem !important; - } - .md\\:mb-5 { - margin-bottom: 2rem !important; - } - .md\\:mb-6 { - margin-bottom: 3rem !important; - } - .md\\:mb-7 { - margin-bottom: 4rem !important; - } - .md\\:mb-8 { - margin-bottom: 5rem !important; - } - .md\\:-mb-1 { - margin-bottom: -0.25rem !important; - } - .md\\:-mb-2 { - margin-bottom: -0.5rem !important; - } - .md\\:-mb-3 { - margin-bottom: -1rem !important; - } - .md\\:-mb-4 { - margin-bottom: -1.5rem !important; - } - .md\\:-mb-5 { - margin-bottom: -2rem !important; - } - .md\\:-mb-6 { - margin-bottom: -3rem !important; - } - .md\\:-mb-7 { - margin-bottom: -4rem !important; - } - .md\\:-mb-8 { - margin-bottom: -5rem !important; - } - .md\\:mb-auto { - margin-bottom: auto !important; - } - .md\\:mx-0 { - margin-left: 0rem !important; - margin-right: 0rem !important; - } - .md\\:mx-1 { - margin-left: 0.25rem !important; - margin-right: 0.25rem !important; - } - .md\\:mx-2 { - margin-left: 0.5rem !important; - margin-right: 0.5rem !important; - } - .md\\:mx-3 { - margin-left: 1rem !important; - margin-right: 1rem !important; - } - .md\\:mx-4 { - margin-left: 1.5rem !important; - margin-right: 1.5rem !important; - } - .md\\:mx-5 { - margin-left: 2rem !important; - margin-right: 2rem !important; - } - .md\\:mx-6 { - margin-left: 3rem !important; - margin-right: 3rem !important; - } - .md\\:mx-7 { - margin-left: 4rem !important; - margin-right: 4rem !important; - } - .md\\:mx-8 { - margin-left: 5rem !important; - margin-right: 5rem !important; - } - .md\\:-mx-1 { - margin-left: -0.25rem !important; - margin-right: -0.25rem !important; - } - .md\\:-mx-2 { - margin-left: -0.5rem !important; - margin-right: -0.5rem !important; - } - .md\\:-mx-3 { - margin-left: -1rem !important; - margin-right: -1rem !important; - } - .md\\:-mx-4 { - margin-left: -1.5rem !important; - margin-right: -1.5rem !important; - } - .md\\:-mx-5 { - margin-left: -2rem !important; - margin-right: -2rem !important; - } - .md\\:-mx-6 { - margin-left: -3rem !important; - margin-right: -3rem !important; - } - .md\\:-mx-7 { - margin-left: -4rem !important; - margin-right: -4rem !important; - } - .md\\:-mx-8 { - margin-left: -5rem !important; - margin-right: -5rem !important; - } - .md\\:mx-auto { - margin-left: auto !important; - margin-right: auto !important; - } - .md\\:my-0 { - margin-top: 0rem !important; - margin-bottom: 0rem !important; - } - .md\\:my-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; - } - .md\\:my-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; - } - .md\\:my-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; - } - .md\\:my-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; - } - .md\\:my-5 { - margin-top: 2rem !important; - margin-bottom: 2rem !important; - } - .md\\:my-6 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; - } - .md\\:my-7 { - margin-top: 4rem !important; - margin-bottom: 4rem !important; - } - .md\\:my-8 { - margin-top: 5rem !important; - margin-bottom: 5rem !important; - } - .md\\:-my-1 { - margin-top: -0.25rem !important; - margin-bottom: -0.25rem !important; - } - .md\\:-my-2 { - margin-top: -0.5rem !important; - margin-bottom: -0.5rem !important; - } - .md\\:-my-3 { - margin-top: -1rem !important; - margin-bottom: -1rem !important; - } - .md\\:-my-4 { - margin-top: -1.5rem !important; - margin-bottom: -1.5rem !important; - } - .md\\:-my-5 { - margin-top: -2rem !important; - margin-bottom: -2rem !important; - } - .md\\:-my-6 { - margin-top: -3rem !important; - margin-bottom: -3rem !important; - } - .md\\:-my-7 { - margin-top: -4rem !important; - margin-bottom: -4rem !important; - } - .md\\:-my-8 { - margin-top: -5rem !important; - margin-bottom: -5rem !important; - } - .md\\:my-auto { - margin-top: auto !important; - margin-bottom: auto !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:m-0 { - margin: 0rem !important; - } - .lg\\:m-1 { - margin: 0.25rem !important; - } - .lg\\:m-2 { - margin: 0.5rem !important; - } - .lg\\:m-3 { - margin: 1rem !important; - } - .lg\\:m-4 { - margin: 1.5rem !important; - } - .lg\\:m-5 { - margin: 2rem !important; - } - .lg\\:m-6 { - margin: 3rem !important; - } - .lg\\:m-7 { - margin: 4rem !important; - } - .lg\\:m-8 { - margin: 5rem !important; - } - .lg\\:-m-1 { - margin: -0.25rem !important; - } - .lg\\:-m-2 { - margin: -0.5rem !important; - } - .lg\\:-m-3 { - margin: -1rem !important; - } - .lg\\:-m-4 { - margin: -1.5rem !important; - } - .lg\\:-m-5 { - margin: -2rem !important; - } - .lg\\:-m-6 { - margin: -3rem !important; - } - .lg\\:-m-7 { - margin: -4rem !important; - } - .lg\\:-m-8 { - margin: -5rem !important; - } - .lg\\:m-auto { - margin: auto !important; - } - .lg\\:mt-0 { - margin-top: 0rem !important; - } - .lg\\:mt-1 { - margin-top: 0.25rem !important; - } - .lg\\:mt-2 { - margin-top: 0.5rem !important; - } - .lg\\:mt-3 { - margin-top: 1rem !important; - } - .lg\\:mt-4 { - margin-top: 1.5rem !important; - } - .lg\\:mt-5 { - margin-top: 2rem !important; - } - .lg\\:mt-6 { - margin-top: 3rem !important; - } - .lg\\:mt-7 { - margin-top: 4rem !important; - } - .lg\\:mt-8 { - margin-top: 5rem !important; - } - .lg\\:-mt-1 { - margin-top: -0.25rem !important; - } - .lg\\:-mt-2 { - margin-top: -0.5rem !important; - } - .lg\\:-mt-3 { - margin-top: -1rem !important; - } - .lg\\:-mt-4 { - margin-top: -1.5rem !important; - } - .lg\\:-mt-5 { - margin-top: -2rem !important; - } - .lg\\:-mt-6 { - margin-top: -3rem !important; - } - .lg\\:-mt-7 { - margin-top: -4rem !important; - } - .lg\\:-mt-8 { - margin-top: -5rem !important; - } - .lg\\:mt-auto { - margin-top: auto !important; - } - .lg\\:mr-0 { - margin-right: 0rem !important; - } - .lg\\:mr-1 { - margin-right: 0.25rem !important; - } - .lg\\:mr-2 { - margin-right: 0.5rem !important; - } - .lg\\:mr-3 { - margin-right: 1rem !important; - } - .lg\\:mr-4 { - margin-right: 1.5rem !important; - } - .lg\\:mr-5 { - margin-right: 2rem !important; - } - .lg\\:mr-6 { - margin-right: 3rem !important; - } - .lg\\:mr-7 { - margin-right: 4rem !important; - } - .lg\\:mr-8 { - margin-right: 5rem !important; - } - .lg\\:-mr-1 { - margin-right: -0.25rem !important; - } - .lg\\:-mr-2 { - margin-right: -0.5rem !important; - } - .lg\\:-mr-3 { - margin-right: -1rem !important; - } - .lg\\:-mr-4 { - margin-right: -1.5rem !important; - } - .lg\\:-mr-5 { - margin-right: -2rem !important; - } - .lg\\:-mr-6 { - margin-right: -3rem !important; - } - .lg\\:-mr-7 { - margin-right: -4rem !important; - } - .lg\\:-mr-8 { - margin-right: -5rem !important; - } - .lg\\:mr-auto { - margin-right: auto !important; - } - .lg\\:ml-0 { - margin-left: 0rem !important; - } - .lg\\:ml-1 { - margin-left: 0.25rem !important; - } - .lg\\:ml-2 { - margin-left: 0.5rem !important; - } - .lg\\:ml-3 { - margin-left: 1rem !important; - } - .lg\\:ml-4 { - margin-left: 1.5rem !important; - } - .lg\\:ml-5 { - margin-left: 2rem !important; - } - .lg\\:ml-6 { - margin-left: 3rem !important; - } - .lg\\:ml-7 { - margin-left: 4rem !important; - } - .lg\\:ml-8 { - margin-left: 5rem !important; - } - .lg\\:-ml-1 { - margin-left: -0.25rem !important; - } - .lg\\:-ml-2 { - margin-left: -0.5rem !important; - } - .lg\\:-ml-3 { - margin-left: -1rem !important; - } - .lg\\:-ml-4 { - margin-left: -1.5rem !important; - } - .lg\\:-ml-5 { - margin-left: -2rem !important; - } - .lg\\:-ml-6 { - margin-left: -3rem !important; - } - .lg\\:-ml-7 { - margin-left: -4rem !important; - } - .lg\\:-ml-8 { - margin-left: -5rem !important; - } - .lg\\:ml-auto { - margin-left: auto !important; - } - .lg\\:mb-0 { - margin-bottom: 0rem !important; - } - .lg\\:mb-1 { - margin-bottom: 0.25rem !important; - } - .lg\\:mb-2 { - margin-bottom: 0.5rem !important; - } - .lg\\:mb-3 { - margin-bottom: 1rem !important; - } - .lg\\:mb-4 { - margin-bottom: 1.5rem !important; - } - .lg\\:mb-5 { - margin-bottom: 2rem !important; - } - .lg\\:mb-6 { - margin-bottom: 3rem !important; - } - .lg\\:mb-7 { - margin-bottom: 4rem !important; - } - .lg\\:mb-8 { - margin-bottom: 5rem !important; - } - .lg\\:-mb-1 { - margin-bottom: -0.25rem !important; - } - .lg\\:-mb-2 { - margin-bottom: -0.5rem !important; - } - .lg\\:-mb-3 { - margin-bottom: -1rem !important; - } - .lg\\:-mb-4 { - margin-bottom: -1.5rem !important; - } - .lg\\:-mb-5 { - margin-bottom: -2rem !important; - } - .lg\\:-mb-6 { - margin-bottom: -3rem !important; - } - .lg\\:-mb-7 { - margin-bottom: -4rem !important; - } - .lg\\:-mb-8 { - margin-bottom: -5rem !important; - } - .lg\\:mb-auto { - margin-bottom: auto !important; - } - .lg\\:mx-0 { - margin-left: 0rem !important; - margin-right: 0rem !important; - } - .lg\\:mx-1 { - margin-left: 0.25rem !important; - margin-right: 0.25rem !important; - } - .lg\\:mx-2 { - margin-left: 0.5rem !important; - margin-right: 0.5rem !important; - } - .lg\\:mx-3 { - margin-left: 1rem !important; - margin-right: 1rem !important; - } - .lg\\:mx-4 { - margin-left: 1.5rem !important; - margin-right: 1.5rem !important; - } - .lg\\:mx-5 { - margin-left: 2rem !important; - margin-right: 2rem !important; - } - .lg\\:mx-6 { - margin-left: 3rem !important; - margin-right: 3rem !important; - } - .lg\\:mx-7 { - margin-left: 4rem !important; - margin-right: 4rem !important; - } - .lg\\:mx-8 { - margin-left: 5rem !important; - margin-right: 5rem !important; - } - .lg\\:-mx-1 { - margin-left: -0.25rem !important; - margin-right: -0.25rem !important; - } - .lg\\:-mx-2 { - margin-left: -0.5rem !important; - margin-right: -0.5rem !important; - } - .lg\\:-mx-3 { - margin-left: -1rem !important; - margin-right: -1rem !important; - } - .lg\\:-mx-4 { - margin-left: -1.5rem !important; - margin-right: -1.5rem !important; - } - .lg\\:-mx-5 { - margin-left: -2rem !important; - margin-right: -2rem !important; - } - .lg\\:-mx-6 { - margin-left: -3rem !important; - margin-right: -3rem !important; - } - .lg\\:-mx-7 { - margin-left: -4rem !important; - margin-right: -4rem !important; - } - .lg\\:-mx-8 { - margin-left: -5rem !important; - margin-right: -5rem !important; - } - .lg\\:mx-auto { - margin-left: auto !important; - margin-right: auto !important; - } - .lg\\:my-0 { - margin-top: 0rem !important; - margin-bottom: 0rem !important; - } - .lg\\:my-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; - } - .lg\\:my-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; - } - .lg\\:my-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; - } - .lg\\:my-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; - } - .lg\\:my-5 { - margin-top: 2rem !important; - margin-bottom: 2rem !important; - } - .lg\\:my-6 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; - } - .lg\\:my-7 { - margin-top: 4rem !important; - margin-bottom: 4rem !important; - } - .lg\\:my-8 { - margin-top: 5rem !important; - margin-bottom: 5rem !important; - } - .lg\\:-my-1 { - margin-top: -0.25rem !important; - margin-bottom: -0.25rem !important; - } - .lg\\:-my-2 { - margin-top: -0.5rem !important; - margin-bottom: -0.5rem !important; - } - .lg\\:-my-3 { - margin-top: -1rem !important; - margin-bottom: -1rem !important; - } - .lg\\:-my-4 { - margin-top: -1.5rem !important; - margin-bottom: -1.5rem !important; - } - .lg\\:-my-5 { - margin-top: -2rem !important; - margin-bottom: -2rem !important; - } - .lg\\:-my-6 { - margin-top: -3rem !important; - margin-bottom: -3rem !important; - } - .lg\\:-my-7 { - margin-top: -4rem !important; - margin-bottom: -4rem !important; - } - .lg\\:-my-8 { - margin-top: -5rem !important; - margin-bottom: -5rem !important; - } - .lg\\:my-auto { - margin-top: auto !important; - margin-bottom: auto !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:m-0 { - margin: 0rem !important; - } - .xl\\:m-1 { - margin: 0.25rem !important; - } - .xl\\:m-2 { - margin: 0.5rem !important; - } - .xl\\:m-3 { - margin: 1rem !important; - } - .xl\\:m-4 { - margin: 1.5rem !important; - } - .xl\\:m-5 { - margin: 2rem !important; - } - .xl\\:m-6 { - margin: 3rem !important; - } - .xl\\:m-7 { - margin: 4rem !important; - } - .xl\\:m-8 { - margin: 5rem !important; - } - .xl\\:-m-1 { - margin: -0.25rem !important; - } - .xl\\:-m-2 { - margin: -0.5rem !important; - } - .xl\\:-m-3 { - margin: -1rem !important; - } - .xl\\:-m-4 { - margin: -1.5rem !important; - } - .xl\\:-m-5 { - margin: -2rem !important; - } - .xl\\:-m-6 { - margin: -3rem !important; - } - .xl\\:-m-7 { - margin: -4rem !important; - } - .xl\\:-m-8 { - margin: -5rem !important; - } - .xl\\:m-auto { - margin: auto !important; - } - .xl\\:mt-0 { - margin-top: 0rem !important; - } - .xl\\:mt-1 { - margin-top: 0.25rem !important; - } - .xl\\:mt-2 { - margin-top: 0.5rem !important; - } - .xl\\:mt-3 { - margin-top: 1rem !important; - } - .xl\\:mt-4 { - margin-top: 1.5rem !important; - } - .xl\\:mt-5 { - margin-top: 2rem !important; - } - .xl\\:mt-6 { - margin-top: 3rem !important; - } - .xl\\:mt-7 { - margin-top: 4rem !important; - } - .xl\\:mt-8 { - margin-top: 5rem !important; - } - .xl\\:-mt-1 { - margin-top: -0.25rem !important; - } - .xl\\:-mt-2 { - margin-top: -0.5rem !important; - } - .xl\\:-mt-3 { - margin-top: -1rem !important; - } - .xl\\:-mt-4 { - margin-top: -1.5rem !important; - } - .xl\\:-mt-5 { - margin-top: -2rem !important; - } - .xl\\:-mt-6 { - margin-top: -3rem !important; - } - .xl\\:-mt-7 { - margin-top: -4rem !important; - } - .xl\\:-mt-8 { - margin-top: -5rem !important; - } - .xl\\:mt-auto { - margin-top: auto !important; - } - .xl\\:mr-0 { - margin-right: 0rem !important; - } - .xl\\:mr-1 { - margin-right: 0.25rem !important; - } - .xl\\:mr-2 { - margin-right: 0.5rem !important; - } - .xl\\:mr-3 { - margin-right: 1rem !important; - } - .xl\\:mr-4 { - margin-right: 1.5rem !important; - } - .xl\\:mr-5 { - margin-right: 2rem !important; - } - .xl\\:mr-6 { - margin-right: 3rem !important; - } - .xl\\:mr-7 { - margin-right: 4rem !important; - } - .xl\\:mr-8 { - margin-right: 5rem !important; - } - .xl\\:-mr-1 { - margin-right: -0.25rem !important; - } - .xl\\:-mr-2 { - margin-right: -0.5rem !important; - } - .xl\\:-mr-3 { - margin-right: -1rem !important; - } - .xl\\:-mr-4 { - margin-right: -1.5rem !important; - } - .xl\\:-mr-5 { - margin-right: -2rem !important; - } - .xl\\:-mr-6 { - margin-right: -3rem !important; - } - .xl\\:-mr-7 { - margin-right: -4rem !important; - } - .xl\\:-mr-8 { - margin-right: -5rem !important; - } - .xl\\:mr-auto { - margin-right: auto !important; - } - .xl\\:ml-0 { - margin-left: 0rem !important; - } - .xl\\:ml-1 { - margin-left: 0.25rem !important; - } - .xl\\:ml-2 { - margin-left: 0.5rem !important; - } - .xl\\:ml-3 { - margin-left: 1rem !important; - } - .xl\\:ml-4 { - margin-left: 1.5rem !important; - } - .xl\\:ml-5 { - margin-left: 2rem !important; - } - .xl\\:ml-6 { - margin-left: 3rem !important; - } - .xl\\:ml-7 { - margin-left: 4rem !important; - } - .xl\\:ml-8 { - margin-left: 5rem !important; - } - .xl\\:-ml-1 { - margin-left: -0.25rem !important; - } - .xl\\:-ml-2 { - margin-left: -0.5rem !important; - } - .xl\\:-ml-3 { - margin-left: -1rem !important; - } - .xl\\:-ml-4 { - margin-left: -1.5rem !important; - } - .xl\\:-ml-5 { - margin-left: -2rem !important; - } - .xl\\:-ml-6 { - margin-left: -3rem !important; - } - .xl\\:-ml-7 { - margin-left: -4rem !important; - } - .xl\\:-ml-8 { - margin-left: -5rem !important; - } - .xl\\:ml-auto { - margin-left: auto !important; - } - .xl\\:mb-0 { - margin-bottom: 0rem !important; - } - .xl\\:mb-1 { - margin-bottom: 0.25rem !important; - } - .xl\\:mb-2 { - margin-bottom: 0.5rem !important; - } - .xl\\:mb-3 { - margin-bottom: 1rem !important; - } - .xl\\:mb-4 { - margin-bottom: 1.5rem !important; - } - .xl\\:mb-5 { - margin-bottom: 2rem !important; - } - .xl\\:mb-6 { - margin-bottom: 3rem !important; - } - .xl\\:mb-7 { - margin-bottom: 4rem !important; - } - .xl\\:mb-8 { - margin-bottom: 5rem !important; - } - .xl\\:-mb-1 { - margin-bottom: -0.25rem !important; - } - .xl\\:-mb-2 { - margin-bottom: -0.5rem !important; - } - .xl\\:-mb-3 { - margin-bottom: -1rem !important; - } - .xl\\:-mb-4 { - margin-bottom: -1.5rem !important; - } - .xl\\:-mb-5 { - margin-bottom: -2rem !important; - } - .xl\\:-mb-6 { - margin-bottom: -3rem !important; - } - .xl\\:-mb-7 { - margin-bottom: -4rem !important; - } - .xl\\:-mb-8 { - margin-bottom: -5rem !important; - } - .xl\\:mb-auto { - margin-bottom: auto !important; - } - .xl\\:mx-0 { - margin-left: 0rem !important; - margin-right: 0rem !important; - } - .xl\\:mx-1 { - margin-left: 0.25rem !important; - margin-right: 0.25rem !important; - } - .xl\\:mx-2 { - margin-left: 0.5rem !important; - margin-right: 0.5rem !important; - } - .xl\\:mx-3 { - margin-left: 1rem !important; - margin-right: 1rem !important; - } - .xl\\:mx-4 { - margin-left: 1.5rem !important; - margin-right: 1.5rem !important; - } - .xl\\:mx-5 { - margin-left: 2rem !important; - margin-right: 2rem !important; - } - .xl\\:mx-6 { - margin-left: 3rem !important; - margin-right: 3rem !important; - } - .xl\\:mx-7 { - margin-left: 4rem !important; - margin-right: 4rem !important; - } - .xl\\:mx-8 { - margin-left: 5rem !important; - margin-right: 5rem !important; - } - .xl\\:-mx-1 { - margin-left: -0.25rem !important; - margin-right: -0.25rem !important; - } - .xl\\:-mx-2 { - margin-left: -0.5rem !important; - margin-right: -0.5rem !important; - } - .xl\\:-mx-3 { - margin-left: -1rem !important; - margin-right: -1rem !important; - } - .xl\\:-mx-4 { - margin-left: -1.5rem !important; - margin-right: -1.5rem !important; - } - .xl\\:-mx-5 { - margin-left: -2rem !important; - margin-right: -2rem !important; - } - .xl\\:-mx-6 { - margin-left: -3rem !important; - margin-right: -3rem !important; - } - .xl\\:-mx-7 { - margin-left: -4rem !important; - margin-right: -4rem !important; - } - .xl\\:-mx-8 { - margin-left: -5rem !important; - margin-right: -5rem !important; - } - .xl\\:mx-auto { - margin-left: auto !important; - margin-right: auto !important; - } - .xl\\:my-0 { - margin-top: 0rem !important; - margin-bottom: 0rem !important; - } - .xl\\:my-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; - } - .xl\\:my-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; - } - .xl\\:my-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; - } - .xl\\:my-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; - } - .xl\\:my-5 { - margin-top: 2rem !important; - margin-bottom: 2rem !important; - } - .xl\\:my-6 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; - } - .xl\\:my-7 { - margin-top: 4rem !important; - margin-bottom: 4rem !important; - } - .xl\\:my-8 { - margin-top: 5rem !important; - margin-bottom: 5rem !important; - } - .xl\\:-my-1 { - margin-top: -0.25rem !important; - margin-bottom: -0.25rem !important; - } - .xl\\:-my-2 { - margin-top: -0.5rem !important; - margin-bottom: -0.5rem !important; - } - .xl\\:-my-3 { - margin-top: -1rem !important; - margin-bottom: -1rem !important; - } - .xl\\:-my-4 { - margin-top: -1.5rem !important; - margin-bottom: -1.5rem !important; - } - .xl\\:-my-5 { - margin-top: -2rem !important; - margin-bottom: -2rem !important; - } - .xl\\:-my-6 { - margin-top: -3rem !important; - margin-bottom: -3rem !important; - } - .xl\\:-my-7 { - margin-top: -4rem !important; - margin-bottom: -4rem !important; - } - .xl\\:-my-8 { - margin-top: -5rem !important; - margin-bottom: -5rem !important; - } - .xl\\:my-auto { - margin-top: auto !important; - margin-bottom: auto !important; - } -} -.shadow-none { - box-shadow: none !important; -} - -.shadow-1 { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important; -} - -.shadow-2 { - box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important; -} - -.shadow-3 { - box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important; -} - -.shadow-4 { - box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important; -} - -.shadow-5 { - box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important; -} - -.shadow-6 { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important; -} - -.shadow-7 { - box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important; -} - -.shadow-8 { - box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important; -} - -.focus\\:shadow-none:focus { - box-shadow: none !important; -} - -.hover\\:shadow-none:hover { - box-shadow: none !important; -} - -.active\\:shadow-none:active { - box-shadow: none !important; -} - -.focus\\:shadow-1:focus { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important; -} - -.hover\\:shadow-1:hover { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important; -} - -.active\\:shadow-1:active { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important; -} - -.focus\\:shadow-2:focus { - box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important; -} - -.hover\\:shadow-2:hover { - box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important; -} - -.active\\:shadow-2:active { - box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important; -} - -.focus\\:shadow-3:focus { - box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important; -} - -.hover\\:shadow-3:hover { - box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important; -} - -.active\\:shadow-3:active { - box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important; -} - -.focus\\:shadow-4:focus { - box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important; -} - -.hover\\:shadow-4:hover { - box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important; -} - -.active\\:shadow-4:active { - box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important; -} - -.focus\\:shadow-5:focus { - box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important; -} - -.hover\\:shadow-5:hover { - box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important; -} - -.active\\:shadow-5:active { - box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important; -} - -.focus\\:shadow-6:focus { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important; -} - -.hover\\:shadow-6:hover { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important; -} - -.active\\:shadow-6:active { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important; -} - -.focus\\:shadow-7:focus { - box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important; -} - -.hover\\:shadow-7:hover { - box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important; -} - -.active\\:shadow-7:active { - box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important; -} - -.focus\\:shadow-8:focus { - box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important; -} - -.hover\\:shadow-8:hover { - box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important; -} - -.active\\:shadow-8:active { - box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important; -} - -@media screen and (min-width: 576px) { - .sm\\:shadow-none { - box-shadow: none !important; - } - .sm\\:shadow-1 { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important; - } - .sm\\:shadow-2 { - box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important; - } - .sm\\:shadow-3 { - box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important; - } - .sm\\:shadow-4 { - box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important; - } - .sm\\:shadow-5 { - box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important; - } - .sm\\:shadow-6 { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important; - } - .sm\\:shadow-7 { - box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important; - } - .sm\\:shadow-8 { - box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important; - } - .sm\\:focus\\:shadow-none:focus { - box-shadow: none !important; - } - .sm\\:hover\\:shadow-none:hover { - box-shadow: none !important; - } - .sm\\:active\\:shadow-none:active { - box-shadow: none !important; - } - .sm\\:focus\\:shadow-1:focus { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important; - } - .sm\\:hover\\:shadow-1:hover { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important; - } - .sm\\:active\\:shadow-1:active { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important; - } - .sm\\:focus\\:shadow-2:focus { - box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important; - } - .sm\\:hover\\:shadow-2:hover { - box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important; - } - .sm\\:active\\:shadow-2:active { - box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important; - } - .sm\\:focus\\:shadow-3:focus { - box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important; - } - .sm\\:hover\\:shadow-3:hover { - box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important; - } - .sm\\:active\\:shadow-3:active { - box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important; - } - .sm\\:focus\\:shadow-4:focus { - box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important; - } - .sm\\:hover\\:shadow-4:hover { - box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important; - } - .sm\\:active\\:shadow-4:active { - box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important; - } - .sm\\:focus\\:shadow-5:focus { - box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important; - } - .sm\\:hover\\:shadow-5:hover { - box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important; - } - .sm\\:active\\:shadow-5:active { - box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important; - } - .sm\\:focus\\:shadow-6:focus { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important; - } - .sm\\:hover\\:shadow-6:hover { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important; - } - .sm\\:active\\:shadow-6:active { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important; - } - .sm\\:focus\\:shadow-7:focus { - box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important; - } - .sm\\:hover\\:shadow-7:hover { - box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important; - } - .sm\\:active\\:shadow-7:active { - box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important; - } - .sm\\:focus\\:shadow-8:focus { - box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important; - } - .sm\\:hover\\:shadow-8:hover { - box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important; - } - .sm\\:active\\:shadow-8:active { - box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important; - } -} -@media screen and (min-width: 768px) { - .md\\:shadow-none { - box-shadow: none !important; - } - .md\\:shadow-1 { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important; - } - .md\\:shadow-2 { - box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important; - } - .md\\:shadow-3 { - box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important; - } - .md\\:shadow-4 { - box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important; - } - .md\\:shadow-5 { - box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important; - } - .md\\:shadow-6 { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important; - } - .md\\:shadow-7 { - box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important; - } - .md\\:shadow-8 { - box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important; - } - .md\\:focus\\:shadow-none:focus { - box-shadow: none !important; - } - .md\\:hover\\:shadow-none:hover { - box-shadow: none !important; - } - .md\\:active\\:shadow-none:active { - box-shadow: none !important; - } - .md\\:focus\\:shadow-1:focus { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important; - } - .md\\:hover\\:shadow-1:hover { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important; - } - .md\\:active\\:shadow-1:active { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important; - } - .md\\:focus\\:shadow-2:focus { - box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important; - } - .md\\:hover\\:shadow-2:hover { - box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important; - } - .md\\:active\\:shadow-2:active { - box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important; - } - .md\\:focus\\:shadow-3:focus { - box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important; - } - .md\\:hover\\:shadow-3:hover { - box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important; - } - .md\\:active\\:shadow-3:active { - box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important; - } - .md\\:focus\\:shadow-4:focus { - box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important; - } - .md\\:hover\\:shadow-4:hover { - box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important; - } - .md\\:active\\:shadow-4:active { - box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important; - } - .md\\:focus\\:shadow-5:focus { - box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important; - } - .md\\:hover\\:shadow-5:hover { - box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important; - } - .md\\:active\\:shadow-5:active { - box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important; - } - .md\\:focus\\:shadow-6:focus { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important; - } - .md\\:hover\\:shadow-6:hover { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important; - } - .md\\:active\\:shadow-6:active { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important; - } - .md\\:focus\\:shadow-7:focus { - box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important; - } - .md\\:hover\\:shadow-7:hover { - box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important; - } - .md\\:active\\:shadow-7:active { - box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important; - } - .md\\:focus\\:shadow-8:focus { - box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important; - } - .md\\:hover\\:shadow-8:hover { - box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important; - } - .md\\:active\\:shadow-8:active { - box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:shadow-none { - box-shadow: none !important; - } - .lg\\:shadow-1 { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important; - } - .lg\\:shadow-2 { - box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important; - } - .lg\\:shadow-3 { - box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important; - } - .lg\\:shadow-4 { - box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important; - } - .lg\\:shadow-5 { - box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important; - } - .lg\\:shadow-6 { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important; - } - .lg\\:shadow-7 { - box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important; - } - .lg\\:shadow-8 { - box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important; - } - .lg\\:focus\\:shadow-none:focus { - box-shadow: none !important; - } - .lg\\:hover\\:shadow-none:hover { - box-shadow: none !important; - } - .lg\\:active\\:shadow-none:active { - box-shadow: none !important; - } - .lg\\:focus\\:shadow-1:focus { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important; - } - .lg\\:hover\\:shadow-1:hover { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important; - } - .lg\\:active\\:shadow-1:active { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important; - } - .lg\\:focus\\:shadow-2:focus { - box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important; - } - .lg\\:hover\\:shadow-2:hover { - box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important; - } - .lg\\:active\\:shadow-2:active { - box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important; - } - .lg\\:focus\\:shadow-3:focus { - box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important; - } - .lg\\:hover\\:shadow-3:hover { - box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important; - } - .lg\\:active\\:shadow-3:active { - box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important; - } - .lg\\:focus\\:shadow-4:focus { - box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important; - } - .lg\\:hover\\:shadow-4:hover { - box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important; - } - .lg\\:active\\:shadow-4:active { - box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important; - } - .lg\\:focus\\:shadow-5:focus { - box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important; - } - .lg\\:hover\\:shadow-5:hover { - box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important; - } - .lg\\:active\\:shadow-5:active { - box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important; - } - .lg\\:focus\\:shadow-6:focus { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important; - } - .lg\\:hover\\:shadow-6:hover { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important; - } - .lg\\:active\\:shadow-6:active { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important; - } - .lg\\:focus\\:shadow-7:focus { - box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important; - } - .lg\\:hover\\:shadow-7:hover { - box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important; - } - .lg\\:active\\:shadow-7:active { - box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important; - } - .lg\\:focus\\:shadow-8:focus { - box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important; - } - .lg\\:hover\\:shadow-8:hover { - box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important; - } - .lg\\:active\\:shadow-8:active { - box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:shadow-none { - box-shadow: none !important; - } - .xl\\:shadow-1 { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important; - } - .xl\\:shadow-2 { - box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important; - } - .xl\\:shadow-3 { - box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important; - } - .xl\\:shadow-4 { - box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important; - } - .xl\\:shadow-5 { - box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important; - } - .xl\\:shadow-6 { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important; - } - .xl\\:shadow-7 { - box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important; - } - .xl\\:shadow-8 { - box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important; - } - .xl\\:focus\\:shadow-none:focus { - box-shadow: none !important; - } - .xl\\:hover\\:shadow-none:hover { - box-shadow: none !important; - } - .xl\\:active\\:shadow-none:active { - box-shadow: none !important; - } - .xl\\:focus\\:shadow-1:focus { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important; - } - .xl\\:hover\\:shadow-1:hover { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important; - } - .xl\\:active\\:shadow-1:active { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important; - } - .xl\\:focus\\:shadow-2:focus { - box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important; - } - .xl\\:hover\\:shadow-2:hover { - box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important; - } - .xl\\:active\\:shadow-2:active { - box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important; - } - .xl\\:focus\\:shadow-3:focus { - box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important; - } - .xl\\:hover\\:shadow-3:hover { - box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important; - } - .xl\\:active\\:shadow-3:active { - box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important; - } - .xl\\:focus\\:shadow-4:focus { - box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important; - } - .xl\\:hover\\:shadow-4:hover { - box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important; - } - .xl\\:active\\:shadow-4:active { - box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important; - } - .xl\\:focus\\:shadow-5:focus { - box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important; - } - .xl\\:hover\\:shadow-5:hover { - box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important; - } - .xl\\:active\\:shadow-5:active { - box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important; - } - .xl\\:focus\\:shadow-6:focus { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important; - } - .xl\\:hover\\:shadow-6:hover { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important; - } - .xl\\:active\\:shadow-6:active { - box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important; - } - .xl\\:focus\\:shadow-7:focus { - box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important; - } - .xl\\:hover\\:shadow-7:hover { - box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important; - } - .xl\\:active\\:shadow-7:active { - box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important; - } - .xl\\:focus\\:shadow-8:focus { - box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important; - } - .xl\\:hover\\:shadow-8:hover { - box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important; - } - .xl\\:active\\:shadow-8:active { - box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important; - } -} -.border-none { - border-width: 0px !important; - border-style: none; -} - -.border-1 { - border-width: 1px !important; - border-style: solid; -} - -.border-2 { - border-width: 2px !important; - border-style: solid; -} - -.border-3 { - border-width: 3px !important; - border-style: solid; -} - -.border-top-none { - border-top-width: 0px !important; - border-top-style: none; -} - -.border-top-1 { - border-top-width: 1px !important; - border-top-style: solid; -} - -.border-top-2 { - border-top-width: 2px !important; - border-top-style: solid; -} - -.border-top-3 { - border-top-width: 3px !important; - border-top-style: solid; -} - -.border-right-none { - border-right-width: 0px !important; - border-right-style: none; -} - -.border-right-1 { - border-right-width: 1px !important; - border-right-style: solid; -} - -.border-right-2 { - border-right-width: 2px !important; - border-right-style: solid; -} - -.border-right-3 { - border-right-width: 3px !important; - border-right-style: solid; -} - -.border-left-none { - border-left-width: 0px !important; - border-left-style: none; -} - -.border-left-1 { - border-left-width: 1px !important; - border-left-style: solid; -} - -.border-left-2 { - border-left-width: 2px !important; - border-left-style: solid; -} - -.border-left-3 { - border-left-width: 3px !important; - border-left-style: solid; -} - -.border-bottom-none { - border-bottom-width: 0px !important; - border-bottom-style: none; -} - -.border-bottom-1 { - border-bottom-width: 1px !important; - border-bottom-style: solid; -} - -.border-bottom-2 { - border-bottom-width: 2px !important; - border-bottom-style: solid; -} - -.border-bottom-3 { - border-bottom-width: 3px !important; - border-bottom-style: solid; -} - -.border-x-none { - border-left-width: 0px !important; - border-left-style: none; - border-right-width: 0px !important; - border-right-style: none; -} - -.border-x-1 { - border-left-width: 1px !important; - border-left-style: solid; - border-right-width: 1px !important; - border-right-style: solid; -} - -.border-x-2 { - border-left-width: 2px !important; - border-left-style: solid; - border-right-width: 2px !important; - border-right-style: solid; -} - -.border-x-3 { - border-left-width: 3px !important; - border-left-style: solid; - border-right-width: 3px !important; - border-right-style: solid; -} - -.border-y-none { - border-top-width: 0px !important; - border-top-style: none; - border-bottom-width: 0px !important; - border-bottom-style: none; -} - -.border-y-1 { - border-top-width: 1px !important; - border-top-style: solid; - border-bottom-width: 1px !important; - border-bottom-style: solid; -} - -.border-y-2 { - border-top-width: 2px !important; - border-top-style: solid; - border-bottom-width: 2px !important; - border-bottom-style: solid; -} - -.border-y-3 { - border-top-width: 3px !important; - border-top-style: solid; - border-bottom-width: 3px !important; - border-bottom-style: solid; -} - -@media screen and (min-width: 576px) { - .sm\\:border-none { - border-width: 0px !important; - border-style: none; - } - .sm\\:border-1 { - border-width: 1px !important; - border-style: solid; - } - .sm\\:border-2 { - border-width: 2px !important; - border-style: solid; - } - .sm\\:border-3 { - border-width: 3px !important; - border-style: solid; - } - .sm\\:border-top-none { - border-top-width: 0px !important; - border-top-style: none; - } - .sm\\:border-top-1 { - border-top-width: 1px !important; - border-top-style: solid; - } - .sm\\:border-top-2 { - border-top-width: 2px !important; - border-top-style: solid; - } - .sm\\:border-top-3 { - border-top-width: 3px !important; - border-top-style: solid; - } - .sm\\:border-right-none { - border-right-width: 0px !important; - border-right-style: none; - } - .sm\\:border-right-1 { - border-right-width: 1px !important; - border-right-style: solid; - } - .sm\\:border-right-2 { - border-right-width: 2px !important; - border-right-style: solid; - } - .sm\\:border-right-3 { - border-right-width: 3px !important; - border-right-style: solid; - } - .sm\\:border-left-none { - border-left-width: 0px !important; - border-left-style: none; - } - .sm\\:border-left-1 { - border-left-width: 1px !important; - border-left-style: solid; - } - .sm\\:border-left-2 { - border-left-width: 2px !important; - border-left-style: solid; - } - .sm\\:border-left-3 { - border-left-width: 3px !important; - border-left-style: solid; - } - .sm\\:border-bottom-none { - border-bottom-width: 0px !important; - border-bottom-style: none; - } - .sm\\:border-bottom-1 { - border-bottom-width: 1px !important; - border-bottom-style: solid; - } - .sm\\:border-bottom-2 { - border-bottom-width: 2px !important; - border-bottom-style: solid; - } - .sm\\:border-bottom-3 { - border-bottom-width: 3px !important; - border-bottom-style: solid; - } - .sm\\:border-x-none { - border-left-width: 0px !important; - border-left-style: none; - border-right-width: 0px !important; - border-right-style: none; - } - .sm\\:border-x-1 { - border-left-width: 1px !important; - border-left-style: solid; - border-right-width: 1px !important; - border-right-style: solid; - } - .sm\\:border-x-2 { - border-left-width: 2px !important; - border-left-style: solid; - border-right-width: 2px !important; - border-right-style: solid; - } - .sm\\:border-x-3 { - border-left-width: 3px !important; - border-left-style: solid; - border-right-width: 3px !important; - border-right-style: solid; - } - .sm\\:border-y-none { - border-top-width: 0px !important; - border-top-style: none; - border-bottom-width: 0px !important; - border-bottom-style: none; - } - .sm\\:border-y-1 { - border-top-width: 1px !important; - border-top-style: solid; - border-bottom-width: 1px !important; - border-bottom-style: solid; - } - .sm\\:border-y-2 { - border-top-width: 2px !important; - border-top-style: solid; - border-bottom-width: 2px !important; - border-bottom-style: solid; - } - .sm\\:border-y-3 { - border-top-width: 3px !important; - border-top-style: solid; - border-bottom-width: 3px !important; - border-bottom-style: solid; - } -} -@media screen and (min-width: 768px) { - .md\\:border-none { - border-width: 0px !important; - border-style: none; - } - .md\\:border-1 { - border-width: 1px !important; - border-style: solid; - } - .md\\:border-2 { - border-width: 2px !important; - border-style: solid; - } - .md\\:border-3 { - border-width: 3px !important; - border-style: solid; - } - .md\\:border-top-none { - border-top-width: 0px !important; - border-top-style: none; - } - .md\\:border-top-1 { - border-top-width: 1px !important; - border-top-style: solid; - } - .md\\:border-top-2 { - border-top-width: 2px !important; - border-top-style: solid; - } - .md\\:border-top-3 { - border-top-width: 3px !important; - border-top-style: solid; - } - .md\\:border-right-none { - border-right-width: 0px !important; - border-right-style: none; - } - .md\\:border-right-1 { - border-right-width: 1px !important; - border-right-style: solid; - } - .md\\:border-right-2 { - border-right-width: 2px !important; - border-right-style: solid; - } - .md\\:border-right-3 { - border-right-width: 3px !important; - border-right-style: solid; - } - .md\\:border-left-none { - border-left-width: 0px !important; - border-left-style: none; - } - .md\\:border-left-1 { - border-left-width: 1px !important; - border-left-style: solid; - } - .md\\:border-left-2 { - border-left-width: 2px !important; - border-left-style: solid; - } - .md\\:border-left-3 { - border-left-width: 3px !important; - border-left-style: solid; - } - .md\\:border-bottom-none { - border-bottom-width: 0px !important; - border-bottom-style: none; - } - .md\\:border-bottom-1 { - border-bottom-width: 1px !important; - border-bottom-style: solid; - } - .md\\:border-bottom-2 { - border-bottom-width: 2px !important; - border-bottom-style: solid; - } - .md\\:border-bottom-3 { - border-bottom-width: 3px !important; - border-bottom-style: solid; - } - .md\\:border-x-none { - border-left-width: 0px !important; - border-left-style: none; - border-right-width: 0px !important; - border-right-style: none; - } - .md\\:border-x-1 { - border-left-width: 1px !important; - border-left-style: solid; - border-right-width: 1px !important; - border-right-style: solid; - } - .md\\:border-x-2 { - border-left-width: 2px !important; - border-left-style: solid; - border-right-width: 2px !important; - border-right-style: solid; - } - .md\\:border-x-3 { - border-left-width: 3px !important; - border-left-style: solid; - border-right-width: 3px !important; - border-right-style: solid; - } - .md\\:border-y-none { - border-top-width: 0px !important; - border-top-style: none; - border-bottom-width: 0px !important; - border-bottom-style: none; - } - .md\\:border-y-1 { - border-top-width: 1px !important; - border-top-style: solid; - border-bottom-width: 1px !important; - border-bottom-style: solid; - } - .md\\:border-y-2 { - border-top-width: 2px !important; - border-top-style: solid; - border-bottom-width: 2px !important; - border-bottom-style: solid; - } - .md\\:border-y-3 { - border-top-width: 3px !important; - border-top-style: solid; - border-bottom-width: 3px !important; - border-bottom-style: solid; - } -} -@media screen and (min-width: 992px) { - .lg\\:border-none { - border-width: 0px !important; - border-style: none; - } - .lg\\:border-1 { - border-width: 1px !important; - border-style: solid; - } - .lg\\:border-2 { - border-width: 2px !important; - border-style: solid; - } - .lg\\:border-3 { - border-width: 3px !important; - border-style: solid; - } - .lg\\:border-top-none { - border-top-width: 0px !important; - border-top-style: none; - } - .lg\\:border-top-1 { - border-top-width: 1px !important; - border-top-style: solid; - } - .lg\\:border-top-2 { - border-top-width: 2px !important; - border-top-style: solid; - } - .lg\\:border-top-3 { - border-top-width: 3px !important; - border-top-style: solid; - } - .lg\\:border-right-none { - border-right-width: 0px !important; - border-right-style: none; - } - .lg\\:border-right-1 { - border-right-width: 1px !important; - border-right-style: solid; - } - .lg\\:border-right-2 { - border-right-width: 2px !important; - border-right-style: solid; - } - .lg\\:border-right-3 { - border-right-width: 3px !important; - border-right-style: solid; - } - .lg\\:border-left-none { - border-left-width: 0px !important; - border-left-style: none; - } - .lg\\:border-left-1 { - border-left-width: 1px !important; - border-left-style: solid; - } - .lg\\:border-left-2 { - border-left-width: 2px !important; - border-left-style: solid; - } - .lg\\:border-left-3 { - border-left-width: 3px !important; - border-left-style: solid; - } - .lg\\:border-bottom-none { - border-bottom-width: 0px !important; - border-bottom-style: none; - } - .lg\\:border-bottom-1 { - border-bottom-width: 1px !important; - border-bottom-style: solid; - } - .lg\\:border-bottom-2 { - border-bottom-width: 2px !important; - border-bottom-style: solid; - } - .lg\\:border-bottom-3 { - border-bottom-width: 3px !important; - border-bottom-style: solid; - } - .lg\\:border-x-none { - border-left-width: 0px !important; - border-left-style: none; - border-right-width: 0px !important; - border-right-style: none; - } - .lg\\:border-x-1 { - border-left-width: 1px !important; - border-left-style: solid; - border-right-width: 1px !important; - border-right-style: solid; - } - .lg\\:border-x-2 { - border-left-width: 2px !important; - border-left-style: solid; - border-right-width: 2px !important; - border-right-style: solid; - } - .lg\\:border-x-3 { - border-left-width: 3px !important; - border-left-style: solid; - border-right-width: 3px !important; - border-right-style: solid; - } - .lg\\:border-y-none { - border-top-width: 0px !important; - border-top-style: none; - border-bottom-width: 0px !important; - border-bottom-style: none; - } - .lg\\:border-y-1 { - border-top-width: 1px !important; - border-top-style: solid; - border-bottom-width: 1px !important; - border-bottom-style: solid; - } - .lg\\:border-y-2 { - border-top-width: 2px !important; - border-top-style: solid; - border-bottom-width: 2px !important; - border-bottom-style: solid; - } - .lg\\:border-y-3 { - border-top-width: 3px !important; - border-top-style: solid; - border-bottom-width: 3px !important; - border-bottom-style: solid; - } -} -@media screen and (min-width: 1200px) { - .xl\\:border-none { - border-width: 0px !important; - border-style: none; - } - .xl\\:border-1 { - border-width: 1px !important; - border-style: solid; - } - .xl\\:border-2 { - border-width: 2px !important; - border-style: solid; - } - .xl\\:border-3 { - border-width: 3px !important; - border-style: solid; - } - .xl\\:border-top-none { - border-top-width: 0px !important; - border-top-style: none; - } - .xl\\:border-top-1 { - border-top-width: 1px !important; - border-top-style: solid; - } - .xl\\:border-top-2 { - border-top-width: 2px !important; - border-top-style: solid; - } - .xl\\:border-top-3 { - border-top-width: 3px !important; - border-top-style: solid; - } - .xl\\:border-right-none { - border-right-width: 0px !important; - border-right-style: none; - } - .xl\\:border-right-1 { - border-right-width: 1px !important; - border-right-style: solid; - } - .xl\\:border-right-2 { - border-right-width: 2px !important; - border-right-style: solid; - } - .xl\\:border-right-3 { - border-right-width: 3px !important; - border-right-style: solid; - } - .xl\\:border-left-none { - border-left-width: 0px !important; - border-left-style: none; - } - .xl\\:border-left-1 { - border-left-width: 1px !important; - border-left-style: solid; - } - .xl\\:border-left-2 { - border-left-width: 2px !important; - border-left-style: solid; - } - .xl\\:border-left-3 { - border-left-width: 3px !important; - border-left-style: solid; - } - .xl\\:border-bottom-none { - border-bottom-width: 0px !important; - border-bottom-style: none; - } - .xl\\:border-bottom-1 { - border-bottom-width: 1px !important; - border-bottom-style: solid; - } - .xl\\:border-bottom-2 { - border-bottom-width: 2px !important; - border-bottom-style: solid; - } - .xl\\:border-bottom-3 { - border-bottom-width: 3px !important; - border-bottom-style: solid; - } - .xl\\:border-x-none { - border-left-width: 0px !important; - border-left-style: none; - border-right-width: 0px !important; - border-right-style: none; - } - .xl\\:border-x-1 { - border-left-width: 1px !important; - border-left-style: solid; - border-right-width: 1px !important; - border-right-style: solid; - } - .xl\\:border-x-2 { - border-left-width: 2px !important; - border-left-style: solid; - border-right-width: 2px !important; - border-right-style: solid; - } - .xl\\:border-x-3 { - border-left-width: 3px !important; - border-left-style: solid; - border-right-width: 3px !important; - border-right-style: solid; - } - .xl\\:border-y-none { - border-top-width: 0px !important; - border-top-style: none; - border-bottom-width: 0px !important; - border-bottom-style: none; - } - .xl\\:border-y-1 { - border-top-width: 1px !important; - border-top-style: solid; - border-bottom-width: 1px !important; - border-bottom-style: solid; - } - .xl\\:border-y-2 { - border-top-width: 2px !important; - border-top-style: solid; - border-bottom-width: 2px !important; - border-bottom-style: solid; - } - .xl\\:border-y-3 { - border-top-width: 3px !important; - border-top-style: solid; - border-bottom-width: 3px !important; - border-bottom-style: solid; - } -} -.border-solid { - border-style: solid !important; -} - -.border-dashed { - border-style: dashed !important; -} - -.border-dotted { - border-style: dotted !important; -} - -.border-double { - border-style: double !important; -} - -@media screen and (min-width: 576px) { - .sm\\:border-solid { - border-style: solid !important; - } - .sm\\:border-dashed { - border-style: dashed !important; - } - .sm\\:border-dotted { - border-style: dotted !important; - } - .sm\\:border-double { - border-style: double !important; - } -} -@media screen and (min-width: 768px) { - .md\\:border-solid { - border-style: solid !important; - } - .md\\:border-dashed { - border-style: dashed !important; - } - .md\\:border-dotted { - border-style: dotted !important; - } - .md\\:border-double { - border-style: double !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:border-solid { - border-style: solid !important; - } - .lg\\:border-dashed { - border-style: dashed !important; - } - .lg\\:border-dotted { - border-style: dotted !important; - } - .lg\\:border-double { - border-style: double !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:border-solid { - border-style: solid !important; - } - .xl\\:border-dashed { - border-style: dashed !important; - } - .xl\\:border-dotted { - border-style: dotted !important; - } - .xl\\:border-double { - border-style: double !important; - } -} -.border-noround { - border-radius: 0 !important; -} - -.border-round { - border-radius: var(--border-radius) !important; -} - -.border-round-xs { - border-radius: 0.125rem !important; -} - -.border-round-sm { - border-radius: 0.25rem !important; -} - -.border-round-md { - border-radius: 0.375rem !important; -} - -.border-round-lg { - border-radius: 0.5rem !important; -} - -.border-round-xl { - border-radius: 0.75rem !important; -} - -.border-round-2xl { - border-radius: 1rem !important; -} - -.border-round-3xl { - border-radius: 1.5rem !important; -} - -.border-circle { - border-radius: 50% !important; -} - -@media screen and (min-width: 576px) { - .sm\\:border-noround { - border-radius: 0 !important; - } - .sm\\:border-round { - border-radius: var(--border-radius) !important; - } - .sm\\:border-round-xs { - border-radius: 0.125rem !important; - } - .sm\\:border-round-sm { - border-radius: 0.25rem !important; - } - .sm\\:border-round-md { - border-radius: 0.375rem !important; - } - .sm\\:border-round-lg { - border-radius: 0.5rem !important; - } - .sm\\:border-round-xl { - border-radius: 0.75rem !important; - } - .sm\\:border-round-2xl { - border-radius: 1rem !important; - } - .sm\\:border-round-3xl { - border-radius: 1.5rem !important; - } - .sm\\:border-circle { - border-radius: 50% !important; - } -} -@media screen and (min-width: 768px) { - .md\\:border-noround { - border-radius: 0 !important; - } - .md\\:border-round { - border-radius: var(--border-radius) !important; - } - .md\\:border-round-xs { - border-radius: 0.125rem !important; - } - .md\\:border-round-sm { - border-radius: 0.25rem !important; - } - .md\\:border-round-md { - border-radius: 0.375rem !important; - } - .md\\:border-round-lg { - border-radius: 0.5rem !important; - } - .md\\:border-round-xl { - border-radius: 0.75rem !important; - } - .md\\:border-round-2xl { - border-radius: 1rem !important; - } - .md\\:border-round-3xl { - border-radius: 1.5rem !important; - } - .md\\:border-circle { - border-radius: 50% !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:border-noround { - border-radius: 0 !important; - } - .lg\\:border-round { - border-radius: var(--border-radius) !important; - } - .lg\\:border-round-xs { - border-radius: 0.125rem !important; - } - .lg\\:border-round-sm { - border-radius: 0.25rem !important; - } - .lg\\:border-round-md { - border-radius: 0.375rem !important; - } - .lg\\:border-round-lg { - border-radius: 0.5rem !important; - } - .lg\\:border-round-xl { - border-radius: 0.75rem !important; - } - .lg\\:border-round-2xl { - border-radius: 1rem !important; - } - .lg\\:border-round-3xl { - border-radius: 1.5rem !important; - } - .lg\\:border-circle { - border-radius: 50% !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:border-noround { - border-radius: 0 !important; - } - .xl\\:border-round { - border-radius: var(--border-radius) !important; - } - .xl\\:border-round-xs { - border-radius: 0.125rem !important; - } - .xl\\:border-round-sm { - border-radius: 0.25rem !important; - } - .xl\\:border-round-md { - border-radius: 0.375rem !important; - } - .xl\\:border-round-lg { - border-radius: 0.5rem !important; - } - .xl\\:border-round-xl { - border-radius: 0.75rem !important; - } - .xl\\:border-round-2xl { - border-radius: 1rem !important; - } - .xl\\:border-round-3xl { - border-radius: 1.5rem !important; - } - .xl\\:border-circle { - border-radius: 50% !important; - } -} -.border-noround-left { - border-top-left-radius: 0 !important; - border-bottom-left-radius: 0 !important; -} - -.border-noround-top { - border-top-left-radius: 0 !important; - border-top-right-radius: 0 !important; -} - -.border-noround-right { - border-top-right-radius: 0 !important; - border-bottom-right-radius: 0 !important; -} - -.border-noround-bottom { - border-bottom-left-radius: 0 !important; - border-bottom-right-radius: 0 !important; -} - -.border-round-left { - border-top-left-radius: var(--border-radius) !important; - border-bottom-left-radius: var(--border-radius) !important; -} - -.border-round-top { - border-top-left-radius: var(--border-radius) !important; - border-top-right-radius: var(--border-radius) !important; -} - -.border-round-right { - border-top-right-radius: var(--border-radius) !important; - border-bottom-right-radius: var(--border-radius) !important; -} - -.border-round-bottom { - border-bottom-left-radius: var(--border-radius) !important; - border-bottom-right-radius: var(--border-radius) !important; -} - -.border-round-left-xs { - border-top-left-radius: 0.125rem !important; - border-bottom-left-radius: 0.125rem !important; -} - -.border-round-top-xs { - border-top-left-radius: 0.125rem !important; - border-top-right-radius: 0.125rem !important; -} - -.border-round-right-xs { - border-top-right-radius: 0.125rem !important; - border-bottom-right-radius: 0.125rem !important; -} - -.border-round-bottom-xs { - border-bottom-left-radius: 0.125rem !important; - border-bottom-right-radius: 0.125rem !important; -} - -.border-round-left-sm { - border-top-left-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; -} - -.border-round-top-sm { - border-top-left-radius: 0.25rem !important; - border-top-right-radius: 0.25rem !important; -} - -.border-round-right-sm { - border-top-right-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; -} - -.border-round-bottom-sm { - border-bottom-left-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; -} - -.border-round-left-md { - border-top-left-radius: 0.375rem !important; - border-bottom-left-radius: 0.375rem !important; -} - -.border-round-top-md { - border-top-left-radius: 0.375rem !important; - border-top-right-radius: 0.375rem !important; -} - -.border-round-right-md { - border-top-right-radius: 0.375rem !important; - border-bottom-right-radius: 0.375rem !important; -} - -.border-round-bottom-md { - border-bottom-left-radius: 0.375rem !important; - border-bottom-right-radius: 0.375rem !important; -} - -.border-round-left-lg { - border-top-left-radius: 0.5rem !important; - border-bottom-left-radius: 0.5rem !important; -} - -.border-round-top-lg { - border-top-left-radius: 0.5rem !important; - border-top-right-radius: 0.5rem !important; -} - -.border-round-right-lg { - border-top-right-radius: 0.5rem !important; - border-bottom-right-radius: 0.5rem !important; -} - -.border-round-bottom-lg { - border-bottom-left-radius: 0.5rem !important; - border-bottom-right-radius: 0.5rem !important; -} - -.border-round-left-xl { - border-top-left-radius: 0.75rem !important; - border-bottom-left-radius: 0.75rem !important; -} - -.border-round-top-xl { - border-top-left-radius: 0.75rem !important; - border-top-right-radius: 0.75rem !important; -} - -.border-round-right-xl { - border-top-right-radius: 0.75rem !important; - border-bottom-right-radius: 0.75rem !important; -} - -.border-round-bottom-xl { - border-bottom-left-radius: 0.75rem !important; - border-bottom-right-radius: 0.75rem !important; -} - -.border-round-left-2xl { - border-top-left-radius: 1rem !important; - border-bottom-left-radius: 1rem !important; -} - -.border-round-top-2xl { - border-top-left-radius: 1rem !important; - border-top-right-radius: 1rem !important; -} - -.border-round-right-2xl { - border-top-right-radius: 1rem !important; - border-bottom-right-radius: 1rem !important; -} - -.border-round-bottom-2xl { - border-bottom-left-radius: 1rem !important; - border-bottom-right-radius: 1rem !important; -} - -.border-round-left-3xl { - border-top-left-radius: 1.5rem !important; - border-bottom-left-radius: 1.5rem !important; -} - -.border-round-top-3xl { - border-top-left-radius: 1.5rem !important; - border-top-right-radius: 1.5rem !important; -} - -.border-round-right-3xl { - border-top-right-radius: 1.5rem !important; - border-bottom-right-radius: 1.5rem !important; -} - -.border-round-bottom-3xl { - border-bottom-left-radius: 1.5rem !important; - border-bottom-right-radius: 1.5rem !important; -} - -.border-circle-left { - border-top-left-radius: 50% !important; - border-bottom-left-radius: 50% !important; -} - -.border-circle-top { - border-top-left-radius: 50% !important; - border-top-right-radius: 50% !important; -} - -.border-circle-right { - border-top-right-radius: 50% !important; - border-bottom-right-radius: 50% !important; -} - -.border-circle-bottom { - border-bottom-left-radius: 50% !important; - border-bottom-right-radius: 50% !important; -} - -@media screen and (min-width: 576px) { - .sm\\:border-noround-left { - border-top-left-radius: 0 !important; - border-bottom-left-radius: 0 !important; - } - .sm\\:border-noround-top { - border-top-left-radius: 0 !important; - border-top-right-radius: 0 !important; - } - .sm\\:border-noround-right { - border-top-right-radius: 0 !important; - border-bottom-right-radius: 0 !important; - } - .sm\\:border-noround-bottom { - border-bottom-left-radius: 0 !important; - border-bottom-right-radius: 0 !important; - } - .sm\\:border-round-left { - border-top-left-radius: var(--border-radius) !important; - border-bottom-left-radius: var(--border-radius) !important; - } - .sm\\:border-round-top { - border-top-left-radius: var(--border-radius) !important; - border-top-right-radius: var(--border-radius) !important; - } - .sm\\:border-round-right { - border-top-right-radius: var(--border-radius) !important; - border-bottom-right-radius: var(--border-radius) !important; - } - .sm\\:border-round-bottom { - border-bottom-left-radius: var(--border-radius) !important; - border-bottom-right-radius: var(--border-radius) !important; - } - .sm\\:border-round-left-xs { - border-top-left-radius: 0.125rem !important; - border-bottom-left-radius: 0.125rem !important; - } - .sm\\:border-round-top-xs { - border-top-left-radius: 0.125rem !important; - border-top-right-radius: 0.125rem !important; - } - .sm\\:border-round-right-xs { - border-top-right-radius: 0.125rem !important; - border-bottom-right-radius: 0.125rem !important; - } - .sm\\:border-round-bottom-xs { - border-bottom-left-radius: 0.125rem !important; - border-bottom-right-radius: 0.125rem !important; - } - .sm\\:border-round-left-sm { - border-top-left-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; - } - .sm\\:border-round-top-sm { - border-top-left-radius: 0.25rem !important; - border-top-right-radius: 0.25rem !important; - } - .sm\\:border-round-right-sm { - border-top-right-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; - } - .sm\\:border-round-bottom-sm { - border-bottom-left-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; - } - .sm\\:border-round-left-md { - border-top-left-radius: 0.375rem !important; - border-bottom-left-radius: 0.375rem !important; - } - .sm\\:border-round-top-md { - border-top-left-radius: 0.375rem !important; - border-top-right-radius: 0.375rem !important; - } - .sm\\:border-round-right-md { - border-top-right-radius: 0.375rem !important; - border-bottom-right-radius: 0.375rem !important; - } - .sm\\:border-round-bottom-md { - border-bottom-left-radius: 0.375rem !important; - border-bottom-right-radius: 0.375rem !important; - } - .sm\\:border-round-left-lg { - border-top-left-radius: 0.5rem !important; - border-bottom-left-radius: 0.5rem !important; - } - .sm\\:border-round-top-lg { - border-top-left-radius: 0.5rem !important; - border-top-right-radius: 0.5rem !important; - } - .sm\\:border-round-right-lg { - border-top-right-radius: 0.5rem !important; - border-bottom-right-radius: 0.5rem !important; - } - .sm\\:border-round-bottom-lg { - border-bottom-left-radius: 0.5rem !important; - border-bottom-right-radius: 0.5rem !important; - } - .sm\\:border-round-left-xl { - border-top-left-radius: 0.75rem !important; - border-bottom-left-radius: 0.75rem !important; - } - .sm\\:border-round-top-xl { - border-top-left-radius: 0.75rem !important; - border-top-right-radius: 0.75rem !important; - } - .sm\\:border-round-right-xl { - border-top-right-radius: 0.75rem !important; - border-bottom-right-radius: 0.75rem !important; - } - .sm\\:border-round-bottom-xl { - border-bottom-left-radius: 0.75rem !important; - border-bottom-right-radius: 0.75rem !important; - } - .sm\\:border-round-left-2xl { - border-top-left-radius: 1rem !important; - border-bottom-left-radius: 1rem !important; - } - .sm\\:border-round-top-2xl { - border-top-left-radius: 1rem !important; - border-top-right-radius: 1rem !important; - } - .sm\\:border-round-right-2xl { - border-top-right-radius: 1rem !important; - border-bottom-right-radius: 1rem !important; - } - .sm\\:border-round-bottom-2xl { - border-bottom-left-radius: 1rem !important; - border-bottom-right-radius: 1rem !important; - } - .sm\\:border-round-left-3xl { - border-top-left-radius: 1.5rem !important; - border-bottom-left-radius: 1.5rem !important; - } - .sm\\:border-round-top-3xl { - border-top-left-radius: 1.5rem !important; - border-top-right-radius: 1.5rem !important; - } - .sm\\:border-round-right-3xl { - border-top-right-radius: 1.5rem !important; - border-bottom-right-radius: 1.5rem !important; - } - .sm\\:border-round-bottom-3xl { - border-bottom-left-radius: 1.5rem !important; - border-bottom-right-radius: 1.5rem !important; - } - .sm\\:border-circle-left { - border-top-left-radius: 50% !important; - border-bottom-left-radius: 50% !important; - } - .sm\\:border-circle-top { - border-top-left-radius: 50% !important; - border-top-right-radius: 50% !important; - } - .sm\\:border-circle-right { - border-top-right-radius: 50% !important; - border-bottom-right-radius: 50% !important; - } - .sm\\:border-circle-bottom { - border-bottom-left-radius: 50% !important; - border-bottom-right-radius: 50% !important; - } -} -@media screen and (min-width: 768px) { - .md\\:border-noround-left { - border-top-left-radius: 0 !important; - border-bottom-left-radius: 0 !important; - } - .md\\:border-noround-top { - border-top-left-radius: 0 !important; - border-top-right-radius: 0 !important; - } - .md\\:border-noround-right { - border-top-right-radius: 0 !important; - border-bottom-right-radius: 0 !important; - } - .md\\:border-noround-bottom { - border-bottom-left-radius: 0 !important; - border-bottom-right-radius: 0 !important; - } - .md\\:border-round-left { - border-top-left-radius: var(--border-radius) !important; - border-bottom-left-radius: var(--border-radius) !important; - } - .md\\:border-round-top { - border-top-left-radius: var(--border-radius) !important; - border-top-right-radius: var(--border-radius) !important; - } - .md\\:border-round-right { - border-top-right-radius: var(--border-radius) !important; - border-bottom-right-radius: var(--border-radius) !important; - } - .md\\:border-round-bottom { - border-bottom-left-radius: var(--border-radius) !important; - border-bottom-right-radius: var(--border-radius) !important; - } - .md\\:border-round-left-xs { - border-top-left-radius: 0.125rem !important; - border-bottom-left-radius: 0.125rem !important; - } - .md\\:border-round-top-xs { - border-top-left-radius: 0.125rem !important; - border-top-right-radius: 0.125rem !important; - } - .md\\:border-round-right-xs { - border-top-right-radius: 0.125rem !important; - border-bottom-right-radius: 0.125rem !important; - } - .md\\:border-round-bottom-xs { - border-bottom-left-radius: 0.125rem !important; - border-bottom-right-radius: 0.125rem !important; - } - .md\\:border-round-left-sm { - border-top-left-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; - } - .md\\:border-round-top-sm { - border-top-left-radius: 0.25rem !important; - border-top-right-radius: 0.25rem !important; - } - .md\\:border-round-right-sm { - border-top-right-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; - } - .md\\:border-round-bottom-sm { - border-bottom-left-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; - } - .md\\:border-round-left-md { - border-top-left-radius: 0.375rem !important; - border-bottom-left-radius: 0.375rem !important; - } - .md\\:border-round-top-md { - border-top-left-radius: 0.375rem !important; - border-top-right-radius: 0.375rem !important; - } - .md\\:border-round-right-md { - border-top-right-radius: 0.375rem !important; - border-bottom-right-radius: 0.375rem !important; - } - .md\\:border-round-bottom-md { - border-bottom-left-radius: 0.375rem !important; - border-bottom-right-radius: 0.375rem !important; - } - .md\\:border-round-left-lg { - border-top-left-radius: 0.5rem !important; - border-bottom-left-radius: 0.5rem !important; - } - .md\\:border-round-top-lg { - border-top-left-radius: 0.5rem !important; - border-top-right-radius: 0.5rem !important; - } - .md\\:border-round-right-lg { - border-top-right-radius: 0.5rem !important; - border-bottom-right-radius: 0.5rem !important; - } - .md\\:border-round-bottom-lg { - border-bottom-left-radius: 0.5rem !important; - border-bottom-right-radius: 0.5rem !important; - } - .md\\:border-round-left-xl { - border-top-left-radius: 0.75rem !important; - border-bottom-left-radius: 0.75rem !important; - } - .md\\:border-round-top-xl { - border-top-left-radius: 0.75rem !important; - border-top-right-radius: 0.75rem !important; - } - .md\\:border-round-right-xl { - border-top-right-radius: 0.75rem !important; - border-bottom-right-radius: 0.75rem !important; - } - .md\\:border-round-bottom-xl { - border-bottom-left-radius: 0.75rem !important; - border-bottom-right-radius: 0.75rem !important; - } - .md\\:border-round-left-2xl { - border-top-left-radius: 1rem !important; - border-bottom-left-radius: 1rem !important; - } - .md\\:border-round-top-2xl { - border-top-left-radius: 1rem !important; - border-top-right-radius: 1rem !important; - } - .md\\:border-round-right-2xl { - border-top-right-radius: 1rem !important; - border-bottom-right-radius: 1rem !important; - } - .md\\:border-round-bottom-2xl { - border-bottom-left-radius: 1rem !important; - border-bottom-right-radius: 1rem !important; - } - .md\\:border-round-left-3xl { - border-top-left-radius: 1.5rem !important; - border-bottom-left-radius: 1.5rem !important; - } - .md\\:border-round-top-3xl { - border-top-left-radius: 1.5rem !important; - border-top-right-radius: 1.5rem !important; - } - .md\\:border-round-right-3xl { - border-top-right-radius: 1.5rem !important; - border-bottom-right-radius: 1.5rem !important; - } - .md\\:border-round-bottom-3xl { - border-bottom-left-radius: 1.5rem !important; - border-bottom-right-radius: 1.5rem !important; - } - .md\\:border-circle-left { - border-top-left-radius: 50% !important; - border-bottom-left-radius: 50% !important; - } - .md\\:border-circle-top { - border-top-left-radius: 50% !important; - border-top-right-radius: 50% !important; - } - .md\\:border-circle-right { - border-top-right-radius: 50% !important; - border-bottom-right-radius: 50% !important; - } - .md\\:border-circle-bottom { - border-bottom-left-radius: 50% !important; - border-bottom-right-radius: 50% !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:border-noround-left { - border-top-left-radius: 0 !important; - border-bottom-left-radius: 0 !important; - } - .lg\\:border-noround-top { - border-top-left-radius: 0 !important; - border-top-right-radius: 0 !important; - } - .lg\\:border-noround-right { - border-top-right-radius: 0 !important; - border-bottom-right-radius: 0 !important; - } - .lg\\:border-noround-bottom { - border-bottom-left-radius: 0 !important; - border-bottom-right-radius: 0 !important; - } - .lg\\:border-round-left { - border-top-left-radius: var(--border-radius) !important; - border-bottom-left-radius: var(--border-radius) !important; - } - .lg\\:border-round-top { - border-top-left-radius: var(--border-radius) !important; - border-top-right-radius: var(--border-radius) !important; - } - .lg\\:border-round-right { - border-top-right-radius: var(--border-radius) !important; - border-bottom-right-radius: var(--border-radius) !important; - } - .lg\\:border-round-bottom { - border-bottom-left-radius: var(--border-radius) !important; - border-bottom-right-radius: var(--border-radius) !important; - } - .lg\\:border-round-left-xs { - border-top-left-radius: 0.125rem !important; - border-bottom-left-radius: 0.125rem !important; - } - .lg\\:border-round-top-xs { - border-top-left-radius: 0.125rem !important; - border-top-right-radius: 0.125rem !important; - } - .lg\\:border-round-right-xs { - border-top-right-radius: 0.125rem !important; - border-bottom-right-radius: 0.125rem !important; - } - .lg\\:border-round-bottom-xs { - border-bottom-left-radius: 0.125rem !important; - border-bottom-right-radius: 0.125rem !important; - } - .lg\\:border-round-left-sm { - border-top-left-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; - } - .lg\\:border-round-top-sm { - border-top-left-radius: 0.25rem !important; - border-top-right-radius: 0.25rem !important; - } - .lg\\:border-round-right-sm { - border-top-right-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; - } - .lg\\:border-round-bottom-sm { - border-bottom-left-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; - } - .lg\\:border-round-left-md { - border-top-left-radius: 0.375rem !important; - border-bottom-left-radius: 0.375rem !important; - } - .lg\\:border-round-top-md { - border-top-left-radius: 0.375rem !important; - border-top-right-radius: 0.375rem !important; - } - .lg\\:border-round-right-md { - border-top-right-radius: 0.375rem !important; - border-bottom-right-radius: 0.375rem !important; - } - .lg\\:border-round-bottom-md { - border-bottom-left-radius: 0.375rem !important; - border-bottom-right-radius: 0.375rem !important; - } - .lg\\:border-round-left-lg { - border-top-left-radius: 0.5rem !important; - border-bottom-left-radius: 0.5rem !important; - } - .lg\\:border-round-top-lg { - border-top-left-radius: 0.5rem !important; - border-top-right-radius: 0.5rem !important; - } - .lg\\:border-round-right-lg { - border-top-right-radius: 0.5rem !important; - border-bottom-right-radius: 0.5rem !important; - } - .lg\\:border-round-bottom-lg { - border-bottom-left-radius: 0.5rem !important; - border-bottom-right-radius: 0.5rem !important; - } - .lg\\:border-round-left-xl { - border-top-left-radius: 0.75rem !important; - border-bottom-left-radius: 0.75rem !important; - } - .lg\\:border-round-top-xl { - border-top-left-radius: 0.75rem !important; - border-top-right-radius: 0.75rem !important; - } - .lg\\:border-round-right-xl { - border-top-right-radius: 0.75rem !important; - border-bottom-right-radius: 0.75rem !important; - } - .lg\\:border-round-bottom-xl { - border-bottom-left-radius: 0.75rem !important; - border-bottom-right-radius: 0.75rem !important; - } - .lg\\:border-round-left-2xl { - border-top-left-radius: 1rem !important; - border-bottom-left-radius: 1rem !important; - } - .lg\\:border-round-top-2xl { - border-top-left-radius: 1rem !important; - border-top-right-radius: 1rem !important; - } - .lg\\:border-round-right-2xl { - border-top-right-radius: 1rem !important; - border-bottom-right-radius: 1rem !important; - } - .lg\\:border-round-bottom-2xl { - border-bottom-left-radius: 1rem !important; - border-bottom-right-radius: 1rem !important; - } - .lg\\:border-round-left-3xl { - border-top-left-radius: 1.5rem !important; - border-bottom-left-radius: 1.5rem !important; - } - .lg\\:border-round-top-3xl { - border-top-left-radius: 1.5rem !important; - border-top-right-radius: 1.5rem !important; - } - .lg\\:border-round-right-3xl { - border-top-right-radius: 1.5rem !important; - border-bottom-right-radius: 1.5rem !important; - } - .lg\\:border-round-bottom-3xl { - border-bottom-left-radius: 1.5rem !important; - border-bottom-right-radius: 1.5rem !important; - } - .lg\\:border-circle-left { - border-top-left-radius: 50% !important; - border-bottom-left-radius: 50% !important; - } - .lg\\:border-circle-top { - border-top-left-radius: 50% !important; - border-top-right-radius: 50% !important; - } - .lg\\:border-circle-right { - border-top-right-radius: 50% !important; - border-bottom-right-radius: 50% !important; - } - .lg\\:border-circle-bottom { - border-bottom-left-radius: 50% !important; - border-bottom-right-radius: 50% !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:border-noround-left { - border-top-left-radius: 0 !important; - border-bottom-left-radius: 0 !important; - } - .xl\\:border-noround-top { - border-top-left-radius: 0 !important; - border-top-right-radius: 0 !important; - } - .xl\\:border-noround-right { - border-top-right-radius: 0 !important; - border-bottom-right-radius: 0 !important; - } - .xl\\:border-noround-bottom { - border-bottom-left-radius: 0 !important; - border-bottom-right-radius: 0 !important; - } - .xl\\:border-round-left { - border-top-left-radius: var(--border-radius) !important; - border-bottom-left-radius: var(--border-radius) !important; - } - .xl\\:border-round-top { - border-top-left-radius: var(--border-radius) !important; - border-top-right-radius: var(--border-radius) !important; - } - .xl\\:border-round-right { - border-top-right-radius: var(--border-radius) !important; - border-bottom-right-radius: var(--border-radius) !important; - } - .xl\\:border-round-bottom { - border-bottom-left-radius: var(--border-radius) !important; - border-bottom-right-radius: var(--border-radius) !important; - } - .xl\\:border-round-left-xs { - border-top-left-radius: 0.125rem !important; - border-bottom-left-radius: 0.125rem !important; - } - .xl\\:border-round-top-xs { - border-top-left-radius: 0.125rem !important; - border-top-right-radius: 0.125rem !important; - } - .xl\\:border-round-right-xs { - border-top-right-radius: 0.125rem !important; - border-bottom-right-radius: 0.125rem !important; - } - .xl\\:border-round-bottom-xs { - border-bottom-left-radius: 0.125rem !important; - border-bottom-right-radius: 0.125rem !important; - } - .xl\\:border-round-left-sm { - border-top-left-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; - } - .xl\\:border-round-top-sm { - border-top-left-radius: 0.25rem !important; - border-top-right-radius: 0.25rem !important; - } - .xl\\:border-round-right-sm { - border-top-right-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; - } - .xl\\:border-round-bottom-sm { - border-bottom-left-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; - } - .xl\\:border-round-left-md { - border-top-left-radius: 0.375rem !important; - border-bottom-left-radius: 0.375rem !important; - } - .xl\\:border-round-top-md { - border-top-left-radius: 0.375rem !important; - border-top-right-radius: 0.375rem !important; - } - .xl\\:border-round-right-md { - border-top-right-radius: 0.375rem !important; - border-bottom-right-radius: 0.375rem !important; - } - .xl\\:border-round-bottom-md { - border-bottom-left-radius: 0.375rem !important; - border-bottom-right-radius: 0.375rem !important; - } - .xl\\:border-round-left-lg { - border-top-left-radius: 0.5rem !important; - border-bottom-left-radius: 0.5rem !important; - } - .xl\\:border-round-top-lg { - border-top-left-radius: 0.5rem !important; - border-top-right-radius: 0.5rem !important; - } - .xl\\:border-round-right-lg { - border-top-right-radius: 0.5rem !important; - border-bottom-right-radius: 0.5rem !important; - } - .xl\\:border-round-bottom-lg { - border-bottom-left-radius: 0.5rem !important; - border-bottom-right-radius: 0.5rem !important; - } - .xl\\:border-round-left-xl { - border-top-left-radius: 0.75rem !important; - border-bottom-left-radius: 0.75rem !important; - } - .xl\\:border-round-top-xl { - border-top-left-radius: 0.75rem !important; - border-top-right-radius: 0.75rem !important; - } - .xl\\:border-round-right-xl { - border-top-right-radius: 0.75rem !important; - border-bottom-right-radius: 0.75rem !important; - } - .xl\\:border-round-bottom-xl { - border-bottom-left-radius: 0.75rem !important; - border-bottom-right-radius: 0.75rem !important; - } - .xl\\:border-round-left-2xl { - border-top-left-radius: 1rem !important; - border-bottom-left-radius: 1rem !important; - } - .xl\\:border-round-top-2xl { - border-top-left-radius: 1rem !important; - border-top-right-radius: 1rem !important; - } - .xl\\:border-round-right-2xl { - border-top-right-radius: 1rem !important; - border-bottom-right-radius: 1rem !important; - } - .xl\\:border-round-bottom-2xl { - border-bottom-left-radius: 1rem !important; - border-bottom-right-radius: 1rem !important; - } - .xl\\:border-round-left-3xl { - border-top-left-radius: 1.5rem !important; - border-bottom-left-radius: 1.5rem !important; - } - .xl\\:border-round-top-3xl { - border-top-left-radius: 1.5rem !important; - border-top-right-radius: 1.5rem !important; - } - .xl\\:border-round-right-3xl { - border-top-right-radius: 1.5rem !important; - border-bottom-right-radius: 1.5rem !important; - } - .xl\\:border-round-bottom-3xl { - border-bottom-left-radius: 1.5rem !important; - border-bottom-right-radius: 1.5rem !important; - } - .xl\\:border-circle-left { - border-top-left-radius: 50% !important; - border-bottom-left-radius: 50% !important; - } - .xl\\:border-circle-top { - border-top-left-radius: 50% !important; - border-top-right-radius: 50% !important; - } - .xl\\:border-circle-right { - border-top-right-radius: 50% !important; - border-bottom-right-radius: 50% !important; - } - .xl\\:border-circle-bottom { - border-bottom-left-radius: 50% !important; - border-bottom-right-radius: 50% !important; - } -} -.w-full { - width: 100% !important; -} - -.w-screen { - width: 100vw !important; -} - -.w-auto { - width: auto !important; -} - -.w-1 { - width: 8.3333% !important; -} - -.w-2 { - width: 16.6667% !important; -} - -.w-3 { - width: 25% !important; -} - -.w-4 { - width: 33.3333% !important; -} - -.w-5 { - width: 41.6667% !important; -} - -.w-6 { - width: 50% !important; -} - -.w-7 { - width: 58.3333% !important; -} - -.w-8 { - width: 66.6667% !important; -} - -.w-9 { - width: 75% !important; -} - -.w-10 { - width: 83.3333% !important; -} - -.w-11 { - width: 91.6667% !important; -} - -.w-12 { - width: 100% !important; -} - -.w-min { - width: min-content !important; -} - -.w-max { - width: max-content !important; -} - -.w-fit { - width: fit-content !important; -} - -.w-1rem { - width: 1rem !important; -} - -.w-2rem { - width: 2rem !important; -} - -.w-3rem { - width: 3rem !important; -} - -.w-4rem { - width: 4rem !important; -} - -.w-5rem { - width: 5rem !important; -} - -.w-6rem { - width: 6rem !important; -} - -.w-7rem { - width: 7rem !important; -} - -.w-8rem { - width: 8rem !important; -} - -.w-9rem { - width: 9rem !important; -} - -.w-10rem { - width: 10rem !important; -} - -.w-11rem { - width: 11rem !important; -} - -.w-12rem { - width: 12rem !important; -} - -.w-13rem { - width: 13rem !important; -} - -.w-14rem { - width: 14rem !important; -} - -.w-15rem { - width: 15rem !important; -} - -.w-16rem { - width: 16rem !important; -} - -.w-17rem { - width: 17rem !important; -} - -.w-18rem { - width: 18rem !important; -} - -.w-19rem { - width: 19rem !important; -} - -.w-20rem { - width: 20rem !important; -} - -.w-21rem { - width: 21rem !important; -} - -.w-22rem { - width: 22rem !important; -} - -.w-23rem { - width: 23rem !important; -} - -.w-24rem { - width: 24rem !important; -} - -.w-25rem { - width: 25rem !important; -} - -.w-26rem { - width: 26rem !important; -} - -.w-27rem { - width: 27rem !important; -} - -.w-28rem { - width: 28rem !important; -} - -.w-29rem { - width: 29rem !important; -} - -.w-30rem { - width: 30rem !important; -} - -@media screen and (min-width: 576px) { - .sm\\:w-full { - width: 100% !important; - } - .sm\\:w-screen { - width: 100vw !important; - } - .sm\\:w-auto { - width: auto !important; - } - .sm\\:w-1 { - width: 8.3333% !important; - } - .sm\\:w-2 { - width: 16.6667% !important; - } - .sm\\:w-3 { - width: 25% !important; - } - .sm\\:w-4 { - width: 33.3333% !important; - } - .sm\\:w-5 { - width: 41.6667% !important; - } - .sm\\:w-6 { - width: 50% !important; - } - .sm\\:w-7 { - width: 58.3333% !important; - } - .sm\\:w-8 { - width: 66.6667% !important; - } - .sm\\:w-9 { - width: 75% !important; - } - .sm\\:w-10 { - width: 83.3333% !important; - } - .sm\\:w-11 { - width: 91.6667% !important; - } - .sm\\:w-12 { - width: 100% !important; - } - .sm\\:w-min { - width: min-content !important; - } - .sm\\:w-max { - width: max-content !important; - } - .sm\\:w-fit { - width: fit-content !important; - } - .sm\\:w-1rem { - width: 1rem !important; - } - .sm\\:w-2rem { - width: 2rem !important; - } - .sm\\:w-3rem { - width: 3rem !important; - } - .sm\\:w-4rem { - width: 4rem !important; - } - .sm\\:w-5rem { - width: 5rem !important; - } - .sm\\:w-6rem { - width: 6rem !important; - } - .sm\\:w-7rem { - width: 7rem !important; - } - .sm\\:w-8rem { - width: 8rem !important; - } - .sm\\:w-9rem { - width: 9rem !important; - } - .sm\\:w-10rem { - width: 10rem !important; - } - .sm\\:w-11rem { - width: 11rem !important; - } - .sm\\:w-12rem { - width: 12rem !important; - } - .sm\\:w-13rem { - width: 13rem !important; - } - .sm\\:w-14rem { - width: 14rem !important; - } - .sm\\:w-15rem { - width: 15rem !important; - } - .sm\\:w-16rem { - width: 16rem !important; - } - .sm\\:w-17rem { - width: 17rem !important; - } - .sm\\:w-18rem { - width: 18rem !important; - } - .sm\\:w-19rem { - width: 19rem !important; - } - .sm\\:w-20rem { - width: 20rem !important; - } - .sm\\:w-21rem { - width: 21rem !important; - } - .sm\\:w-22rem { - width: 22rem !important; - } - .sm\\:w-23rem { - width: 23rem !important; - } - .sm\\:w-24rem { - width: 24rem !important; - } - .sm\\:w-25rem { - width: 25rem !important; - } - .sm\\:w-26rem { - width: 26rem !important; - } - .sm\\:w-27rem { - width: 27rem !important; - } - .sm\\:w-28rem { - width: 28rem !important; - } - .sm\\:w-29rem { - width: 29rem !important; - } - .sm\\:w-30rem { - width: 30rem !important; - } -} -@media screen and (min-width: 768px) { - .md\\:w-full { - width: 100% !important; - } - .md\\:w-screen { - width: 100vw !important; - } - .md\\:w-auto { - width: auto !important; - } - .md\\:w-1 { - width: 8.3333% !important; - } - .md\\:w-2 { - width: 16.6667% !important; - } - .md\\:w-3 { - width: 25% !important; - } - .md\\:w-4 { - width: 33.3333% !important; - } - .md\\:w-5 { - width: 41.6667% !important; - } - .md\\:w-6 { - width: 50% !important; - } - .md\\:w-7 { - width: 58.3333% !important; - } - .md\\:w-8 { - width: 66.6667% !important; - } - .md\\:w-9 { - width: 75% !important; - } - .md\\:w-10 { - width: 83.3333% !important; - } - .md\\:w-11 { - width: 91.6667% !important; - } - .md\\:w-12 { - width: 100% !important; - } - .md\\:w-min { - width: min-content !important; - } - .md\\:w-max { - width: max-content !important; - } - .md\\:w-fit { - width: fit-content !important; - } - .md\\:w-1rem { - width: 1rem !important; - } - .md\\:w-2rem { - width: 2rem !important; - } - .md\\:w-3rem { - width: 3rem !important; - } - .md\\:w-4rem { - width: 4rem !important; - } - .md\\:w-5rem { - width: 5rem !important; - } - .md\\:w-6rem { - width: 6rem !important; - } - .md\\:w-7rem { - width: 7rem !important; - } - .md\\:w-8rem { - width: 8rem !important; - } - .md\\:w-9rem { - width: 9rem !important; - } - .md\\:w-10rem { - width: 10rem !important; - } - .md\\:w-11rem { - width: 11rem !important; - } - .md\\:w-12rem { - width: 12rem !important; - } - .md\\:w-13rem { - width: 13rem !important; - } - .md\\:w-14rem { - width: 14rem !important; - } - .md\\:w-15rem { - width: 15rem !important; - } - .md\\:w-16rem { - width: 16rem !important; - } - .md\\:w-17rem { - width: 17rem !important; - } - .md\\:w-18rem { - width: 18rem !important; - } - .md\\:w-19rem { - width: 19rem !important; - } - .md\\:w-20rem { - width: 20rem !important; - } - .md\\:w-21rem { - width: 21rem !important; - } - .md\\:w-22rem { - width: 22rem !important; - } - .md\\:w-23rem { - width: 23rem !important; - } - .md\\:w-24rem { - width: 24rem !important; - } - .md\\:w-25rem { - width: 25rem !important; - } - .md\\:w-26rem { - width: 26rem !important; - } - .md\\:w-27rem { - width: 27rem !important; - } - .md\\:w-28rem { - width: 28rem !important; - } - .md\\:w-29rem { - width: 29rem !important; - } - .md\\:w-30rem { - width: 30rem !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:w-full { - width: 100% !important; - } - .lg\\:w-screen { - width: 100vw !important; - } - .lg\\:w-auto { - width: auto !important; - } - .lg\\:w-1 { - width: 8.3333% !important; - } - .lg\\:w-2 { - width: 16.6667% !important; - } - .lg\\:w-3 { - width: 25% !important; - } - .lg\\:w-4 { - width: 33.3333% !important; - } - .lg\\:w-5 { - width: 41.6667% !important; - } - .lg\\:w-6 { - width: 50% !important; - } - .lg\\:w-7 { - width: 58.3333% !important; - } - .lg\\:w-8 { - width: 66.6667% !important; - } - .lg\\:w-9 { - width: 75% !important; - } - .lg\\:w-10 { - width: 83.3333% !important; - } - .lg\\:w-11 { - width: 91.6667% !important; - } - .lg\\:w-12 { - width: 100% !important; - } - .lg\\:w-min { - width: min-content !important; - } - .lg\\:w-max { - width: max-content !important; - } - .lg\\:w-fit { - width: fit-content !important; - } - .lg\\:w-1rem { - width: 1rem !important; - } - .lg\\:w-2rem { - width: 2rem !important; - } - .lg\\:w-3rem { - width: 3rem !important; - } - .lg\\:w-4rem { - width: 4rem !important; - } - .lg\\:w-5rem { - width: 5rem !important; - } - .lg\\:w-6rem { - width: 6rem !important; - } - .lg\\:w-7rem { - width: 7rem !important; - } - .lg\\:w-8rem { - width: 8rem !important; - } - .lg\\:w-9rem { - width: 9rem !important; - } - .lg\\:w-10rem { - width: 10rem !important; - } - .lg\\:w-11rem { - width: 11rem !important; - } - .lg\\:w-12rem { - width: 12rem !important; - } - .lg\\:w-13rem { - width: 13rem !important; - } - .lg\\:w-14rem { - width: 14rem !important; - } - .lg\\:w-15rem { - width: 15rem !important; - } - .lg\\:w-16rem { - width: 16rem !important; - } - .lg\\:w-17rem { - width: 17rem !important; - } - .lg\\:w-18rem { - width: 18rem !important; - } - .lg\\:w-19rem { - width: 19rem !important; - } - .lg\\:w-20rem { - width: 20rem !important; - } - .lg\\:w-21rem { - width: 21rem !important; - } - .lg\\:w-22rem { - width: 22rem !important; - } - .lg\\:w-23rem { - width: 23rem !important; - } - .lg\\:w-24rem { - width: 24rem !important; - } - .lg\\:w-25rem { - width: 25rem !important; - } - .lg\\:w-26rem { - width: 26rem !important; - } - .lg\\:w-27rem { - width: 27rem !important; - } - .lg\\:w-28rem { - width: 28rem !important; - } - .lg\\:w-29rem { - width: 29rem !important; - } - .lg\\:w-30rem { - width: 30rem !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:w-full { - width: 100% !important; - } - .xl\\:w-screen { - width: 100vw !important; - } - .xl\\:w-auto { - width: auto !important; - } - .xl\\:w-1 { - width: 8.3333% !important; - } - .xl\\:w-2 { - width: 16.6667% !important; - } - .xl\\:w-3 { - width: 25% !important; - } - .xl\\:w-4 { - width: 33.3333% !important; - } - .xl\\:w-5 { - width: 41.6667% !important; - } - .xl\\:w-6 { - width: 50% !important; - } - .xl\\:w-7 { - width: 58.3333% !important; - } - .xl\\:w-8 { - width: 66.6667% !important; - } - .xl\\:w-9 { - width: 75% !important; - } - .xl\\:w-10 { - width: 83.3333% !important; - } - .xl\\:w-11 { - width: 91.6667% !important; - } - .xl\\:w-12 { - width: 100% !important; - } - .xl\\:w-min { - width: min-content !important; - } - .xl\\:w-max { - width: max-content !important; - } - .xl\\:w-fit { - width: fit-content !important; - } - .xl\\:w-1rem { - width: 1rem !important; - } - .xl\\:w-2rem { - width: 2rem !important; - } - .xl\\:w-3rem { - width: 3rem !important; - } - .xl\\:w-4rem { - width: 4rem !important; - } - .xl\\:w-5rem { - width: 5rem !important; - } - .xl\\:w-6rem { - width: 6rem !important; - } - .xl\\:w-7rem { - width: 7rem !important; - } - .xl\\:w-8rem { - width: 8rem !important; - } - .xl\\:w-9rem { - width: 9rem !important; - } - .xl\\:w-10rem { - width: 10rem !important; - } - .xl\\:w-11rem { - width: 11rem !important; - } - .xl\\:w-12rem { - width: 12rem !important; - } - .xl\\:w-13rem { - width: 13rem !important; - } - .xl\\:w-14rem { - width: 14rem !important; - } - .xl\\:w-15rem { - width: 15rem !important; - } - .xl\\:w-16rem { - width: 16rem !important; - } - .xl\\:w-17rem { - width: 17rem !important; - } - .xl\\:w-18rem { - width: 18rem !important; - } - .xl\\:w-19rem { - width: 19rem !important; - } - .xl\\:w-20rem { - width: 20rem !important; - } - .xl\\:w-21rem { - width: 21rem !important; - } - .xl\\:w-22rem { - width: 22rem !important; - } - .xl\\:w-23rem { - width: 23rem !important; - } - .xl\\:w-24rem { - width: 24rem !important; - } - .xl\\:w-25rem { - width: 25rem !important; - } - .xl\\:w-26rem { - width: 26rem !important; - } - .xl\\:w-27rem { - width: 27rem !important; - } - .xl\\:w-28rem { - width: 28rem !important; - } - .xl\\:w-29rem { - width: 29rem !important; - } - .xl\\:w-30rem { - width: 30rem !important; - } -} -.h-full { - height: 100% !important; -} - -.h-screen { - height: 100vh !important; -} - -.h-auto { - height: auto !important; -} - -.h-min { - height: min-content !important; -} - -.h-max { - height: max-content !important; -} - -.h-fit { - height: fit-content !important; -} - -.h-1rem { - height: 1rem !important; -} - -.h-2rem { - height: 2rem !important; -} - -.h-3rem { - height: 3rem !important; -} - -.h-4rem { - height: 4rem !important; -} - -.h-5rem { - height: 5rem !important; -} - -.h-6rem { - height: 6rem !important; -} - -.h-7rem { - height: 7rem !important; -} - -.h-8rem { - height: 8rem !important; -} - -.h-9rem { - height: 9rem !important; -} - -.h-10rem { - height: 10rem !important; -} - -.h-11rem { - height: 11rem !important; -} - -.h-12rem { - height: 12rem !important; -} - -.h-13rem { - height: 13rem !important; -} - -.h-14rem { - height: 14rem !important; -} - -.h-15rem { - height: 15rem !important; -} - -.h-16rem { - height: 16rem !important; -} - -.h-17rem { - height: 17rem !important; -} - -.h-18rem { - height: 18rem !important; -} - -.h-19rem { - height: 19rem !important; -} - -.h-20rem { - height: 20rem !important; -} - -.h-21rem { - height: 21rem !important; -} - -.h-22rem { - height: 22rem !important; -} - -.h-23rem { - height: 23rem !important; -} - -.h-24rem { - height: 24rem !important; -} - -.h-25rem { - height: 25rem !important; -} - -.h-26rem { - height: 26rem !important; -} - -.h-27rem { - height: 27rem !important; -} - -.h-28rem { - height: 28rem !important; -} - -.h-29rem { - height: 29rem !important; -} - -.h-30rem { - height: 30rem !important; -} - -@media screen and (min-width: 576px) { - .sm\\:h-full { - height: 100% !important; - } - .sm\\:h-screen { - height: 100vh !important; - } - .sm\\:h-auto { - height: auto !important; - } - .sm\\:h-min { - height: min-content !important; - } - .sm\\:h-max { - height: max-content !important; - } - .sm\\:h-fit { - height: fit-content !important; - } - .sm\\:h-1rem { - height: 1rem !important; - } - .sm\\:h-2rem { - height: 2rem !important; - } - .sm\\:h-3rem { - height: 3rem !important; - } - .sm\\:h-4rem { - height: 4rem !important; - } - .sm\\:h-5rem { - height: 5rem !important; - } - .sm\\:h-6rem { - height: 6rem !important; - } - .sm\\:h-7rem { - height: 7rem !important; - } - .sm\\:h-8rem { - height: 8rem !important; - } - .sm\\:h-9rem { - height: 9rem !important; - } - .sm\\:h-10rem { - height: 10rem !important; - } - .sm\\:h-11rem { - height: 11rem !important; - } - .sm\\:h-12rem { - height: 12rem !important; - } - .sm\\:h-13rem { - height: 13rem !important; - } - .sm\\:h-14rem { - height: 14rem !important; - } - .sm\\:h-15rem { - height: 15rem !important; - } - .sm\\:h-16rem { - height: 16rem !important; - } - .sm\\:h-17rem { - height: 17rem !important; - } - .sm\\:h-18rem { - height: 18rem !important; - } - .sm\\:h-19rem { - height: 19rem !important; - } - .sm\\:h-20rem { - height: 20rem !important; - } - .sm\\:h-21rem { - height: 21rem !important; - } - .sm\\:h-22rem { - height: 22rem !important; - } - .sm\\:h-23rem { - height: 23rem !important; - } - .sm\\:h-24rem { - height: 24rem !important; - } - .sm\\:h-25rem { - height: 25rem !important; - } - .sm\\:h-26rem { - height: 26rem !important; - } - .sm\\:h-27rem { - height: 27rem !important; - } - .sm\\:h-28rem { - height: 28rem !important; - } - .sm\\:h-29rem { - height: 29rem !important; - } - .sm\\:h-30rem { - height: 30rem !important; - } -} -@media screen and (min-width: 768px) { - .md\\:h-full { - height: 100% !important; - } - .md\\:h-screen { - height: 100vh !important; - } - .md\\:h-auto { - height: auto !important; - } - .md\\:h-min { - height: min-content !important; - } - .md\\:h-max { - height: max-content !important; - } - .md\\:h-fit { - height: fit-content !important; - } - .md\\:h-1rem { - height: 1rem !important; - } - .md\\:h-2rem { - height: 2rem !important; - } - .md\\:h-3rem { - height: 3rem !important; - } - .md\\:h-4rem { - height: 4rem !important; - } - .md\\:h-5rem { - height: 5rem !important; - } - .md\\:h-6rem { - height: 6rem !important; - } - .md\\:h-7rem { - height: 7rem !important; - } - .md\\:h-8rem { - height: 8rem !important; - } - .md\\:h-9rem { - height: 9rem !important; - } - .md\\:h-10rem { - height: 10rem !important; - } - .md\\:h-11rem { - height: 11rem !important; - } - .md\\:h-12rem { - height: 12rem !important; - } - .md\\:h-13rem { - height: 13rem !important; - } - .md\\:h-14rem { - height: 14rem !important; - } - .md\\:h-15rem { - height: 15rem !important; - } - .md\\:h-16rem { - height: 16rem !important; - } - .md\\:h-17rem { - height: 17rem !important; - } - .md\\:h-18rem { - height: 18rem !important; - } - .md\\:h-19rem { - height: 19rem !important; - } - .md\\:h-20rem { - height: 20rem !important; - } - .md\\:h-21rem { - height: 21rem !important; - } - .md\\:h-22rem { - height: 22rem !important; - } - .md\\:h-23rem { - height: 23rem !important; - } - .md\\:h-24rem { - height: 24rem !important; - } - .md\\:h-25rem { - height: 25rem !important; - } - .md\\:h-26rem { - height: 26rem !important; - } - .md\\:h-27rem { - height: 27rem !important; - } - .md\\:h-28rem { - height: 28rem !important; - } - .md\\:h-29rem { - height: 29rem !important; - } - .md\\:h-30rem { - height: 30rem !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:h-full { - height: 100% !important; - } - .lg\\:h-screen { - height: 100vh !important; - } - .lg\\:h-auto { - height: auto !important; - } - .lg\\:h-min { - height: min-content !important; - } - .lg\\:h-max { - height: max-content !important; - } - .lg\\:h-fit { - height: fit-content !important; - } - .lg\\:h-1rem { - height: 1rem !important; - } - .lg\\:h-2rem { - height: 2rem !important; - } - .lg\\:h-3rem { - height: 3rem !important; - } - .lg\\:h-4rem { - height: 4rem !important; - } - .lg\\:h-5rem { - height: 5rem !important; - } - .lg\\:h-6rem { - height: 6rem !important; - } - .lg\\:h-7rem { - height: 7rem !important; - } - .lg\\:h-8rem { - height: 8rem !important; - } - .lg\\:h-9rem { - height: 9rem !important; - } - .lg\\:h-10rem { - height: 10rem !important; - } - .lg\\:h-11rem { - height: 11rem !important; - } - .lg\\:h-12rem { - height: 12rem !important; - } - .lg\\:h-13rem { - height: 13rem !important; - } - .lg\\:h-14rem { - height: 14rem !important; - } - .lg\\:h-15rem { - height: 15rem !important; - } - .lg\\:h-16rem { - height: 16rem !important; - } - .lg\\:h-17rem { - height: 17rem !important; - } - .lg\\:h-18rem { - height: 18rem !important; - } - .lg\\:h-19rem { - height: 19rem !important; - } - .lg\\:h-20rem { - height: 20rem !important; - } - .lg\\:h-21rem { - height: 21rem !important; - } - .lg\\:h-22rem { - height: 22rem !important; - } - .lg\\:h-23rem { - height: 23rem !important; - } - .lg\\:h-24rem { - height: 24rem !important; - } - .lg\\:h-25rem { - height: 25rem !important; - } - .lg\\:h-26rem { - height: 26rem !important; - } - .lg\\:h-27rem { - height: 27rem !important; - } - .lg\\:h-28rem { - height: 28rem !important; - } - .lg\\:h-29rem { - height: 29rem !important; - } - .lg\\:h-30rem { - height: 30rem !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:h-full { - height: 100% !important; - } - .xl\\:h-screen { - height: 100vh !important; - } - .xl\\:h-auto { - height: auto !important; - } - .xl\\:h-min { - height: min-content !important; - } - .xl\\:h-max { - height: max-content !important; - } - .xl\\:h-fit { - height: fit-content !important; - } - .xl\\:h-1rem { - height: 1rem !important; - } - .xl\\:h-2rem { - height: 2rem !important; - } - .xl\\:h-3rem { - height: 3rem !important; - } - .xl\\:h-4rem { - height: 4rem !important; - } - .xl\\:h-5rem { - height: 5rem !important; - } - .xl\\:h-6rem { - height: 6rem !important; - } - .xl\\:h-7rem { - height: 7rem !important; - } - .xl\\:h-8rem { - height: 8rem !important; - } - .xl\\:h-9rem { - height: 9rem !important; - } - .xl\\:h-10rem { - height: 10rem !important; - } - .xl\\:h-11rem { - height: 11rem !important; - } - .xl\\:h-12rem { - height: 12rem !important; - } - .xl\\:h-13rem { - height: 13rem !important; - } - .xl\\:h-14rem { - height: 14rem !important; - } - .xl\\:h-15rem { - height: 15rem !important; - } - .xl\\:h-16rem { - height: 16rem !important; - } - .xl\\:h-17rem { - height: 17rem !important; - } - .xl\\:h-18rem { - height: 18rem !important; - } - .xl\\:h-19rem { - height: 19rem !important; - } - .xl\\:h-20rem { - height: 20rem !important; - } - .xl\\:h-21rem { - height: 21rem !important; - } - .xl\\:h-22rem { - height: 22rem !important; - } - .xl\\:h-23rem { - height: 23rem !important; - } - .xl\\:h-24rem { - height: 24rem !important; - } - .xl\\:h-25rem { - height: 25rem !important; - } - .xl\\:h-26rem { - height: 26rem !important; - } - .xl\\:h-27rem { - height: 27rem !important; - } - .xl\\:h-28rem { - height: 28rem !important; - } - .xl\\:h-29rem { - height: 29rem !important; - } - .xl\\:h-30rem { - height: 30rem !important; - } -} -.min-w-0 { - min-width: 0px !important; -} - -.min-w-full { - min-width: 100% !important; -} - -.min-w-screen { - min-width: 100vw !important; -} - -.min-w-min { - min-width: min-content !important; -} - -.min-w-max { - min-width: max-content !important; -} - -@media screen and (min-width: 576px) { - .sm\\:min-w-0 { - min-width: 0px !important; - } - .sm\\:min-w-full { - min-width: 100% !important; - } - .sm\\:min-w-screen { - min-width: 100vw !important; - } - .sm\\:min-w-min { - min-width: min-content !important; - } - .sm\\:min-w-max { - min-width: max-content !important; - } -} -@media screen and (min-width: 768px) { - .md\\:min-w-0 { - min-width: 0px !important; - } - .md\\:min-w-full { - min-width: 100% !important; - } - .md\\:min-w-screen { - min-width: 100vw !important; - } - .md\\:min-w-min { - min-width: min-content !important; - } - .md\\:min-w-max { - min-width: max-content !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:min-w-0 { - min-width: 0px !important; - } - .lg\\:min-w-full { - min-width: 100% !important; - } - .lg\\:min-w-screen { - min-width: 100vw !important; - } - .lg\\:min-w-min { - min-width: min-content !important; - } - .lg\\:min-w-max { - min-width: max-content !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:min-w-0 { - min-width: 0px !important; - } - .xl\\:min-w-full { - min-width: 100% !important; - } - .xl\\:min-w-screen { - min-width: 100vw !important; - } - .xl\\:min-w-min { - min-width: min-content !important; - } - .xl\\:min-w-max { - min-width: max-content !important; - } -} -.max-w-0 { - max-width: 0px !important; -} - -.max-w-full { - max-width: 100% !important; -} - -.max-w-screen { - max-width: 100vw !important; -} - -.max-w-min { - max-width: min-content !important; -} - -.max-w-max { - max-width: max-content !important; -} - -.max-w-fit { - max-width: fit-content !important; -} - -.max-w-1rem { - max-width: 1rem !important; -} - -.max-w-2rem { - max-width: 2rem !important; -} - -.max-w-3rem { - max-width: 3rem !important; -} - -.max-w-4rem { - max-width: 4rem !important; -} - -.max-w-5rem { - max-width: 5rem !important; -} - -.max-w-6rem { - max-width: 6rem !important; -} - -.max-w-7rem { - max-width: 7rem !important; -} - -.max-w-8rem { - max-width: 8rem !important; -} - -.max-w-9rem { - max-width: 9rem !important; -} - -.max-w-10rem { - max-width: 10rem !important; -} - -.max-w-11rem { - max-width: 11rem !important; -} - -.max-w-12rem { - max-width: 12rem !important; -} - -.max-w-13rem { - max-width: 13rem !important; -} - -.max-w-14rem { - max-width: 14rem !important; -} - -.max-w-15rem { - max-width: 15rem !important; -} - -.max-w-16rem { - max-width: 16rem !important; -} - -.max-w-17rem { - max-width: 17rem !important; -} - -.max-w-18rem { - max-width: 18rem !important; -} - -.max-w-19rem { - max-width: 19rem !important; -} - -.max-w-20rem { - max-width: 20rem !important; -} - -.max-w-21rem { - max-width: 21rem !important; -} - -.max-w-22rem { - max-width: 22rem !important; -} - -.max-w-23rem { - max-width: 23rem !important; -} - -.max-w-24rem { - max-width: 24rem !important; -} - -.max-w-25rem { - max-width: 25rem !important; -} - -.max-w-26rem { - max-width: 26rem !important; -} - -.max-w-27rem { - max-width: 27rem !important; -} - -.max-w-28rem { - max-width: 28rem !important; -} - -.max-w-29rem { - max-width: 29rem !important; -} - -.max-w-30rem { - max-width: 30rem !important; -} - -@media screen and (min-width: 576px) { - .sm\\:max-w-0 { - max-width: 0px !important; - } - .sm\\:max-w-full { - max-width: 100% !important; - } - .sm\\:max-w-screen { - max-width: 100vw !important; - } - .sm\\:max-w-min { - max-width: min-content !important; - } - .sm\\:max-w-max { - max-width: max-content !important; - } - .sm\\:max-w-fit { - max-width: fit-content !important; - } - .sm\\:max-w-1rem { - max-width: 1rem !important; - } - .sm\\:max-w-2rem { - max-width: 2rem !important; - } - .sm\\:max-w-3rem { - max-width: 3rem !important; - } - .sm\\:max-w-4rem { - max-width: 4rem !important; - } - .sm\\:max-w-5rem { - max-width: 5rem !important; - } - .sm\\:max-w-6rem { - max-width: 6rem !important; - } - .sm\\:max-w-7rem { - max-width: 7rem !important; - } - .sm\\:max-w-8rem { - max-width: 8rem !important; - } - .sm\\:max-w-9rem { - max-width: 9rem !important; - } - .sm\\:max-w-10rem { - max-width: 10rem !important; - } - .sm\\:max-w-11rem { - max-width: 11rem !important; - } - .sm\\:max-w-12rem { - max-width: 12rem !important; - } - .sm\\:max-w-13rem { - max-width: 13rem !important; - } - .sm\\:max-w-14rem { - max-width: 14rem !important; - } - .sm\\:max-w-15rem { - max-width: 15rem !important; - } - .sm\\:max-w-16rem { - max-width: 16rem !important; - } - .sm\\:max-w-17rem { - max-width: 17rem !important; - } - .sm\\:max-w-18rem { - max-width: 18rem !important; - } - .sm\\:max-w-19rem { - max-width: 19rem !important; - } - .sm\\:max-w-20rem { - max-width: 20rem !important; - } - .sm\\:max-w-21rem { - max-width: 21rem !important; - } - .sm\\:max-w-22rem { - max-width: 22rem !important; - } - .sm\\:max-w-23rem { - max-width: 23rem !important; - } - .sm\\:max-w-24rem { - max-width: 24rem !important; - } - .sm\\:max-w-25rem { - max-width: 25rem !important; - } - .sm\\:max-w-26rem { - max-width: 26rem !important; - } - .sm\\:max-w-27rem { - max-width: 27rem !important; - } - .sm\\:max-w-28rem { - max-width: 28rem !important; - } - .sm\\:max-w-29rem { - max-width: 29rem !important; - } - .sm\\:max-w-30rem { - max-width: 30rem !important; - } -} -@media screen and (min-width: 768px) { - .md\\:max-w-0 { - max-width: 0px !important; - } - .md\\:max-w-full { - max-width: 100% !important; - } - .md\\:max-w-screen { - max-width: 100vw !important; - } - .md\\:max-w-min { - max-width: min-content !important; - } - .md\\:max-w-max { - max-width: max-content !important; - } - .md\\:max-w-fit { - max-width: fit-content !important; - } - .md\\:max-w-1rem { - max-width: 1rem !important; - } - .md\\:max-w-2rem { - max-width: 2rem !important; - } - .md\\:max-w-3rem { - max-width: 3rem !important; - } - .md\\:max-w-4rem { - max-width: 4rem !important; - } - .md\\:max-w-5rem { - max-width: 5rem !important; - } - .md\\:max-w-6rem { - max-width: 6rem !important; - } - .md\\:max-w-7rem { - max-width: 7rem !important; - } - .md\\:max-w-8rem { - max-width: 8rem !important; - } - .md\\:max-w-9rem { - max-width: 9rem !important; - } - .md\\:max-w-10rem { - max-width: 10rem !important; - } - .md\\:max-w-11rem { - max-width: 11rem !important; - } - .md\\:max-w-12rem { - max-width: 12rem !important; - } - .md\\:max-w-13rem { - max-width: 13rem !important; - } - .md\\:max-w-14rem { - max-width: 14rem !important; - } - .md\\:max-w-15rem { - max-width: 15rem !important; - } - .md\\:max-w-16rem { - max-width: 16rem !important; - } - .md\\:max-w-17rem { - max-width: 17rem !important; - } - .md\\:max-w-18rem { - max-width: 18rem !important; - } - .md\\:max-w-19rem { - max-width: 19rem !important; - } - .md\\:max-w-20rem { - max-width: 20rem !important; - } - .md\\:max-w-21rem { - max-width: 21rem !important; - } - .md\\:max-w-22rem { - max-width: 22rem !important; - } - .md\\:max-w-23rem { - max-width: 23rem !important; - } - .md\\:max-w-24rem { - max-width: 24rem !important; - } - .md\\:max-w-25rem { - max-width: 25rem !important; - } - .md\\:max-w-26rem { - max-width: 26rem !important; - } - .md\\:max-w-27rem { - max-width: 27rem !important; - } - .md\\:max-w-28rem { - max-width: 28rem !important; - } - .md\\:max-w-29rem { - max-width: 29rem !important; - } - .md\\:max-w-30rem { - max-width: 30rem !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:max-w-0 { - max-width: 0px !important; - } - .lg\\:max-w-full { - max-width: 100% !important; - } - .lg\\:max-w-screen { - max-width: 100vw !important; - } - .lg\\:max-w-min { - max-width: min-content !important; - } - .lg\\:max-w-max { - max-width: max-content !important; - } - .lg\\:max-w-fit { - max-width: fit-content !important; - } - .lg\\:max-w-1rem { - max-width: 1rem !important; - } - .lg\\:max-w-2rem { - max-width: 2rem !important; - } - .lg\\:max-w-3rem { - max-width: 3rem !important; - } - .lg\\:max-w-4rem { - max-width: 4rem !important; - } - .lg\\:max-w-5rem { - max-width: 5rem !important; - } - .lg\\:max-w-6rem { - max-width: 6rem !important; - } - .lg\\:max-w-7rem { - max-width: 7rem !important; - } - .lg\\:max-w-8rem { - max-width: 8rem !important; - } - .lg\\:max-w-9rem { - max-width: 9rem !important; - } - .lg\\:max-w-10rem { - max-width: 10rem !important; - } - .lg\\:max-w-11rem { - max-width: 11rem !important; - } - .lg\\:max-w-12rem { - max-width: 12rem !important; - } - .lg\\:max-w-13rem { - max-width: 13rem !important; - } - .lg\\:max-w-14rem { - max-width: 14rem !important; - } - .lg\\:max-w-15rem { - max-width: 15rem !important; - } - .lg\\:max-w-16rem { - max-width: 16rem !important; - } - .lg\\:max-w-17rem { - max-width: 17rem !important; - } - .lg\\:max-w-18rem { - max-width: 18rem !important; - } - .lg\\:max-w-19rem { - max-width: 19rem !important; - } - .lg\\:max-w-20rem { - max-width: 20rem !important; - } - .lg\\:max-w-21rem { - max-width: 21rem !important; - } - .lg\\:max-w-22rem { - max-width: 22rem !important; - } - .lg\\:max-w-23rem { - max-width: 23rem !important; - } - .lg\\:max-w-24rem { - max-width: 24rem !important; - } - .lg\\:max-w-25rem { - max-width: 25rem !important; - } - .lg\\:max-w-26rem { - max-width: 26rem !important; - } - .lg\\:max-w-27rem { - max-width: 27rem !important; - } - .lg\\:max-w-28rem { - max-width: 28rem !important; - } - .lg\\:max-w-29rem { - max-width: 29rem !important; - } - .lg\\:max-w-30rem { - max-width: 30rem !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:max-w-0 { - max-width: 0px !important; - } - .xl\\:max-w-full { - max-width: 100% !important; - } - .xl\\:max-w-screen { - max-width: 100vw !important; - } - .xl\\:max-w-min { - max-width: min-content !important; - } - .xl\\:max-w-max { - max-width: max-content !important; - } - .xl\\:max-w-fit { - max-width: fit-content !important; - } - .xl\\:max-w-1rem { - max-width: 1rem !important; - } - .xl\\:max-w-2rem { - max-width: 2rem !important; - } - .xl\\:max-w-3rem { - max-width: 3rem !important; - } - .xl\\:max-w-4rem { - max-width: 4rem !important; - } - .xl\\:max-w-5rem { - max-width: 5rem !important; - } - .xl\\:max-w-6rem { - max-width: 6rem !important; - } - .xl\\:max-w-7rem { - max-width: 7rem !important; - } - .xl\\:max-w-8rem { - max-width: 8rem !important; - } - .xl\\:max-w-9rem { - max-width: 9rem !important; - } - .xl\\:max-w-10rem { - max-width: 10rem !important; - } - .xl\\:max-w-11rem { - max-width: 11rem !important; - } - .xl\\:max-w-12rem { - max-width: 12rem !important; - } - .xl\\:max-w-13rem { - max-width: 13rem !important; - } - .xl\\:max-w-14rem { - max-width: 14rem !important; - } - .xl\\:max-w-15rem { - max-width: 15rem !important; - } - .xl\\:max-w-16rem { - max-width: 16rem !important; - } - .xl\\:max-w-17rem { - max-width: 17rem !important; - } - .xl\\:max-w-18rem { - max-width: 18rem !important; - } - .xl\\:max-w-19rem { - max-width: 19rem !important; - } - .xl\\:max-w-20rem { - max-width: 20rem !important; - } - .xl\\:max-w-21rem { - max-width: 21rem !important; - } - .xl\\:max-w-22rem { - max-width: 22rem !important; - } - .xl\\:max-w-23rem { - max-width: 23rem !important; - } - .xl\\:max-w-24rem { - max-width: 24rem !important; - } - .xl\\:max-w-25rem { - max-width: 25rem !important; - } - .xl\\:max-w-26rem { - max-width: 26rem !important; - } - .xl\\:max-w-27rem { - max-width: 27rem !important; - } - .xl\\:max-w-28rem { - max-width: 28rem !important; - } - .xl\\:max-w-29rem { - max-width: 29rem !important; - } - .xl\\:max-w-30rem { - max-width: 30rem !important; - } -} -.min-h-0 { - min-height: 0px !important; -} - -.min-h-full { - min-height: 100% !important; -} - -.min-h-screen { - min-height: 100vh !important; -} - -@media screen and (min-width: 576px) { - .sm\\:min-h-0 { - min-height: 0px !important; - } - .sm\\:min-h-full { - min-height: 100% !important; - } - .sm\\:min-h-screen { - min-height: 100vh !important; - } -} -@media screen and (min-width: 768px) { - .md\\:min-h-0 { - min-height: 0px !important; - } - .md\\:min-h-full { - min-height: 100% !important; - } - .md\\:min-h-screen { - min-height: 100vh !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:min-h-0 { - min-height: 0px !important; - } - .lg\\:min-h-full { - min-height: 100% !important; - } - .lg\\:min-h-screen { - min-height: 100vh !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:min-h-0 { - min-height: 0px !important; - } - .xl\\:min-h-full { - min-height: 100% !important; - } - .xl\\:min-h-screen { - min-height: 100vh !important; - } -} -.max-h-0 { - max-height: 0px !important; -} - -.max-h-full { - max-height: 100% !important; -} - -.max-h-screen { - max-height: 100vh !important; -} - -.max-h-min { - max-height: min-content !important; -} - -.max-h-max { - max-height: max-content !important; -} - -.max-h-fit { - max-height: fit-content !important; -} - -.max-h-1rem { - max-height: 1rem !important; -} - -.max-h-2rem { - max-height: 2rem !important; -} - -.max-h-3rem { - max-height: 3rem !important; -} - -.max-h-4rem { - max-height: 4rem !important; -} - -.max-h-5rem { - max-height: 5rem !important; -} - -.max-h-6rem { - max-height: 6rem !important; -} - -.max-h-7rem { - max-height: 7rem !important; -} - -.max-h-8rem { - max-height: 8rem !important; -} - -.max-h-9rem { - max-height: 9rem !important; -} - -.max-h-10rem { - max-height: 10rem !important; -} - -.max-h-11rem { - max-height: 11rem !important; -} - -.max-h-12rem { - max-height: 12rem !important; -} - -.max-h-13rem { - max-height: 13rem !important; -} - -.max-h-14rem { - max-height: 14rem !important; -} - -.max-h-15rem { - max-height: 15rem !important; -} - -.max-h-16rem { - max-height: 16rem !important; -} - -.max-h-17rem { - max-height: 17rem !important; -} - -.max-h-18rem { - max-height: 18rem !important; -} - -.max-h-19rem { - max-height: 19rem !important; -} - -.max-h-20rem { - max-height: 20rem !important; -} - -.max-h-21rem { - max-height: 21rem !important; -} - -.max-h-22rem { - max-height: 22rem !important; -} - -.max-h-23rem { - max-height: 23rem !important; -} - -.max-h-24rem { - max-height: 24rem !important; -} - -.max-h-25rem { - max-height: 25rem !important; -} - -.max-h-26rem { - max-height: 26rem !important; -} - -.max-h-27rem { - max-height: 27rem !important; -} - -.max-h-28rem { - max-height: 28rem !important; -} - -.max-h-29rem { - max-height: 29rem !important; -} - -.max-h-30rem { - max-height: 30rem !important; -} - -@media screen and (min-width: 576px) { - .sm\\:max-h-0 { - max-height: 0px !important; - } - .sm\\:max-h-full { - max-height: 100% !important; - } - .sm\\:max-h-screen { - max-height: 100vh !important; - } - .sm\\:max-h-min { - max-height: min-content !important; - } - .sm\\:max-h-max { - max-height: max-content !important; - } - .sm\\:max-h-fit { - max-height: fit-content !important; - } - .sm\\:max-h-1rem { - max-height: 1rem !important; - } - .sm\\:max-h-2rem { - max-height: 2rem !important; - } - .sm\\:max-h-3rem { - max-height: 3rem !important; - } - .sm\\:max-h-4rem { - max-height: 4rem !important; - } - .sm\\:max-h-5rem { - max-height: 5rem !important; - } - .sm\\:max-h-6rem { - max-height: 6rem !important; - } - .sm\\:max-h-7rem { - max-height: 7rem !important; - } - .sm\\:max-h-8rem { - max-height: 8rem !important; - } - .sm\\:max-h-9rem { - max-height: 9rem !important; - } - .sm\\:max-h-10rem { - max-height: 10rem !important; - } - .sm\\:max-h-11rem { - max-height: 11rem !important; - } - .sm\\:max-h-12rem { - max-height: 12rem !important; - } - .sm\\:max-h-13rem { - max-height: 13rem !important; - } - .sm\\:max-h-14rem { - max-height: 14rem !important; - } - .sm\\:max-h-15rem { - max-height: 15rem !important; - } - .sm\\:max-h-16rem { - max-height: 16rem !important; - } - .sm\\:max-h-17rem { - max-height: 17rem !important; - } - .sm\\:max-h-18rem { - max-height: 18rem !important; - } - .sm\\:max-h-19rem { - max-height: 19rem !important; - } - .sm\\:max-h-20rem { - max-height: 20rem !important; - } - .sm\\:max-h-21rem { - max-height: 21rem !important; - } - .sm\\:max-h-22rem { - max-height: 22rem !important; - } - .sm\\:max-h-23rem { - max-height: 23rem !important; - } - .sm\\:max-h-24rem { - max-height: 24rem !important; - } - .sm\\:max-h-25rem { - max-height: 25rem !important; - } - .sm\\:max-h-26rem { - max-height: 26rem !important; - } - .sm\\:max-h-27rem { - max-height: 27rem !important; - } - .sm\\:max-h-28rem { - max-height: 28rem !important; - } - .sm\\:max-h-29rem { - max-height: 29rem !important; - } - .sm\\:max-h-30rem { - max-height: 30rem !important; - } -} -@media screen and (min-width: 768px) { - .md\\:max-h-0 { - max-height: 0px !important; - } - .md\\:max-h-full { - max-height: 100% !important; - } - .md\\:max-h-screen { - max-height: 100vh !important; - } - .md\\:max-h-min { - max-height: min-content !important; - } - .md\\:max-h-max { - max-height: max-content !important; - } - .md\\:max-h-fit { - max-height: fit-content !important; - } - .md\\:max-h-1rem { - max-height: 1rem !important; - } - .md\\:max-h-2rem { - max-height: 2rem !important; - } - .md\\:max-h-3rem { - max-height: 3rem !important; - } - .md\\:max-h-4rem { - max-height: 4rem !important; - } - .md\\:max-h-5rem { - max-height: 5rem !important; - } - .md\\:max-h-6rem { - max-height: 6rem !important; - } - .md\\:max-h-7rem { - max-height: 7rem !important; - } - .md\\:max-h-8rem { - max-height: 8rem !important; - } - .md\\:max-h-9rem { - max-height: 9rem !important; - } - .md\\:max-h-10rem { - max-height: 10rem !important; - } - .md\\:max-h-11rem { - max-height: 11rem !important; - } - .md\\:max-h-12rem { - max-height: 12rem !important; - } - .md\\:max-h-13rem { - max-height: 13rem !important; - } - .md\\:max-h-14rem { - max-height: 14rem !important; - } - .md\\:max-h-15rem { - max-height: 15rem !important; - } - .md\\:max-h-16rem { - max-height: 16rem !important; - } - .md\\:max-h-17rem { - max-height: 17rem !important; - } - .md\\:max-h-18rem { - max-height: 18rem !important; - } - .md\\:max-h-19rem { - max-height: 19rem !important; - } - .md\\:max-h-20rem { - max-height: 20rem !important; - } - .md\\:max-h-21rem { - max-height: 21rem !important; - } - .md\\:max-h-22rem { - max-height: 22rem !important; - } - .md\\:max-h-23rem { - max-height: 23rem !important; - } - .md\\:max-h-24rem { - max-height: 24rem !important; - } - .md\\:max-h-25rem { - max-height: 25rem !important; - } - .md\\:max-h-26rem { - max-height: 26rem !important; - } - .md\\:max-h-27rem { - max-height: 27rem !important; - } - .md\\:max-h-28rem { - max-height: 28rem !important; - } - .md\\:max-h-29rem { - max-height: 29rem !important; - } - .md\\:max-h-30rem { - max-height: 30rem !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:max-h-0 { - max-height: 0px !important; - } - .lg\\:max-h-full { - max-height: 100% !important; - } - .lg\\:max-h-screen { - max-height: 100vh !important; - } - .lg\\:max-h-min { - max-height: min-content !important; - } - .lg\\:max-h-max { - max-height: max-content !important; - } - .lg\\:max-h-fit { - max-height: fit-content !important; - } - .lg\\:max-h-1rem { - max-height: 1rem !important; - } - .lg\\:max-h-2rem { - max-height: 2rem !important; - } - .lg\\:max-h-3rem { - max-height: 3rem !important; - } - .lg\\:max-h-4rem { - max-height: 4rem !important; - } - .lg\\:max-h-5rem { - max-height: 5rem !important; - } - .lg\\:max-h-6rem { - max-height: 6rem !important; - } - .lg\\:max-h-7rem { - max-height: 7rem !important; - } - .lg\\:max-h-8rem { - max-height: 8rem !important; - } - .lg\\:max-h-9rem { - max-height: 9rem !important; - } - .lg\\:max-h-10rem { - max-height: 10rem !important; - } - .lg\\:max-h-11rem { - max-height: 11rem !important; - } - .lg\\:max-h-12rem { - max-height: 12rem !important; - } - .lg\\:max-h-13rem { - max-height: 13rem !important; - } - .lg\\:max-h-14rem { - max-height: 14rem !important; - } - .lg\\:max-h-15rem { - max-height: 15rem !important; - } - .lg\\:max-h-16rem { - max-height: 16rem !important; - } - .lg\\:max-h-17rem { - max-height: 17rem !important; - } - .lg\\:max-h-18rem { - max-height: 18rem !important; - } - .lg\\:max-h-19rem { - max-height: 19rem !important; - } - .lg\\:max-h-20rem { - max-height: 20rem !important; - } - .lg\\:max-h-21rem { - max-height: 21rem !important; - } - .lg\\:max-h-22rem { - max-height: 22rem !important; - } - .lg\\:max-h-23rem { - max-height: 23rem !important; - } - .lg\\:max-h-24rem { - max-height: 24rem !important; - } - .lg\\:max-h-25rem { - max-height: 25rem !important; - } - .lg\\:max-h-26rem { - max-height: 26rem !important; - } - .lg\\:max-h-27rem { - max-height: 27rem !important; - } - .lg\\:max-h-28rem { - max-height: 28rem !important; - } - .lg\\:max-h-29rem { - max-height: 29rem !important; - } - .lg\\:max-h-30rem { - max-height: 30rem !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:max-h-0 { - max-height: 0px !important; - } - .xl\\:max-h-full { - max-height: 100% !important; - } - .xl\\:max-h-screen { - max-height: 100vh !important; - } - .xl\\:max-h-min { - max-height: min-content !important; - } - .xl\\:max-h-max { - max-height: max-content !important; - } - .xl\\:max-h-fit { - max-height: fit-content !important; - } - .xl\\:max-h-1rem { - max-height: 1rem !important; - } - .xl\\:max-h-2rem { - max-height: 2rem !important; - } - .xl\\:max-h-3rem { - max-height: 3rem !important; - } - .xl\\:max-h-4rem { - max-height: 4rem !important; - } - .xl\\:max-h-5rem { - max-height: 5rem !important; - } - .xl\\:max-h-6rem { - max-height: 6rem !important; - } - .xl\\:max-h-7rem { - max-height: 7rem !important; - } - .xl\\:max-h-8rem { - max-height: 8rem !important; - } - .xl\\:max-h-9rem { - max-height: 9rem !important; - } - .xl\\:max-h-10rem { - max-height: 10rem !important; - } - .xl\\:max-h-11rem { - max-height: 11rem !important; - } - .xl\\:max-h-12rem { - max-height: 12rem !important; - } - .xl\\:max-h-13rem { - max-height: 13rem !important; - } - .xl\\:max-h-14rem { - max-height: 14rem !important; - } - .xl\\:max-h-15rem { - max-height: 15rem !important; - } - .xl\\:max-h-16rem { - max-height: 16rem !important; - } - .xl\\:max-h-17rem { - max-height: 17rem !important; - } - .xl\\:max-h-18rem { - max-height: 18rem !important; - } - .xl\\:max-h-19rem { - max-height: 19rem !important; - } - .xl\\:max-h-20rem { - max-height: 20rem !important; - } - .xl\\:max-h-21rem { - max-height: 21rem !important; - } - .xl\\:max-h-22rem { - max-height: 22rem !important; - } - .xl\\:max-h-23rem { - max-height: 23rem !important; - } - .xl\\:max-h-24rem { - max-height: 24rem !important; - } - .xl\\:max-h-25rem { - max-height: 25rem !important; - } - .xl\\:max-h-26rem { - max-height: 26rem !important; - } - .xl\\:max-h-27rem { - max-height: 27rem !important; - } - .xl\\:max-h-28rem { - max-height: 28rem !important; - } - .xl\\:max-h-29rem { - max-height: 29rem !important; - } - .xl\\:max-h-30rem { - max-height: 30rem !important; - } -} -.static { - position: static !important; -} - -.fixed { - position: fixed !important; -} - -.absolute { - position: absolute !important; -} - -.relative { - position: relative !important; -} - -.sticky { - position: sticky !important; -} - -@media screen and (min-width: 576px) { - .sm\\:static { - position: static !important; - } - .sm\\:fixed { - position: fixed !important; - } - .sm\\:absolute { - position: absolute !important; - } - .sm\\:relative { - position: relative !important; - } - .sm\\:sticky { - position: sticky !important; - } -} -@media screen and (min-width: 768px) { - .md\\:static { - position: static !important; - } - .md\\:fixed { - position: fixed !important; - } - .md\\:absolute { - position: absolute !important; - } - .md\\:relative { - position: relative !important; - } - .md\\:sticky { - position: sticky !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:static { - position: static !important; - } - .lg\\:fixed { - position: fixed !important; - } - .lg\\:absolute { - position: absolute !important; - } - .lg\\:relative { - position: relative !important; - } - .lg\\:sticky { - position: sticky !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:static { - position: static !important; - } - .xl\\:fixed { - position: fixed !important; - } - .xl\\:absolute { - position: absolute !important; - } - .xl\\:relative { - position: relative !important; - } - .xl\\:sticky { - position: sticky !important; - } -} -.top-auto { - top: auto !important; -} - -.top-0 { - top: 0px !important; -} - -.top-50 { - top: 50% !important; -} - -.top-100 { - top: 100% !important; -} - -@media screen and (min-width: 576px) { - .sm\\:top-auto { - top: auto !important; - } - .sm\\:top-0 { - top: 0px !important; - } - .sm\\:top-50 { - top: 50% !important; - } - .sm\\:top-100 { - top: 100% !important; - } -} -@media screen and (min-width: 768px) { - .md\\:top-auto { - top: auto !important; - } - .md\\:top-0 { - top: 0px !important; - } - .md\\:top-50 { - top: 50% !important; - } - .md\\:top-100 { - top: 100% !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:top-auto { - top: auto !important; - } - .lg\\:top-0 { - top: 0px !important; - } - .lg\\:top-50 { - top: 50% !important; - } - .lg\\:top-100 { - top: 100% !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:top-auto { - top: auto !important; - } - .xl\\:top-0 { - top: 0px !important; - } - .xl\\:top-50 { - top: 50% !important; - } - .xl\\:top-100 { - top: 100% !important; - } -} -.left-auto { - left: auto !important; -} - -.left-0 { - left: 0px !important; -} - -.left-50 { - left: 50% !important; -} - -.left-100 { - left: 100% !important; -} - -@media screen and (min-width: 576px) { - .sm\\:left-auto { - left: auto !important; - } - .sm\\:left-0 { - left: 0px !important; - } - .sm\\:left-50 { - left: 50% !important; - } - .sm\\:left-100 { - left: 100% !important; - } -} -@media screen and (min-width: 768px) { - .md\\:left-auto { - left: auto !important; - } - .md\\:left-0 { - left: 0px !important; - } - .md\\:left-50 { - left: 50% !important; - } - .md\\:left-100 { - left: 100% !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:left-auto { - left: auto !important; - } - .lg\\:left-0 { - left: 0px !important; - } - .lg\\:left-50 { - left: 50% !important; - } - .lg\\:left-100 { - left: 100% !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:left-auto { - left: auto !important; - } - .xl\\:left-0 { - left: 0px !important; - } - .xl\\:left-50 { - left: 50% !important; - } - .xl\\:left-100 { - left: 100% !important; - } -} -.right-auto { - right: auto !important; -} - -.right-0 { - right: 0px !important; -} - -.right-50 { - right: 50% !important; -} - -.right-100 { - right: 100% !important; -} - -@media screen and (min-width: 576px) { - .sm\\:right-auto { - right: auto !important; - } - .sm\\:right-0 { - right: 0px !important; - } - .sm\\:right-50 { - right: 50% !important; - } - .sm\\:right-100 { - right: 100% !important; - } -} -@media screen and (min-width: 768px) { - .md\\:right-auto { - right: auto !important; - } - .md\\:right-0 { - right: 0px !important; - } - .md\\:right-50 { - right: 50% !important; - } - .md\\:right-100 { - right: 100% !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:right-auto { - right: auto !important; - } - .lg\\:right-0 { - right: 0px !important; - } - .lg\\:right-50 { - right: 50% !important; - } - .lg\\:right-100 { - right: 100% !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:right-auto { - right: auto !important; - } - .xl\\:right-0 { - right: 0px !important; - } - .xl\\:right-50 { - right: 50% !important; - } - .xl\\:right-100 { - right: 100% !important; - } -} -.bottom-auto { - bottom: auto !important; -} - -.bottom-0 { - bottom: 0px !important; -} - -.bottom-50 { - bottom: 50% !important; -} - -.bottom-100 { - bottom: 100% !important; -} - -@media screen and (min-width: 576px) { - .sm\\:bottom-auto { - bottom: auto !important; - } - .sm\\:bottom-0 { - bottom: 0px !important; - } - .sm\\:bottom-50 { - bottom: 50% !important; - } - .sm\\:bottom-100 { - bottom: 100% !important; - } -} -@media screen and (min-width: 768px) { - .md\\:bottom-auto { - bottom: auto !important; - } - .md\\:bottom-0 { - bottom: 0px !important; - } - .md\\:bottom-50 { - bottom: 50% !important; - } - .md\\:bottom-100 { - bottom: 100% !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:bottom-auto { - bottom: auto !important; - } - .lg\\:bottom-0 { - bottom: 0px !important; - } - .lg\\:bottom-50 { - bottom: 50% !important; - } - .lg\\:bottom-100 { - bottom: 100% !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:bottom-auto { - bottom: auto !important; - } - .xl\\:bottom-0 { - bottom: 0px !important; - } - .xl\\:bottom-50 { - bottom: 50% !important; - } - .xl\\:bottom-100 { - bottom: 100% !important; - } -} -.overflow-auto { - overflow: auto !important; -} - -.overflow-hidden { - overflow: hidden !important; -} - -.overflow-visible { - overflow: visible !important; -} - -.overflow-scroll { - overflow: scroll !important; -} - -@media screen and (min-width: 576px) { - .sm\\:overflow-auto { - overflow: auto !important; - } - .sm\\:overflow-hidden { - overflow: hidden !important; - } - .sm\\:overflow-visible { - overflow: visible !important; - } - .sm\\:overflow-scroll { - overflow: scroll !important; - } -} -@media screen and (min-width: 768px) { - .md\\:overflow-auto { - overflow: auto !important; - } - .md\\:overflow-hidden { - overflow: hidden !important; - } - .md\\:overflow-visible { - overflow: visible !important; - } - .md\\:overflow-scroll { - overflow: scroll !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:overflow-auto { - overflow: auto !important; - } - .lg\\:overflow-hidden { - overflow: hidden !important; - } - .lg\\:overflow-visible { - overflow: visible !important; - } - .lg\\:overflow-scroll { - overflow: scroll !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:overflow-auto { - overflow: auto !important; - } - .xl\\:overflow-hidden { - overflow: hidden !important; - } - .xl\\:overflow-visible { - overflow: visible !important; - } - .xl\\:overflow-scroll { - overflow: scroll !important; - } -} -.overflow-x-auto { - overflow-x: auto !important; -} - -.overflow-x-hidden { - overflow-x: hidden !important; -} - -.overflow-x-visible { - overflow-x: visible !important; -} - -.overflow-x-scroll { - overflow-x: scroll !important; -} - -@media screen and (min-width: 576px) { - .sm\\:overflow-x-auto { - overflow-x: auto !important; - } - .sm\\:overflow-x-hidden { - overflow-x: hidden !important; - } - .sm\\:overflow-x-visible { - overflow-x: visible !important; - } - .sm\\:overflow-x-scroll { - overflow-x: scroll !important; - } -} -@media screen and (min-width: 768px) { - .md\\:overflow-x-auto { - overflow-x: auto !important; - } - .md\\:overflow-x-hidden { - overflow-x: hidden !important; - } - .md\\:overflow-x-visible { - overflow-x: visible !important; - } - .md\\:overflow-x-scroll { - overflow-x: scroll !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:overflow-x-auto { - overflow-x: auto !important; - } - .lg\\:overflow-x-hidden { - overflow-x: hidden !important; - } - .lg\\:overflow-x-visible { - overflow-x: visible !important; - } - .lg\\:overflow-x-scroll { - overflow-x: scroll !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:overflow-x-auto { - overflow-x: auto !important; - } - .xl\\:overflow-x-hidden { - overflow-x: hidden !important; - } - .xl\\:overflow-x-visible { - overflow-x: visible !important; - } - .xl\\:overflow-x-scroll { - overflow-x: scroll !important; - } -} -.overflow-y-auto { - overflow-y: auto !important; -} - -.overflow-y-hidden { - overflow-y: hidden !important; -} - -.overflow-y-visible { - overflow-y: visible !important; -} - -.overflow-y-scroll { - overflow-y: scroll !important; -} - -@media screen and (min-width: 576px) { - .sm\\:overflow-y-auto { - overflow-y: auto !important; - } - .sm\\:overflow-y-hidden { - overflow-y: hidden !important; - } - .sm\\:overflow-y-visible { - overflow-y: visible !important; - } - .sm\\:overflow-y-scroll { - overflow-y: scroll !important; - } -} -@media screen and (min-width: 768px) { - .md\\:overflow-y-auto { - overflow-y: auto !important; - } - .md\\:overflow-y-hidden { - overflow-y: hidden !important; - } - .md\\:overflow-y-visible { - overflow-y: visible !important; - } - .md\\:overflow-y-scroll { - overflow-y: scroll !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:overflow-y-auto { - overflow-y: auto !important; - } - .lg\\:overflow-y-hidden { - overflow-y: hidden !important; - } - .lg\\:overflow-y-visible { - overflow-y: visible !important; - } - .lg\\:overflow-y-scroll { - overflow-y: scroll !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:overflow-y-auto { - overflow-y: auto !important; - } - .xl\\:overflow-y-hidden { - overflow-y: hidden !important; - } - .xl\\:overflow-y-visible { - overflow-y: visible !important; - } - .xl\\:overflow-y-scroll { - overflow-y: scroll !important; - } -} -.z-auto { - z-index: auto !important; -} - -.z-0 { - z-index: 0 !important; -} - -.z-1 { - z-index: 1 !important; -} - -.z-2 { - z-index: 2 !important; -} - -.z-3 { - z-index: 3 !important; -} - -.z-4 { - z-index: 4 !important; -} - -.z-5 { - z-index: 5 !important; -} - -@media screen and (min-width: 576px) { - .sm\\:z-auto { - z-index: auto !important; - } - .sm\\:z-0 { - z-index: 0 !important; - } - .sm\\:z-1 { - z-index: 1 !important; - } - .sm\\:z-2 { - z-index: 2 !important; - } - .sm\\:z-3 { - z-index: 3 !important; - } - .sm\\:z-4 { - z-index: 4 !important; - } - .sm\\:z-5 { - z-index: 5 !important; - } -} -@media screen and (min-width: 768px) { - .md\\:z-auto { - z-index: auto !important; - } - .md\\:z-0 { - z-index: 0 !important; - } - .md\\:z-1 { - z-index: 1 !important; - } - .md\\:z-2 { - z-index: 2 !important; - } - .md\\:z-3 { - z-index: 3 !important; - } - .md\\:z-4 { - z-index: 4 !important; - } - .md\\:z-5 { - z-index: 5 !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:z-auto { - z-index: auto !important; - } - .lg\\:z-0 { - z-index: 0 !important; - } - .lg\\:z-1 { - z-index: 1 !important; - } - .lg\\:z-2 { - z-index: 2 !important; - } - .lg\\:z-3 { - z-index: 3 !important; - } - .lg\\:z-4 { - z-index: 4 !important; - } - .lg\\:z-5 { - z-index: 5 !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:z-auto { - z-index: auto !important; - } - .xl\\:z-0 { - z-index: 0 !important; - } - .xl\\:z-1 { - z-index: 1 !important; - } - .xl\\:z-2 { - z-index: 2 !important; - } - .xl\\:z-3 { - z-index: 3 !important; - } - .xl\\:z-4 { - z-index: 4 !important; - } - .xl\\:z-5 { - z-index: 5 !important; - } -} -.bg-repeat { - background-repeat: repeat !important; -} - -.bg-no-repeat { - background-repeat: no-repeat !important; -} - -.bg-repeat-x { - background-repeat: repeat-x !important; -} - -.bg-repeat-y { - background-repeat: repeat-y !important; -} - -.bg-repeat-round { - background-repeat: round !important; -} - -.bg-repeat-space { - background-repeat: space !important; -} - -@media screen and (min-width: 576px) { - .sm\\:bg-repeat { - background-repeat: repeat !important; - } - .sm\\:bg-no-repeat { - background-repeat: no-repeat !important; - } - .sm\\:bg-repeat-x { - background-repeat: repeat-x !important; - } - .sm\\:bg-repeat-y { - background-repeat: repeat-y !important; - } - .sm\\:bg-repeat-round { - background-repeat: round !important; - } - .sm\\:bg-repeat-space { - background-repeat: space !important; - } -} -@media screen and (min-width: 768px) { - .md\\:bg-repeat { - background-repeat: repeat !important; - } - .md\\:bg-no-repeat { - background-repeat: no-repeat !important; - } - .md\\:bg-repeat-x { - background-repeat: repeat-x !important; - } - .md\\:bg-repeat-y { - background-repeat: repeat-y !important; - } - .md\\:bg-repeat-round { - background-repeat: round !important; - } - .md\\:bg-repeat-space { - background-repeat: space !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:bg-repeat { - background-repeat: repeat !important; - } - .lg\\:bg-no-repeat { - background-repeat: no-repeat !important; - } - .lg\\:bg-repeat-x { - background-repeat: repeat-x !important; - } - .lg\\:bg-repeat-y { - background-repeat: repeat-y !important; - } - .lg\\:bg-repeat-round { - background-repeat: round !important; - } - .lg\\:bg-repeat-space { - background-repeat: space !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:bg-repeat { - background-repeat: repeat !important; - } - .xl\\:bg-no-repeat { - background-repeat: no-repeat !important; - } - .xl\\:bg-repeat-x { - background-repeat: repeat-x !important; - } - .xl\\:bg-repeat-y { - background-repeat: repeat-y !important; - } - .xl\\:bg-repeat-round { - background-repeat: round !important; - } - .xl\\:bg-repeat-space { - background-repeat: space !important; - } -} -.bg-auto { - background-size: auto !important; -} - -.bg-cover { - background-size: cover !important; -} - -.bg-contain { - background-size: contain !important; -} - -@media screen and (min-width: 576px) { - .sm\\:bg-auto { - background-size: auto !important; - } - .sm\\:bg-cover { - background-size: cover !important; - } - .sm\\:bg-contain { - background-size: contain !important; - } -} -@media screen and (min-width: 768px) { - .md\\:bg-auto { - background-size: auto !important; - } - .md\\:bg-cover { - background-size: cover !important; - } - .md\\:bg-contain { - background-size: contain !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:bg-auto { - background-size: auto !important; - } - .lg\\:bg-cover { - background-size: cover !important; - } - .lg\\:bg-contain { - background-size: contain !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:bg-auto { - background-size: auto !important; - } - .xl\\:bg-cover { - background-size: cover !important; - } - .xl\\:bg-contain { - background-size: contain !important; - } -} -.bg-bottom { - background-position: bottom !important; -} - -.bg-center { - background-position: center !important; -} - -.bg-left { - background-position: left !important; -} - -.bg-left-bottom { - background-position: left bottom !important; -} - -.bg-left-top { - background-position: left top !important; -} - -.bg-right { - background-position: right !important; -} - -.bg-right-bottom { - background-position: right bottom !important; -} - -.bg-right-top { - background-position: right top !important; -} - -.bg-top { - background-position: top !important; -} - -@media screen and (min-width: 576px) { - .sm\\:bg-bottom { - background-position: bottom !important; - } - .sm\\:bg-center { - background-position: center !important; - } - .sm\\:bg-left { - background-position: left !important; - } - .sm\\:bg-left-bottom { - background-position: left bottom !important; - } - .sm\\:bg-left-top { - background-position: left top !important; - } - .sm\\:bg-right { - background-position: right !important; - } - .sm\\:bg-right-bottom { - background-position: right bottom !important; - } - .sm\\:bg-right-top { - background-position: right top !important; - } - .sm\\:bg-top { - background-position: top !important; - } -} -@media screen and (min-width: 768px) { - .md\\:bg-bottom { - background-position: bottom !important; - } - .md\\:bg-center { - background-position: center !important; - } - .md\\:bg-left { - background-position: left !important; - } - .md\\:bg-left-bottom { - background-position: left bottom !important; - } - .md\\:bg-left-top { - background-position: left top !important; - } - .md\\:bg-right { - background-position: right !important; - } - .md\\:bg-right-bottom { - background-position: right bottom !important; - } - .md\\:bg-right-top { - background-position: right top !important; - } - .md\\:bg-top { - background-position: top !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:bg-bottom { - background-position: bottom !important; - } - .lg\\:bg-center { - background-position: center !important; - } - .lg\\:bg-left { - background-position: left !important; - } - .lg\\:bg-left-bottom { - background-position: left bottom !important; - } - .lg\\:bg-left-top { - background-position: left top !important; - } - .lg\\:bg-right { - background-position: right !important; - } - .lg\\:bg-right-bottom { - background-position: right bottom !important; - } - .lg\\:bg-right-top { - background-position: right top !important; - } - .lg\\:bg-top { - background-position: top !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:bg-bottom { - background-position: bottom !important; - } - .xl\\:bg-center { - background-position: center !important; - } - .xl\\:bg-left { - background-position: left !important; - } - .xl\\:bg-left-bottom { - background-position: left bottom !important; - } - .xl\\:bg-left-top { - background-position: left top !important; - } - .xl\\:bg-right { - background-position: right !important; - } - .xl\\:bg-right-bottom { - background-position: right bottom !important; - } - .xl\\:bg-right-top { - background-position: right top !important; - } - .xl\\:bg-top { - background-position: top !important; - } -} -.select-none { - user-select: none !important; -} - -.select-text { - user-select: text !important; -} - -.select-all { - user-select: all !important; -} - -.select-auto { - user-select: auto !important; -} - -.list-none { - list-style: none !important; -} - -.list-disc { - list-style: disc !important; -} - -.list-decimal { - list-style: decimal !important; -} - -.appearance-none { - appearance: none !important; -} - -.outline-none { - outline: none !important; -} - -.pointer-events-none { - pointer-events: none !important; -} - -.pointer-events-auto { - pointer-events: auto !important; -} - -.cursor-auto { - cursor: auto !important; -} - -.cursor-pointer { - cursor: pointer !important; -} - -.cursor-wait { - cursor: wait !important; -} - -.cursor-move { - cursor: move !important; -} - -.select-none { - user-select: none !important; -} - -.select-text { - user-select: text !important; -} - -.select-all { - user-select: all !important; -} - -.select-auto { - user-select: auto !important; -} - -.opacity-0 { - opacity: 0 !important; -} - -.opacity-10 { - opacity: .1 !important; -} - -.opacity-20 { - opacity: .2 !important; -} - -.opacity-30 { - opacity: .3 !important; -} - -.opacity-40 { - opacity: .4 !important; -} - -.opacity-50 { - opacity: .5 !important; -} - -.opacity-60 { - opacity: .6 !important; -} - -.opacity-70 { - opacity: .7 !important; -} - -.opacity-80 { - opacity: .8 !important; -} - -.opacity-90 { - opacity: .9 !important; -} - -.opacity-100 { - opacity: 1 !important; -} - -.reset { - all: unset; -} - -.transition-none { - transition-property: none !important; -} - -.transition-all { - transition-property: all !important; -} - -.transition-colors { - transition-property: background-color,border-color,color !important; -} - -.transition-transform { - transition-property: transform !important; -} - -.transition-duration-100 { - transition-duration: 100ms !important; -} - -.transition-duration-150 { - transition-duration: 150ms !important; -} - -.transition-duration-200 { - transition-duration: 200ms !important; -} - -.transition-duration-300 { - transition-duration: 300ms !important; -} - -.transition-duration-400 { - transition-duration: 400ms !important; -} - -.transition-duration-500 { - transition-duration: 500ms !important; -} - -.transition-duration-1000 { - transition-duration: 1000ms !important; -} - -.transition-duration-2000 { - transition-duration: 2000ms !important; -} - -.transition-duration-3000 { - transition-duration: 3000ms !important; -} - -.transition-linear { - transition-timing-function: linear !important; -} - -.transition-ease-in { - transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important; -} - -.transition-ease-out { - transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important; -} - -.transition-ease-in-out { - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; -} - -.transition-delay-100 { - transition-delay: 100ms !important; -} - -.transition-delay-150 { - transition-delay: 150ms !important; -} - -.transition-delay-200 { - transition-delay: 200ms !important; -} - -.transition-delay-300 { - transition-delay: 300ms !important; -} - -.transition-delay-400 { - transition-delay: 400ms !important; -} - -.transition-delay-500 { - transition-delay: 500ms !important; -} - -.transition-delay-1000 { - transition-delay: 1000ms !important; -} - -.translate-x-0 { - transform: translateX(0%) !important; -} - -.translate-x-100 { - transform: translateX(100%) !important; -} - -.-translate-x-100 { - transform: translateX(-100%) !important; -} - -.translate-y-0 { - transform: translateY(0%) !important; -} - -.translate-y-100 { - transform: translateY(100%) !important; -} - -.-translate-y-100 { - transform: translateY(-100%) !important; -} - -@media screen and (min-width: 576px) { - .sm\\:translate-x-0 { - transform: translateX(0%) !important; - } - .sm\\:translate-x-100 { - transform: translateX(100%) !important; - } - .sm\\:-translate-x-100 { - transform: translateX(-100%) !important; - } - .sm\\:translate-y-0 { - transform: translateY(0%) !important; - } - .sm\\:translate-y-100 { - transform: translateY(100%) !important; - } - .sm\\:-translate-y-100 { - transform: translateY(-100%) !important; - } -} -@media screen and (min-width: 768px) { - .md\\:translate-x-0 { - transform: translateX(0%) !important; - } - .md\\:translate-x-100 { - transform: translateX(100%) !important; - } - .md\\:-translate-x-100 { - transform: translateX(-100%) !important; - } - .md\\:translate-y-0 { - transform: translateY(0%) !important; - } - .md\\:translate-y-100 { - transform: translateY(100%) !important; - } - .md\\:-translate-y-100 { - transform: translateY(-100%) !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:translate-x-0 { - transform: translateX(0%) !important; - } - .lg\\:translate-x-100 { - transform: translateX(100%) !important; - } - .lg\\:-translate-x-100 { - transform: translateX(-100%) !important; - } - .lg\\:translate-y-0 { - transform: translateY(0%) !important; - } - .lg\\:translate-y-100 { - transform: translateY(100%) !important; - } - .lg\\:-translate-y-100 { - transform: translateY(-100%) !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:translate-x-0 { - transform: translateX(0%) !important; - } - .xl\\:translate-x-100 { - transform: translateX(100%) !important; - } - .xl\\:-translate-x-100 { - transform: translateX(-100%) !important; - } - .xl\\:translate-y-0 { - transform: translateY(0%) !important; - } - .xl\\:translate-y-100 { - transform: translateY(100%) !important; - } - .xl\\:-translate-y-100 { - transform: translateY(-100%) !important; - } -} -.rotate-45 { - transform: rotate(45deg) !important; -} - -.-rotate-45 { - transform: rotate(-45deg) !important; -} - -.rotate-90 { - transform: rotate(90deg) !important; -} - -.-rotate-90 { - transform: rotate(-90deg) !important; -} - -.rotate-180 { - transform: rotate(180deg) !important; -} - -.-rotate-180 { - transform: rotate(-180deg) !important; -} - -@media screen and (min-width: 576px) { - .sm\\:rotate-45 { - transform: rotate(45deg) !important; - } - .sm\\:-rotate-45 { - transform: rotate(-45deg) !important; - } - .sm\\:rotate-90 { - transform: rotate(90deg) !important; - } - .sm\\:-rotate-90 { - transform: rotate(-90deg) !important; - } - .sm\\:rotate-180 { - transform: rotate(180deg) !important; - } - .sm\\:-rotate-180 { - transform: rotate(-180deg) !important; - } -} -@media screen and (min-width: 768px) { - .md\\:rotate-45 { - transform: rotate(45deg) !important; - } - .md\\:-rotate-45 { - transform: rotate(-45deg) !important; - } - .md\\:rotate-90 { - transform: rotate(90deg) !important; - } - .md\\:-rotate-90 { - transform: rotate(-90deg) !important; - } - .md\\:rotate-180 { - transform: rotate(180deg) !important; - } - .md\\:-rotate-180 { - transform: rotate(-180deg) !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:rotate-45 { - transform: rotate(45deg) !important; - } - .lg\\:-rotate-45 { - transform: rotate(-45deg) !important; - } - .lg\\:rotate-90 { - transform: rotate(90deg) !important; - } - .lg\\:-rotate-90 { - transform: rotate(-90deg) !important; - } - .lg\\:rotate-180 { - transform: rotate(180deg) !important; - } - .lg\\:-rotate-180 { - transform: rotate(-180deg) !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:rotate-45 { - transform: rotate(45deg) !important; - } - .xl\\:-rotate-45 { - transform: rotate(-45deg) !important; - } - .xl\\:rotate-90 { - transform: rotate(90deg) !important; - } - .xl\\:-rotate-90 { - transform: rotate(-90deg) !important; - } - .xl\\:rotate-180 { - transform: rotate(180deg) !important; - } - .xl\\:-rotate-180 { - transform: rotate(-180deg) !important; - } -} -.origin-center { - transform-origin: center !important; -} - -.origin-top { - transform-origin: top !important; -} - -.origin-top-right { - transform-origin: top right !important; -} - -.origin-right { - transform-origin: right !important; -} - -.origin-bottom-right { - transform-origin: bottom right !important; -} - -.origin-bottom { - transform-origin: bottom !important; -} - -.origin-bottom-left { - transform-origin: bottom left !important; -} - -.origin-left { - transform-origin: left !important; -} - -.origin-top-left { - transform-origin: top-left !important; -} - -@media screen and (min-width: 576px) { - .sm\\:origin-center { - transform-origin: center !important; - } - .sm\\:origin-top { - transform-origin: top !important; - } - .sm\\:origin-top-right { - transform-origin: top right !important; - } - .sm\\:origin-right { - transform-origin: right !important; - } - .sm\\:origin-bottom-right { - transform-origin: bottom right !important; - } - .sm\\:origin-bottom { - transform-origin: bottom !important; - } - .sm\\:origin-bottom-left { - transform-origin: bottom left !important; - } - .sm\\:origin-left { - transform-origin: left !important; - } - .sm\\:origin-top-left { - transform-origin: top-left !important; - } -} -@media screen and (min-width: 768px) { - .md\\:origin-center { - transform-origin: center !important; - } - .md\\:origin-top { - transform-origin: top !important; - } - .md\\:origin-top-right { - transform-origin: top right !important; - } - .md\\:origin-right { - transform-origin: right !important; - } - .md\\:origin-bottom-right { - transform-origin: bottom right !important; - } - .md\\:origin-bottom { - transform-origin: bottom !important; - } - .md\\:origin-bottom-left { - transform-origin: bottom left !important; - } - .md\\:origin-left { - transform-origin: left !important; - } - .md\\:origin-top-left { - transform-origin: top-left !important; - } -} -@media screen and (min-width: 992px) { - .lg\\:origin-center { - transform-origin: center !important; - } - .lg\\:origin-top { - transform-origin: top !important; - } - .lg\\:origin-top-right { - transform-origin: top right !important; - } - .lg\\:origin-right { - transform-origin: right !important; - } - .lg\\:origin-bottom-right { - transform-origin: bottom right !important; - } - .lg\\:origin-bottom { - transform-origin: bottom !important; - } - .lg\\:origin-bottom-left { - transform-origin: bottom left !important; - } - .lg\\:origin-left { - transform-origin: left !important; - } - .lg\\:origin-top-left { - transform-origin: top-left !important; - } -} -@media screen and (min-width: 1200px) { - .xl\\:origin-center { - transform-origin: center !important; - } - .xl\\:origin-top { - transform-origin: top !important; - } - .xl\\:origin-top-right { - transform-origin: top right !important; - } - .xl\\:origin-right { - transform-origin: right !important; - } - .xl\\:origin-bottom-right { - transform-origin: bottom right !important; - } - .xl\\:origin-bottom { - transform-origin: bottom !important; - } - .xl\\:origin-bottom-left { - transform-origin: bottom left !important; - } - .xl\\:origin-left { - transform-origin: left !important; - } - .xl\\:origin-top-left { - transform-origin: top-left !important; - } -} -@keyframes fadein { - 0% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -@keyframes fadeout { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} -@keyframes scalein { - 0% { - opacity: 0; - transform: scaleY(0.8); - transition: transform 0.12s cubic-bezier(0, 0, 0.2, 1), opacity 0.12s cubic-bezier(0, 0, 0.2, 1); - } - 100% { - opacity: 1; - transform: scaleY(1); - } -} -@keyframes slidedown { - 0% { - max-height: 0; - } - 100% { - max-height: auto; - } -} -@keyframes slideup { - 0% { - max-height: 1000px; - } - 100% { - max-height: 0; - } -} -@keyframes fadeinleft { - 0% { - opacity: 0; - transform: translateX(-100%); - transition: transform 0.12s cubic-bezier(0, 0, 0.2, 1), opacity 0.12s cubic-bezier(0, 0, 0.2, 1); - } - 100% { - opacity: 1; - transform: translateX(0%); - } -} -@keyframes fadeoutleft { - 0% { - opacity: 1; - transform: translateX(0%); - transition: transform 0.12s cubic-bezier(0, 0, 0.2, 1), opacity 0.12s cubic-bezier(0, 0, 0.2, 1); - } - 100% { - opacity: 0; - transform: translateX(-100%); - } -} -@keyframes fadeinright { - 0% { - opacity: 0; - transform: translateX(100%); - transition: transform 0.12s cubic-bezier(0, 0, 0.2, 1), opacity 0.12s cubic-bezier(0, 0, 0.2, 1); - } - 100% { - opacity: 1; - transform: translateX(0%); - } -} -@keyframes fadeoutright { - 0% { - opacity: 1; - transform: translateX(0%); - transition: transform 0.12s cubic-bezier(0, 0, 0.2, 1), opacity 0.12s cubic-bezier(0, 0, 0.2, 1); - } - 100% { - opacity: 0; - transform: translateX(100%); - } -} -@keyframes fadeinup { - 0% { - opacity: 0; - transform: translateY(-100%); - transition: transform 0.12s cubic-bezier(0, 0, 0.2, 1), opacity 0.12s cubic-bezier(0, 0, 0.2, 1); - } - 100% { - opacity: 1; - transform: translateY(0%); - } -} -@keyframes fadeoutup { - 0% { - opacity: 1; - transform: translateY(0%); - transition: transform 0.12s cubic-bezier(0, 0, 0.2, 1), opacity 0.12s cubic-bezier(0, 0, 0.2, 1); - } - 100% { - opacity: 0; - transform: translateY(-100%); - } -} -@keyframes fadeindown { - 0% { - opacity: 0; - transform: translateY(100%); - transition: transform 0.12s cubic-bezier(0, 0, 0.2, 1), opacity 0.12s cubic-bezier(0, 0, 0.2, 1); - } - 100% { - opacity: 1; - transform: translateY(0%); - } -} -@keyframes fadeoutdown { - 0% { - opacity: 1; - transform: translateY(0%); - transition: transform 0.12s cubic-bezier(0, 0, 0.2, 1), opacity 0.12s cubic-bezier(0, 0, 0.2, 1); - } - 100% { - opacity: 0; - transform: translateY(100%); - } -} -@keyframes animate-width { - 0% { - width: 0; - } - 100% { - width: 100%; - } -} -@keyframes flip { - from { - transform: perspective(2000px) rotateX(-100deg); - } - to { - transform: perspective(2000px) rotateX(0); - } -} -@keyframes flipleft { - from { - transform: perspective(2000px) rotateY(-100deg); - opacity: 0; - } - to { - transform: perspective(2000px) rotateY(0); - opacity: 1; - } -} -@keyframes flipright { - from { - transform: perspective(2000px) rotateY(100deg); - opacity: 0; - } - to { - transform: perspective(2000px) rotateY(0); - opacity: 1; - } -} -@keyframes flipup { - from { - transform: perspective(2000px) rotateX(-100deg); - opacity: 0; - } - to { - transform: perspective(2000px) rotateX(0); - opacity: 1; - } -} -@keyframes zoomin { - from { - opacity: 0; - transform: scale3d(0.3, 0.3, 0.3); - } - 50% { - opacity: 1; - } -} -@keyframes zoomindown { - from { - opacity: 0; - transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); - } - 60% { - opacity: 1; - transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); - } -} -@keyframes zoominleft { - from { - opacity: 0; - transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); - } - 60% { - opacity: 1; - transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); - } -} -@keyframes zoominright { - from { - opacity: 0; - transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); - } - 60% { - opacity: 1; - transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); - } -} -@keyframes zoominup { - from { - opacity: 0; - transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); - } - 60% { - opacity: 1; - transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); - } -} -.fadein { - animation: fadein 0.15s linear; -} - -.fadeout { - animation: fadeout 0.15s linear; -} - -.slidedown { - animation: slidedown 0.45s ease-in-out; -} - -.slideup { - animation: slideup 0.45s cubic-bezier(0, 1, 0, 1); -} - -.scalein { - animation: scalein 0.15s linear; -} - -.fadeinleft { - animation: fadeinleft 0.15s linear; -} - -.fadeoutleft { - animation: fadeoutleft 0.15s linear; -} - -.fadeinright { - animation: fadeinright 0.15s linear; -} - -.fadeoutright { - animation: fadeoutright 0.15s linear; -} - -.fadeinup { - animation: fadeinup 0.15s linear; -} - -.fadeoutup { - animation: fadeoutup 0.15s linear; -} - -.fadeindown { - animation: fadeindown 0.15s linear; -} - -.fadeoutdown { - animation: fadeoutdown 0.15s linear; -} - -.animate-width { - animation: animate-width 1000ms linear; -} - -.flip { - backface-visibility: visible; - animation: flip 0.15s linear; -} - -.flipup { - backface-visibility: visible; - animation: flipup 0.15s linear; -} - -.flipleft { - backface-visibility: visible; - animation: flipleft 0.15s linear; -} - -.flipright { - backface-visibility: visible; - animation: flipright 0.15s linear; -} - -.zoomin { - animation: zoomin 0.15s linear; -} - -.zoomindown { - animation: zoomindown 0.15s linear; -} - -.zoominleft { - animation: zoominleft 0.15s linear; -} - -.zoominright { - animation: zoominright 0.15s linear; -} - -.zoominup { - animation: zoominup 0.15s linear; -} - -.animation-duration-100 { - animation-duration: 100ms !important; -} - -.animation-duration-150 { - animation-duration: 150ms !important; -} - -.animation-duration-200 { - animation-duration: 200ms !important; -} - -.animation-duration-300 { - animation-duration: 300ms !important; -} - -.animation-duration-400 { - animation-duration: 400ms !important; -} - -.animation-duration-500 { - animation-duration: 500ms !important; -} - -.animation-duration-1000 { - animation-duration: 1000ms !important; -} - -.animation-duration-2000 { - animation-duration: 2000ms !important; -} - -.animation-duration-3000 { - animation-duration: 3000ms !important; -} - -.animation-delay-100 { - animation-delay: 100ms !important; -} - -.animation-delay-150 { - animation-delay: 150ms !important; -} - -.animation-delay-200 { - animation-delay: 200ms !important; -} - -.animation-delay-300 { - animation-delay: 300ms !important; -} - -.animation-delay-400 { - animation-delay: 400ms !important; -} - -.animation-delay-500 { - animation-delay: 500ms !important; -} - -.animation-delay-1000 { - animation-delay: 1000ms !important; -} - -.animation-iteration-1 { - animation-iteration-count: 1 !important; -} - -.animation-iteration-2 { - animation-iteration-count: 2 !important; -} - -.animation-iteration-infinite { - animation-iteration-count: infinite !important; -} - -.animation-linear { - animation-timing-function: linear !important; -} - -.animation-ease-in { - animation-timing-function: cubic-bezier(0.4, 0, 1, 1) !important; -} - -.animation-ease-out { - animation-timing-function: cubic-bezier(0, 0, 0.2, 1) !important; -} - -.animation-ease-in-out { - animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; -} - -.animation-fill-none { - animation-fill-mode: none !important; -} - -.animation-fill-forwards { - animation-fill-mode: forwards !important; -} - -.animation-fill-backwards { - animation-fill-mode: backwards !important; -} - -.animation-fill-both { - animation-fill-mode: both !important; -} -`, ""]); -// Exports -/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (___CSS_LOADER_EXPORT___); - - -/***/ }), - -/***/ 9221: -/***/ ((module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ A: () => (__WEBPACK_DEFAULT_EXPORT__) -/* harmony export */ }); -/* harmony import */ var _css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1601); -/* harmony import */ var _css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0__); -/* harmony import */ var _css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(6314); -/* harmony import */ var _css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__); -// Imports - - -var ___CSS_LOADER_EXPORT___ = _css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default())); -// Module -___CSS_LOADER_EXPORT___.push([module.id, `:root { - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; - --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, - Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", - "Segoe UI Symbol"; - --surface-a: #ffffff; - --surface-b: #efefef; - --surface-c: #e9ecef; - --surface-d: #dee2e6; - --surface-e: #ffffff; - --surface-f: #ffffff; - --text-color: #212529; - --text-color-secondary: #6c757d; - --primary-color: #007bff; - --primary-color-text: #ffffff; - --surface-0: #ffffff; - --surface-50: #f9fafb; - --surface-100: #f8f9fa; - --surface-200: #e9ecef; - --surface-300: #dee2e6; - --surface-400: #ced4da; - --surface-500: #adb5bd; - --surface-600: #6c757d; - --surface-700: #495057; - --surface-800: #343a40; - --surface-900: #212529; - --gray-50: #f9fafb; - --gray-100: #f8f9fa; - --gray-200: #e9ecef; - --gray-300: #dee2e6; - --gray-400: #ced4da; - --gray-500: #adb5bd; - --gray-600: #6c757d; - --gray-700: #495057; - --gray-800: #343a40; - --gray-900: #212529; - --content-padding: 1.25rem; - --inline-spacing: 0.5rem; - --border-radius: 4px; - --surface-ground: #efefef; - --surface-section: #ffffff; - --surface-card: #ffffff; - --surface-overlay: #ffffff; - --surface-border: #dee2e6; - --surface-hover: #e9ecef; - --focus-ring: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - --maskbg: rgba(0, 0, 0, 0.4); - --highlight-bg: #007bff; - --highlight-text-color: #ffffff; - color-scheme: light; -} - -:root { - --blue-50:#f3f8ff; - --blue-100:#c5dcff; - --blue-200:#97c1fe; - --blue-300:#69a5fe; - --blue-400:#3b8afd; - --blue-500:#0d6efd; - --blue-600:#0b5ed7; - --blue-700:#094db1; - --blue-800:#073d8b; - --blue-900:#052c65; - --green-50:#f4f9f6; - --green-100:#c8e2d6; - --green-200:#9ccbb5; - --green-300:#70b595; - --green-400:#459e74; - --green-500:#198754; - --green-600:#157347; - --green-700:#125f3b; - --green-800:#0e4a2e; - --green-900:#0a3622; - --yellow-50:#fffcf3; - --yellow-100:#fff0c3; - --yellow-200:#ffe494; - --yellow-300:#ffd965; - --yellow-400:#ffcd36; - --yellow-500:#ffc107; - --yellow-600:#d9a406; - --yellow-700:#b38705; - --yellow-800:#8c6a04; - --yellow-900:#664d03; - --cyan-50:#f3fcfe; - --cyan-100:#c5f2fb; - --cyan-200:#97e8f9; - --cyan-300:#69def6; - --cyan-400:#3bd4f3; - --cyan-500:#0dcaf0; - --cyan-600:#0baccc; - --cyan-700:#098da8; - --cyan-800:#076f84; - --cyan-900:#055160; - --pink-50:#fdf5f9; - --pink-100:#f5cee1; - --pink-200:#eda7ca; - --pink-300:#e681b3; - --pink-400:#de5a9b; - --pink-500:#d63384; - --pink-600:#b62b70; - --pink-700:#96245c; - --pink-800:#761c49; - --pink-900:#561435; - --indigo-50:#f7f3fe; - --indigo-100:#dac6fc; - --indigo-200:#bd98f9; - --indigo-300:#a06bf7; - --indigo-400:#833df4; - --indigo-500:#6610f2; - --indigo-600:#570ece; - --indigo-700:#470ba9; - --indigo-800:#380985; - --indigo-900:#290661; - --teal-50:#f4fcfa; - --teal-100:#c9f2e6; - --teal-200:#9fe8d2; - --teal-300:#75debf; - --teal-400:#4ad3ab; - --teal-500:#20c997; - --teal-600:#1bab80; - --teal-700:#168d6a; - --teal-800:#126f53; - --teal-900:#0d503c; - --orange-50:#fff9f3; - --orange-100:#ffe0c7; - --orange-200:#fec89a; - --orange-300:#feaf6d; - --orange-400:#fd9741; - --orange-500:#fd7e14; - --orange-600:#d76b11; - --orange-700:#b1580e; - --orange-800:#8b450b; - --orange-900:#653208; - --bluegray-50:#f8f9fb; - --bluegray-100:#e0e4ea; - --bluegray-200:#c7ced9; - --bluegray-300:#aeb9c8; - --bluegray-400:#95a3b8; - --bluegray-500:#7c8ea7; - --bluegray-600:#69798e; - --bluegray-700:#576375; - --bluegray-800:#444e5c; - --bluegray-900:#323943; - --purple-50:#f8f6fc; - --purple-100:#dcd2f0; - --purple-200:#c1aee4; - --purple-300:#a68ad9; - --purple-400:#8a66cd; - --purple-500:#6f42c1; - --purple-600:#5e38a4; - --purple-700:#4e2e87; - --purple-800:#3d246a; - --purple-900:#2c1a4d; - --red-50:#fdf5f6; - --red-100:#f7cfd2; - --red-200:#f0a8af; - --red-300:#e9828c; - --red-400:#e35b68; - --red-500:#dc3545; - --red-600:#bb2d3b; - --red-700:#9a2530; - --red-800:#791d26; - --red-900:#58151c; - --primary-50:#f2f8ff; - --primary-100:#c2dfff; - --primary-200:#91c6ff; - --primary-300:#61adff; - --primary-400:#3094ff; - --primary-500:#007bff; - --primary-600:#0069d9; - --primary-700:#0056b3; - --primary-800:#00448c; - --primary-900:#003166; -} - -.p-editor-container .p-editor-toolbar { - background: #efefef; - border-top-right-radius: 4px; - border-top-left-radius: 4px; -} -.p-editor-container .p-editor-toolbar.ql-snow { - border: 1px solid #dee2e6; -} -.p-editor-container .p-editor-toolbar.ql-snow .ql-stroke { - stroke: #6c757d; -} -.p-editor-container .p-editor-toolbar.ql-snow .ql-fill { - fill: #6c757d; -} -.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label { - border: 0 none; - color: #6c757d; -} -.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label:hover { - color: #212529; -} -.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label:hover .ql-stroke { - stroke: #212529; -} -.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label:hover .ql-fill { - fill: #212529; -} -.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label { - color: #212529; -} -.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke { - stroke: #212529; -} -.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill { - fill: #212529; -} -.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options { - background: #ffffff; - border: 1px solid rgba(0, 0, 0, 0.15); - box-shadow: none; - border-radius: 4px; - padding: 0.5rem 0; -} -.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options .ql-picker-item { - color: #212529; -} -.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options .ql-picker-item:hover { - color: #212529; - background: #e9ecef; -} -.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded:not(.ql-icon-picker) .ql-picker-item { - padding: 0.5rem 1.5rem; -} -.p-editor-container .p-editor-content { - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; -} -.p-editor-container .p-editor-content.ql-snow { - border: 1px solid #dee2e6; -} -.p-editor-container .p-editor-content .ql-editor { - background: #ffffff; - color: #495057; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; -} -.p-editor-container .ql-snow.ql-toolbar button:hover, -.p-editor-container .ql-snow.ql-toolbar button:focus { - color: #212529; -} -.p-editor-container .ql-snow.ql-toolbar button:hover .ql-stroke, -.p-editor-container .ql-snow.ql-toolbar button:focus .ql-stroke { - stroke: #212529; -} -.p-editor-container .ql-snow.ql-toolbar button:hover .ql-fill, -.p-editor-container .ql-snow.ql-toolbar button:focus .ql-fill { - fill: #212529; -} -.p-editor-container .ql-snow.ql-toolbar button.ql-active, -.p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active, -.p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected { - color: #007bff; -} -.p-editor-container .ql-snow.ql-toolbar button.ql-active .ql-stroke, -.p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke, -.p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke { - stroke: #007bff; -} -.p-editor-container .ql-snow.ql-toolbar button.ql-active .ql-fill, -.p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill, -.p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill { - fill: #007bff; -} -.p-editor-container .ql-snow.ql-toolbar button.ql-active .ql-picker-label, -.p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-picker-label, -.p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-picker-label { - color: #007bff; -} - -@layer primereact { - * { - box-sizing: border-box; - } - .p-component { - font-family: var(--font-family); - font-feature-settings: var(--font-feature-settings, normal); - font-size: 1rem; - font-weight: normal; - } - .p-component-overlay { - background-color: rgba(0, 0, 0, 0.4); - transition-duration: 0.15s; - } - .p-disabled, .p-component:disabled { - opacity: 0.65; - } - .p-error { - color: #dc3545; - } - .p-text-secondary { - color: #6c757d; - } - .pi { - font-size: 1rem; - } - .p-icon { - width: 1rem; - height: 1rem; - } - .p-link { - font-family: var(--font-family); - font-feature-settings: var(--font-feature-settings, normal); - font-size: 1rem; - border-radius: 4px; - } - .p-link:focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-component-overlay-enter { - animation: p-component-overlay-enter-animation 150ms forwards; - } - .p-component-overlay-leave { - animation: p-component-overlay-leave-animation 150ms forwards; - } - @keyframes p-component-overlay-enter-animation { - from { - background-color: transparent; - } - to { - background-color: var(--maskbg); - } - } - @keyframes p-component-overlay-leave-animation { - from { - background-color: var(--maskbg); - } - to { - background-color: transparent; - } - } - .p-autocomplete .p-autocomplete-loader { - right: 0.75rem; - } - .p-autocomplete.p-autocomplete-dd .p-autocomplete-loader { - right: 3.107rem; - } - .p-autocomplete .p-autocomplete-multiple-container { - padding: 0.25rem 0.75rem; - gap: 0.5rem; - } - .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled):hover { - border-color: #ced4da; - } - .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled).p-focus { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - border-color: #007bff; - } - .p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-input-token { - padding: 0.25rem 0; - } - .p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-input-token input { - font-family: var(--font-family); - font-feature-settings: var(--font-feature-settings, normal); - font-size: 1rem; - color: #212529; - padding: 0; - margin: 0; - } - .p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token { - padding: 0.25rem 0.75rem; - margin-right: 0.5rem; - background: #007bff; - color: #ffffff; - border-radius: 4px; - } - .p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token .p-autocomplete-token-icon { - margin-left: 0.5rem; - } - .p-autocomplete.p-invalid.p-component > .p-inputtext { - border-color: #dc3545; - } - .p-autocomplete-panel { - background: #ffffff; - color: #212529; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 4px; - box-shadow: none; - } - .p-autocomplete-panel .p-autocomplete-items { - padding: 0.5rem 0; - } - .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item { - margin: 0; - padding: 0.5rem 1.5rem; - border: 0 none; - color: #212529; - background: transparent; - transition: box-shadow 0.15s; - border-radius: 0; - } - .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item:hover { - color: #212529; - background: #e9ecef; - } - .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item.p-highlight { - color: #ffffff; - background: #007bff; - } - .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item-group { - margin: 0; - padding: 0.75rem 1rem; - color: #212529; - background: #ffffff; - font-weight: 600; - } - .p-calendar.p-invalid.p-component > .p-inputtext { - border-color: #dc3545; - } - .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - border-color: #007bff; - } - .p-datepicker { - padding: 0; - background: #ffffff; - color: #212529; - border: 1px solid #ced4da; - border-radius: 4px; - } - .p-datepicker:not(.p-datepicker-inline) { - background: #ffffff; - border: 1px solid rgba(0, 0, 0, 0.15); - box-shadow: none; - } - .p-datepicker:not(.p-datepicker-inline) .p-datepicker-header { - background: #efefef; - } - .p-datepicker .p-datepicker-header { - padding: 0.5rem; - color: #212529; - background: #ffffff; - font-weight: 600; - margin: 0; - border-bottom: 1px solid #dee2e6; - border-top-right-radius: 4px; - border-top-left-radius: 4px; - } - .p-datepicker .p-datepicker-header .p-datepicker-prev, - .p-datepicker .p-datepicker-header .p-datepicker-next { - width: 2rem; - height: 2rem; - color: #6c757d; - border: 0 none; - background: transparent; - border-radius: 50%; - transition: box-shadow 0.15s; - } - .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, - .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover { - color: #495057; - border-color: transparent; - background: transparent; - } - .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, - .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-datepicker .p-datepicker-header .p-datepicker-title { - line-height: 2rem; - } - .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, - .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { - color: #212529; - transition: box-shadow 0.15s; - font-weight: 600; - padding: 0.5rem; - } - .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, - .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover { - color: #007bff; - } - .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month { - margin-right: 0.5rem; - } - .p-datepicker table { - font-size: 1rem; - margin: 0.5rem 0; - } - .p-datepicker table th { - padding: 0.5rem; - } - .p-datepicker table th > span { - width: 2.5rem; - height: 2.5rem; - } - .p-datepicker table td { - padding: 0.5rem; - } - .p-datepicker table td > span { - width: 2.5rem; - height: 2.5rem; - border-radius: 4px; - transition: box-shadow 0.15s; - border: 1px solid transparent; - } - .p-datepicker table td > span.p-highlight { - color: #ffffff; - background: #007bff; - } - .p-datepicker table td > span:focus { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-datepicker table td.p-datepicker-today > span { - background: #ced4da; - color: #212529; - border-color: transparent; - } - .p-datepicker table td.p-datepicker-today > span.p-highlight { - color: #ffffff; - background: #007bff; - } - .p-datepicker .p-datepicker-buttonbar { - padding: 1rem 0; - border-top: 1px solid #dee2e6; - } - .p-datepicker .p-datepicker-buttonbar .p-button { - width: auto; - } - .p-datepicker .p-timepicker { - border-top: 1px solid #dee2e6; - padding: 0.5rem; - } - .p-datepicker .p-timepicker button { - width: 2rem; - height: 2rem; - color: #6c757d; - border: 0 none; - background: transparent; - border-radius: 50%; - transition: box-shadow 0.15s; - } - .p-datepicker .p-timepicker button:enabled:hover { - color: #495057; - border-color: transparent; - background: transparent; - } - .p-datepicker .p-timepicker button:focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-datepicker .p-timepicker button:last-child { - margin-top: 0.2em; - } - .p-datepicker .p-timepicker span { - font-size: 1.25rem; - } - .p-datepicker .p-timepicker > div { - padding: 0 0.5rem; - } - .p-datepicker.p-datepicker-timeonly .p-timepicker { - border-top: 0 none; - } - .p-datepicker .p-monthpicker { - margin: 0.5rem 0; - } - .p-datepicker .p-monthpicker .p-monthpicker-month { - padding: 0.5rem; - transition: box-shadow 0.15s; - border-radius: 4px; - } - .p-datepicker .p-monthpicker .p-monthpicker-month.p-highlight { - color: #ffffff; - background: #007bff; - } - .p-datepicker .p-yearpicker { - margin: 0.5rem 0; - } - .p-datepicker .p-yearpicker .p-yearpicker-year { - padding: 0.5rem; - transition: box-shadow 0.15s; - border-radius: 4px; - } - .p-datepicker .p-yearpicker .p-yearpicker-year.p-highlight { - color: #ffffff; - background: #007bff; - } - .p-datepicker.p-datepicker-multiple-month .p-datepicker-group { - border-left: 1px solid #dee2e6; - padding-right: 0; - padding-left: 0; - padding-top: 0; - padding-bottom: 0; - } - .p-datepicker.p-datepicker-multiple-month .p-datepicker-group:first-child { - padding-left: 0; - border-left: 0 none; - } - .p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child { - padding-right: 0; - } - .p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover { - background: #e9ecef; - } - .p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):focus { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):not(.p-highlight):hover { - background: #e9ecef; - } - .p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):focus { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):not(.p-highlight):hover { - background: #e9ecef; - } - .p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):focus { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - @media screen and (max-width: 769px) { - .p-datepicker table th, - .p-datepicker table td { - padding: 0; - } - } - .p-cascadeselect { - background: #ffffff; - border: 1px solid #ced4da; - transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s; - border-radius: 4px; - outline-color: transparent; - } - .p-cascadeselect:not(.p-disabled):hover { - border-color: #ced4da; - } - .p-cascadeselect:not(.p-disabled).p-focus { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - border-color: #007bff; - } - .p-cascadeselect.p-variant-filled { - background-color: #efefef; - } - .p-cascadeselect.p-variant-filled:enabled:hover { - background-color: #efefef; - } - .p-cascadeselect.p-variant-filled:enabled:focus { - background-color: #efefef; - } - .p-cascadeselect .p-cascadeselect-label { - background: transparent; - border: 0 none; - padding: 0.5rem 0.75rem; - } - .p-cascadeselect .p-cascadeselect-label.p-placeholder { - color: #6c757d; - } - .p-cascadeselect .p-cascadeselect-label:enabled:focus { - outline: 0 none; - box-shadow: none; - } - .p-cascadeselect .p-cascadeselect-trigger { - background: transparent; - color: #495057; - width: 2.357rem; - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; - } - .p-cascadeselect.p-invalid.p-component { - border-color: #dc3545; - } - .p-cascadeselect-panel { - background: #ffffff; - color: #212529; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 4px; - box-shadow: none; - } - .p-cascadeselect-panel .p-cascadeselect-items { - padding: 0.5rem 0; - } - .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item { - margin: 0; - border: 0 none; - color: #212529; - background: transparent; - transition: box-shadow 0.15s; - border-radius: 0; - } - .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item:first-child { - margin-top: 0; - } - .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item:last-child { - margin-bottom: 0; - } - .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item.p-highlight { - color: #ffffff; - background: #007bff; - } - .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item.p-highlight.p-focus { - background: #0067d6; - } - .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item:not(.p-highlight):not(.p-disabled).p-focus { - color: #212529; - background: #e9ecef; - } - .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-item-content { - padding: 0.5rem 1.5rem; - } - .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon { - font-size: 0.875rem; - } - .p-checkbox { - position: relative; - display: inline-flex; - user-select: none; - vertical-align: bottom; - } - .p-checkbox-input { - appearance: none; - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - padding: 0; - margin: 0; - opacity: 0; - z-index: 1; - outline: 0 none; - cursor: pointer; - } - .p-checkbox-box { - display: flex; - justify-content: center; - align-items: center; - } - .p-checkbox { - width: 20px; - height: 20px; - } - .p-checkbox .p-checkbox-input { - border: 2px solid #ced4da; - border-radius: 4px; - } - .p-checkbox .p-checkbox-box { - border: 2px solid #ced4da; - background: #ffffff; - width: 20px; - height: 20px; - color: #212529; - border-radius: 4px; - transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s; - outline-color: transparent; - } - .p-checkbox .p-checkbox-box .p-checkbox-icon { - transition-duration: 0.15s; - color: #ffffff; - font-size: 14px; - } - .p-checkbox .p-checkbox-box .p-checkbox-icon.p-icon { - width: 14px; - height: 14px; - } - .p-checkbox .p-checkbox-box { - border: 2px solid #ced4da; - background: #ffffff; - width: 20px; - height: 20px; - color: #212529; - border-radius: 4px; - transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s; - outline-color: transparent; - } - .p-checkbox .p-checkbox-box .p-checkbox-icon { - transition-duration: 0.15s; - color: #ffffff; - font-size: 14px; - } - .p-checkbox .p-checkbox-box .p-checkbox-icon.p-icon { - width: 14px; - height: 14px; - } - .p-checkbox.p-highlight .p-checkbox-box { - border-color: #007bff; - background: #007bff; - } - .p-checkbox:not(.p-disabled):has(.p-checkbox-input:hover) .p-checkbox-box { - border-color: #ced4da; - } - .p-checkbox:not(.p-disabled):has(.p-checkbox-input:hover).p-highlight .p-checkbox-box { - border-color: #0062cc; - background: #0062cc; - color: #ffffff; - } - .p-checkbox:not(.p-disabled):has(.p-checkbox-input:focus-visible) .p-checkbox-box { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - border-color: #007bff; - } - .p-checkbox.p-invalid > .p-checkbox-box { - border-color: #dc3545; - } - .p-checkbox.p-variant-filled .p-checkbox-box { - background-color: #efefef; - } - .p-checkbox.p-variant-filled.p-highlight .p-checkbox-box { - background: #007bff; - } - .p-checkbox.p-variant-filled:not(.p-disabled):has(.p-checkbox-input:hover) .p-checkbox-box { - background-color: #efefef; - } - .p-checkbox.p-variant-filled:not(.p-disabled):has(.p-checkbox-input:hover).p-highlight .p-checkbox-box { - background: #0062cc; - } - .p-input-filled .p-checkbox .p-checkbox-box { - background-color: #efefef; - } - .p-input-filled .p-checkbox.p-highlight .p-checkbox-box { - background: #007bff; - } - .p-input-filled .p-checkbox:not(.p-disabled):has(.p-checkbox-input:hover) .p-checkbox-box { - background-color: #efefef; - } - .p-input-filled .p-checkbox:not(.p-disabled):has(.p-checkbox-input:hover).p-highlight .p-checkbox-box { - background: #0062cc; - } - .p-highlight .p-checkbox .p-checkbox-box { - border-color: #ffffff; - } - .p-checkbox { - position: relative; - display: inline-flex; - user-select: none; - vertical-align: bottom; - } - .p-checkbox-input { - cursor: pointer; - } - .p-checkbox-box { - display: flex; - justify-content: center; - align-items: center; - } - .p-tristatecheckbox.p-variant-filled .p-checkbox-box { - background-color: #efefef; - } - .p-tristatecheckbox.p-variant-filled.p-highlight .p-checkbox-box { - background: #007bff; - } - .p-tristatecheckbox.p-variant-filled:not(.p-disabled):has(.p-checkbox-input:hover) .p-checkbox-box { - background-color: #efefef; - } - .p-tristatecheckbox.p-variant-filled:not(.p-disabled):has(.p-checkbox-input:hover).p-highlight .p-checkbox-box { - background: #0062cc; - } - .p-chips { - display: inline-flex; - } - .p-chips-multiple-container { - margin: 0; - padding: 0; - list-style-type: none; - cursor: text; - overflow: hidden; - display: flex; - align-items: center; - flex-wrap: wrap; - } - .p-chips-token { - cursor: default; - display: inline-flex; - align-items: center; - flex: 0 0 auto; - } - .p-chips-input-token { - flex: 1 1 auto; - display: inline-flex; - } - .p-chips-token-icon { - cursor: pointer; - } - .p-chips-input-token input { - border: 0 none; - outline: 0 none; - background-color: transparent; - margin: 0; - padding: 0; - box-shadow: none; - border-radius: 0; - width: 100%; - } - .p-fluid .p-chips { - display: flex; - } - .p-chips:not(.p-disabled):hover .p-chips-multiple-container { - border-color: #ced4da; - } - .p-chips:not(.p-disabled).p-focus .p-chips-multiple-container { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - border-color: #007bff; - } - .p-chips .p-chips-multiple-container { - padding: 0.25rem 0.75rem; - outline-color: transparent; - } - .p-chips .p-chips-multiple-container .p-chips-token { - padding: 0.25rem 0.75rem; - margin-right: 0.5rem; - background: #dee2e6; - color: #212529; - border-radius: 16px; - } - .p-chips .p-chips-multiple-container .p-chips-token.p-focus { - background: #ced4da; - color: #212529; - } - .p-chips .p-chips-multiple-container .p-chips-token .p-chips-token-icon { - margin-left: 0.5rem; - } - .p-chips .p-chips-multiple-container .p-chips-input-token { - padding: 0.25rem 0; - } - .p-chips .p-chips-multiple-container .p-chips-input-token input { - font-family: var(--font-family); - font-feature-settings: var(--font-feature-settings, normal); - font-size: 1rem; - color: #212529; - padding: 0; - margin: 0; - } - .p-chips.p-invalid.p-component > .p-inputtext { - border-color: #dc3545; - } - .p-colorpicker-preview { - width: 2rem; - height: 2rem; - } - .p-colorpicker-panel { - background: #212529; - border: 1px solid #212529; - } - .p-colorpicker-panel .p-colorpicker-color-handle, - .p-colorpicker-panel .p-colorpicker-hue-handle { - border-color: #ffffff; - } - .p-colorpicker-overlay-panel { - box-shadow: none; - } - .p-dropdown { - display: inline-flex; - cursor: pointer; - position: relative; - user-select: none; - } - .p-dropdown-clear-icon { - position: absolute; - top: 50%; - margin-top: -0.5rem; - } - .p-dropdown-trigger { - display: flex; - align-items: center; - justify-content: center; - flex-shrink: 0; - } - .p-dropdown-label { - display: block; - white-space: nowrap; - overflow: hidden; - flex: 1 1 auto; - width: 1%; - text-overflow: ellipsis; - cursor: pointer; - } - .p-dropdown-label-empty { - overflow: hidden; - opacity: 0; - } - input.p-dropdown-label { - cursor: default; - } - .p-dropdown .p-dropdown-panel { - min-width: 100%; - } - .p-dropdown-panel { - position: absolute; - top: 0; - left: 0; - } - .p-dropdown-items-wrapper { - overflow: auto; - } - .p-dropdown-item { - cursor: pointer; - font-weight: normal; - white-space: nowrap; - position: relative; - overflow: hidden; - display: flex; - align-items: center; - } - .p-dropdown-item-group { - cursor: auto; - } - .p-dropdown-items { - margin: 0; - padding: 0; - list-style-type: none; - } - .p-dropdown-filter { - width: 100%; - } - .p-dropdown-filter-container { - position: relative; - } - .p-dropdown-filter-icon { - position: absolute; - top: 50%; - margin-top: -0.5rem; - } - .p-fluid .p-dropdown { - display: flex; - } - .p-fluid .p-dropdown .p-dropdown-label { - width: 1%; - } - .p-dropdown { - background: #ffffff; - border: 1px solid #ced4da; - transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s; - border-radius: 4px; - outline-color: transparent; - } - .p-dropdown:not(.p-disabled):hover { - border-color: #ced4da; - } - .p-dropdown:not(.p-disabled).p-focus { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - border-color: #007bff; - } - .p-dropdown.p-variant-filled { - background: #efefef; - } - .p-dropdown.p-variant-filled:not(.p-disabled):hover { - background-color: #efefef; - } - .p-dropdown.p-variant-filled:not(.p-disabled).p-focus { - background-color: #efefef; - } - .p-dropdown.p-variant-filled:not(.p-disabled).p-focus .p-inputtext { - background-color: transparent; - } - .p-dropdown.p-dropdown-clearable .p-dropdown-label { - padding-right: 1.75rem; - } - .p-dropdown .p-dropdown-label { - background: transparent; - border: 0 none; - } - .p-dropdown .p-dropdown-label.p-placeholder { - color: #6c757d; - } - .p-dropdown .p-dropdown-label:focus, .p-dropdown .p-dropdown-label:enabled:focus { - outline: 0 none; - box-shadow: none; - } - .p-dropdown .p-dropdown-trigger { - background: transparent; - color: #495057; - width: 2.357rem; - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; - } - .p-dropdown .p-dropdown-clear-icon { - color: #495057; - right: 2.357rem; - } - .p-dropdown.p-invalid.p-component { - border-color: #dc3545; - } - .p-dropdown-panel { - background: #ffffff; - color: #212529; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 4px; - box-shadow: none; - } - .p-dropdown-panel .p-dropdown-header { - padding: 0.75rem 1.5rem; - border-bottom: 1px solid #dee2e6; - color: #212529; - background: #efefef; - margin: 0; - border-top-right-radius: 4px; - border-top-left-radius: 4px; - } - .p-dropdown-panel .p-dropdown-header .p-dropdown-filter { - padding-right: 1.75rem; - margin-right: -1.75rem; - } - .p-dropdown-panel .p-dropdown-header .p-dropdown-filter-icon { - right: 0.75rem; - color: #495057; - } - .p-dropdown-panel .p-dropdown-items { - padding: 0.5rem 0; - } - .p-dropdown-panel .p-dropdown-items .p-dropdown-item { - margin: 0; - padding: 0.5rem 1.5rem; - border: 0 none; - color: #212529; - background: transparent; - transition: box-shadow 0.15s; - border-radius: 0; - } - .p-dropdown-panel .p-dropdown-items .p-dropdown-item:first-child { - margin-top: 0; - } - .p-dropdown-panel .p-dropdown-items .p-dropdown-item:last-child { - margin-bottom: 0; - } - .p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight { - color: #ffffff; - background: #007bff; - } - .p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight.p-focus { - background: #0067d6; - } - .p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled).p-focus { - color: #212529; - background: #e9ecef; - } - .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-check-icon { - position: relative; - margin-left: -0.5rem; - margin-right: 0.5rem; - } - .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { - margin: 0; - padding: 0.75rem 1rem; - color: #212529; - background: #ffffff; - font-weight: 600; - } - .p-dropdown-panel .p-dropdown-items .p-dropdown-empty-message { - padding: 0.5rem 1.5rem; - color: #212529; - background: transparent; - } - .p-inputgroup-addon { - background: #e9ecef; - color: #495057; - border-top: 1px solid #ced4da; - border-left: 1px solid #ced4da; - border-bottom: 1px solid #ced4da; - padding: 0.5rem 0.75rem; - min-width: 2.357rem; - } - .p-inputgroup-addon:last-child { - border-right: 1px solid #ced4da; - } - .p-inputgroup > .p-component, - .p-inputgroup > .p-inputwrapper > .p-inputtext, - .p-inputgroup > .p-float-label > .p-component { - border-radius: 0; - margin: 0; - } - .p-inputgroup > .p-component + .p-inputgroup-addon, - .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, - .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon { - border-left: 0 none; - } - .p-inputgroup > .p-component:focus, - .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, - .p-inputgroup > .p-float-label > .p-component:focus { - z-index: 1; - } - .p-inputgroup > .p-component:focus ~ label, - .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, - .p-inputgroup > .p-float-label > .p-component:focus ~ label { - z-index: 1; - } - .p-inputgroup-addon:first-child, - .p-inputgroup button:first-child, - .p-inputgroup input:first-child, - .p-inputgroup > .p-inputwrapper:first-child, - .p-inputgroup > .p-inputwrapper:first-child > .p-inputtext { - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; - } - .p-inputgroup .p-float-label:first-child input { - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; - } - .p-inputgroup-addon:last-child, - .p-inputgroup button:last-child, - .p-inputgroup input:last-child, - .p-inputgroup > .p-inputwrapper:last-child, - .p-inputgroup > .p-inputwrapper:last-child > .p-inputtext { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; - } - .p-inputgroup .p-float-label:last-child input { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; - } - .p-fluid .p-inputgroup .p-button { - width: auto; - } - .p-fluid .p-inputgroup .p-button.p-button-icon-only { - width: 2.357rem; - } - .p-inputnumber.p-invalid.p-component > .p-inputtext { - border-color: #dc3545; - } - .p-inputswitch { - position: relative; - display: inline-block; - } - .p-inputswitch-input { - appearance: none; - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - padding: 0; - margin: 0; - opacity: 0; - z-index: 1; - outline: 0 none; - cursor: pointer; - } - .p-inputswitch-slider { - position: absolute; - cursor: pointer; - top: 0; - left: 0; - right: 0; - bottom: 0; - border: 1px solid transparent; - } - .p-inputswitch-slider:before { - position: absolute; - content: ""; - top: 50%; - } - .p-inputswitch { - width: 3rem; - height: 1.75rem; - } - .p-inputswitch .p-inputswitch-input { - border-radius: 4px; - } - .p-inputswitch .p-inputswitch-slider { - background: #ced4da; - transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s; - border-radius: 4px; - outline-color: transparent; - } - .p-inputswitch .p-inputswitch-slider:before { - background: #ffffff; - width: 1.25rem; - height: 1.25rem; - left: 0.25rem; - margin-top: -0.625rem; - border-radius: 4px; - transition-duration: 0.15s; - } - .p-inputswitch.p-highlight .p-inputswitch-slider { - background: #007bff; - } - .p-inputswitch.p-highlight .p-inputswitch-slider:before { - background: #ffffff; - transform: translateX(1.25rem); - } - .p-inputswitch:not(.p-disabled):has(.p-inputswitch-input:hover) .p-inputswitch-slider { - background: #ced4da; - } - .p-inputswitch:not(.p-disabled):has(.p-inputswitch-input:hover).p-highlight .p-inputswitch-slider { - background: #007bff; - } - .p-inputswitch:not(.p-disabled):has(.p-inputswitch-input:focus-visible) .p-inputswitch-slider { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-inputswitch.p-invalid > .p-inputswitch-slider { - border-color: #dc3545; - } - .p-inputtext { - font-family: var(--font-family); - font-feature-settings: var(--font-feature-settings, normal); - font-size: 1rem; - color: #495057; - background: #ffffff; - padding: 0.5rem 0.75rem; - border: 1px solid #ced4da; - transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s; - appearance: none; - border-radius: 4px; - outline-color: transparent; - } - .p-inputtext:enabled:hover { - border-color: #ced4da; - } - .p-inputtext:enabled:focus { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - border-color: #007bff; - } - .p-inputtext.p-invalid.p-component { - border-color: #dc3545; - } - .p-inputtext.p-variant-filled { - background-color: #efefef; - } - .p-inputtext.p-variant-filled:enabled:hover { - background-color: #efefef; - } - .p-inputtext.p-variant-filled:enabled:focus { - background-color: #efefef; - } - .p-inputtext.p-inputtext-sm { - font-size: 0.875rem; - padding: 0.4375rem 0.65625rem; - } - .p-inputtext.p-inputtext-lg { - font-size: 1.25rem; - padding: 0.625rem 0.9375rem; - } - .p-float-label > label { - left: 0.75rem; - color: #6c757d; - transition-duration: 0.15s; - } - .p-float-label > .p-invalid + label { - color: #dc3545; - } - .p-icon-field-left > .p-inputtext { - padding-left: 2.5rem; - } - .p-icon-field-left.p-float-label > label { - left: 2.5rem; - } - .p-icon-field-right > .p-inputtext { - padding-right: 2.5rem; - } - ::-webkit-input-placeholder { - color: #6c757d; - } - :-moz-placeholder { - color: #6c757d; - } - ::-moz-placeholder { - color: #6c757d; - } - :-ms-input-placeholder { - color: #6c757d; - } - .p-input-filled .p-inputtext { - background-color: #efefef; - } - .p-input-filled .p-inputtext:enabled:hover { - background-color: #efefef; - } - .p-input-filled .p-inputtext:enabled:focus { - background-color: #efefef; - } - .p-inputtext-sm .p-inputtext { - font-size: 0.875rem; - padding: 0.4375rem 0.65625rem; - } - .p-inputtext-lg .p-inputtext { - font-size: 1.25rem; - padding: 0.625rem 0.9375rem; - } - .p-icon-field { - position: relative; - } - .p-icon-field > .p-input-icon { - position: absolute; - top: 50%; - margin-top: -0.5rem; - } - .p-fluid .p-icon-field-left, - .p-fluid .p-icon-field-right { - width: 100%; - } - .p-icon-field-left > .p-input-icon:first-of-type { - left: 0.75rem; - color: #495057; - } - .p-icon-field-right > .p-input-icon:last-of-type { - right: 0.75rem; - color: #495057; - } - .p-inputotp { - display: flex; - align-items: center; - gap: 0.5rem; - } - .p-inputotp-input { - text-align: center; - width: 2.5rem; - } - .p-listbox-list-wrapper { - overflow: auto; - } - .p-listbox-list { - list-style-type: none; - margin: 0; - padding: 0; - } - .p-listbox-item { - cursor: pointer; - position: relative; - overflow: hidden; - } - .p-listbox-item-group { - cursor: auto; - } - .p-listbox-filter-container { - position: relative; - } - .p-listbox-filter-icon { - position: absolute; - top: 50%; - margin-top: -0.5rem; - } - .p-listbox-filter { - width: 100%; - } - .p-listbox { - background: #ffffff; - color: #212529; - border: 1px solid #ced4da; - border-radius: 4px; - transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s; - outline-color: transparent; - } - .p-listbox .p-listbox-header { - padding: 0.75rem 1.5rem; - border-bottom: 1px solid #dee2e6; - color: #212529; - background: #efefef; - margin: 0; - border-top-right-radius: 4px; - border-top-left-radius: 4px; - } - .p-listbox .p-listbox-header .p-listbox-filter { - padding-right: 1.75rem; - } - .p-listbox .p-listbox-header .p-listbox-filter-icon { - right: 0.75rem; - color: #495057; - } - .p-listbox .p-listbox-list { - padding: 0.5rem 0; - outline: 0 none; - } - .p-listbox .p-listbox-list .p-listbox-item { - margin: 0; - padding: 0.5rem 1.5rem; - border: 0 none; - color: #212529; - transition: box-shadow 0.15s; - border-radius: 0; - } - .p-listbox .p-listbox-list .p-listbox-item:first-child { - margin-top: 0; - } - .p-listbox .p-listbox-list .p-listbox-item:last-child { - margin-bottom: 0; - } - .p-listbox .p-listbox-list .p-listbox-item.p-highlight { - color: #ffffff; - background: #007bff; - } - .p-listbox .p-listbox-list .p-listbox-item-group { - margin: 0; - padding: 0.75rem 1rem; - color: #212529; - background: #ffffff; - font-weight: 600; - } - .p-listbox .p-listbox-list .p-listbox-empty-message { - padding: 0.5rem 1.5rem; - color: #212529; - background: transparent; - } - .p-listbox:not(.p-disabled) .p-listbox-item.p-highlight.p-focus { - background: #0067d6; - } - .p-listbox:not(.p-disabled) .p-listbox-item:not(.p-highlight):not(.p-disabled).p-focus { - color: #212529; - background: #e9ecef; - } - .p-listbox:not(.p-disabled) .p-listbox-item:not(.p-highlight):not(.p-disabled):hover { - color: #212529; - background: #e9ecef; - } - .p-listbox:not(.p-disabled) .p-listbox-item:not(.p-highlight):not(.p-disabled):hover.p-focus { - color: #212529; - background: #e9ecef; - } - .p-listbox.p-focus { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - border-color: #007bff; - } - .p-listbox.p-invalid { - border-color: #dc3545; - } - .p-mention-panel { - background: #ffffff; - color: #212529; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 4px; - box-shadow: none; - } - .p-mention-panel .p-mention-items { - padding: 0.5rem 0; - } - .p-mention-panel .p-mention-items .p-mention-item { - margin: 0; - padding: 0.5rem 1.5rem; - border: 0 none; - color: #212529; - background: transparent; - transition: box-shadow 0.15s; - border-radius: 0; - } - .p-mention-panel .p-mention-items .p-mention-item:hover { - color: #212529; - background: #e9ecef; - } - .p-mention-panel .p-mention-items .p-mention-item.p-highlight { - color: #ffffff; - background: #007bff; - } - .p-multiselect { - display: inline-flex; - cursor: pointer; - user-select: none; - } - .p-multiselect-trigger { - display: flex; - align-items: center; - justify-content: center; - flex-shrink: 0; - } - .p-multiselect-label-container { - overflow: hidden; - flex: 1 1 auto; - cursor: pointer; - } - .p-multiselect-label { - display: block; - white-space: nowrap; - cursor: pointer; - overflow: hidden; - text-overflow: ellipsis; - } - .p-multiselect-label-empty { - overflow: hidden; - visibility: hidden; - } - .p-multiselect-token { - cursor: default; - display: inline-flex; - align-items: center; - flex: 0 0 auto; - } - .p-multiselect-token-icon { - cursor: pointer; - } - .p-multiselect .p-multiselect-panel { - min-width: 100%; - } - .p-multiselect-items-wrapper { - overflow: auto; - } - .p-multiselect-items { - margin: 0; - padding: 0; - list-style-type: none; - } - .p-multiselect-item { - cursor: pointer; - display: flex; - align-items: center; - font-weight: normal; - white-space: nowrap; - position: relative; - overflow: hidden; - } - .p-multiselect-item-group { - cursor: auto; - } - .p-multiselect-header { - display: flex; - align-items: center; - justify-content: space-between; - } - .p-multiselect-filter-container { - position: relative; - flex: 1 1 auto; - } - .p-multiselect-filter-icon { - position: absolute; - top: 50%; - margin-top: -0.5rem; - } - .p-multiselect-filter-container .p-inputtext { - width: 100%; - } - .p-multiselect-close { - display: flex; - align-items: center; - justify-content: center; - flex-shrink: 0; - overflow: hidden; - position: relative; - margin-left: auto; - } - .p-fluid .p-multiselect { - display: flex; - } - .p-multiselect { - background: #ffffff; - border: 1px solid #ced4da; - transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s; - border-radius: 4px; - outline-color: transparent; - } - .p-multiselect:not(.p-disabled):hover { - border-color: #ced4da; - } - .p-multiselect:not(.p-disabled).p-focus { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - border-color: #007bff; - } - .p-multiselect.p-variant-filled { - background: #efefef; - } - .p-multiselect.p-variant-filled:not(.p-disabled):hover { - background-color: #efefef; - } - .p-multiselect.p-variant-filled:not(.p-disabled).p-focus { - background-color: #efefef; - } - .p-multiselect .p-multiselect-label { - padding: 0.5rem 0.75rem; - transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s; - } - .p-multiselect .p-multiselect-label.p-placeholder { - color: #6c757d; - } - .p-multiselect.p-multiselect-chip .p-multiselect-token { - padding: 0.25rem 0.75rem; - margin-right: 0.5rem; - background: #dee2e6; - color: #212529; - border-radius: 16px; - } - .p-multiselect.p-multiselect-chip .p-multiselect-token .p-multiselect-token-icon { - margin-left: 0.5rem; - } - .p-multiselect .p-multiselect-trigger { - background: transparent; - color: #495057; - width: 2.357rem; - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; - } - .p-multiselect.p-invalid.p-component { - border-color: #dc3545; - } - .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label { - padding: 0.25rem 0.75rem; - } - .p-multiselect-panel { - background: #ffffff; - color: #212529; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 4px; - box-shadow: none; - } - .p-multiselect-panel .p-multiselect-header { - padding: 0.75rem 1.5rem; - border-bottom: 1px solid #dee2e6; - color: #212529; - background: #efefef; - margin: 0; - border-top-right-radius: 4px; - border-top-left-radius: 4px; - } - .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext { - padding-right: 1.75rem; - } - .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-multiselect-filter-icon { - right: 0.75rem; - color: #495057; - } - .p-multiselect-panel .p-multiselect-header .p-checkbox { - margin-right: 0.5rem; - } - .p-multiselect-panel .p-multiselect-header .p-multiselect-close { - margin-left: 0.5rem; - width: 2rem; - height: 2rem; - color: #6c757d; - border: 0 none; - background: transparent; - border-radius: 50%; - transition: box-shadow 0.15s; - } - .p-multiselect-panel .p-multiselect-header .p-multiselect-close:enabled:hover { - color: #495057; - border-color: transparent; - background: transparent; - } - .p-multiselect-panel .p-multiselect-header .p-multiselect-close:focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-multiselect-panel .p-multiselect-items { - padding: 0.5rem 0; - } - .p-multiselect-panel .p-multiselect-items .p-multiselect-item { - margin: 0; - padding: 0.5rem 1.5rem; - border: 0 none; - color: #212529; - background: transparent; - transition: box-shadow 0.15s; - border-radius: 0; - } - .p-multiselect-panel .p-multiselect-items .p-multiselect-item:first-child { - margin-top: 0; - } - .p-multiselect-panel .p-multiselect-items .p-multiselect-item:last-child { - margin-bottom: 0; - } - .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight { - color: #ffffff; - background: #007bff; - } - .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight.p-focus { - background: #0067d6; - } - .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled).p-focus { - color: #212529; - background: #e9ecef; - } - .p-multiselect-panel .p-multiselect-items .p-multiselect-item .p-checkbox { - margin-right: 0.5rem; - } - .p-multiselect-panel .p-multiselect-items .p-multiselect-item-group { - margin: 0; - padding: 0.75rem 1rem; - color: #212529; - background: #ffffff; - font-weight: 600; - } - .p-multiselect-panel .p-multiselect-items .p-multiselect-empty-message { - padding: 0.5rem 1.5rem; - color: #212529; - background: transparent; - } - .p-password.p-invalid.p-component > .p-inputtext { - border-color: #dc3545; - } - .p-password-panel { - padding: 1.25rem; - background: #ffffff; - color: #212529; - border: 1px solid rgba(0, 0, 0, 0.2); - box-shadow: none; - border-radius: 4px; - } - .p-password-panel .p-password-meter { - margin-bottom: 0.5rem; - background: #e9ecef; - } - .p-password-panel .p-password-meter .p-password-strength.weak { - background: #dc3545; - } - .p-password-panel .p-password-meter .p-password-strength.medium { - background: #ffc107; - } - .p-password-panel .p-password-meter .p-password-strength.strong { - background: #28a745; - } - .p-radiobutton { - position: relative; - display: inline-flex; - user-select: none; - vertical-align: bottom; - } - .p-radiobutton-input { - cursor: pointer; - } - .p-radiobutton-box { - display: flex; - justify-content: center; - align-items: center; - } - .p-radiobutton-icon { - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - transform: translateZ(0) scale(0.1); - border-radius: 50%; - visibility: hidden; - } - .p-radiobutton.p-highlight .p-radiobutton-icon { - transform: translateZ(0) scale(1, 1); - visibility: visible; - } - .p-radiobutton { - width: 20px; - height: 20px; - } - .p-radiobutton .p-radiobutton-input { - appearance: none; - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - padding: 0; - margin: 0; - opacity: 0; - z-index: 1; - outline: 0 none; - border: 2px solid #ced4da; - border-radius: 50%; - } - .p-radiobutton .p-radiobutton-box { - border: 2px solid #ced4da; - background: #ffffff; - width: 20px; - height: 20px; - color: #212529; - border-radius: 50%; - transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s; - outline-color: transparent; - } - .p-radiobutton .p-radiobutton-box .p-radiobutton-icon { - width: 12px; - height: 12px; - transition-duration: 0.15s; - background-color: #ffffff; - } - .p-radiobutton.p-highlight .p-radiobutton-box { - border-color: #007bff; - background: #007bff; - } - .p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:hover) .p-radiobutton-box { - border-color: #ced4da; - } - .p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:hover).p-highlight .p-radiobutton-box { - border-color: #0062cc; - background: #0062cc; - } - .p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:hover).p-highlight .p-radiobutton-box .p-radiobutton-icon { - background-color: #ffffff; - } - .p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:focus-visible) .p-radiobutton-box { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - border-color: #007bff; - } - .p-radiobutton.p-invalid > .p-radiobutton-box { - border-color: #dc3545; - } - .p-radiobutton.p-variant-filled .p-radiobutton-box { - background-color: #efefef; - } - .p-radiobutton.p-variant-filled.p-highlight .p-radiobutton-box { - background: #007bff; - } - .p-radiobutton.p-variant-filled:not(.p-disabled):has(.p-radiobutton-input:hover) .p-radiobutton-box { - background-color: #efefef; - } - .p-radiobutton.p-variant-filled:not(.p-disabled):has(.p-radiobutton-input:hover).p-highlight .p-radiobutton-box { - background: #0062cc; - } - .p-input-filled .p-radiobutton .p-radiobutton-box { - background-color: #efefef; - } - .p-input-filled .p-radiobutton.p-highlight .p-radiobutton-box { - background: #007bff; - } - .p-input-filled .p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:hover) .p-radiobutton-box { - background-color: #efefef; - } - .p-input-filled .p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:hover).p-highlight .p-radiobutton-box { - background: #0062cc; - } - .p-highlight .p-radiobutton .p-radiobutton-box { - border-color: #ffffff; - } - .p-rating { - position: relative; - display: flex; - align-items: center; - } - .p-rating-item { - display: inline-flex; - align-items: center; - cursor: pointer; - } - .p-rating.p-readonly .p-rating-item { - cursor: default; - } - .p-rating { - gap: 0.5rem; - } - .p-rating .p-rating-item { - outline-color: transparent; - border-radius: 50%; - } - .p-rating .p-rating-item .p-rating-icon { - color: #495057; - transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s; - font-size: 1.143rem; - } - .p-rating .p-rating-item .p-rating-icon.p-icon { - width: 1.143rem; - height: 1.143rem; - } - .p-rating .p-rating-item .p-rating-icon.p-rating-cancel { - color: #dc3545; - } - .p-rating .p-rating-item.p-focus { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-rating .p-rating-item.p-rating-item-active .p-rating-icon { - color: #007bff; - } - .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon { - color: #007bff; - } - .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel { - color: #dc3545; - } - .p-highlight .p-rating .p-rating-item.p-rating-item-active .p-rating-icon { - color: #ffffff; - } - .p-selectbutton .p-button { - background: #6c757d; - border: 1px solid #6c757d; - color: #ffffff; - transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s; - } - .p-selectbutton .p-button .p-button-icon-left, - .p-selectbutton .p-button .p-button-icon-right { - color: #ffffff; - } - .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { - background: #5a6268; - border-color: #545b62; - color: #ffffff; - } - .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, - .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right { - color: #ffffff; - } - .p-selectbutton .p-button.p-highlight { - background: #545b62; - border-color: #4e555b; - color: #ffffff; - } - .p-selectbutton .p-button.p-highlight .p-button-icon-left, - .p-selectbutton .p-button.p-highlight .p-button-icon-right { - color: #ffffff; - } - .p-selectbutton .p-button.p-highlight:hover { - background: #545b62; - border-color: #4e555b; - color: #ffffff; - } - .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, - .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right { - color: #ffffff; - } - .p-selectbutton.p-invalid > .p-button { - border-color: #dc3545; - } - .p-slider { - background: #e9ecef; - border: 0 none; - border-radius: 4px; - } - .p-slider.p-slider-horizontal { - height: 0.286rem; - } - .p-slider.p-slider-horizontal .p-slider-handle { - margin-top: -0.5715rem; - margin-left: -0.5715rem; - } - .p-slider.p-slider-vertical { - width: 0.286rem; - } - .p-slider.p-slider-vertical .p-slider-handle { - margin-left: -0.5715rem; - margin-bottom: -0.5715rem; - } - .p-slider .p-slider-handle { - height: 1.143rem; - width: 1.143rem; - background: #007bff; - border: 2px solid #007bff; - border-radius: 4px; - transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s; - } - .p-slider .p-slider-handle:focus { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-slider .p-slider-range { - background: #007bff; - } - .p-slider:not(.p-disabled) .p-slider-handle:hover { - background: #0069d9; - border-color: #0069d9; - } - .p-treeselect { - background: #ffffff; - border: 1px solid #ced4da; - transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s; - border-radius: 4px; - } - .p-treeselect:not(.p-disabled):hover { - border-color: #ced4da; - } - .p-treeselect:not(.p-disabled).p-focus { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - border-color: #007bff; - } - .p-treeselect.p-treeselect-clearable .p-treeselect-label { - padding-right: 1.75rem; - } - .p-treeselect.p-variant-filled { - background: #efefef; - } - .p-treeselect.p-variant-filled:not(.p-disabled):hover { - background-color: #efefef; - } - .p-treeselect.p-variant-filled:not(.p-disabled).p-focus { - background-color: #efefef; - } - .p-treeselect .p-treeselect-label { - padding: 0.5rem 0.75rem; - transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s; - } - .p-treeselect .p-treeselect-label.p-placeholder { - color: #6c757d; - } - .p-treeselect.p-treeselect-chip .p-treeselect-token { - padding: 0.25rem 0.75rem; - margin-right: 0.5rem; - background: #dee2e6; - color: #212529; - border-radius: 16px; - } - .p-treeselect .p-treeselect-trigger { - background: transparent; - color: #495057; - width: 2.357rem; - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; - } - .p-treeselect .p-treeselect-clear-icon { - color: #495057; - right: 2.357rem; - } - .p-treeselect.p-invalid.p-component { - border-color: #dc3545; - } - .p-inputwrapper-filled.p-treeselect.p-treeselect-chip .p-treeselect-label { - padding: 0.25rem 0.75rem; - } - .p-treeselect-panel { - background: #ffffff; - color: #212529; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 4px; - box-shadow: none; - } - .p-treeselect-panel .p-treeselect-header { - padding: 0.75rem 1.5rem; - border-bottom: 1px solid #dee2e6; - color: #212529; - background: #efefef; - margin: 0; - border-top-right-radius: 4px; - border-top-left-radius: 4px; - } - .p-treeselect-panel .p-treeselect-header .p-treeselect-filter-container { - margin-right: 0.5rem; - } - .p-treeselect-panel .p-treeselect-header .p-treeselect-filter-container .p-treeselect-filter { - padding-right: 1.75rem; - } - .p-treeselect-panel .p-treeselect-header .p-treeselect-filter-container .p-treeselect-filter-icon { - right: 0.75rem; - color: #495057; - } - .p-treeselect-panel .p-treeselect-header .p-treeselect-filter-container.p-treeselect-clearable-filter .p-treeselect-filter { - padding-right: 3.5rem; - } - .p-treeselect-panel .p-treeselect-header .p-treeselect-filter-container.p-treeselect-clearable-filter .p-treeselect-filter-clear-icon { - right: 2.5rem; - } - .p-treeselect-panel .p-treeselect-header .p-treeselect-close { - width: 2rem; - height: 2rem; - color: #6c757d; - border: 0 none; - background: transparent; - border-radius: 50%; - transition: box-shadow 0.15s; - } - .p-treeselect-panel .p-treeselect-header .p-treeselect-close:enabled:hover { - color: #495057; - border-color: transparent; - background: transparent; - } - .p-treeselect-panel .p-treeselect-header .p-treeselect-close:focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-treeselect-panel .p-treeselect-items-wrapper .p-tree { - border: 0 none; - } - .p-treeselect-panel .p-treeselect-items-wrapper .p-treeselect-empty-message { - padding: 0.5rem 1.5rem; - color: #212529; - background: transparent; - } - .p-input-filled .p-treeselect { - background: #efefef; - } - .p-input-filled .p-treeselect:not(.p-disabled):hover { - background-color: #efefef; - } - .p-input-filled .p-treeselect:not(.p-disabled).p-focus { - background-color: #efefef; - } - .p-togglebutton { - position: relative; - display: inline-flex; - user-select: none; - vertical-align: bottom; - } - .p-togglebutton-input { - cursor: pointer; - } - .p-togglebutton .p-button { - flex: 1 1 auto; - } - .p-togglebutton .p-togglebutton-input { - appearance: none; - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - padding: 0; - margin: 0; - opacity: 0; - z-index: 1; - outline: 0 none; - border: 1px solid #6c757d; - border-radius: 4px; - } - .p-togglebutton .p-button { - background: #6c757d; - border: 1px solid #6c757d; - color: #ffffff; - transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s; - outline-color: transparent; - } - .p-togglebutton .p-button .p-button-icon-left, - .p-togglebutton .p-button .p-button-icon-right { - color: #ffffff; - } - .p-togglebutton.p-highlight .p-button { - background: #545b62; - border-color: #4e555b; - color: #ffffff; - } - .p-togglebutton.p-highlight .p-button .p-button-icon-left, - .p-togglebutton.p-highlight .p-button .p-button-icon-right { - color: #ffffff; - } - .p-togglebutton:not(.p-disabled):has(.p-togglebutton-input:hover):not(.p-highlight) .p-button { - background: #5a6268; - border-color: #545b62; - color: #ffffff; - } - .p-togglebutton:not(.p-disabled):has(.p-togglebutton-input:hover):not(.p-highlight) .p-button .p-button-icon-left, - .p-togglebutton:not(.p-disabled):has(.p-togglebutton-input:hover):not(.p-highlight) .p-button .p-button-icon-right { - color: #ffffff; - } - .p-togglebutton:not(.p-disabled):has(.p-togglebutton-input:hover).p-highlight .p-button { - background: #545b62; - border-color: #4e555b; - color: #ffffff; - } - .p-togglebutton:not(.p-disabled):has(.p-togglebutton-input:hover).p-highlight .p-button .p-button-icon-left, - .p-togglebutton:not(.p-disabled):has(.p-togglebutton-input:hover).p-highlight .p-button .p-button-icon-right { - color: #ffffff; - } - .p-togglebutton:not(.p-disabled):has(.p-togglebutton-input:focus-visible) .p-button { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - border-color: #007bff; - } - .p-togglebutton.p-invalid > .p-button { - border-color: #dc3545; - } - .p-button { - color: #ffffff; - background: #007bff; - border: 1px solid #007bff; - padding: 0.5rem 0.75rem; - font-size: 1rem; - transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s; - border-radius: 4px; - } - .p-button:not(:disabled):hover { - background: #0069d9; - color: #ffffff; - border-color: #0069d9; - } - .p-button:not(:disabled):active { - background: #0062cc; - color: #ffffff; - border-color: #0062cc; - } - .p-button.p-button-outlined { - background-color: transparent; - color: #007bff; - border: 1px solid; - } - .p-button.p-button-outlined:not(:disabled):hover { - background: rgba(0, 123, 255, 0.04); - color: #007bff; - border: 1px solid; - } - .p-button.p-button-outlined:not(:disabled):active { - background: rgba(0, 123, 255, 0.16); - color: #007bff; - border: 1px solid; - } - .p-button.p-button-outlined.p-button-plain { - color: #6c757d; - border-color: #6c757d; - } - .p-button.p-button-outlined.p-button-plain:not(:disabled):hover { - background: #e9ecef; - color: #6c757d; - } - .p-button.p-button-outlined.p-button-plain:not(:disabled):active { - background: #dee2e6; - color: #6c757d; - } - .p-button.p-button-text { - background-color: transparent; - color: #007bff; - border-color: transparent; - } - .p-button.p-button-text:not(:disabled):hover { - background: rgba(0, 123, 255, 0.04); - color: #007bff; - border-color: transparent; - } - .p-button.p-button-text:not(:disabled):active { - background: rgba(0, 123, 255, 0.16); - color: #007bff; - border-color: transparent; - } - .p-button.p-button-text.p-button-plain { - color: #6c757d; - } - .p-button.p-button-text.p-button-plain:not(:disabled):hover { - background: #e9ecef; - color: #6c757d; - } - .p-button.p-button-text.p-button-plain:not(:disabled):active { - background: #dee2e6; - color: #6c757d; - } - .p-button:focus { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-button .p-button-label { - transition-duration: 0.15s; - } - .p-button .p-button-icon-left { - margin-right: 0.5rem; - } - .p-button .p-button-icon-right { - margin-left: 0.5rem; - } - .p-button .p-button-icon-bottom { - margin-top: 0.5rem; - } - .p-button .p-button-icon-top { - margin-bottom: 0.5rem; - } - .p-button .p-badge { - margin-left: 0.5rem; - min-width: 1rem; - height: 1rem; - line-height: 1rem; - color: #007bff; - background-color: #ffffff; - } - .p-button.p-button-raised { - box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); - } - .p-button.p-button-rounded { - border-radius: 2rem; - } - .p-button.p-button-icon-only { - width: 2.357rem; - padding: 0.5rem 0; - } - .p-button.p-button-icon-only .p-button-icon-left, - .p-button.p-button-icon-only .p-button-icon-right { - margin: 0; - } - .p-button.p-button-icon-only.p-button-rounded { - border-radius: 50%; - height: 2.357rem; - } - .p-button.p-button-sm { - font-size: 0.875rem; - padding: 0.4375rem 0.65625rem; - } - .p-button.p-button-sm .p-button-icon { - font-size: 0.875rem; - } - .p-button.p-button-lg { - font-size: 1.25rem; - padding: 0.625rem 0.9375rem; - } - .p-button.p-button-lg .p-button-icon { - font-size: 1.25rem; - } - .p-button.p-button-loading-label-only.p-button-loading-left .p-button-label { - margin-left: 0.5rem; - } - .p-button.p-button-loading-label-only.p-button-loading-right .p-button-label { - margin-right: 0.5rem; - } - .p-button.p-button-loading-label-only.p-button-loading-top .p-button-label { - margin-top: 0.5rem; - } - .p-button.p-button-loading-label-only.p-button-loading-bottom .p-button-label { - margin-bottom: 0.5rem; - } - .p-button.p-button-loading-label-only .p-button-loading-icon { - margin: 0; - } - .p-fluid .p-button { - width: 100%; - } - .p-fluid .p-button-icon-only { - width: 2.357rem; - } - .p-fluid .p-button-group { - display: flex; - } - .p-fluid .p-button-group .p-button { - flex: 1; - } - .p-button.p-button-secondary, .p-button-group.p-button-secondary > .p-button, .p-splitbutton.p-button-secondary > .p-button, .p-fileupload-choose.p-button-secondary { - color: #ffffff; - background: #6c757d; - border: 1px solid #6c757d; - } - .p-button.p-button-secondary:not(:disabled):hover, .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover, .p-fileupload-choose.p-button-secondary:not(:disabled):hover { - background: #5a6268; - color: #ffffff; - border-color: #5a6268; - } - .p-button.p-button-secondary:not(:disabled):focus, .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus, .p-fileupload-choose.p-button-secondary:not(:disabled):focus { - box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); - } - .p-button.p-button-secondary:not(:disabled):active, .p-button-group.p-button-secondary > .p-button:not(:disabled):active, .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active, .p-fileupload-choose.p-button-secondary:not(:disabled):active { - background: #545b62; - color: #ffffff; - border-color: #4e555b; - } - .p-button.p-button-secondary.p-button-outlined, .p-button-group.p-button-secondary > .p-button.p-button-outlined, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined, .p-fileupload-choose.p-button-secondary.p-button-outlined { - background-color: transparent; - color: #6c757d; - border: 1px solid; - } - .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, .p-fileupload-choose.p-button-secondary.p-button-outlined:not(:disabled):hover { - background: rgba(108, 117, 125, 0.04); - color: #6c757d; - border: 1px solid; - } - .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, .p-fileupload-choose.p-button-secondary.p-button-outlined:not(:disabled):active { - background: rgba(108, 117, 125, 0.16); - color: #6c757d; - border: 1px solid; - } - .p-button.p-button-secondary.p-button-text, .p-button-group.p-button-secondary > .p-button.p-button-text, .p-splitbutton.p-button-secondary > .p-button.p-button-text, .p-fileupload-choose.p-button-secondary.p-button-text { - background-color: transparent; - color: #6c757d; - border-color: transparent; - } - .p-button.p-button-secondary.p-button-text:not(:disabled):hover, .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, .p-fileupload-choose.p-button-secondary.p-button-text:not(:disabled):hover { - background: rgba(108, 117, 125, 0.04); - border-color: transparent; - color: #6c757d; - } - .p-button.p-button-secondary.p-button-text:not(:disabled):active, .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active, .p-fileupload-choose.p-button-secondary.p-button-text:not(:disabled):active { - background: rgba(108, 117, 125, 0.16); - border-color: transparent; - color: #6c757d; - } - .p-button.p-button-info, .p-button-group.p-button-info > .p-button, .p-splitbutton.p-button-info > .p-button, .p-fileupload-choose.p-button-info { - color: #ffffff; - background: #17a2b8; - border: 1px solid #17a2b8; - } - .p-button.p-button-info:not(:disabled):hover, .p-button-group.p-button-info > .p-button:not(:disabled):hover, .p-splitbutton.p-button-info > .p-button:not(:disabled):hover, .p-fileupload-choose.p-button-info:not(:disabled):hover { - background: #138496; - color: #ffffff; - border-color: #117a8b; - } - .p-button.p-button-info:not(:disabled):focus, .p-button-group.p-button-info > .p-button:not(:disabled):focus, .p-splitbutton.p-button-info > .p-button:not(:disabled):focus, .p-fileupload-choose.p-button-info:not(:disabled):focus { - box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); - } - .p-button.p-button-info:not(:disabled):active, .p-button-group.p-button-info > .p-button:not(:disabled):active, .p-splitbutton.p-button-info > .p-button:not(:disabled):active, .p-fileupload-choose.p-button-info:not(:disabled):active { - background: #138496; - color: #ffffff; - border-color: #117a8b; - } - .p-button.p-button-info.p-button-outlined, .p-button-group.p-button-info > .p-button.p-button-outlined, .p-splitbutton.p-button-info > .p-button.p-button-outlined, .p-fileupload-choose.p-button-info.p-button-outlined { - background-color: transparent; - color: #17a2b8; - border: 1px solid; - } - .p-button.p-button-info.p-button-outlined:not(:disabled):hover, .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, .p-fileupload-choose.p-button-info.p-button-outlined:not(:disabled):hover { - background: rgba(23, 162, 184, 0.04); - color: #17a2b8; - border: 1px solid; - } - .p-button.p-button-info.p-button-outlined:not(:disabled):active, .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active, .p-fileupload-choose.p-button-info.p-button-outlined:not(:disabled):active { - background: rgba(23, 162, 184, 0.16); - color: #17a2b8; - border: 1px solid; - } - .p-button.p-button-info.p-button-text, .p-button-group.p-button-info > .p-button.p-button-text, .p-splitbutton.p-button-info > .p-button.p-button-text, .p-fileupload-choose.p-button-info.p-button-text { - background-color: transparent; - color: #17a2b8; - border-color: transparent; - } - .p-button.p-button-info.p-button-text:not(:disabled):hover, .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover, .p-fileupload-choose.p-button-info.p-button-text:not(:disabled):hover { - background: rgba(23, 162, 184, 0.04); - border-color: transparent; - color: #17a2b8; - } - .p-button.p-button-info.p-button-text:not(:disabled):active, .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active, .p-fileupload-choose.p-button-info.p-button-text:not(:disabled):active { - background: rgba(23, 162, 184, 0.16); - border-color: transparent; - color: #17a2b8; - } - .p-button.p-button-success, .p-button-group.p-button-success > .p-button, .p-splitbutton.p-button-success > .p-button, .p-fileupload-choose.p-button-success { - color: #ffffff; - background: #28a745; - border: 1px solid #28a745; - } - .p-button.p-button-success:not(:disabled):hover, .p-button-group.p-button-success > .p-button:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button:not(:disabled):hover, .p-fileupload-choose.p-button-success:not(:disabled):hover { - background: #218838; - color: #ffffff; - border-color: #1e7e34; - } - .p-button.p-button-success:not(:disabled):focus, .p-button-group.p-button-success > .p-button:not(:disabled):focus, .p-splitbutton.p-button-success > .p-button:not(:disabled):focus, .p-fileupload-choose.p-button-success:not(:disabled):focus { - box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); - } - .p-button.p-button-success:not(:disabled):active, .p-button-group.p-button-success > .p-button:not(:disabled):active, .p-splitbutton.p-button-success > .p-button:not(:disabled):active, .p-fileupload-choose.p-button-success:not(:disabled):active { - background: #1e7e34; - color: #ffffff; - border-color: #1c7430; - } - .p-button.p-button-success.p-button-outlined, .p-button-group.p-button-success > .p-button.p-button-outlined, .p-splitbutton.p-button-success > .p-button.p-button-outlined, .p-fileupload-choose.p-button-success.p-button-outlined { - background-color: transparent; - color: #28a745; - border: 1px solid; - } - .p-button.p-button-success.p-button-outlined:not(:disabled):hover, .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, .p-fileupload-choose.p-button-success.p-button-outlined:not(:disabled):hover { - background: rgba(40, 167, 69, 0.04); - color: #28a745; - border: 1px solid; - } - .p-button.p-button-success.p-button-outlined:not(:disabled):active, .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active, .p-fileupload-choose.p-button-success.p-button-outlined:not(:disabled):active { - background: rgba(40, 167, 69, 0.16); - color: #28a745; - border: 1px solid; - } - .p-button.p-button-success.p-button-text, .p-button-group.p-button-success > .p-button.p-button-text, .p-splitbutton.p-button-success > .p-button.p-button-text, .p-fileupload-choose.p-button-success.p-button-text { - background-color: transparent; - color: #28a745; - border-color: transparent; - } - .p-button.p-button-success.p-button-text:not(:disabled):hover, .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover, .p-fileupload-choose.p-button-success.p-button-text:not(:disabled):hover { - background: rgba(40, 167, 69, 0.04); - border-color: transparent; - color: #28a745; - } - .p-button.p-button-success.p-button-text:not(:disabled):active, .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active, .p-fileupload-choose.p-button-success.p-button-text:not(:disabled):active { - background: rgba(40, 167, 69, 0.16); - border-color: transparent; - color: #28a745; - } - .p-button.p-button-warning, .p-button-group.p-button-warning > .p-button, .p-splitbutton.p-button-warning > .p-button, .p-fileupload-choose.p-button-warning { - color: #212529; - background: #ffc107; - border: 1px solid #ffc107; - } - .p-button.p-button-warning:not(:disabled):hover, .p-button-group.p-button-warning > .p-button:not(:disabled):hover, .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover, .p-fileupload-choose.p-button-warning:not(:disabled):hover { - background: #e0a800; - color: #212529; - border-color: #d39e00; - } - .p-button.p-button-warning:not(:disabled):focus, .p-button-group.p-button-warning > .p-button:not(:disabled):focus, .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus, .p-fileupload-choose.p-button-warning:not(:disabled):focus { - box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); - } - .p-button.p-button-warning:not(:disabled):active, .p-button-group.p-button-warning > .p-button:not(:disabled):active, .p-splitbutton.p-button-warning > .p-button:not(:disabled):active, .p-fileupload-choose.p-button-warning:not(:disabled):active { - background: #d39e00; - color: #212529; - border-color: #c69500; - } - .p-button.p-button-warning.p-button-outlined, .p-button-group.p-button-warning > .p-button.p-button-outlined, .p-splitbutton.p-button-warning > .p-button.p-button-outlined, .p-fileupload-choose.p-button-warning.p-button-outlined { - background-color: transparent; - color: #ffc107; - border: 1px solid; - } - .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, .p-fileupload-choose.p-button-warning.p-button-outlined:not(:disabled):hover { - background: rgba(255, 193, 7, 0.04); - color: #ffc107; - border: 1px solid; - } - .p-button.p-button-warning.p-button-outlined:not(:disabled):active, .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, .p-fileupload-choose.p-button-warning.p-button-outlined:not(:disabled):active { - background: rgba(255, 193, 7, 0.16); - color: #ffc107; - border: 1px solid; - } - .p-button.p-button-warning.p-button-text, .p-button-group.p-button-warning > .p-button.p-button-text, .p-splitbutton.p-button-warning > .p-button.p-button-text, .p-fileupload-choose.p-button-warning.p-button-text { - background-color: transparent; - color: #ffc107; - border-color: transparent; - } - .p-button.p-button-warning.p-button-text:not(:disabled):hover, .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover, .p-fileupload-choose.p-button-warning.p-button-text:not(:disabled):hover { - background: rgba(255, 193, 7, 0.04); - border-color: transparent; - color: #ffc107; - } - .p-button.p-button-warning.p-button-text:not(:disabled):active, .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active, .p-fileupload-choose.p-button-warning.p-button-text:not(:disabled):active { - background: rgba(255, 193, 7, 0.16); - border-color: transparent; - color: #ffc107; - } - .p-button.p-button-help, .p-button-group.p-button-help > .p-button, .p-splitbutton.p-button-help > .p-button, .p-fileupload-choose.p-button-help { - color: #ffffff; - background: #6f42c1; - border: 1px solid #6f42c1; - } - .p-button.p-button-help:not(:disabled):hover, .p-button-group.p-button-help > .p-button:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button:not(:disabled):hover, .p-fileupload-choose.p-button-help:not(:disabled):hover { - background: #633bad; - color: #ffffff; - border-color: #58349a; - } - .p-button.p-button-help:not(:disabled):focus, .p-button-group.p-button-help > .p-button:not(:disabled):focus, .p-splitbutton.p-button-help > .p-button:not(:disabled):focus, .p-fileupload-choose.p-button-help:not(:disabled):focus { - box-shadow: 0 0 0 0.2rem #d3c6ec; - } - .p-button.p-button-help:not(:disabled):active, .p-button-group.p-button-help > .p-button:not(:disabled):active, .p-splitbutton.p-button-help > .p-button:not(:disabled):active, .p-fileupload-choose.p-button-help:not(:disabled):active { - background: #58349a; - color: #ffffff; - border-color: #4d2e87; - } - .p-button.p-button-help.p-button-outlined, .p-button-group.p-button-help > .p-button.p-button-outlined, .p-splitbutton.p-button-help > .p-button.p-button-outlined, .p-fileupload-choose.p-button-help.p-button-outlined { - background-color: transparent; - color: #6f42c1; - border: 1px solid; - } - .p-button.p-button-help.p-button-outlined:not(:disabled):hover, .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, .p-fileupload-choose.p-button-help.p-button-outlined:not(:disabled):hover { - background: rgba(111, 66, 193, 0.04); - color: #6f42c1; - border: 1px solid; - } - .p-button.p-button-help.p-button-outlined:not(:disabled):active, .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active, .p-fileupload-choose.p-button-help.p-button-outlined:not(:disabled):active { - background: rgba(111, 66, 193, 0.16); - color: #6f42c1; - border: 1px solid; - } - .p-button.p-button-help.p-button-text, .p-button-group.p-button-help > .p-button.p-button-text, .p-splitbutton.p-button-help > .p-button.p-button-text, .p-fileupload-choose.p-button-help.p-button-text { - background-color: transparent; - color: #6f42c1; - border-color: transparent; - } - .p-button.p-button-help.p-button-text:not(:disabled):hover, .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover, .p-fileupload-choose.p-button-help.p-button-text:not(:disabled):hover { - background: rgba(111, 66, 193, 0.04); - border-color: transparent; - color: #6f42c1; - } - .p-button.p-button-help.p-button-text:not(:disabled):active, .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active, .p-fileupload-choose.p-button-help.p-button-text:not(:disabled):active { - background: rgba(111, 66, 193, 0.16); - border-color: transparent; - color: #6f42c1; - } - .p-button.p-button-danger, .p-button-group.p-button-danger > .p-button, .p-splitbutton.p-button-danger > .p-button, .p-fileupload-choose.p-button-danger { - color: #ffffff; - background: #dc3545; - border: 1px solid #dc3545; - } - .p-button.p-button-danger:not(:disabled):hover, .p-button-group.p-button-danger > .p-button:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover, .p-fileupload-choose.p-button-danger:not(:disabled):hover { - background: #c82333; - color: #ffffff; - border-color: #bd2130; - } - .p-button.p-button-danger:not(:disabled):focus, .p-button-group.p-button-danger > .p-button:not(:disabled):focus, .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus, .p-fileupload-choose.p-button-danger:not(:disabled):focus { - box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); - } - .p-button.p-button-danger:not(:disabled):active, .p-button-group.p-button-danger > .p-button:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button:not(:disabled):active, .p-fileupload-choose.p-button-danger:not(:disabled):active { - background: #bd2130; - color: #ffffff; - border-color: #b21f2d; - } - .p-button.p-button-danger.p-button-outlined, .p-button-group.p-button-danger > .p-button.p-button-outlined, .p-splitbutton.p-button-danger > .p-button.p-button-outlined, .p-fileupload-choose.p-button-danger.p-button-outlined { - background-color: transparent; - color: #dc3545; - border: 1px solid; - } - .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, .p-fileupload-choose.p-button-danger.p-button-outlined:not(:disabled):hover { - background: rgba(220, 53, 69, 0.04); - color: #dc3545; - border: 1px solid; - } - .p-button.p-button-danger.p-button-outlined:not(:disabled):active, .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, .p-fileupload-choose.p-button-danger.p-button-outlined:not(:disabled):active { - background: rgba(220, 53, 69, 0.16); - color: #dc3545; - border: 1px solid; - } - .p-button.p-button-danger.p-button-text, .p-button-group.p-button-danger > .p-button.p-button-text, .p-splitbutton.p-button-danger > .p-button.p-button-text, .p-fileupload-choose.p-button-danger.p-button-text { - background-color: transparent; - color: #dc3545; - border-color: transparent; - } - .p-button.p-button-danger.p-button-text:not(:disabled):hover, .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover, .p-fileupload-choose.p-button-danger.p-button-text:not(:disabled):hover { - background: rgba(220, 53, 69, 0.04); - border-color: transparent; - color: #dc3545; - } - .p-button.p-button-danger.p-button-text:not(:disabled):active, .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active, .p-fileupload-choose.p-button-danger.p-button-text:not(:disabled):active { - background: rgba(220, 53, 69, 0.16); - border-color: transparent; - color: #dc3545; - } - .p-button.p-button-contrast, .p-button-group.p-button-contrast > .p-button, .p-splitbutton.p-button-contrast > .p-button { - color: #ffffff; - background: #212529; - border: 1px solid #212529; - } - .p-button.p-button-contrast:not(:disabled):hover, .p-button-group.p-button-contrast > .p-button:not(:disabled):hover, .p-splitbutton.p-button-contrast > .p-button:not(:disabled):hover { - background: #343a40; - color: #ffffff; - border-color: #343a40; - } - .p-button.p-button-contrast:not(:disabled):focus, .p-button-group.p-button-contrast > .p-button:not(:disabled):focus, .p-splitbutton.p-button-contrast > .p-button:not(:disabled):focus { - box-shadow: none; - } - .p-button.p-button-contrast:not(:disabled):active, .p-button-group.p-button-contrast > .p-button:not(:disabled):active, .p-splitbutton.p-button-contrast > .p-button:not(:disabled):active { - background: #495057; - color: #ffffff; - border-color: #495057; - } - .p-button.p-button-contrast.p-button-outlined, .p-button-group.p-button-contrast > .p-button.p-button-outlined, .p-splitbutton.p-button-contrast > .p-button.p-button-outlined { - background-color: transparent; - color: #212529; - border: 1px solid; - } - .p-button.p-button-contrast.p-button-outlined:not(:disabled):hover, .p-button-group.p-button-contrast > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-contrast > .p-button.p-button-outlined:not(:disabled):hover { - background: rgba(33, 37, 41, 0.04); - color: #212529; - border: 1px solid; - } - .p-button.p-button-contrast.p-button-outlined:not(:disabled):active, .p-button-group.p-button-contrast > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-contrast > .p-button.p-button-outlined:not(:disabled):active { - background: rgba(33, 37, 41, 0.16); - color: #212529; - border: 1px solid; - } - .p-button.p-button-contrast.p-button-text, .p-button-group.p-button-contrast > .p-button.p-button-text, .p-splitbutton.p-button-contrast > .p-button.p-button-text { - background-color: transparent; - color: #212529; - border-color: transparent; - } - .p-button.p-button-contrast.p-button-text:not(:disabled):hover, .p-button-group.p-button-contrast > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-contrast > .p-button.p-button-text:not(:disabled):hover { - background: rgba(33, 37, 41, 0.04); - border-color: transparent; - color: #212529; - } - .p-button.p-button-contrast.p-button-text:not(:disabled):active, .p-button-group.p-button-contrast > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-contrast > .p-button.p-button-text:not(:disabled):active { - background: rgba(33, 37, 41, 0.16); - border-color: transparent; - color: #212529; - } - .p-button.p-button-link { - color: #007bff; - background: transparent; - border: transparent; - } - .p-button.p-button-link:not(:disabled):hover { - background: transparent; - color: #0069d9; - border-color: transparent; - } - .p-button.p-button-link:not(:disabled):hover .p-button-label { - text-decoration: underline; - } - .p-button.p-button-link:not(:disabled):focus { - background: transparent; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - border-color: transparent; - } - .p-button.p-button-link:not(:disabled):active { - background: transparent; - color: #007bff; - border-color: transparent; - } - .p-splitbutton { - border-radius: 4px; - } - .p-splitbutton.p-button-outlined > .p-button { - background-color: transparent; - color: #007bff; - border: 1px solid; - } - .p-splitbutton.p-button-outlined > .p-button:not(:disabled):hover { - background: rgba(0, 123, 255, 0.04); - color: #007bff; - } - .p-splitbutton.p-button-outlined > .p-button:not(:disabled):active { - background: rgba(0, 123, 255, 0.16); - color: #007bff; - } - .p-splitbutton.p-button-outlined.p-button-plain > .p-button { - color: #6c757d; - border-color: #6c757d; - } - .p-splitbutton.p-button-outlined.p-button-plain > .p-button:not(:disabled):hover { - background: #e9ecef; - color: #6c757d; - } - .p-splitbutton.p-button-outlined.p-button-plain > .p-button:not(:disabled):active { - background: #dee2e6; - color: #6c757d; - } - .p-splitbutton.p-button-text > .p-button { - background-color: transparent; - color: #007bff; - border-color: transparent; - } - .p-splitbutton.p-button-text > .p-button:not(:disabled):hover { - background: rgba(0, 123, 255, 0.04); - color: #007bff; - border-color: transparent; - } - .p-splitbutton.p-button-text > .p-button:not(:disabled):active { - background: rgba(0, 123, 255, 0.16); - color: #007bff; - border-color: transparent; - } - .p-splitbutton.p-button-text.p-button-plain > .p-button { - color: #6c757d; - } - .p-splitbutton.p-button-text.p-button-plain > .p-button:not(:disabled):hover { - background: #e9ecef; - color: #6c757d; - } - .p-splitbutton.p-button-text.p-button-plain > .p-button:not(:disabled):active { - background: #dee2e6; - color: #6c757d; - } - .p-splitbutton.p-button-raised { - box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); - } - .p-splitbutton.p-button-rounded { - border-radius: 2rem; - } - .p-splitbutton.p-button-rounded > .p-button { - border-radius: 2rem; - } - .p-splitbutton.p-button-sm > .p-button { - font-size: 0.875rem; - padding: 0.4375rem 0.65625rem; - } - .p-splitbutton.p-button-sm > .p-button .p-button-icon { - font-size: 0.875rem; - } - .p-splitbutton.p-button-lg > .p-button { - font-size: 1.25rem; - padding: 0.625rem 0.9375rem; - } - .p-splitbutton.p-button-lg > .p-button.p-button-icon-only { - width: auto; - } - .p-splitbutton.p-button-lg > .p-button .p-button-icon { - font-size: 1.25rem; - } - .p-splitbutton .p-splitbutton-menubutton, - .p-splitbutton .p-splitbutton.p-button-rounded > .p-splitbutton-menubutton.p-button, - .p-splitbutton .p-splitbutton.p-button-outlined > .p-splitbutton-menubutton.p-button { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button { - background-color: transparent; - color: #6c757d; - border: 1px solid; - } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):hover { - background: rgba(108, 117, 125, 0.04); - color: #6c757d; - } - .p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):active { - background: rgba(108, 117, 125, 0.16); - color: #6c757d; - } - .p-splitbutton.p-button-secondary.p-button-text > .p-button { - background-color: transparent; - color: #6c757d; - border-color: transparent; - } - .p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):hover { - background: rgba(108, 117, 125, 0.04); - border-color: transparent; - color: #6c757d; - } - .p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):active { - background: rgba(108, 117, 125, 0.16); - border-color: transparent; - color: #6c757d; - } - .p-splitbutton.p-button-info.p-button-outlined > .p-button { - background-color: transparent; - color: #17a2b8; - border: 1px solid; - } - .p-splitbutton.p-button-info.p-button-outlined > .p-button:not(:disabled):hover { - background: rgba(23, 162, 184, 0.04); - color: #17a2b8; - } - .p-splitbutton.p-button-info.p-button-outlined > .p-button:not(:disabled):active { - background: rgba(23, 162, 184, 0.16); - color: #17a2b8; - } - .p-splitbutton.p-button-info.p-button-text > .p-button { - background-color: transparent; - color: #17a2b8; - border-color: transparent; - } - .p-splitbutton.p-button-info.p-button-text > .p-button:not(:disabled):hover { - background: rgba(23, 162, 184, 0.04); - border-color: transparent; - color: #17a2b8; - } - .p-splitbutton.p-button-info.p-button-text > .p-button:not(:disabled):active { - background: rgba(23, 162, 184, 0.16); - border-color: transparent; - color: #17a2b8; - } - .p-splitbutton.p-button-success.p-button-outlined > .p-button { - background-color: transparent; - color: #28a745; - border: 1px solid; - } - .p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):hover { - background: rgba(40, 167, 69, 0.04); - color: #28a745; - } - .p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):active { - background: rgba(40, 167, 69, 0.16); - color: #28a745; - } - .p-splitbutton.p-button-success.p-button-text > .p-button { - background-color: transparent; - color: #28a745; - border-color: transparent; - } - .p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):hover { - background: rgba(40, 167, 69, 0.04); - border-color: transparent; - color: #28a745; - } - .p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):active { - background: rgba(40, 167, 69, 0.16); - border-color: transparent; - color: #28a745; - } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button { - background-color: transparent; - color: #ffc107; - border: 1px solid; - } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):hover { - background: rgba(255, 193, 7, 0.04); - color: #ffc107; - } - .p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):active { - background: rgba(255, 193, 7, 0.16); - color: #ffc107; - } - .p-splitbutton.p-button-warning.p-button-text > .p-button { - background-color: transparent; - color: #ffc107; - border-color: transparent; - } - .p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):hover { - background: rgba(255, 193, 7, 0.04); - border-color: transparent; - color: #ffc107; - } - .p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):active { - background: rgba(255, 193, 7, 0.16); - border-color: transparent; - color: #ffc107; - } - .p-splitbutton.p-button-help.p-button-outlined > .p-button { - background-color: transparent; - color: #6f42c1; - border: 1px solid; - } - .p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):hover { - background: rgba(111, 66, 193, 0.04); - color: #6f42c1; - } - .p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):active { - background: rgba(111, 66, 193, 0.16); - color: #6f42c1; - } - .p-splitbutton.p-button-help.p-button-text > .p-button { - background-color: transparent; - color: #6f42c1; - border-color: transparent; - } - .p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):hover { - background: rgba(111, 66, 193, 0.04); - border-color: transparent; - color: #6f42c1; - } - .p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):active { - background: rgba(111, 66, 193, 0.16); - border-color: transparent; - color: #6f42c1; - } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button { - background-color: transparent; - color: #dc3545; - border: 1px solid; - } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):hover { - background: rgba(220, 53, 69, 0.04); - color: #dc3545; - } - .p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):active { - background: rgba(220, 53, 69, 0.16); - color: #dc3545; - } - .p-splitbutton.p-button-danger.p-button-text > .p-button { - background-color: transparent; - color: #dc3545; - border-color: transparent; - } - .p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):hover { - background: rgba(220, 53, 69, 0.04); - border-color: transparent; - color: #dc3545; - } - .p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):active { - background: rgba(220, 53, 69, 0.16); - border-color: transparent; - color: #dc3545; - } - .p-speeddial-button.p-button.p-button-icon-only { - width: 4rem; - height: 4rem; - } - .p-speeddial-button.p-button.p-button-icon-only .p-button-icon { - font-size: 1.3rem; - } - .p-speeddial-button.p-button.p-button-icon-only .p-button-icon.p-icon { - width: 1.3rem; - height: 1.3rem; - } - .p-speeddial-list { - outline: 0 none; - } - .p-speeddial-action { - width: 3rem; - height: 3rem; - background: #495057; - color: #fff; - } - .p-speeddial-action:hover { - background: #343a40; - color: #fff; - } - .p-speeddial-direction-up .p-speeddial-item { - margin: 0.25rem; - } - .p-speeddial-direction-up .p-speeddial-item:first-child { - margin-bottom: 0.5rem; - } - .p-speeddial-direction-down .p-speeddial-item { - margin: 0.25rem; - } - .p-speeddial-direction-down .p-speeddial-item:first-child { - margin-top: 0.5rem; - } - .p-speeddial-direction-left .p-speeddial-item { - margin: 0 0.25rem; - } - .p-speeddial-direction-left .p-speeddial-item:first-child { - margin-right: 0.5rem; - } - .p-speeddial-direction-right .p-speeddial-item { - margin: 0 0.25rem; - } - .p-speeddial-direction-right .p-speeddial-item:first-child { - margin-left: 0.5rem; - } - .p-speeddial-circle .p-speeddial-item, - .p-speeddial-semi-circle .p-speeddial-item, - .p-speeddial-quarter-circle .p-speeddial-item { - margin: 0; - } - .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, - .p-speeddial-semi-circle .p-speeddial-item:first-child, - .p-speeddial-semi-circle .p-speeddial-item:last-child, - .p-speeddial-quarter-circle .p-speeddial-item:first-child, - .p-speeddial-quarter-circle .p-speeddial-item:last-child { - margin: 0; - } - .p-speeddial-mask { - background-color: rgba(0, 0, 0, 0.4); - border-radius: 4px; - } - .p-carousel .p-carousel-content .p-carousel-prev, - .p-carousel .p-carousel-content .p-carousel-next { - width: 2rem; - height: 2rem; - color: #6c757d; - border: 0 none; - background: transparent; - border-radius: 50%; - transition: box-shadow 0.15s; - margin: 0.5rem; - } - .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, - .p-carousel .p-carousel-content .p-carousel-next:enabled:hover { - color: #495057; - border-color: transparent; - background: transparent; - } - .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, - .p-carousel .p-carousel-content .p-carousel-next:focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-carousel .p-carousel-indicators { - padding: 1rem; - } - .p-carousel .p-carousel-indicators .p-carousel-indicator { - margin-right: 0.5rem; - margin-bottom: 0.5rem; - } - .p-carousel .p-carousel-indicators .p-carousel-indicator button { - background-color: #e9ecef; - width: 2rem; - height: 0.5rem; - transition: box-shadow 0.15s; - border-radius: 0; - } - .p-carousel .p-carousel-indicators .p-carousel-indicator button:hover { - background: #dee2e6; - } - .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button { - background: #007bff; - color: #ffffff; - } - .p-datatable .p-paginator-top { - border-width: 1px 0 0 0; - border-radius: 0; - } - .p-datatable .p-paginator-bottom { - border-width: 1px 0 0 0; - border-radius: 0; - } - .p-datatable .p-datatable-header { - background: #efefef; - color: #212529; - border: solid #dee2e6; - border-width: 1px 0 0 0; - padding: 1rem 1rem; - font-weight: 600; - } - .p-datatable .p-datatable-footer { - background: #efefef; - color: #212529; - border: 1px solid #dee2e6; - border-width: 1px 0 1px 0; - padding: 1rem 1rem; - font-weight: 600; - } - .p-datatable .p-datatable-thead > tr > th { - text-align: left; - padding: 1rem 1rem; - border: 1px solid #dee2e6; - border-width: 1px 0 2px 0; - font-weight: 600; - color: #212529; - background: #ffffff; - transition: box-shadow 0.15s; - } - .p-datatable .p-datatable-tfoot > tr > td { - text-align: left; - padding: 1rem 1rem; - border: 1px solid #dee2e6; - border-width: 1px 0 1px 0; - font-weight: 600; - color: #212529; - background: #ffffff; - } - .p-datatable .p-sortable-column .p-sortable-column-icon { - color: #6c757d; - margin-left: 0.5rem; - } - .p-datatable .p-sortable-column .p-sortable-column-badge { - border-radius: 50%; - height: 1.143rem; - min-width: 1.143rem; - line-height: 1.143rem; - color: #ffffff; - background: #007bff; - margin-left: 0.5rem; - } - .p-datatable .p-sortable-column:not(.p-highlight):not(.p-sortable-disabled):hover { - background: #e9ecef; - color: #212529; - } - .p-datatable .p-sortable-column:not(.p-highlight):not(.p-sortable-disabled):hover .p-sortable-column-icon { - color: #6c757d; - } - .p-datatable .p-sortable-column.p-highlight { - background: #ffffff; - color: #007bff; - } - .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon { - color: #007bff; - } - .p-datatable .p-sortable-column.p-highlight:not(.p-sortable-disabled):hover { - background: #e9ecef; - color: #007bff; - } - .p-datatable .p-sortable-column.p-highlight:not(.p-sortable-disabled):hover .p-sortable-column-icon { - color: #007bff; - } - .p-datatable .p-sortable-column:focus-visible { - box-shadow: inset 0 0 0 0.15rem rgba(38, 143, 255, 0.5); - outline: 0 none; - } - .p-datatable .p-datatable-tbody > tr { - background: #ffffff; - color: #212529; - transition: box-shadow 0.15s; - } - .p-datatable .p-datatable-tbody > tr > td { - text-align: left; - border: 1px solid #dee2e6; - border-width: 1px 0 0 0; - padding: 1rem 1rem; - } - .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, - .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, - .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, - .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel { - width: 2rem; - height: 2rem; - color: #6c757d; - border: 0 none; - background: transparent; - border-radius: 50%; - transition: box-shadow 0.15s; - } - .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, - .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, - .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, - .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover { - color: #495057; - border-color: transparent; - background: transparent; - } - .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, - .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, - .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, - .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save { - margin-right: 0.5rem; - } - .p-datatable .p-datatable-tbody > tr > td > .p-column-title { - font-weight: 600; - } - .p-datatable .p-datatable-tbody > tr > td.p-highlight { - background: #007bff; - color: #ffffff; - } - .p-datatable .p-datatable-tbody > tr.p-highlight { - background: #007bff; - color: #ffffff; - } - .p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu { - outline: 0.15rem solid rgba(38, 143, 255, 0.5); - outline-offset: -0.15rem; - } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { - box-shadow: inset 0 2px 0 0 #007bff; - } - .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { - box-shadow: inset 0 -2px 0 0 #007bff; - } - .p-datatable.p-datatable-selectable .p-datatable-tbody > tr.p-selectable-row:not(.p-highlight):not(.p-datatable-emptymessage):hover { - background: #e9ecef; - color: #212529; - } - .p-datatable.p-datatable-selectable .p-datatable-tbody > tr.p-selectable-row:focus-visible { - outline: 0.15rem solid rgba(38, 143, 255, 0.5); - outline-offset: -0.15rem; - } - .p-datatable.p-datatable-selectable-cell .p-datatable-tbody > tr.p-selectable-row > td.p-selectable-cell:not(.p-highlight):hover { - background: #e9ecef; - color: #212529; - } - .p-datatable.p-datatable-selectable-cell .p-datatable-tbody > tr.p-selectable-row > td.p-selectable-cell:focus-visible { - outline: 0.15rem solid rgba(38, 143, 255, 0.5); - outline-offset: -0.15rem; - } - .p-datatable.p-datatable-hoverable-rows .p-datatable-tbody > tr:not(.p-highlight):not(.p-datatable-emptymessage):hover { - background: #e9ecef; - color: #212529; - } - .p-datatable .p-column-resizer-helper { - background: #007bff; - } - .p-datatable .p-datatable-scrollable-header, - .p-datatable .p-datatable-scrollable-footer { - background: #efefef; - } - .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, - .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-virtualscroller > .p-datatable-table > .p-datatable-thead, - .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-virtualscroller > .p-datatable-table > .p-datatable-tfoot { - background-color: #ffffff; - } - .p-datatable .p-datatable-loading-icon { - font-size: 2rem; - } - .p-datatable .p-datatable-loading-icon.p-icon { - width: 2rem; - height: 2rem; - } - .p-datatable.p-datatable-gridlines .p-datatable-header { - border-width: 1px 1px 0 1px; - } - .p-datatable.p-datatable-gridlines .p-datatable-footer { - border-width: 0 1px 1px 1px; - } - .p-datatable.p-datatable-gridlines .p-paginator-top { - border-width: 0 1px 0 1px; - } - .p-datatable.p-datatable-gridlines .p-paginator-bottom { - border-width: 0 1px 1px 1px; - } - .p-datatable.p-datatable-gridlines .p-datatable-thead > tr > th { - border-width: 1px 0 1px 1px; - } - .p-datatable.p-datatable-gridlines .p-datatable-thead > tr > th:last-child { - border-width: 1px; - } - .p-datatable.p-datatable-gridlines .p-datatable-tbody > tr > td { - border-width: 1px 0 0 1px; - } - .p-datatable.p-datatable-gridlines .p-datatable-tbody > tr > td:last-child { - border-width: 1px 1px 0 1px; - } - .p-datatable.p-datatable-gridlines .p-datatable-tbody > tr:last-child > td { - border-width: 1px 0 1px 1px; - } - .p-datatable.p-datatable-gridlines .p-datatable-tbody > tr:last-child > td:last-child { - border-width: 1px; - } - .p-datatable.p-datatable-gridlines .p-datatable-tfoot > tr > td { - border-width: 1px 0 1px 1px; - } - .p-datatable.p-datatable-gridlines .p-datatable-tfoot > tr > td:last-child { - border-width: 1px 1px 1px 1px; - } - .p-datatable.p-datatable-gridlines .p-datatable-thead + .p-datatable-tfoot > tr > td { - border-width: 0 0 1px 1px; - } - .p-datatable.p-datatable-gridlines .p-datatable-thead + .p-datatable-tfoot > tr > td:last-child { - border-width: 0 1px 1px 1px; - } - .p-datatable.p-datatable-gridlines:has(.p-datatable-thead):has(.p-datatable-tbody) .p-datatable-tbody > tr > td { - border-width: 0 0 1px 1px; - } - .p-datatable.p-datatable-gridlines:has(.p-datatable-thead):has(.p-datatable-tbody) .p-datatable-tbody > tr > td:last-child { - border-width: 0 1px 1px 1px; - } - .p-datatable.p-datatable-gridlines:has(.p-datatable-tbody):has(.p-datatable-tfoot) .p-datatable-tbody > tr:last-child > td { - border-width: 0 0 0 1px; - } - .p-datatable.p-datatable-gridlines:has(.p-datatable-tbody):has(.p-datatable-tfoot) .p-datatable-tbody > tr:last-child > td:last-child { - border-width: 0 1px 0 1px; - } - .p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd { - background: rgba(0, 0, 0, 0.05); - } - .p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd.p-highlight { - background: #007bff; - color: #ffffff; - } - .p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd.p-highlight .p-row-toggler { - color: #ffffff; - } - .p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd.p-highlight .p-row-toggler:hover { - color: #ffffff; - } - .p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd + .p-row-expanded { - background: rgba(0, 0, 0, 0.05); - } - .p-datatable.p-datatable-sm .p-datatable-header { - padding: 0.5rem 0.5rem; - } - .p-datatable.p-datatable-sm .p-datatable-thead > tr > th { - padding: 0.5rem 0.5rem; - } - .p-datatable.p-datatable-sm .p-datatable-tbody > tr > td { - padding: 0.5rem 0.5rem; - } - .p-datatable.p-datatable-sm .p-datatable-tfoot > tr > td { - padding: 0.5rem 0.5rem; - } - .p-datatable.p-datatable-sm .p-datatable-footer { - padding: 0.5rem 0.5rem; - } - .p-datatable.p-datatable-lg .p-datatable-header { - padding: 1.25rem 1.25rem; - } - .p-datatable.p-datatable-lg .p-datatable-thead > tr > th { - padding: 1.25rem 1.25rem; - } - .p-datatable.p-datatable-lg .p-datatable-tbody > tr > td { - padding: 1.25rem 1.25rem; - } - .p-datatable.p-datatable-lg .p-datatable-tfoot > tr > td { - padding: 1.25rem 1.25rem; - } - .p-datatable.p-datatable-lg .p-datatable-footer { - padding: 1.25rem 1.25rem; - } - .p-datatable-drag-selection-helper { - background: rgba(0, 123, 255, 0.16); - } - .p-dataview .p-paginator-top { - border-width: 1px 0 0 0; - border-radius: 0; - } - .p-dataview .p-paginator-bottom { - border-width: 1px 0 0 0; - border-radius: 0; - } - .p-dataview .p-dataview-header { - background: #efefef; - color: #212529; - border: solid #dee2e6; - border-width: 1px 0 0 0; - padding: 1rem 1rem; - font-weight: 600; - } - .p-dataview .p-dataview-content { - background: #ffffff; - color: #212529; - border: 0 none; - padding: 0; - } - .p-dataview .p-dataview-footer { - background: #efefef; - color: #212529; - border: 1px solid #dee2e6; - border-width: 1px 0 1px 0; - padding: 1rem 1rem; - font-weight: 600; - border-bottom-left-radius: 4px; - border-bottom-right-radius: 4px; - } - .p-dataview .p-dataview-loading-icon { - font-size: 2rem; - } - .p-dataview .p-dataview-loading-icon.p-icon { - width: 2rem; - height: 2rem; - } - .p-datascroller .p-paginator-top { - border-width: 1px 0 0 0; - border-radius: 0; - } - .p-datascroller .p-paginator-bottom { - border-width: 1px 0 0 0; - border-radius: 0; - } - .p-datascroller .p-datascroller-header { - background: #efefef; - color: #212529; - border: solid #dee2e6; - border-width: 1px 0 0 0; - padding: 1rem 1rem; - font-weight: 600; - } - .p-datascroller .p-datascroller-content { - background: #ffffff; - color: #212529; - border: 0 none; - padding: 0; - } - .p-datascroller.p-datascroller-inline .p-datascroller-list > li { - border: 1px solid #dee2e6; - border-width: 1px 0 0 0; - } - .p-datascroller .p-datascroller-footer { - background: #efefef; - color: #212529; - border: 1px solid #dee2e6; - border-width: 1px 0 1px 0; - padding: 1rem 1rem; - font-weight: 600; - border-bottom-left-radius: 4px; - border-bottom-right-radius: 4px; - } - .p-column-filter-row .p-column-filter-menu-button, - .p-column-filter-row .p-column-filter-clear-button { - margin-left: 0.5rem; - } - .p-column-filter-menu-button { - width: 2rem; - height: 2rem; - color: #6c757d; - border: 0 none; - background: transparent; - border-radius: 50%; - transition: box-shadow 0.15s; - } - .p-column-filter-menu-button:hover { - color: #495057; - border-color: transparent; - background: transparent; - } - .p-column-filter-menu-button.p-column-filter-menu-button-open, .p-column-filter-menu-button.p-column-filter-menu-button-open:hover { - background: transparent; - color: #495057; - } - .p-column-filter-menu-button.p-column-filter-menu-button-active, .p-column-filter-menu-button.p-column-filter-menu-button-active:hover { - background: #007bff; - color: #ffffff; - } - .p-column-filter-menu-button:focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-column-filter-clear-button { - width: 2rem; - height: 2rem; - color: #6c757d; - border: 0 none; - background: transparent; - border-radius: 50%; - transition: box-shadow 0.15s; - } - .p-column-filter-clear-button:hover { - color: #495057; - border-color: transparent; - background: transparent; - } - .p-column-filter-clear-button:focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-column-filter-overlay { - background: #ffffff; - color: #212529; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 4px; - box-shadow: none; - min-width: 12.5rem; - } - .p-column-filter-overlay .p-column-filter-row-items { - padding: 0.5rem 0; - } - .p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item { - margin: 0; - padding: 0.5rem 1.5rem; - border: 0 none; - color: #212529; - background: transparent; - transition: box-shadow 0.15s; - border-radius: 0; - } - .p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item.p-highlight { - color: #ffffff; - background: #007bff; - } - .p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item:not(.p-highlight):not(.p-disabled):hover { - color: #212529; - background: #e9ecef; - } - .p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item:focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: inset 0 0 0 0.15rem rgba(38, 143, 255, 0.5); - } - .p-column-filter-overlay .p-column-filter-row-items .p-column-filter-separator { - border-top: 1px solid #dee2e6; - margin: 0.5rem 0; - } - .p-column-filter-overlay-menu .p-column-filter-operator { - padding: 0.75rem 1.5rem; - border-bottom: 1px solid #dee2e6; - color: #212529; - background: #efefef; - margin: 0; - border-top-right-radius: 4px; - border-top-left-radius: 4px; - } - .p-column-filter-overlay-menu .p-column-filter-constraint { - padding: 1.25rem; - border-bottom: 1px solid #dee2e6; - } - .p-column-filter-overlay-menu .p-column-filter-constraint .p-column-filter-matchmode-dropdown { - margin-bottom: 0.5rem; - } - .p-column-filter-overlay-menu .p-column-filter-constraint .p-column-filter-remove-button { - margin-top: 0.5rem; - } - .p-column-filter-overlay-menu .p-column-filter-constraint:last-child { - border-bottom: 0 none; - } - .p-column-filter-overlay-menu .p-column-filter-add-rule { - padding: 0.5rem 1.25rem; - } - .p-column-filter-overlay-menu .p-column-filter-buttonbar { - padding: 1.25rem; - } - .p-orderlist .p-orderlist-controls { - padding: 1.25rem; - } - .p-orderlist .p-orderlist-controls .p-button { - margin-bottom: 0.5rem; - } - .p-orderlist .p-orderlist-header { - background: #efefef; - color: #212529; - border: 1px solid #dee2e6; - padding: 1rem 1.25rem; - font-weight: 600; - border-bottom: 0 none; - border-top-right-radius: 4px; - border-top-left-radius: 4px; - } - .p-orderlist .p-orderlist-filter-container { - padding: 1rem 1.25rem; - background: #ffffff; - border: 1px solid #dee2e6; - border-bottom: 0 none; - } - .p-orderlist .p-orderlist-filter-container .p-orderlist-filter-input { - padding-right: 1.75rem; - } - .p-orderlist .p-orderlist-filter-container .p-orderlist-filter-icon { - right: 0.75rem; - color: #495057; - } - .p-orderlist .p-orderlist-list { - border: 1px solid #dee2e6; - background: #ffffff; - color: #212529; - padding: 0.5rem 0; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; - outline: 0 none; - } - .p-orderlist .p-orderlist-list .p-orderlist-item { - padding: 0.5rem 1.5rem; - margin: 0; - border: 0 none; - color: #212529; - background: transparent; - transition: transform 0.15s, box-shadow 0.15s; - } - .p-orderlist .p-orderlist-list .p-orderlist-item:not(.p-highlight):hover { - background: #e9ecef; - color: #212529; - } - .p-orderlist .p-orderlist-list .p-orderlist-item.p-focus { - color: #212529; - background: #dee2e6; - } - .p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight { - color: #ffffff; - background: #007bff; - } - .p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight.p-focus { - background: #0067d6; - } - .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even) { - background: rgba(0, 0, 0, 0.05); - } - .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(even):hover { - background: #e9ecef; - } - .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover { - background: #e9ecef; - color: #212529; - } - .p-organizationchart .p-organizationchart-node-content.p-highlight { - background: #007bff; - color: #ffffff; - } - .p-organizationchart .p-organizationchart-node-content.p-highlight .p-node-toggler i { - color: #003e80; - } - .p-organizationchart .p-organizationchart-line-down { - background: #dee2e6; - } - .p-organizationchart .p-organizationchart-line-left { - border-right: 1px solid #dee2e6; - border-color: #dee2e6; - } - .p-organizationchart .p-organizationchart-line-top { - border-top: 1px solid #dee2e6; - border-color: #dee2e6; - } - .p-organizationchart .p-organizationchart-node-content { - border: 1px solid #dee2e6; - background: #ffffff; - color: #212529; - padding: 1.25rem; - } - .p-organizationchart .p-organizationchart-node-content .p-node-toggler { - background: inherit; - color: inherit; - border-radius: 50%; - } - .p-organizationchart .p-organizationchart-node-content .p-node-toggler:focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-paginator { - background: #ffffff; - color: #007bff; - border: solid #dee2e6; - border-width: 0; - padding: 0.75rem; - border-radius: 4px; - } - .p-paginator .p-paginator-first, - .p-paginator .p-paginator-prev, - .p-paginator .p-paginator-next, - .p-paginator .p-paginator-last { - background-color: #ffffff; - border: 1px solid #dee2e6; - color: #007bff; - min-width: 2.357rem; - height: 2.357rem; - margin: 0 0 0 -1px; - transition: box-shadow 0.15s; - border-radius: 0; - } - .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, - .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, - .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, - .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { - background: #e9ecef; - border-color: #dee2e6; - color: #007bff; - } - .p-paginator .p-paginator-first { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - } - .p-paginator .p-paginator-last { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - } - .p-paginator .p-dropdown { - margin-left: 0.5rem; - height: 2.357rem; - } - .p-paginator .p-dropdown .p-dropdown-label { - padding-right: 0; - } - .p-paginator .p-paginator-page-input { - margin-left: 0.5rem; - margin-right: 0.5rem; - } - .p-paginator .p-paginator-page-input .p-inputtext { - max-width: 2.357rem; - } - .p-paginator .p-paginator-current { - background-color: #ffffff; - border: 1px solid #dee2e6; - color: #007bff; - min-width: 2.357rem; - height: 2.357rem; - margin: 0 0 0 -1px; - padding: 0 0.5rem; - } - .p-paginator .p-paginator-pages .p-paginator-page { - background-color: #ffffff; - border: 1px solid #dee2e6; - color: #007bff; - min-width: 2.357rem; - height: 2.357rem; - margin: 0 0 0 -1px; - transition: box-shadow 0.15s; - border-radius: 0; - } - .p-paginator .p-paginator-pages .p-paginator-page.p-highlight { - background: #007bff; - border-color: #007bff; - color: #ffffff; - } - .p-paginator .p-paginator-pages .p-paginator-page:not(.p-highlight):hover { - background: #e9ecef; - border-color: #dee2e6; - color: #007bff; - } - .p-picklist .p-picklist-buttons { - padding: 1.25rem; - } - .p-picklist .p-picklist-buttons .p-button { - margin-bottom: 0.5rem; - } - .p-picklist .p-picklist-header { - background: #efefef; - color: #212529; - border: 1px solid #dee2e6; - padding: 1rem 1.25rem; - font-weight: 600; - border-bottom: 0 none; - border-top-right-radius: 4px; - border-top-left-radius: 4px; - } - .p-picklist .p-picklist-filter-container { - padding: 1rem 1.25rem; - background: #ffffff; - border: 1px solid #dee2e6; - border-bottom: 0 none; - } - .p-picklist .p-picklist-filter-container .p-picklist-filter-input { - padding-right: 1.75rem; - } - .p-picklist .p-picklist-filter-container .p-picklist-filter-icon { - right: 0.75rem; - color: #495057; - } - .p-picklist .p-picklist-list { - border: 1px solid #dee2e6; - background: #ffffff; - color: #212529; - padding: 0.5rem 0; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; - outline: 0 none; - } - .p-picklist .p-picklist-list .p-picklist-item { - padding: 0.5rem 1.5rem; - margin: 0; - border: 0 none; - color: #212529; - background: transparent; - transition: transform 0.15s, box-shadow 0.15s; - } - .p-picklist .p-picklist-list .p-picklist-item:not(.p-highlight):hover { - background: #e9ecef; - color: #212529; - } - .p-picklist .p-picklist-list .p-picklist-item.p-focus { - color: #212529; - background: #dee2e6; - } - .p-picklist .p-picklist-list .p-picklist-item.p-highlight { - color: #ffffff; - background: #007bff; - } - .p-picklist .p-picklist-list .p-picklist-item.p-highlight.p-focus { - background: #0067d6; - } - .p-tree-container { - margin: 0; - padding: 0; - list-style-type: none; - overflow: auto; - } - .p-treenode-children { - margin: 0; - padding: 0; - list-style-type: none; - } - .p-treenode-selectable { - cursor: pointer; - user-select: none; - } - .p-tree-toggler { - cursor: pointer; - user-select: none; - display: inline-flex; - align-items: center; - justify-content: center; - overflow: hidden; - position: relative; - flex-shrink: 0; - } - .p-treenode-leaf > .p-treenode-content .p-tree-toggler { - visibility: hidden; - } - .p-treenode-content { - display: flex; - align-items: center; - } - .p-tree-filter { - width: 100%; - } - .p-tree-filter-container { - position: relative; - display: block; - width: 100%; - } - .p-tree-filter-icon { - position: absolute; - top: 50%; - margin-top: -0.5rem; - } - .p-tree-loading { - position: relative; - min-height: 4rem; - } - .p-tree .p-tree-loading-overlay { - position: absolute; - z-index: 1; - display: flex; - align-items: center; - justify-content: center; - } - .p-tree { - border: 1px solid #dee2e6; - background: #ffffff; - color: #212529; - padding: 1.25rem; - border-radius: 4px; - } - .p-tree .p-tree-container .p-treenode { - padding: 0.143rem; - outline: 0 none; - } - .p-tree .p-tree-container .p-treenode:focus > .p-treenode-content { - outline: 0 none; - outline-offset: 0; - box-shadow: inset 0 0 0 0.15rem rgba(38, 143, 255, 0.5); - } - .p-tree .p-tree-container .p-treenode .p-treenode-content { - border-radius: 4px; - transition: box-shadow 0.15s; - padding: 0.286rem; - } - .p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler { - margin-right: 0.5rem; - width: 2rem; - height: 2rem; - color: #6c757d; - border: 0 none; - background: transparent; - border-radius: 50%; - transition: box-shadow 0.15s; - } - .p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler:enabled:hover { - color: #495057; - border-color: transparent; - background: transparent; - } - .p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler:focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-tree .p-tree-container .p-treenode .p-treenode-content .p-treenode-icon { - margin-right: 0.5rem; - color: #6c757d; - } - .p-tree .p-tree-container .p-treenode .p-treenode-content .p-checkbox { - margin-right: 0.5rem; - } - .p-tree .p-tree-container .p-treenode .p-treenode-content .p-checkbox.p-indeterminate .p-checkbox-icon { - color: #212529; - } - .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight { - background: #007bff; - color: #ffffff; - } - .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, - .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon { - color: #ffffff; - } - .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, - .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover { - color: #ffffff; - } - .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover { - background: #e9ecef; - color: #212529; - } - .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-dragover { - background: #e9ecef; - color: #212529; - } - .p-tree .p-tree-filter-container { - margin-bottom: 0.5rem; - } - .p-tree .p-tree-filter-container .p-tree-filter { - width: 100%; - padding-right: 1.75rem; - } - .p-tree .p-tree-filter-container .p-tree-filter-icon { - right: 0.75rem; - color: #495057; - } - .p-tree .p-treenode-children { - padding: 0 0 0 1rem; - } - .p-tree .p-tree-loading-icon { - font-size: 2rem; - } - .p-tree .p-tree-loading-icon.p-icon { - width: 2rem; - height: 2rem; - } - .p-tree .p-treenode-droppoint { - height: 0.5rem; - } - .p-tree .p-treenode-droppoint.p-treenode-droppoint-active { - background: #0062cc; - } - .p-treetable { - position: relative; - } - .p-treetable > .p-treetable-wrapper { - overflow: auto; - } - .p-treetable table { - border-collapse: collapse; - width: 100%; - table-layout: fixed; - } - .p-treetable .p-sortable-column { - cursor: pointer; - user-select: none; - } - .p-treetable-selectable .p-treetable-tbody > tr { - cursor: pointer; - } - .p-treetable-toggler { - cursor: pointer; - user-select: none; - display: inline-flex; - align-items: center; - justify-content: center; - flex-shrink: 0; - vertical-align: middle; - overflow: hidden; - position: relative; - } - .p-treetable-toggler + .p-checkbox { - vertical-align: middle; - } - .p-treetable-toggler + .p-checkbox + span { - vertical-align: middle; - } - /* Resizable */ - .p-treetable-resizable > .p-treetable-wrapper { - overflow-x: auto; - } - .p-treetable-resizable .p-treetable-thead > tr > th, - .p-treetable-resizable .p-treetable-tfoot > tr > td, - .p-treetable-resizable .p-treetable-tbody > tr > td { - overflow: hidden; - } - .p-treetable-resizable .p-resizable-column { - background-clip: padding-box; - position: relative; - } - .p-treetable-resizable-fit .p-resizable-column:last-child .p-column-resizer { - display: none; - } - .p-treetable .p-column-resizer { - display: block; - position: absolute; - top: 0; - right: 0; - margin: 0; - width: 0.5rem; - height: 100%; - padding: 0px; - cursor: col-resize; - border: 1px solid transparent; - } - .p-treetable .p-column-resizer-helper { - width: 1px; - position: absolute; - z-index: 10; - display: none; - } - /* Scrollable */ - .p-treetable-scrollable-wrapper { - position: relative; - } - .p-treetable-scrollable-header, - .p-treetable-scrollable-footer { - overflow: hidden; - border: 0 none; - } - .p-treetable-scrollable-body { - overflow: auto; - position: relative; - } - .p-treetable-virtual-table { - position: absolute; - } - /* Frozen Columns */ - .p-treetable-frozen-view .p-treetable-scrollable-body { - overflow: hidden; - } - .p-treetable-unfrozen-view { - position: absolute; - top: 0px; - left: 0px; - } - /* Reorder */ - .p-treetable-reorder-indicator-up, - .p-treetable-reorder-indicator-down { - position: absolute; - display: none; - } - /* Loader */ - .p-treetable .p-treetable-loading-overlay { - position: absolute; - display: flex; - align-items: center; - justify-content: center; - z-index: 2; - } - /* Alignment */ - .p-treetable .p-treetable-thead > tr > th.p-align-left > .p-column-header-content, - .p-treetable .p-treetable-tbody > tr > td.p-align-left, - .p-treetable .p-treetable-tfoot > tr > td.p-align-left { - text-align: left; - justify-content: flex-start; - } - .p-treetable .p-treetable-thead > tr > th.p-align-right > .p-column-header-content, - .p-treetable .p-treetable-tbody > tr > td.p-align-right, - .p-treetable .p-treetable-tfoot > tr > td.p-align-right { - text-align: right; - justify-content: flex-end; - } - .p-treetable .p-treetable-thead > tr > th.p-align-center > .p-column-header-content, - .p-treetable .p-treetable-tbody > tr > td.p-align-center, - .p-treetable .p-treetable-tfoot > tr > td.p-align-center { - text-align: center; - justify-content: center; - } - .p-treetable .p-paginator-top { - border-width: 1px 0 0 0; - border-radius: 0; - } - .p-treetable .p-paginator-bottom { - border-width: 1px 0 0 0; - border-radius: 0; - } - .p-treetable .p-treetable-header { - background: #efefef; - color: #212529; - border: solid #dee2e6; - border-width: 1px 0 0 0; - padding: 1rem 1rem; - font-weight: 600; - } - .p-treetable .p-treetable-footer { - background: #efefef; - color: #212529; - border: 1px solid #dee2e6; - border-width: 1px 0 1px 0; - padding: 1rem 1rem; - font-weight: 600; - } - .p-treetable .p-treetable-thead > tr > th { - text-align: left; - padding: 1rem 1rem; - border: 1px solid #dee2e6; - border-width: 1px 0 2px 0; - font-weight: 600; - color: #212529; - background: #ffffff; - transition: box-shadow 0.15s; - } - .p-treetable .p-treetable-tfoot > tr > td { - text-align: left; - padding: 1rem 1rem; - border: 1px solid #dee2e6; - border-width: 1px 0 1px 0; - font-weight: 600; - color: #212529; - background: #ffffff; - } - .p-treetable .p-sortable-column { - outline-color: rgba(38, 143, 255, 0.5); - } - .p-treetable .p-sortable-column .p-sortable-column-icon { - color: #6c757d; - margin-left: 0.5rem; - } - .p-treetable .p-sortable-column .p-sortable-column-badge { - border-radius: 50%; - height: 1.143rem; - min-width: 1.143rem; - line-height: 1.143rem; - color: #ffffff; - background: #007bff; - margin-left: 0.5rem; - } - .p-treetable .p-sortable-column:not(.p-highlight):hover { - background: #e9ecef; - color: #212529; - } - .p-treetable .p-sortable-column:not(.p-highlight):hover .p-sortable-column-icon { - color: #6c757d; - } - .p-treetable .p-sortable-column.p-highlight { - background: #ffffff; - color: #007bff; - } - .p-treetable .p-sortable-column.p-highlight .p-sortable-column-icon { - color: #007bff; - } - .p-treetable .p-treetable-tbody > tr { - background: #ffffff; - color: #212529; - transition: box-shadow 0.15s; - } - .p-treetable .p-treetable-tbody > tr > td { - text-align: left; - border: 1px solid #dee2e6; - border-width: 1px 0 0 0; - padding: 1rem 1rem; - } - .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler { - width: 2rem; - height: 2rem; - color: #6c757d; - border: 0 none; - background: transparent; - border-radius: 50%; - transition: box-shadow 0.15s; - margin-right: 0.5rem; - } - .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler:enabled:hover { - color: #495057; - border-color: transparent; - background: transparent; - } - .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler:focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox { - margin-right: 0.5rem; - } - .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon { - color: #212529; - } - .p-treetable .p-treetable-tbody > tr:focus-visible { - outline: 0.15rem solid rgba(38, 143, 255, 0.5); - outline-offset: -0.15rem; - } - .p-treetable .p-treetable-tbody > tr.p-highlight { - background: #007bff; - color: #ffffff; - } - .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler { - color: #ffffff; - } - .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler:hover { - color: #ffffff; - } - .p-treetable.p-treetable-selectable .p-treetable-tbody > tr:not(.p-highlight):hover, .p-treetable.p-treetable-hoverable-rows .p-treetable-tbody > tr:not(.p-highlight):hover { - background: #e9ecef; - color: #212529; - } - .p-treetable.p-treetable-selectable .p-treetable-tbody > tr:not(.p-highlight):hover .p-treetable-toggler, .p-treetable.p-treetable-hoverable-rows .p-treetable-tbody > tr:not(.p-highlight):hover .p-treetable-toggler { - color: #212529; - } - .p-treetable .p-column-resizer-helper { - background: #007bff; - } - .p-treetable .p-treetable-scrollable-header, - .p-treetable .p-treetable-scrollable-footer { - background: #efefef; - } - .p-treetable .p-treetable-loading-icon { - font-size: 2rem; - } - .p-treetable .p-treetable-loading-icon.p-icon { - width: 2rem; - height: 2rem; - } - .p-treetable.p-treetable-gridlines .p-treetable-header { - border-width: 1px 1px 0 1px; - } - .p-treetable.p-treetable-gridlines .p-treetable-footer { - border-width: 0 1px 1px 1px; - } - .p-treetable.p-treetable-gridlines .p-treetable-top { - border-width: 0 1px 0 1px; - } - .p-treetable.p-treetable-gridlines .p-treetable-bottom { - border-width: 0 1px 1px 1px; - } - .p-treetable.p-treetable-gridlines .p-treetable-thead > tr > th { - border-width: 1px; - } - .p-treetable.p-treetable-gridlines .p-treetable-tbody > tr > td { - border-width: 1px; - } - .p-treetable.p-treetable-gridlines .p-treetable-tfoot > tr > td { - border-width: 1px; - } - .p-treetable.p-treetable-striped .p-treetable-tbody > tr.p-row-odd { - background: rgba(0, 0, 0, 0.05); - } - .p-treetable.p-treetable-striped .p-treetable-tbody > tr.p-row-odd.p-highlight { - background: #007bff; - color: #ffffff; - } - .p-treetable.p-treetable-striped .p-treetable-tbody > tr.p-row-odd.p-highlight .p-row-toggler { - color: #ffffff; - } - .p-treetable.p-treetable-striped .p-treetable-tbody > tr.p-row-odd.p-highlight .p-row-toggler:hover { - color: #ffffff; - } - .p-treetable.p-treetable-striped .p-treetable-tbody > tr.p-row-odd + .p-row-expanded { - background: rgba(0, 0, 0, 0.05); - } - .p-treetable.p-treetable-sm .p-treetable-header { - padding: 0.875rem 0.875rem; - } - .p-treetable.p-treetable-sm .p-treetable-thead > tr > th { - padding: 0.5rem 0.5rem; - } - .p-treetable.p-treetable-sm .p-treetable-tbody > tr > td { - padding: 0.5rem 0.5rem; - } - .p-treetable.p-treetable-sm .p-treetable-tfoot > tr > td { - padding: 0.5rem 0.5rem; - } - .p-treetable.p-treetable-sm .p-treetable-footer { - padding: 0.5rem 0.5rem; - } - .p-treetable.p-treetable-lg .p-treetable-header { - padding: 1.25rem 1.25rem; - } - .p-treetable.p-treetable-lg .p-treetable-thead > tr > th { - padding: 1.25rem 1.25rem; - } - .p-treetable.p-treetable-lg .p-treetable-tbody > tr > td { - padding: 1.25rem 1.25rem; - } - .p-treetable.p-treetable-lg .p-treetable-tfoot > tr > td { - padding: 1.25rem 1.25rem; - } - .p-treetable.p-treetable-lg .p-treetable-footer { - padding: 1.25rem 1.25rem; - } - .p-timeline .p-timeline-event-marker { - border: 0 none; - border-radius: 50%; - width: 1rem; - height: 1rem; - background-color: #007bff; - } - .p-timeline .p-timeline-event-connector { - background-color: #dee2e6; - } - .p-timeline.p-timeline-vertical .p-timeline-event-opposite, - .p-timeline.p-timeline-vertical .p-timeline-event-content { - padding: 0 1rem; - } - .p-timeline.p-timeline-vertical .p-timeline-event-connector { - width: 2px; - } - .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, - .p-timeline.p-timeline-horizontal .p-timeline-event-content { - padding: 1rem 0; - } - .p-timeline.p-timeline-horizontal .p-timeline-event-connector { - height: 2px; - } - .p-accordion .p-accordion-header .p-accordion-header-link { - padding: 1rem 1.25rem; - border: 1px solid #dee2e6; - color: #212529; - background: #efefef; - font-weight: 600; - border-radius: 4px; - transition: box-shadow 0.15s; - } - .p-accordion .p-accordion-header .p-accordion-header-link .p-accordion-toggle-icon { - margin-right: 0.5rem; - } - .p-accordion .p-accordion-header:not(.p-disabled) .p-accordion-header-link:focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-accordion .p-accordion-header:not(.p-highlight):not(.p-disabled):hover .p-accordion-header-link { - background: #e9ecef; - border-color: #dee2e6; - color: #212529; - } - .p-accordion .p-accordion-header:not(.p-disabled).p-highlight .p-accordion-header-link { - background: #efefef; - border-color: #dee2e6; - color: #212529; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; - } - .p-accordion .p-accordion-header:not(.p-disabled).p-highlight:hover .p-accordion-header-link { - border-color: #dee2e6; - background: #e9ecef; - color: #212529; - } - .p-accordion .p-accordion-content { - padding: 1.25rem; - border: 1px solid #dee2e6; - background: #ffffff; - color: #212529; - border-top: 0; - border-top-right-radius: 0; - border-top-left-radius: 0; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; - } - .p-accordion .p-accordion-tab { - margin-bottom: 0; - } - .p-accordion .p-accordion-tab .p-accordion-header .p-accordion-header-link { - border-radius: 0; - } - .p-accordion .p-accordion-tab .p-accordion-content { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; - } - .p-accordion .p-accordion-tab:not(:first-child) .p-accordion-header .p-accordion-header-link { - border-top: 0 none; - } - .p-accordion .p-accordion-tab:not(:first-child) .p-accordion-header:not(.p-highlight):not(.p-disabled):hover .p-accordion-header-link, .p-accordion .p-accordion-tab:not(:first-child) .p-accordion-header:not(.p-disabled).p-highlight:hover .p-accordion-header-link { - border-top: 0 none; - } - .p-accordion .p-accordion-tab:first-child .p-accordion-header .p-accordion-header-link { - border-top-right-radius: 4px; - border-top-left-radius: 4px; - } - .p-accordion .p-accordion-tab:last-child .p-accordion-header:not(.p-highlight) .p-accordion-header-link { - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; - } - .p-accordion .p-accordion-tab:last-child .p-accordion-header:not(.p-highlight) .p-accordion-content { - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; - } - .p-card { - background: #ffffff; - color: #212529; - box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); - border-radius: 4px; - } - .p-card .p-card-body { - padding: 1.5rem; - } - .p-card .p-card-title { - font-size: 1.5rem; - font-weight: 700; - margin-bottom: 0.5rem; - } - .p-card .p-card-subtitle { - font-weight: 400; - margin-bottom: 0.5rem; - color: #6c757d; - } - .p-card .p-card-content { - padding: 1rem 0; - } - .p-card .p-card-footer { - padding: 1rem 0 0 0; - } - .p-fieldset { - border: 1px solid #dee2e6; - background: #ffffff; - color: #212529; - border-radius: 4px; - } - .p-fieldset .p-fieldset-legend { - padding: 1rem 1.25rem; - border: 1px solid #dee2e6; - color: #212529; - background: #efefef; - font-weight: 600; - border-radius: 4px; - } - .p-fieldset.p-fieldset-toggleable .p-fieldset-legend { - padding: 0; - transition: box-shadow 0.15s; - } - .p-fieldset.p-fieldset-toggleable .p-fieldset-legend a { - padding: 1rem 1.25rem; - color: #212529; - border-radius: 4px; - transition: box-shadow 0.15s; - } - .p-fieldset.p-fieldset-toggleable .p-fieldset-legend a .p-fieldset-toggler { - margin-right: 0.5rem; - } - .p-fieldset.p-fieldset-toggleable .p-fieldset-legend a:focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-fieldset.p-fieldset-toggleable .p-fieldset-legend:hover { - background: #e9ecef; - border-color: #dee2e6; - color: #212529; - } - .p-fieldset .p-fieldset-content { - padding: 1.25rem; - } - .p-divider .p-divider-content { - background-color: #ffffff; - } - .p-divider.p-divider-horizontal { - margin: 1rem 0; - padding: 0 1rem; - } - .p-divider.p-divider-horizontal:before { - border-top: 1px #dee2e6; - } - .p-divider.p-divider-horizontal .p-divider-content { - padding: 0 0.5rem; - } - .p-divider.p-divider-vertical { - margin: 0 1rem; - padding: 1rem 0; - } - .p-divider.p-divider-vertical:before { - border-left: 1px #dee2e6; - } - .p-divider.p-divider-vertical .p-divider-content { - padding: 0.5rem 0; - } - .p-panel .p-panel-header { - border: 1px solid #dee2e6; - padding: 1rem 1.25rem; - background: #efefef; - color: #212529; - border-top-right-radius: 4px; - border-top-left-radius: 4px; - } - .p-panel .p-panel-header .p-panel-title { - font-weight: 600; - } - .p-panel .p-panel-header .p-panel-header-icon { - width: 2rem; - height: 2rem; - color: #6c757d; - border: 0 none; - background: transparent; - border-radius: 50%; - transition: box-shadow 0.15s; - } - .p-panel .p-panel-header .p-panel-header-icon:enabled:hover { - color: #495057; - border-color: transparent; - background: transparent; - } - .p-panel .p-panel-header .p-panel-header-icon:focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-panel.p-panel-toggleable .p-panel-header { - padding: 0.5rem 1.25rem; - } - .p-panel .p-panel-content { - padding: 1.25rem; - border: 1px solid #dee2e6; - background: #ffffff; - color: #212529; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; - border-top: 0 none; - } - .p-panel .p-panel-footer { - padding: 0.5rem 1.25rem; - border: 1px solid #dee2e6; - background: #ffffff; - color: #212529; - border-top: 0 none; - } - .p-splitter { - border: 1px solid #dee2e6; - background: #ffffff; - border-radius: 4px; - color: #212529; - } - .p-splitter .p-splitter-gutter { - transition: box-shadow 0.15s; - background: #efefef; - } - .p-splitter .p-splitter-gutter .p-splitter-gutter-handle { - background: #dee2e6; - } - .p-splitter .p-splitter-gutter .p-splitter-gutter-handle:focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-splitter .p-splitter-gutter-resizing { - background: #dee2e6; - } - .p-stepper .p-stepper-nav { - display: flex; - justify-content: space-between; - margin: 0; - padding: 0; - list-style-type: none; - } - .p-stepper .p-stepper-header { - padding: 0.5rem; - } - .p-stepper .p-stepper-header .p-stepper-action { - transition: box-shadow 0.15s; - border-radius: 4px; - background: transparent; - outline-color: transparent; - } - .p-stepper .p-stepper-header .p-stepper-action .p-stepper-number { - color: #212529; - border: 1px solid #dee2e6; - border-width: 2px; - background: transparent; - min-width: 2rem; - height: 2rem; - line-height: 2rem; - font-size: 1.143rem; - border-radius: 4px; - transition: box-shadow 0.15s; - } - .p-stepper .p-stepper-header .p-stepper-action .p-stepper-title { - margin-left: 0.5rem; - color: #6c757d; - font-weight: 600; - transition: box-shadow 0.15s; - } - .p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-stepper .p-stepper-header.p-highlight .p-stepper-number { - background: #007bff; - color: #ffffff; - } - .p-stepper .p-stepper-header.p-highlight .p-stepper-title { - color: #212529; - } - .p-stepper .p-stepper-header:not(.p-disabled):focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator { - background-color: #007bff; - } - .p-stepper .p-stepper-panels { - background: #ffffff; - padding: 1.25rem; - color: #212529; - } - .p-stepper .p-stepper-separator { - background-color: #dee2e6; - width: 100%; - height: 2px; - margin-inline-start: 1rem; - transition: box-shadow 0.15s; - } - .p-stepper.p-stepper-vertical { - display: flex; - flex-direction: column; - } - .p-stepper.p-stepper-vertical .p-stepper-toggleable-content { - display: flex; - flex: 1 1 auto; - background: #ffffff; - color: #212529; - } - .p-stepper.p-stepper-vertical .p-stepper-panel { - display: flex; - flex-direction: column; - flex: initial; - } - .p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active { - flex: 1 1 auto; - } - .p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header { - flex: initial; - } - .p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content { - width: 100%; - padding-left: 1rem; - } - .p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator { - flex: 0 0 auto; - width: 2px; - height: auto; - margin-inline-start: calc(1.75rem + 2px); - } - .p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator { - background-color: #007bff; - } - .p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content { - padding-left: 3rem; - } - .p-scrollpanel .p-scrollpanel-bar { - background: #efefef; - border: 0 none; - } - .p-scrollpanel .p-scrollpanel-bar:focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-tabview-nav-container { - position: relative; - } - .p-tabview-scrollable .p-tabview-nav-container { - overflow: hidden; - } - .p-tabview-nav-content { - overflow-x: auto; - overflow-y: hidden; - scroll-behavior: smooth; - scrollbar-width: none; - overscroll-behavior: contain auto; - position: relative; - } - .p-tabview-nav { - display: flex; - margin: 0; - padding: 0; - list-style-type: none; - flex: 1 1 auto; - } - .p-tabview-nav-link { - cursor: pointer; - user-select: none; - display: flex; - align-items: center; - position: relative; - text-decoration: none; - overflow: hidden; - } - .p-tabview-ink-bar { - display: none; - z-index: 1; - } - .p-tabview-nav-link:focus { - z-index: 1; - } - .p-tabview-close { - z-index: 1; - } - .p-tabview-title { - line-height: 1; - white-space: nowrap; - } - .p-tabview-nav-btn { - position: absolute; - top: 0; - z-index: 2; - height: 100%; - display: flex; - align-items: center; - justify-content: center; - } - .p-tabview-nav-prev { - left: 0; - } - .p-tabview-nav-next { - right: 0; - } - .p-tabview-nav-content::-webkit-scrollbar { - display: none; - } - .p-tabview .p-tabview-nav { - background: transparent; - border: 1px solid #dee2e6; - border-width: 0 0 1px 0; - } - .p-tabview .p-tabview-nav li { - margin-right: 0; - } - .p-tabview .p-tabview-nav li .p-tabview-nav-link { - border: solid; - border-width: 1px; - border-color: #ffffff #ffffff #dee2e6 #ffffff; - background: #ffffff; - color: #6c757d; - padding: 0.75rem 1rem; - font-weight: 600; - border-top-right-radius: 4px; - border-top-left-radius: 4px; - transition: box-shadow 0.15s; - margin: 0 0 -1px 0; - } - .p-tabview .p-tabview-nav li .p-tabview-nav-link:not(.p-disabled):focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: inset 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-tabview .p-tabview-nav li:not(.p-highlight):not(.p-disabled):hover .p-tabview-nav-link { - background: #ffffff; - border-color: #dee2e6; - color: #6c757d; - } - .p-tabview .p-tabview-nav li.p-highlight .p-tabview-nav-link { - background: #ffffff; - border-color: #dee2e6 #dee2e6 #ffffff #dee2e6; - color: #495057; - } - .p-tabview .p-tabview-close { - margin-left: 0.5rem; - } - .p-tabview .p-tabview-nav-btn.p-link { - background: #ffffff; - color: #495057; - width: 2.357rem; - box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); - border-radius: 0; - } - .p-tabview .p-tabview-nav-btn.p-link:focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: inset 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-tabview .p-tabview-panels { - background: #ffffff; - padding: 1.25rem; - border: 0 none; - color: #212529; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; - } - .p-toolbar { - background: #efefef; - border: 1px solid #dee2e6; - padding: 1rem 1.25rem; - border-radius: 4px; - gap: 0.5rem; - } - .p-toolbar .p-toolbar-separator { - margin: 0 0.5rem; - } - .p-confirm-popup { - background: #ffffff; - color: #212529; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 4px; - box-shadow: none; - } - .p-confirm-popup .p-confirm-popup-content { - padding: 1.25rem; - } - .p-confirm-popup .p-confirm-popup-footer { - text-align: right; - padding: 0 1.25rem 1.25rem 1.25rem; - } - .p-confirm-popup .p-confirm-popup-footer button { - margin: 0 0.5rem 0 0; - width: auto; - } - .p-confirm-popup .p-confirm-popup-footer button:last-child { - margin: 0; - } - .p-confirm-popup:after { - border: solid transparent; - border-color: rgba(255, 255, 255, 0); - border-bottom-color: #ffffff; - } - .p-confirm-popup:before { - border: solid transparent; - border-color: rgba(0, 0, 0, 0); - border-bottom-color: rgba(0, 0, 0, 0.2); - } - .p-confirm-popup.p-confirm-popup-flipped:after { - border-top-color: #ffffff; - } - .p-confirm-popup.p-confirm-popup-flipped:before { - border-top-color: rgba(0, 0, 0, 0.2); - } - .p-confirm-popup .p-confirm-popup-icon { - font-size: 1.5rem; - } - .p-confirm-popup .p-confirm-popup-icon.p-icon { - width: 1.5rem; - height: 1.5rem; - } - .p-confirm-popup .p-confirm-popup-message { - margin-left: 1rem; - } - .p-dialog { - border-radius: 4px; - box-shadow: none; - border: 1px solid rgba(0, 0, 0, 0.2); - } - .p-dialog .p-dialog-header { - border-bottom: 1px solid #e9ecef; - background: #ffffff; - color: #212529; - padding: 1rem; - border-top-right-radius: 4px; - border-top-left-radius: 4px; - } - .p-dialog .p-dialog-header .p-dialog-title { - font-weight: 600; - font-size: 1.25rem; - } - .p-dialog .p-dialog-header .p-dialog-header-icon { - width: 2rem; - height: 2rem; - color: #6c757d; - border: 0 none; - background: transparent; - border-radius: 50%; - transition: box-shadow 0.15s; - margin-right: 0.5rem; - } - .p-dialog .p-dialog-header .p-dialog-header-icon:enabled:hover { - color: #495057; - border-color: transparent; - background: transparent; - } - .p-dialog .p-dialog-header .p-dialog-header-icon:focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-dialog .p-dialog-header .p-dialog-header-icon:last-child { - margin-right: 0; - } - .p-dialog .p-dialog-content { - background: #ffffff; - color: #212529; - padding: 1rem; - } - .p-dialog .p-dialog-content:last-of-type { - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; - } - .p-dialog .p-dialog-footer { - border-top: 1px solid #e9ecef; - background: #ffffff; - color: #212529; - padding: 1rem; - text-align: right; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; - } - .p-dialog .p-dialog-footer button { - margin: 0 0.5rem 0 0; - width: auto; - } - .p-dialog.p-dialog-maximized .p-dialog-header, .p-dialog.p-dialog-maximized .p-dialog-content:last-of-type { - border-radius: 0; - } - .p-dialog.p-confirm-dialog .p-confirm-dialog-icon { - font-size: 2rem; - } - .p-dialog.p-confirm-dialog .p-confirm-dialog-icon.p-icon { - width: 2rem; - height: 2rem; - } - .p-dialog.p-confirm-dialog .p-confirm-dialog-message { - margin-left: 1rem; - } - .p-overlaypanel { - background: #ffffff; - color: #212529; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 4px; - box-shadow: none; - } - .p-overlaypanel .p-overlaypanel-content { - padding: 1.25rem; - } - .p-overlaypanel .p-overlaypanel-close { - background: #007bff; - color: #ffffff; - width: 2rem; - height: 2rem; - transition: box-shadow 0.15s; - border-radius: 50%; - position: absolute; - top: -1rem; - right: -1rem; - } - .p-overlaypanel .p-overlaypanel-close:enabled:hover { - background: #0069d9; - color: #ffffff; - } - .p-overlaypanel:after { - border: solid transparent; - border-color: rgba(255, 255, 255, 0); - border-bottom-color: #ffffff; - } - .p-overlaypanel:before { - border: solid transparent; - border-color: rgba(0, 0, 0, 0); - border-bottom-color: rgba(0, 0, 0, 0.2); - } - .p-overlaypanel.p-overlaypanel-flipped:after { - border-top-color: #ffffff; - } - .p-overlaypanel.p-overlaypanel-flipped:before { - border-top-color: rgba(0, 0, 0, 0.2); - } - .p-sidebar { - background: #ffffff; - color: #212529; - border: 1px solid rgba(0, 0, 0, 0.2); - box-shadow: none; - } - .p-sidebar .p-sidebar-header { - padding: 1rem 1.25rem; - } - .p-sidebar .p-sidebar-header .p-sidebar-close, - .p-sidebar .p-sidebar-header .p-sidebar-icon { - width: 2rem; - height: 2rem; - color: #6c757d; - border: 0 none; - background: transparent; - border-radius: 50%; - transition: box-shadow 0.15s; - } - .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, - .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover { - color: #495057; - border-color: transparent; - background: transparent; - } - .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, - .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-sidebar .p-sidebar-header + .p-sidebar-content { - padding-top: 0; - } - .p-sidebar .p-sidebar-content { - padding: 1.25rem; - } - .p-tooltip .p-tooltip-text { - background: #212529; - color: #ffffff; - padding: 0.5rem 0.75rem; - box-shadow: none; - border-radius: 4px; - } - .p-tooltip.p-tooltip-right .p-tooltip-arrow { - border-right-color: #212529; - } - .p-tooltip.p-tooltip-left .p-tooltip-arrow { - border-left-color: #212529; - } - .p-tooltip.p-tooltip-top .p-tooltip-arrow { - border-top-color: #212529; - } - .p-tooltip.p-tooltip-bottom .p-tooltip-arrow { - border-bottom-color: #212529; - } - .p-fileupload .p-fileupload-buttonbar { - background: #efefef; - padding: 1rem 1.25rem; - border: 1px solid #dee2e6; - color: #212529; - border-bottom: 0 none; - border-top-right-radius: 4px; - border-top-left-radius: 4px; - gap: 0.5rem; - } - .p-fileupload .p-fileupload-buttonbar .p-button { - margin-right: 0.5rem; - } - .p-fileupload .p-fileupload-content { - background: #ffffff; - padding: 2rem 1rem; - border: 1px solid #dee2e6; - color: #212529; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; - } - .p-fileupload .p-progressbar { - height: 0.25rem; - } - .p-fileupload .p-fileupload-row > div { - padding: 1rem 1rem; - } - .p-fileupload.p-fileupload-advanced .p-message { - margin-top: 0; - } - .p-breadcrumb { - background: #efefef; - border: 0 none; - border-radius: 4px; - padding: 1rem; - } - .p-breadcrumb .p-breadcrumb-list li .p-menuitem-link { - transition: box-shadow 0.15s; - border-radius: 4px; - } - .p-breadcrumb .p-breadcrumb-list li .p-menuitem-link:focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-breadcrumb .p-breadcrumb-list li .p-menuitem-link .p-menuitem-text { - color: #007bff; - } - .p-breadcrumb .p-breadcrumb-list li .p-menuitem-link .p-menuitem-icon { - color: #007bff; - } - .p-breadcrumb .p-breadcrumb-list li.p-menuitem-separator { - margin: 0 0.5rem 0 0.5rem; - color: #6c757d; - } - .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-text { - color: #6c757d; - } - .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon { - color: #6c757d; - } - .p-contextmenu { - padding: 0.5rem 0; - background: #ffffff; - color: #212529; - border: 1px solid rgba(0, 0, 0, 0.15); - box-shadow: none; - border-radius: 4px; - width: 12.5rem; - } - .p-contextmenu .p-contextmenu-root-list { - outline: 0 none; - } - .p-contextmenu .p-submenu-list { - padding: 0.5rem 0; - background: #ffffff; - border: 1px solid rgba(0, 0, 0, 0.15); - box-shadow: none; - border-radius: 4px; - } - .p-contextmenu .p-menuitem > .p-menuitem-content { - color: #212529; - transition: box-shadow 0.15s; - border-radius: 0; - } - .p-contextmenu .p-menuitem > .p-menuitem-content .p-menuitem-link { - color: #212529; - padding: 0.75rem 1rem; - user-select: none; - } - .p-contextmenu .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-contextmenu .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-icon { - color: #212529; - margin-right: 0.5rem; - } - .p-contextmenu .p-menuitem > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content { - color: #212529; - background: #e9ecef; - } - .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, - .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { - background: #e9ecef; - } - .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { - color: #212529; - background: #dee2e6; - } - .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, - .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { - color: #212529; - background: #e9ecef; - } - .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, - .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-contextmenu .p-menuitem-separator { - border-top: 1px solid #dee2e6; - margin: 0.5rem 0; - } - .p-contextmenu .p-submenu-icon { - font-size: 0.875rem; - } - .p-contextmenu .p-submenu-icon.p-icon { - width: 0.875rem; - height: 0.875rem; - } - .p-dock .p-dock-list-container { - background: rgba(255, 255, 255, 0.1); - border: 1px solid rgba(255, 255, 255, 0.2); - padding: 0.5rem 0.5rem; - border-radius: 0.5rem; - } - .p-dock .p-dock-list-container .p-dock-list { - outline: 0 none; - } - .p-dock .p-dock-item { - padding: 0.5rem; - border-radius: 4px; - } - .p-dock .p-dock-item.p-focus { - outline: 0 none; - outline-offset: 0; - box-shadow: inset 0 0 0 0.15rem rgba(38, 143, 255, 0.5); - } - .p-dock .p-dock-action { - width: 4rem; - height: 4rem; - } - .p-dock.p-dock-top .p-dock-item-second-prev, - .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, - .p-dock.p-dock-bottom .p-dock-item-second-next { - margin: 0 0.9rem; - } - .p-dock.p-dock-top .p-dock-item-prev, - .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, - .p-dock.p-dock-bottom .p-dock-item-next { - margin: 0 1.3rem; - } - .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current { - margin: 0 1.5rem; - } - .p-dock.p-dock-left .p-dock-item-second-prev, - .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, - .p-dock.p-dock-right .p-dock-item-second-next { - margin: 0.9rem 0; - } - .p-dock.p-dock-left .p-dock-item-prev, - .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, - .p-dock.p-dock-right .p-dock-item-next { - margin: 1.3rem 0; - } - .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current { - margin: 1.5rem 0; - } - .p-dock.p-dock-mobile.p-dock-top .p-dock-list-container, .p-dock.p-dock-mobile.p-dock-bottom .p-dock-list-container { - overflow-x: auto; - width: 100%; - } - .p-dock.p-dock-mobile.p-dock-top .p-dock-list-container .p-dock-list, .p-dock.p-dock-mobile.p-dock-bottom .p-dock-list-container .p-dock-list { - margin: 0 auto; - } - .p-dock.p-dock-mobile.p-dock-left .p-dock-list-container, .p-dock.p-dock-mobile.p-dock-right .p-dock-list-container { - overflow-y: auto; - height: 100%; - } - .p-dock.p-dock-mobile.p-dock-left .p-dock-list-container .p-dock-list, .p-dock.p-dock-mobile.p-dock-right .p-dock-list-container .p-dock-list { - margin: auto 0; - } - .p-dock.p-dock-mobile .p-dock-list .p-dock-item { - transform: none; - margin: 0; - } - .p-dock.p-dock-mobile.p-dock-magnification.p-dock-top .p-dock-item-second-prev, - .p-dock.p-dock-mobile.p-dock-magnification.p-dock-top .p-dock-item-second-next, - .p-dock.p-dock-mobile.p-dock-magnification.p-dock-top .p-dock-item-prev, - .p-dock.p-dock-mobile.p-dock-magnification.p-dock-top .p-dock-item-next, - .p-dock.p-dock-mobile.p-dock-magnification.p-dock-top .p-dock-item-current, .p-dock.p-dock-mobile.p-dock-magnification.p-dock-bottom .p-dock-item-second-prev, - .p-dock.p-dock-mobile.p-dock-magnification.p-dock-bottom .p-dock-item-second-next, - .p-dock.p-dock-mobile.p-dock-magnification.p-dock-bottom .p-dock-item-prev, - .p-dock.p-dock-mobile.p-dock-magnification.p-dock-bottom .p-dock-item-next, - .p-dock.p-dock-mobile.p-dock-magnification.p-dock-bottom .p-dock-item-current, .p-dock.p-dock-mobile.p-dock-magnification.p-dock-left .p-dock-item-second-prev, - .p-dock.p-dock-mobile.p-dock-magnification.p-dock-left .p-dock-item-second-next, - .p-dock.p-dock-mobile.p-dock-magnification.p-dock-left .p-dock-item-prev, - .p-dock.p-dock-mobile.p-dock-magnification.p-dock-left .p-dock-item-next, - .p-dock.p-dock-mobile.p-dock-magnification.p-dock-left .p-dock-item-current, .p-dock.p-dock-mobile.p-dock-magnification.p-dock-right .p-dock-item-second-prev, - .p-dock.p-dock-mobile.p-dock-magnification.p-dock-right .p-dock-item-second-next, - .p-dock.p-dock-mobile.p-dock-magnification.p-dock-right .p-dock-item-prev, - .p-dock.p-dock-mobile.p-dock-magnification.p-dock-right .p-dock-item-next, - .p-dock.p-dock-mobile.p-dock-magnification.p-dock-right .p-dock-item-current { - transform: none; - margin: 0; - } - .p-megamenu { - padding: 0.5rem 1rem; - background: #efefef; - color: rgba(0, 0, 0, 0.9); - border: 0 none; - border-radius: 4px; - } - .p-megamenu .p-megamenu-root-list { - outline: 0 none; - } - .p-megamenu .p-menuitem > .p-menuitem-content { - color: #212529; - transition: box-shadow 0.15s; - border-radius: 0; - } - .p-megamenu .p-menuitem > .p-menuitem-content .p-menuitem-link { - color: #212529; - padding: 0.75rem 1rem; - user-select: none; - } - .p-megamenu .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-megamenu .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-icon { - color: #212529; - margin-right: 0.5rem; - } - .p-megamenu .p-menuitem > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content { - color: #212529; - background: #e9ecef; - } - .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, - .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { - background: #e9ecef; - } - .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { - color: #212529; - background: #dee2e6; - } - .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, - .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { - color: #212529; - background: #e9ecef; - } - .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, - .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-megamenu .p-megamenu-panel { - background: #ffffff; - color: #212529; - border: 1px solid rgba(0, 0, 0, 0.15); - box-shadow: none; - } - .p-megamenu .p-submenu-header { - margin: 0; - padding: 0.75rem 1rem; - color: #212529; - background: #ffffff; - font-weight: 600; - border-top-right-radius: 4px; - border-top-left-radius: 4px; - } - .p-megamenu .p-submenu-list { - padding: 0.5rem 0; - width: 12.5rem; - } - .p-megamenu .p-submenu-list .p-menuitem-separator { - border-top: 1px solid #dee2e6; - margin: 0.5rem 0; - } - .p-megamenu.p-megamenu-vertical { - width: 12.5rem; - padding: 0.5rem 0; - } - .p-megamenu .p-megamenu-button { - width: 2rem; - height: 2rem; - color: rgba(0, 0, 0, 0.5); - border-radius: 50%; - transition: box-shadow 0.15s; - } - .p-megamenu .p-megamenu-button:hover { - color: rgba(0, 0, 0, 0.7); - background: transparent; - } - .p-megamenu .p-megamenu-button:focus { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content { - color: rgba(0, 0, 0, 0.5); - transition: box-shadow 0.15s; - border-radius: 4px; - } - .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content .p-menuitem-link { - padding: 1rem; - user-select: none; - } - .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: rgba(0, 0, 0, 0.5); - } - .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-icon { - color: rgba(0, 0, 0, 0.5); - margin-right: 0.5rem; - } - .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: rgba(0, 0, 0, 0.5); - margin-left: 0.5rem; - } - .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { - color: rgba(0, 0, 0, 0.7); - background: transparent; - } - .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-text { - color: rgba(0, 0, 0, 0.7); - } - .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, - .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { - color: rgba(0, 0, 0, 0.7); - } - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list { - padding: 0.5rem 0; - background: #ffffff; - border: 1px solid rgba(0, 0, 0, 0.15); - box-shadow: none; - } - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list .p-menu-separator { - border-top: 1px solid #dee2e6; - margin: 0.5rem 0; - } - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list .p-submenu-icon { - font-size: 0.875rem; - } - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list .p-submenu-icon.p-icon { - width: 0.875rem; - height: 0.875rem; - } - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem { - width: 100%; - position: static; - } - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link > .p-menuitem-content { - color: #212529; - transition: box-shadow 0.15s; - border-radius: 0; - } - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link > .p-menuitem-content .p-menuitem-link { - color: #212529; - padding: 0.75rem 1rem; - user-select: none; - } - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link > .p-menuitem-content .p-menuitem-link .p-menuitem-icon { - color: #212529; - margin-right: 0.5rem; - } - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link.p-highlight > .p-menuitem-content { - color: #212529; - background: #e9ecef; - } - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link.p-highlight.p-focus > .p-menuitem-content { - background: #e9ecef; - } - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { - color: #212529; - background: #dee2e6; - } - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { - color: #212529; - background: #e9ecef; - } - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon { - margin-left: auto; - } - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon { - transform: rotate(-180deg); - } - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list .p-submenu-list { - width: 100%; - position: static; - box-shadow: none; - border: 0 none; - } - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list .p-submenu-list .p-submenu-icon { - transition: transform 0.15s; - transform: rotate(90deg); - } - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon { - transform: rotate(-90deg); - } - .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list .p-menuitem { - width: 100%; - position: static; - } - .p-menu { - padding: 0.5rem 0; - background: #ffffff; - color: #212529; - border: 1px solid #dee2e6; - border-radius: 4px; - width: 12.5rem; - } - .p-menu .p-menuitem > .p-menuitem-content { - color: #212529; - transition: box-shadow 0.15s; - border-radius: 0; - } - .p-menu .p-menuitem > .p-menuitem-content .p-menuitem-link { - color: #212529; - padding: 0.75rem 1rem; - user-select: none; - } - .p-menu .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-menu .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-icon { - color: #212529; - margin-right: 0.5rem; - } - .p-menu .p-menuitem > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-menu .p-menuitem.p-highlight > .p-menuitem-content { - color: #212529; - background: #e9ecef; - } - .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, - .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { - background: #e9ecef; - } - .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { - color: #212529; - background: #dee2e6; - } - .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, - .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { - color: #212529; - background: #e9ecef; - } - .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, - .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-menu.p-menu-overlay { - background: #ffffff; - border: 1px solid rgba(0, 0, 0, 0.15); - box-shadow: none; - } - .p-menu .p-submenu-header { - margin: 0; - padding: 0.75rem 1rem; - color: #212529; - background: #ffffff; - font-weight: 600; - border-top-right-radius: 0; - border-top-left-radius: 0; - } - .p-menu .p-menu-separator { - border-top: 1px solid #dee2e6; - margin: 0.5rem 0; - } - .p-menubar { - padding: 0.5rem 1rem; - background: #efefef; - color: rgba(0, 0, 0, 0.9); - border: 0 none; - border-radius: 4px; - } - .p-menubar .p-menubar-root-list { - outline: 0 none; - } - .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-content { - color: rgba(0, 0, 0, 0.5); - transition: box-shadow 0.15s; - border-radius: 4px; - } - .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-content .p-menuitem-link { - padding: 1rem; - user-select: none; - } - .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: rgba(0, 0, 0, 0.5); - } - .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-icon { - color: rgba(0, 0, 0, 0.5); - margin-right: 0.5rem; - } - .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: rgba(0, 0, 0, 0.5); - margin-left: 0.5rem; - } - .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { - color: rgba(0, 0, 0, 0.7); - background: transparent; - } - .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-text { - color: rgba(0, 0, 0, 0.7); - } - .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, - .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { - color: rgba(0, 0, 0, 0.7); - } - .p-menubar .p-menuitem > .p-menuitem-content { - color: #212529; - transition: box-shadow 0.15s; - border-radius: 0; - } - .p-menubar .p-menuitem > .p-menuitem-content .p-menuitem-link { - color: #212529; - padding: 0.75rem 1rem; - user-select: none; - } - .p-menubar .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-menubar .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-icon { - color: #212529; - margin-right: 0.5rem; - } - .p-menubar .p-menuitem > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-menubar .p-menuitem.p-highlight > .p-menuitem-content { - color: #212529; - background: #e9ecef; - } - .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, - .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content { - background: #e9ecef; - } - .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { - color: #212529; - background: #dee2e6; - } - .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, - .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { - color: #212529; - background: #e9ecef; - } - .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, - .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-menubar .p-submenu-list { - padding: 0.5rem 0; - background: #ffffff; - border: 1px solid rgba(0, 0, 0, 0.15); - box-shadow: none; - width: 12.5rem; - } - .p-menubar .p-submenu-list .p-menuitem-separator { - border-top: 1px solid #dee2e6; - margin: 0.5rem 0; - } - .p-menubar .p-submenu-list .p-submenu-icon { - font-size: 0.875rem; - } - .p-menubar.p-menubar-mobile .p-menubar-button { - width: 2rem; - height: 2rem; - color: rgba(0, 0, 0, 0.5); - border-radius: 50%; - transition: box-shadow 0.15s; - } - .p-menubar.p-menubar-mobile .p-menubar-button:hover { - color: rgba(0, 0, 0, 0.7); - background: transparent; - } - .p-menubar.p-menubar-mobile .p-menubar-button:focus { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-menubar.p-menubar-mobile .p-menubar-root-list { - padding: 0.5rem 0; - background: #ffffff; - border: 1px solid rgba(0, 0, 0, 0.15); - box-shadow: none; - } - .p-menubar.p-menubar-mobile .p-menubar-root-list .p-menuitem-separator { - border-top: 1px solid #dee2e6; - margin: 0.5rem 0; - } - .p-menubar.p-menubar-mobile .p-menubar-root-list .p-submenu-icon { - font-size: 0.875rem; - } - .p-menubar.p-menubar-mobile .p-menubar-root-list .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { - margin-left: auto; - transition: transform 0.15s; - } - .p-menubar.p-menubar-mobile .p-menubar-root-list .p-menuitem.p-menuitem-active > .p-menuitem-content > .p-menuitem-link > .p-submenu-icon { - transform: rotate(-180deg); - } - .p-menubar.p-menubar-mobile .p-menubar-root-list .p-submenu-list .p-submenu-icon { - transition: transform 0.15s; - transform: rotate(90deg); - } - .p-menubar.p-menubar-mobile .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-content > .p-menuitem-link > .p-submenu-icon { - transform: rotate(-90deg); - } - .p-menubar.p-menubar-mobile .p-menubar-root-list ul li a { - padding-left: 2.25rem; - } - .p-menubar.p-menubar-mobile .p-menubar-root-list ul li ul li a { - padding-left: 3.75rem; - } - .p-menubar.p-menubar-mobile .p-menubar-root-list ul li ul li ul li a { - padding-left: 5.25rem; - } - .p-menubar.p-menubar-mobile .p-menubar-root-list ul li ul li ul li ul li a { - padding-left: 6.75rem; - } - .p-menubar.p-menubar-mobile .p-menubar-root-list ul li ul li ul li ul li ul li a { - padding-left: 8.25rem; - } - @media screen and (max-width: 960px) { - .p-menubar { - position: relative; - } - .p-menubar .p-menubar-button { - display: flex; - width: 2rem; - height: 2rem; - color: rgba(0, 0, 0, 0.5); - border-radius: 50%; - transition: box-shadow 0.15s; - } - .p-menubar .p-menubar-button:hover { - color: rgba(0, 0, 0, 0.7); - background: transparent; - } - .p-menubar .p-menubar-button:focus { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-menubar .p-menubar-root-list { - position: absolute; - display: none; - padding: 0.5rem 0; - background: #ffffff; - border: 1px solid rgba(0, 0, 0, 0.15); - box-shadow: none; - width: 100%; - } - .p-menubar .p-menubar-root-list .p-menu-separator { - border-top: 1px solid #dee2e6; - margin: 0.5rem 0; - } - .p-menubar .p-menubar-root-list .p-submenu-icon { - font-size: 0.875rem; - } - .p-menubar .p-menubar-root-list .p-submenu-icon.p-icon { - width: 0.875rem; - height: 0.875rem; - } - .p-menubar .p-menubar-root-list > .p-menuitem { - width: 100%; - position: static; - } - .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-menuitem-content { - color: #212529; - transition: box-shadow 0.15s; - border-radius: 0; - } - .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-menuitem-content .p-menuitem-link { - color: #212529; - padding: 0.75rem 1rem; - user-select: none; - } - .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-menuitem-content .p-menuitem-link .p-menuitem-icon { - color: #212529; - margin-right: 0.5rem; - } - .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link.p-highlight > .p-menuitem-content { - color: #212529; - background: #e9ecef; - } - .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, - .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link.p-highlight.p-focus > .p-menuitem-content { - background: #e9ecef; - } - .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { - color: #212529; - background: #dee2e6; - } - .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, - .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { - color: #212529; - background: #e9ecef; - } - .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, - .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon { - margin-left: auto; - transition: transform 0.15s; - } - .p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon { - transform: rotate(-180deg); - } - .p-menubar .p-menubar-root-list .p-submenu-list { - width: 100%; - position: static; - box-shadow: none; - border: 0 none; - } - .p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon { - transition: transform 0.15s; - transform: rotate(90deg); - } - .p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon { - transform: rotate(-90deg); - } - .p-menubar .p-menubar-root-list .p-menuitem { - width: 100%; - position: static; - } - .p-menubar .p-menubar-root-list ul li a { - padding-left: 2.25rem; - } - .p-menubar .p-menubar-root-list ul li ul li a { - padding-left: 3.75rem; - } - .p-menubar .p-menubar-root-list ul li ul li ul li a { - padding-left: 5.25rem; - } - .p-menubar .p-menubar-root-list ul li ul li ul li ul li a { - padding-left: 6.75rem; - } - .p-menubar .p-menubar-root-list ul li ul li ul li ul li ul li a { - padding-left: 8.25rem; - } - .p-menubar.p-menubar-mobile-active .p-menubar-root-list { - display: flex; - flex-direction: column; - top: 100%; - left: 0; - z-index: 1; - } - } - .p-panelmenu .p-panelmenu-header { - outline: 0 none; - } - .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content { - border: 1px solid #dee2e6; - color: #212529; - background: #efefef; - border-radius: 4px; - transition: box-shadow 0.15s; - } - .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-link { - color: #212529; - padding: 1rem 1.25rem; - font-weight: 600; - } - .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-link .p-submenu-icon { - margin-right: 0.5rem; - } - .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-link .p-menuitem-icon { - margin-right: 0.5rem; - } - .p-panelmenu .p-panelmenu-header:not(.p-disabled):focus-visible .p-panelmenu-header-content { - outline: 0 none; - outline-offset: 0; - box-shadow: inset 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-panelmenu .p-panelmenu-header:not(.p-highlight):not(.p-disabled):hover .p-panelmenu-header-content { - background: #e9ecef; - border-color: #dee2e6; - color: #212529; - } - .p-panelmenu .p-panelmenu-header:not(.p-disabled).p-highlight .p-panelmenu-header-content { - background: #efefef; - border-color: #dee2e6; - color: #212529; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; - margin-bottom: 0; - } - .p-panelmenu .p-panelmenu-header:not(.p-disabled).p-highlight:hover .p-panelmenu-header-content { - border-color: #dee2e6; - background: #e9ecef; - color: #212529; - } - .p-panelmenu .p-panelmenu-content { - padding: 0.5rem 0; - border: 1px solid #dee2e6; - background: #ffffff; - color: #212529; - border-top: 0; - border-top-right-radius: 0; - border-top-left-radius: 0; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; - } - .p-panelmenu .p-panelmenu-content .p-panelmenu-root-list { - outline: 0 none; - } - .p-panelmenu .p-panelmenu-content .p-menuitem > .p-menuitem-content { - color: #212529; - transition: box-shadow 0.15s; - border-radius: 0; - } - .p-panelmenu .p-panelmenu-content .p-menuitem > .p-menuitem-content .p-menuitem-link { - color: #212529; - padding: 0.75rem 1rem; - user-select: none; - } - .p-panelmenu .p-panelmenu-content .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-panelmenu .p-panelmenu-content .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-icon { - color: #212529; - margin-right: 0.5rem; - } - .p-panelmenu .p-panelmenu-content .p-menuitem > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content { - color: #212529; - background: #e9ecef; - } - .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, - .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content { - background: #e9ecef; - } - .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { - color: #212529; - background: #dee2e6; - } - .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, - .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { - color: #212529; - background: #e9ecef; - } - .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, - .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon { - margin-right: 0.5rem; - } - .p-panelmenu .p-panelmenu-content .p-menuitem-separator { - border-top: 1px solid #dee2e6; - margin: 0.5rem 0; - } - .p-panelmenu .p-panelmenu-content .p-submenu-list:not(.p-panelmenu-root-list) { - padding: 0 0 0 1rem; - } - .p-panelmenu .p-panelmenu-panel { - margin-bottom: 0; - } - .p-panelmenu .p-panelmenu-panel .p-panelmenu-header .p-panelmenu-header-content { - border-radius: 0; - } - .p-panelmenu .p-panelmenu-panel .p-panelmenu-content { - border-radius: 0; - } - .p-panelmenu .p-panelmenu-panel:not(:first-child) .p-panelmenu-header .p-panelmenu-header-content { - border-top: 0 none; - } - .p-panelmenu .p-panelmenu-panel:not(:first-child) .p-panelmenu-header:not(.p-highlight):not(.p-disabled):hover .p-panelmenu-header-content, .p-panelmenu .p-panelmenu-panel:not(:first-child) .p-panelmenu-header:not(.p-disabled).p-highlight:hover .p-panelmenu-header-content { - border-top: 0 none; - } - .p-panelmenu .p-panelmenu-panel:first-child .p-panelmenu-header .p-panelmenu-header-content { - border-top-right-radius: 4px; - border-top-left-radius: 4px; - } - .p-panelmenu .p-panelmenu-panel:last-child .p-panelmenu-header:not(.p-highlight) .p-panelmenu-header-content { - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; - } - .p-panelmenu .p-panelmenu-panel:last-child .p-panelmenu-content { - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; - } - .p-slidemenu { - padding: 0.5rem 0; - background: #ffffff; - color: #212529; - border: 1px solid #dee2e6; - border-radius: 4px; - width: 12.5rem; - } - .p-slidemenu .p-menuitem-link > .p-menuitem-content { - color: #212529; - transition: box-shadow 0.15s; - border-radius: 0; - } - .p-slidemenu .p-menuitem-link > .p-menuitem-content .p-menuitem-link { - color: #212529; - padding: 0.75rem 1rem; - user-select: none; - } - .p-slidemenu .p-menuitem-link > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-slidemenu .p-menuitem-link > .p-menuitem-content .p-menuitem-link .p-menuitem-icon { - color: #212529; - margin-right: 0.5rem; - } - .p-slidemenu .p-menuitem-link > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-slidemenu .p-menuitem-link.p-highlight > .p-menuitem-content { - color: #212529; - background: #e9ecef; - } - .p-slidemenu .p-menuitem-link.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-slidemenu .p-menuitem-link.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, - .p-slidemenu .p-menuitem-link.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-slidemenu .p-menuitem-link.p-highlight.p-focus > .p-menuitem-content { - background: #e9ecef; - } - .p-slidemenu .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { - color: #212529; - background: #dee2e6; - } - .p-slidemenu .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-slidemenu .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, - .p-slidemenu .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-slidemenu .p-menuitem-link:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { - color: #212529; - background: #e9ecef; - } - .p-slidemenu .p-menuitem-link:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-slidemenu .p-menuitem-link:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, - .p-slidemenu .p-menuitem-link:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-slidemenu.p-slidemenu-overlay { - background: #ffffff; - border: 1px solid rgba(0, 0, 0, 0.15); - box-shadow: none; - } - .p-slidemenu .p-slidemenu-list { - padding: 0.5rem 0; - background: #ffffff; - border: 1px solid rgba(0, 0, 0, 0.15); - box-shadow: none; - } - .p-slidemenu .p-slidemenu.p-slidemenu-active > .p-slidemenu-link { - background: #e9ecef; - } - .p-slidemenu .p-slidemenu.p-slidemenu-active > .p-slidemenu-link .p-slidemenu-text { - color: #212529; - } - .p-slidemenu .p-slidemenu.p-slidemenu-active > .p-slidemenu-link .p-slidemenu-icon, .p-slidemenu .p-slidemenu.p-slidemenu-active > .p-slidemenu-link .p-slidemenu-icon { - color: #212529; - } - .p-slidemenu .p-slidemenu-separator { - border-top: 1px solid #dee2e6; - margin: 0.5rem 0; - } - .p-slidemenu .p-slidemenu-icon { - font-size: 0.875rem; - } - .p-slidemenu .p-slidemenu-icon.p-icon { - width: 0.875rem; - height: 0.875rem; - } - .p-slidemenu .p-slidemenu-backward { - padding: 0.75rem 1rem; - color: #212529; - } - .p-steps .p-steps-item .p-menuitem-link { - background: transparent; - transition: box-shadow 0.15s; - border-radius: 4px; - background: transparent; - } - .p-steps .p-steps-item .p-menuitem-link .p-steps-number { - color: #212529; - border: 1px solid #dee2e6; - background: transparent; - min-width: 2rem; - height: 2rem; - line-height: 2rem; - font-size: 1.143rem; - z-index: 1; - border-radius: 4px; - } - .p-steps .p-steps-item .p-menuitem-link .p-steps-title { - margin-top: 0.5rem; - color: #6c757d; - } - .p-steps .p-steps-item .p-menuitem-link:not(.p-disabled):focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-steps .p-steps-item.p-highlight .p-steps-number { - background: #007bff; - color: #ffffff; - } - .p-steps .p-steps-item.p-highlight .p-steps-title { - font-weight: 600; - color: #212529; - } - .p-steps .p-steps-item:before { - content: " "; - border-top: 1px solid #dee2e6; - width: 100%; - top: 50%; - left: 0; - display: block; - position: absolute; - margin-top: -1rem; - } - .p-tabmenu .p-tabmenu-nav { - background: transparent; - border: 1px solid #dee2e6; - border-width: 0 0 1px 0; - } - .p-tabmenu .p-tabmenu-nav .p-tabmenuitem { - margin-right: 0; - } - .p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link { - border: solid; - border-width: 1px; - border-color: #ffffff #ffffff #dee2e6 #ffffff; - background: #ffffff; - color: #6c757d; - padding: 0.75rem 1rem; - font-weight: 600; - border-top-right-radius: 4px; - border-top-left-radius: 4px; - transition: box-shadow 0.15s; - margin: 0 0 -1px 0; - height: calc(100% + 1px); - } - .p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link .p-menuitem-icon { - margin-right: 0.5rem; - } - .p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link:not(.p-disabled):focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: inset 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-tabmenu .p-tabmenu-nav .p-tabmenuitem:not(.p-highlight):not(.p-disabled):hover .p-menuitem-link { - background: #ffffff; - border-color: #dee2e6; - color: #6c757d; - } - .p-tabmenu .p-tabmenu-nav .p-tabmenuitem.p-highlight .p-menuitem-link { - background: #ffffff; - border-color: #dee2e6 #dee2e6 #ffffff #dee2e6; - color: #495057; - } - .p-tieredmenu { - padding: 0.5rem 0; - background: #ffffff; - color: #212529; - border: 1px solid #dee2e6; - border-radius: 4px; - width: 12.5rem; - } - .p-tieredmenu.p-tieredmenu-overlay { - background: #ffffff; - border: 1px solid rgba(0, 0, 0, 0.15); - box-shadow: none; - } - .p-tieredmenu .p-tieredmenu-root-list { - outline: 0 none; - } - .p-tieredmenu .p-submenu-list { - padding: 0.5rem 0; - background: #ffffff; - border: 1px solid rgba(0, 0, 0, 0.15); - box-shadow: none; - } - .p-tieredmenu .p-menuitem > .p-menuitem-content { - color: #212529; - transition: box-shadow 0.15s; - border-radius: 0; - } - .p-tieredmenu .p-menuitem > .p-menuitem-content .p-menuitem-link { - color: #212529; - padding: 0.75rem 1rem; - user-select: none; - } - .p-tieredmenu .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-tieredmenu .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-icon { - color: #212529; - margin-right: 0.5rem; - } - .p-tieredmenu .p-menuitem > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content { - color: #212529; - background: #e9ecef; - } - .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, - .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content { - background: #e9ecef; - } - .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content { - color: #212529; - background: #dee2e6; - } - .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, - .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover { - color: #212529; - background: #e9ecef; - } - .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-text { - color: #212529; - } - .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, - .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon { - color: #212529; - } - .p-tieredmenu .p-menuitem-separator { - border-top: 1px solid #dee2e6; - margin: 0.5rem 0; - } - .p-tieredmenu .p-submenu-icon { - font-size: 0.875rem; - } - .p-tieredmenu .p-submenu-icon.p-icon { - width: 0.875rem; - height: 0.875rem; - } - .p-inline-message { - padding: 0.5rem 0.75rem; - margin: 0; - border-radius: 4px; - } - .p-inline-message.p-inline-message-info { - background: #cce5ff; - border: solid #b8daff; - border-width: 0px; - color: #004085; - } - .p-inline-message.p-inline-message-info .p-inline-message-icon { - color: #004085; - } - .p-inline-message.p-inline-message-success { - background: #d4edda; - border: solid #c3e6cb; - border-width: 0px; - color: #155724; - } - .p-inline-message.p-inline-message-success .p-inline-message-icon { - color: #155724; - } - .p-inline-message.p-inline-message-warn { - background: #fff3cd; - border: solid #ffeeba; - border-width: 0px; - color: #856404; - } - .p-inline-message.p-inline-message-warn .p-inline-message-icon { - color: #856404; - } - .p-inline-message.p-inline-message-error { - background: #f8d7da; - border: solid #f5c6cb; - border-width: 0px; - color: #721c24; - } - .p-inline-message.p-inline-message-error .p-inline-message-icon { - color: #721c24; - } - .p-inline-message .p-inline-message-icon { - font-size: 1rem; - margin-right: 0.5rem; - } - .p-inline-message .p-inline-message-icon.p-icon { - width: 1rem; - height: 1rem; - } - .p-inline-message .p-inline-message-text { - font-size: 1rem; - } - .p-inline-message.p-inline-message-icon-only .p-inline-message-icon { - margin-right: 0; - } - .p-message { - margin: 1rem 0; - border-radius: 4px; - } - .p-message .p-message-wrapper { - padding: 1rem 1.25rem; - } - .p-message .p-message-close { - width: 2rem; - height: 2rem; - border-radius: 50%; - background: transparent; - transition: box-shadow 0.15s; - } - .p-message .p-message-close:hover { - background: rgba(255, 255, 255, 0.5); - } - .p-message .p-message-close:focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-message.p-message-info { - background: #cce5ff; - border: solid #b8daff; - border-width: 1px; - color: #004085; - } - .p-message.p-message-info .p-message-icon { - color: #004085; - } - .p-message.p-message-info .p-message-close { - color: #004085; - } - .p-message.p-message-success { - background: #d4edda; - border: solid #c3e6cb; - border-width: 1px; - color: #155724; - } - .p-message.p-message-success .p-message-icon { - color: #155724; - } - .p-message.p-message-success .p-message-close { - color: #155724; - } - .p-message.p-message-warn { - background: #fff3cd; - border: solid #ffeeba; - border-width: 1px; - color: #856404; - } - .p-message.p-message-warn .p-message-icon { - color: #856404; - } - .p-message.p-message-warn .p-message-close { - color: #856404; - } - .p-message.p-message-error { - background: #f8d7da; - border: solid #f5c6cb; - border-width: 1px; - color: #721c24; - } - .p-message.p-message-error .p-message-icon { - color: #721c24; - } - .p-message.p-message-error .p-message-close { - color: #721c24; - } - .p-message .p-message-text { - font-size: 1rem; - font-weight: 500; - } - .p-message .p-message-icon { - font-size: 1.5rem; - margin-right: 0.5rem; - } - .p-message .p-message-icon.p-icon { - width: 1.5rem; - height: 1.5rem; - } - .p-message .p-message-summary { - font-weight: 700; - } - .p-message .p-message-detail { - margin-left: 0.5rem; - } - .p-toast { - opacity: 1; - } - .p-toast .p-toast-message { - margin: 0 0 1rem 0; - box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1); - border-radius: 4px; - } - .p-toast .p-toast-message .p-toast-message-content { - padding: 1rem; - border-width: 0; - } - .p-toast .p-toast-message .p-toast-message-content .p-toast-message-text { - margin: 0 0 0 1rem; - } - .p-toast .p-toast-message .p-toast-message-content .p-toast-message-icon { - font-size: 2rem; - } - .p-toast .p-toast-message .p-toast-message-content .p-toast-message-icon.p-icon { - width: 2rem; - height: 2rem; - } - .p-toast .p-toast-message .p-toast-message-content .p-toast-summary { - font-weight: 700; - } - .p-toast .p-toast-message .p-toast-message-content .p-toast-detail { - margin: 0.5rem 0 0 0; - } - .p-toast .p-toast-message .p-toast-icon-close { - width: 2rem; - height: 2rem; - border-radius: 50%; - background: transparent; - transition: box-shadow 0.15s; - } - .p-toast .p-toast-message .p-toast-icon-close:hover { - background: rgba(255, 255, 255, 0.5); - } - .p-toast .p-toast-message .p-toast-icon-close:focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-toast .p-toast-message.p-toast-message-info { - background: #cce5ff; - border: solid #b8daff; - border-width: 1px; - color: #004085; - } - .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, - .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close { - color: #004085; - } - .p-toast .p-toast-message.p-toast-message-success { - background: #d4edda; - border: solid #c3e6cb; - border-width: 1px; - color: #155724; - } - .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, - .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close { - color: #155724; - } - .p-toast .p-toast-message.p-toast-message-warn { - background: #fff3cd; - border: solid #ffeeba; - border-width: 1px; - color: #856404; - } - .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, - .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close { - color: #856404; - } - .p-toast .p-toast-message.p-toast-message-error { - background: #f8d7da; - border: solid #f5c6cb; - border-width: 1px; - color: #721c24; - } - .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, - .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close { - color: #721c24; - } - .p-galleria .p-galleria-close { - margin: 0.5rem; - background: transparent; - color: #efefef; - width: 4rem; - height: 4rem; - transition: box-shadow 0.15s; - border-radius: 4px; - } - .p-galleria .p-galleria-close .p-galleria-close-icon { - font-size: 2rem; - } - .p-galleria .p-galleria-close .p-galleria-close-icon.p-icon { - width: 2rem; - height: 2rem; - } - .p-galleria .p-galleria-close:hover { - background: rgba(255, 255, 255, 0.1); - color: #efefef; - } - .p-galleria .p-galleria-item-nav { - background: transparent; - color: #efefef; - width: 4rem; - height: 4rem; - transition: box-shadow 0.15s; - border-radius: 4px; - margin: 0 0.5rem; - } - .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, - .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon { - font-size: 2rem; - } - .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon.p-icon, - .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon.p-icon { - width: 2rem; - height: 2rem; - } - .p-galleria .p-galleria-item-nav:not(.p-disabled):hover { - background: rgba(255, 255, 255, 0.1); - color: #efefef; - } - .p-galleria .p-galleria-caption { - background: rgba(0, 0, 0, 0.5); - color: #efefef; - padding: 1rem; - } - .p-galleria .p-galleria-indicators { - padding: 1rem; - } - .p-galleria .p-galleria-indicators .p-galleria-indicator button { - background-color: #e9ecef; - width: 1rem; - height: 1rem; - transition: box-shadow 0.15s; - border-radius: 4px; - } - .p-galleria .p-galleria-indicators .p-galleria-indicator button:hover { - background: #dee2e6; - } - .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button { - background: #007bff; - color: #ffffff; - } - .p-galleria.p-galleria-indicators-bottom .p-galleria-indicator, .p-galleria.p-galleria-indicators-top .p-galleria-indicator { - margin-right: 0.5rem; - } - .p-galleria.p-galleria-indicators-left .p-galleria-indicator, .p-galleria.p-galleria-indicators-right .p-galleria-indicator { - margin-bottom: 0.5rem; - } - .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators { - background: rgba(0, 0, 0, 0.5); - } - .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator button { - background: rgba(255, 255, 255, 0.4); - } - .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator button:hover { - background: rgba(255, 255, 255, 0.6); - } - .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button { - background: #007bff; - color: #ffffff; - } - .p-galleria .p-galleria-thumbnail-container { - background: rgba(0, 0, 0, 0.9); - padding: 1rem 0.25rem; - } - .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, - .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next { - margin: 0.5rem; - background-color: transparent; - color: #efefef; - width: 2rem; - height: 2rem; - transition: box-shadow 0.15s; - border-radius: 4px; - } - .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, - .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover { - background: rgba(255, 255, 255, 0.1); - color: #efefef; - } - .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-item-content { - transition: box-shadow 0.15s; - } - .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-item-content:focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-galleria-mask { - --maskbg: rgba(0, 0, 0, 0.9); - } - .p-image-mask { - --maskbg: rgba(0, 0, 0, 0.9); - } - .p-image-preview-indicator { - background-color: transparent; - color: #f8f9fa; - transition: box-shadow 0.15s; - } - .p-image-preview-indicator .p-icon { - width: 1.5rem; - height: 1.5rem; - } - .p-image-preview-container:hover > .p-image-preview-indicator { - background-color: rgba(0, 0, 0, 0.5); - } - .p-image-toolbar { - padding: 1rem; - } - .p-image-action.p-link { - color: #f8f9fa; - background-color: transparent; - width: 3rem; - height: 3rem; - border-radius: 50%; - transition: box-shadow 0.15s; - margin-right: 0.5rem; - } - .p-image-action.p-link:last-child { - margin-right: 0; - } - .p-image-action.p-link:hover { - color: #f8f9fa; - background-color: rgba(255, 255, 255, 0.1); - } - .p-image-action.p-link span { - font-size: 1.5rem; - } - .p-image-action.p-link .p-icon { - width: 1.5rem; - height: 1.5rem; - } - .p-avatar { - background-color: #dee2e6; - border-radius: 4px; - } - .p-avatar.p-avatar-lg { - width: 3rem; - height: 3rem; - font-size: 1.5rem; - } - .p-avatar.p-avatar-lg .p-avatar-icon { - font-size: 1.5rem; - } - .p-avatar.p-avatar-xl { - width: 4rem; - height: 4rem; - font-size: 2rem; - } - .p-avatar.p-avatar-xl .p-avatar-icon { - font-size: 2rem; - } - .p-avatar-circle { - border-radius: 50%; - } - .p-avatar-group .p-avatar { - border: 2px solid #ffffff; - } - .p-chip { - background-color: #dee2e6; - color: #212529; - border-radius: 16px; - padding: 0 0.75rem; - } - .p-chip .p-chip-text { - line-height: 1.5; - margin-top: 0.25rem; - margin-bottom: 0.25rem; - } - .p-chip .p-chip-icon { - margin-right: 0.5rem; - } - .p-chip img { - width: 2rem; - height: 2rem; - margin-left: -0.75rem; - margin-right: 0.5rem; - } - .p-chip .p-chip-remove-icon { - border-radius: 4px; - transition: box-shadow 0.15s; - margin-left: 0.5rem; - } - .p-chip .p-chip-remove-icon:focus-visible { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-chip .p-chip-remove-icon:focus { - outline: 0 none; - } - .p-scrolltop { - width: 3rem; - height: 3rem; - border-radius: 4px; - box-shadow: none; - transition: box-shadow 0.15s; - } - .p-scrolltop.p-link { - background: rgba(0, 0, 0, 0.7); - } - .p-scrolltop.p-link:hover { - background: rgba(0, 0, 0, 0.8); - } - .p-scrolltop .p-scrolltop-icon { - font-size: 1.5rem; - color: #efefef; - } - .p-scrolltop .p-scrolltop-icon.p-icon { - width: 1.5rem; - height: 1.5rem; - } - .p-skeleton { - background-color: #e9ecef; - border-radius: 4px; - } - .p-skeleton:after { - background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)); - } - .p-tag { - background: #007bff; - color: #ffffff; - font-size: 0.75rem; - font-weight: 700; - padding: 0.25rem 0.4rem; - border-radius: 4px; - } - .p-tag.p-tag-success { - background-color: #28a745; - color: #ffffff; - } - .p-tag.p-tag-info { - background-color: #17a2b8; - color: #ffffff; - } - .p-tag.p-tag-warning { - background-color: #ffc107; - color: #212529; - } - .p-tag.p-tag-danger { - background-color: #dc3545; - color: #ffffff; - } - .p-tag .p-tag-icon { - margin-right: 0.25rem; - font-size: 0.75rem; - } - .p-tag .p-tag-icon.p-icon { - width: 0.75rem; - height: 0.75rem; - } - .p-inplace .p-inplace-display { - padding: 0.5rem 0.75rem; - border-radius: 4px; - transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s; - } - .p-inplace .p-inplace-display:not(.p-disabled):hover { - background: #e9ecef; - color: #212529; - } - .p-inplace .p-inplace-display:focus { - outline: 0 none; - outline-offset: 0; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); - } - .p-metergroup .p-metergroup-meter-container { - background: #e9ecef; - border-radius: 4px; - } - .p-metergroup .p-metergroup-meter { - border: 0 none; - background: #007bff; - } - .p-metergroup .p-metergroup-label-list .p-metergroup-label-list-item { - line-height: 1.5rem; - } - .p-metergroup .p-metergroup-label-list .p-metergroup-label-type { - background: #007bff; - width: 0.5rem; - height: 0.5rem; - border-radius: 100%; - margin-right: 0.5rem; - } - .p-metergroup .p-metergroup-label-list .p-metergroup-label { - margin-right: 1rem; - } - .p-metergroup .p-metergroup-label-list .p-metergroup-label-icon { - width: 1rem; - height: 1rem; - margin-right: 0.5rem; - } - .p-metergroup.p-metergroup-horizontal .p-metergroup-meter-container { - height: 0.5rem; - } - .p-metergroup.p-metergroup-horizontal .p-metergroup-meter:first-of-type { - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; - } - .p-metergroup.p-metergroup-horizontal .p-metergroup-meter:last-of-type { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; - } - .p-metergroup.p-metergroup-horizontal .p-metergroup-label-list-start { - margin-bottom: 1rem; - } - .p-metergroup.p-metergroup-horizontal .p-metergroup-label-list-end { - margin-top: 1rem; - } - .p-metergroup.p-metergroup-vertical .p-metergroup-meter-container { - width: 0.5rem; - height: 100%; - } - .p-metergroup.p-metergroup-vertical .p-metergroup-meter:first-of-type { - border-top-left-radius: 4px; - border-top-right-radius: 4px; - } - .p-metergroup.p-metergroup-vertical .p-metergroup-meter:last-of-type { - border-bottom-left-radius: 4px; - border-bottom-right-radius: 4px; - } - .p-metergroup.p-metergroup-vertical .p-metergroup-label-list:not(.p-metergroup-label-list-start) { - margin-left: 1rem; - } - .p-progressbar { - border: 0 none; - height: 1.5rem; - background: #e9ecef; - border-radius: 4px; - } - .p-progressbar .p-progressbar-value { - border: 0 none; - margin: 0; - background: #007bff; - } - .p-progressbar .p-progressbar-label { - color: #ffffff; - line-height: 1.5rem; - } - .p-terminal { - background: #ffffff; - color: #212529; - border: 1px solid #dee2e6; - padding: 1.25rem; - } - .p-terminal .p-terminal-input { - font-family: var(--font-family); - font-feature-settings: var(--font-feature-settings, normal); - font-size: 1rem; - } - .p-badge { - background: #007bff; - color: #ffffff; - font-size: 0.75rem; - font-weight: 700; - min-width: 1.5rem; - height: 1.5rem; - line-height: 1.5rem; - } - .p-badge.p-badge-secondary { - background-color: #6c757d; - color: #ffffff; - } - .p-badge.p-badge-success { - background-color: #28a745; - color: #ffffff; - } - .p-badge.p-badge-info { - background-color: #17a2b8; - color: #ffffff; - } - .p-badge.p-badge-warning { - background-color: #ffc107; - color: #212529; - } - .p-badge.p-badge-danger { - background-color: #dc3545; - color: #ffffff; - } - .p-badge.p-badge-lg { - font-size: 1.125rem; - min-width: 2.25rem; - height: 2.25rem; - line-height: 2.25rem; - } - .p-badge.p-badge-xl { - font-size: 1.5rem; - min-width: 3rem; - height: 3rem; - line-height: 3rem; - } - .p-tag { - background: #007bff; - color: #ffffff; - font-size: 0.75rem; - font-weight: 700; - padding: 0.25rem 0.4rem; - border-radius: 4px; - } - .p-tag.p-tag-success { - background-color: #28a745; - color: #ffffff; - } - .p-tag.p-tag-info { - background-color: #17a2b8; - color: #ffffff; - } - .p-tag.p-tag-warning { - background-color: #ffc107; - color: #212529; - } - .p-tag.p-tag-danger { - background-color: #dc3545; - color: #ffffff; - } -} -/* Vendor extensions to the designer enhanced bootstrap compatibility */ -@layer primereact { - .p-breadcrumb .p-breadcrumb-chevron { - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; - } - .p-breadcrumb .p-breadcrumb-chevron:before { - content: "/"; - } -} -/* Customizations to the designer theme should be defined here */ -`, ""]); -// Exports -/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (___CSS_LOADER_EXPORT___); - - -/***/ }), - -/***/ 6314: -/***/ ((module) => { - -"use strict"; - - -/* - MIT License http://www.opensource.org/licenses/mit-license.php - Author Tobias Koppers @sokra -*/ -module.exports = function (cssWithMappingToString) { - var list = []; - - // return the list of modules as css string - list.toString = function toString() { - return this.map(function (item) { - var content = ""; - var needLayer = typeof item[5] !== "undefined"; - if (item[4]) { - content += "@supports (".concat(item[4], ") {"); - } - if (item[2]) { - content += "@media ".concat(item[2], " {"); - } - if (needLayer) { - content += "@layer".concat(item[5].length > 0 ? " ".concat(item[5]) : "", " {"); - } - content += cssWithMappingToString(item); - if (needLayer) { - content += "}"; - } - if (item[2]) { - content += "}"; - } - if (item[4]) { - content += "}"; - } - return content; - }).join(""); - }; - - // import a list of modules into the list - list.i = function i(modules, media, dedupe, supports, layer) { - if (typeof modules === "string") { - modules = [[null, modules, undefined]]; - } - var alreadyImportedModules = {}; - if (dedupe) { - for (var k = 0; k < this.length; k++) { - var id = this[k][0]; - if (id != null) { - alreadyImportedModules[id] = true; - } - } - } - for (var _k = 0; _k < modules.length; _k++) { - var item = [].concat(modules[_k]); - if (dedupe && alreadyImportedModules[item[0]]) { - continue; - } - if (typeof layer !== "undefined") { - if (typeof item[5] === "undefined") { - item[5] = layer; - } else { - item[1] = "@layer".concat(item[5].length > 0 ? " ".concat(item[5]) : "", " {").concat(item[1], "}"); - item[5] = layer; - } - } - if (media) { - if (!item[2]) { - item[2] = media; - } else { - item[1] = "@media ".concat(item[2], " {").concat(item[1], "}"); - item[2] = media; - } - } - if (supports) { - if (!item[4]) { - item[4] = "".concat(supports); - } else { - item[1] = "@supports (".concat(item[4], ") {").concat(item[1], "}"); - item[4] = supports; - } - } - list.push(item); - } - }; - return list; -}; - -/***/ }), - -/***/ 1601: -/***/ ((module) => { - -"use strict"; - - -module.exports = function (i) { - return i[1]; -}; - -/***/ }), - -/***/ 5316: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -!function(t,e){ true?module.exports=e(__webpack_require__(6540)):0}("undefined"!=typeof self?self:this,function(t){return function(t){function e(n){if(r[n])return r[n].exports;var o=r[n]={i:n,l:!1,exports:{}};return t[n].call(o.exports,o,o.exports,e),o.l=!0,o.exports}var r={};return e.m=t,e.c=r,e.d=function(t,r,n){e.o(t,r)||Object.defineProperty(t,r,{configurable:!1,enumerable:!0,get:n})},e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,"a",r),r},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=0)}([function(t,e,r){"use strict";function n(){return n=Object.assign?Object.assign.bind():function(t){for(var e=1;et.length)&&(e=t.length);for(var r=0,n=new Array(e);rparseInt(i.userAgent.split("Firefox/")[1],10),i.marginNames=["plotTop","marginRight","marginBottom","plotLeft"],i.noop=function(){},i.supportsPassiveEvents=function(){let t=!1;if(!i.isMS){let e=Object.defineProperty({},"passive",{get:function(){t=!0}});i.win.addEventListener&&i.win.removeEventListener&&(i.win.addEventListener("testPassive",i.noop,e),i.win.removeEventListener("testPassive",i.noop,e))}return t}(),i.charts=[],i.composed=[],i.dateFormats={},i.seriesTypes={},i.symbolSizes={},i.chartCount=0,e}),i(e,"Core/Utilities.js",[e["Core/Globals.js"]],function(t){let e;let{charts:i,doc:s,win:r}=t;function o(e,i,s,n){let a=i?"Highcharts error":"Highcharts warning";32===e&&(e=`${a}: Deprecated member`);let h=p(e),l=h?`${a} #${e}: www.highcharts.com/errors/${e}/`:e.toString();if(void 0!==n){let t="";h&&(l+="?"),C(n,function(e,i){t+=` - - ${i}: ${e}`,h&&(l+=encodeURI(i)+"="+encodeURI(e))}),l+=t}M(t,"displayError",{chart:s,code:e,message:l,params:n},function(){if(i)throw Error(l);r.console&&-1===o.messages.indexOf(l)&&console.warn(l)}),o.messages.push(l)}function n(t,e){return parseInt(t,e||10)}function a(t){return"string"==typeof t}function h(t){let e=Object.prototype.toString.call(t);return"[object Array]"===e||"[object Array Iterator]"===e}function l(t,e){return!!t&&"object"==typeof t&&(!e||!h(t))}function d(t){return l(t)&&"number"==typeof t.nodeType}function c(t){let e=t&&t.constructor;return!!(l(t,!0)&&!d(t)&&e&&e.name&&"Object"!==e.name)}function p(t){return"number"==typeof t&&!isNaN(t)&&t<1/0&&t>-1/0}function u(t){return null!=t}function g(t,e,i){let s;let r=a(e)&&!u(i),o=(e,i)=>{u(e)?t.setAttribute(i,e):r?(s=t.getAttribute(i))||"class"!==i||(s=t.getAttribute(i+"Name")):t.removeAttribute(i)};return a(e)?o(i,e):C(e,o),s}function f(t){return h(t)?t:[t]}function m(t,e){let i;for(i in t||(t={}),e)t[i]=e[i];return t}function x(){let t=arguments,e=t.length;for(let i=0;i1e14?t:parseFloat(t.toPrecision(e||14))}(o||(o={})).messages=[],Math.easeInOutSine=function(t){return -.5*(Math.cos(Math.PI*t)-1)};let S=Array.prototype.find?function(t,e){return t.find(e)}:function(t,e){let i;let s=t.length;for(i=0;it.order-e.order),t.forEach(t=>{!1===t.fn.call(e,r)&&r.preventDefault()})}o&&!r.defaultPrevented&&o.call(e,r)}C({map:"map",each:"forEach",grep:"filter",reduce:"reduce",some:"some"},function(e,i){t[i]=function(t){return o(32,!1,void 0,{[`Highcharts.${i}`]:`use Array.${e}`}),Array.prototype[e].apply(t,[].slice.call(arguments,1))}});let w=function(){let t=Math.random().toString(36).substring(2,9)+"-",i=0;return function(){return"highcharts-"+(e?"":t)+i++}}();return r.jQuery&&(r.jQuery.fn.highcharts=function(){let e=[].slice.call(arguments);if(this[0])return e[0]?(new t[a(e[0])?e.shift():"Chart"](this[0],e[0],e[1]),this):i[g(this[0],"data-highcharts-chart")]}),{addEvent:function(e,i,s,r={}){let o="function"==typeof e&&e.prototype||e;Object.hasOwnProperty.call(o,"hcEvents")||(o.hcEvents={});let n=o.hcEvents;t.Point&&e instanceof t.Point&&e.series&&e.series.chart&&(e.series.chart.runTrackerClick=!0);let a=e.addEventListener;a&&a.call(e,i,s,!!t.supportsPassiveEvents&&{passive:void 0===r.passive?-1!==i.indexOf("touch"):r.passive,capture:!1}),n[i]||(n[i]=[]);let h={fn:s,order:"number"==typeof r.order?r.order:1/0};return n[i].push(h),n[i].sort((t,e)=>t.order-e.order),function(){k(e,i,s)}},arrayMax:function(t){let e=t.length,i=t[0];for(;e--;)t[e]>i&&(i=t[e]);return i},arrayMin:function(t){let e=t.length,i=t[0];for(;e--;)t[e]e?t{let s=e%2/2,r=i?-1:1;return(Math.round(t*r-s)+s)*r},css:y,defined:u,destroyObjectProperties:function(t,e,i){C(t,function(s,r){s!==e&&s?.destroy&&s.destroy(),(s?.destroy||!i)&&delete t[r]})},diffObjects:function(t,e,i,s){let r={};return function t(e,r,o,n){let a=i?r:e;C(e,function(i,d){if(!n&&s&&s.indexOf(d)>-1&&r[d]){i=f(i),o[d]=[];for(let e=0;e{if(t.length>1)for(o=s=t.length-1;o>0;o--)(r=t[o]-t[o-1])<0&&!n?(e?.(),e=void 0):r&&(void 0===i||r=i-1&&(i=Math.floor(s)),Math.max(0,i-(t(e,"padding-left",!0)||0)-(t(e,"padding-right",!0)||0))}if("height"===i)return Math.max(0,Math.min(e.offsetHeight,e.scrollHeight)-(t(e,"padding-top",!0)||0)-(t(e,"padding-bottom",!0)||0));let a=r.getComputedStyle(e,void 0);return a&&(o=a.getPropertyValue(i),x(s,"opacity"!==i)&&(o=n(o))),o},inArray:function(t,e,i){return o(32,!1,void 0,{"Highcharts.inArray":"use Array.indexOf"}),e.indexOf(t,i)},insertItem:function(t,e){let i;let s=t.options.index,r=e.length;for(i=t.options.isInternal?r:0;i=t))&&(r||!(a<=(e[o]+(e[o+1]||e[o]))/2)));o++);return v(n*i,-Math.round(Math.log(.001)/Math.LN10))},objectEach:C,offset:function(t){let e=s.documentElement,i=t.parentElement||t.parentNode?t.getBoundingClientRect():{top:0,left:0,width:0,height:0};return{top:i.top+(r.pageYOffset||e.scrollTop)-(e.clientTop||0),left:i.left+(r.pageXOffset||e.scrollLeft)-(e.clientLeft||0),width:i.width,height:i.height}},pad:function(t,e,i){return Array((e||2)+1-String(t).replace("-","").length).join(i||"0")+t},pick:x,pInt:n,pushUnique:function(t,e){return 0>t.indexOf(e)&&!!t.push(e)},relativeLength:function(t,e,i){return/%$/.test(t)?e*parseFloat(t)/100+(i||0):parseFloat(t)},removeEvent:k,replaceNested:function(t,...e){let i,s;do for(s of(i=t,e))t=t.replace(s[0],s[1]);while(t!==i);return t},splat:f,stableSort:function(t,e){let i,s;let r=t.length;for(s=0;s0?setTimeout(t,e,i):(t.call(0,i),-1)},timeUnits:{millisecond:1,second:1e3,minute:6e4,hour:36e5,day:864e5,week:6048e5,month:24192e5,year:314496e5},uniqueKey:w,useSerialIds:function(t){return e=x(t,e)},wrap:function(t,e,i){let s=t[e];t[e]=function(){let t=arguments,e=this;return i.apply(this,[function(){return s.apply(e,arguments.length?arguments:t)}].concat([].slice.call(arguments)))}}}}),i(e,"Core/Chart/ChartDefaults.js",[],function(){return{alignThresholds:!1,panning:{enabled:!1,type:"x"},styledMode:!1,borderRadius:0,colorCount:10,allowMutatingData:!0,ignoreHiddenSeries:!0,spacing:[10,10,15,10],resetZoomButton:{theme:{},position:{}},reflow:!0,type:"line",zooming:{singleTouch:!1,resetButton:{theme:{zIndex:6},position:{align:"right",x:-10,y:10}}},width:null,height:null,borderColor:"#334eff",backgroundColor:"#ffffff",plotBorderColor:"#cccccc"}}),i(e,"Core/Color/Palettes.js",[],function(){return{colors:["#2caffe","#544fc5","#00e272","#fe6a35","#6b8abc","#d568fb","#2ee0ca","#fa4b42","#feb56a","#91e8e1"]}}),i(e,"Core/Time.js",[e["Core/Globals.js"],e["Core/Utilities.js"]],function(t,e){let{win:i}=t,{defined:s,error:r,extend:o,isNumber:n,isObject:a,merge:h,objectEach:l,pad:d,pick:c,splat:p,timeUnits:u}=e,g=t.isSafari&&i.Intl&&i.Intl.DateTimeFormat.prototype.formatRange,f=t.isSafari&&i.Intl&&!i.Intl.DateTimeFormat.prototype.formatRange;class m{constructor(t){this.options={},this.useUTC=!1,this.variableTimezone=!1,this.Date=i.Date,this.getTimezoneOffset=this.timezoneOffsetFunction(),this.update(t)}get(t,e){if(this.variableTimezone||this.timezoneOffset){let i=e.getTime(),s=i-this.getTimezoneOffset(e);e.setTime(s);let r=e["getUTC"+t]();return e.setTime(i),r}return this.useUTC?e["getUTC"+t]():e["get"+t]()}set(t,e,i){if(this.variableTimezone||this.timezoneOffset){if("Milliseconds"===t||"Seconds"===t||"Minutes"===t&&this.getTimezoneOffset(e)%36e5==0)return e["setUTC"+t](i);let s=this.getTimezoneOffset(e),r=e.getTime()-s;e.setTime(r),e["setUTC"+t](i);let o=this.getTimezoneOffset(e);return r=e.getTime()+o,e.setTime(r)}return this.useUTC||g&&"FullYear"===t?e["setUTC"+t](i):e["set"+t](i)}update(t={}){let e=c(t.useUTC,!0);this.options=t=h(!0,this.options,t),this.Date=t.Date||i.Date||Date,this.useUTC=e,this.timezoneOffset=e&&t.timezoneOffset||void 0,this.getTimezoneOffset=this.timezoneOffsetFunction(),this.variableTimezone=e&&!!(t.getTimezoneOffset||t.timezone)}makeTime(t,e,i,s,r,o){let n,a,h;return this.useUTC?(n=this.Date.UTC.apply(0,arguments),a=this.getTimezoneOffset(n),n+=a,a!==(h=this.getTimezoneOffset(n))?n+=h-a:a-36e5!==this.getTimezoneOffset(n-36e5)||f||(n-=36e5)):n=new this.Date(t,e,c(i,1),c(s,0),c(r,0),c(o,0)).getTime(),n}timezoneOffsetFunction(){let t=this,e=this.options,i=e.getTimezoneOffset;return this.useUTC?e.timezone?t=>{try{let i=`shortOffset,${e.timezone||""}`,[s,r,o,a,h=0]=(m.formatCache[i]=m.formatCache[i]||Intl.DateTimeFormat("en",{timeZone:e.timezone,timeZoneName:"shortOffset"})).format(t).split(/(GMT|:)/).map(Number),l=-(36e5*(o+h/60));if(n(l))return l}catch(t){r(34)}return 0}:this.useUTC&&i?t=>6e4*i(t.valueOf()):()=>6e4*(t.timezoneOffset||0):t=>6e4*new Date(t.toString()).getTimezoneOffset()}dateFormat(e,i,r){if(!s(i)||isNaN(i))return t.defaultOptions.lang&&t.defaultOptions.lang.invalidDate||"";e=c(e,"%Y-%m-%d %H:%M:%S");let n=this,a=new this.Date(i),h=this.get("Hours",a),p=this.get("Day",a),u=this.get("Date",a),g=this.get("Month",a),f=this.get("FullYear",a),m=t.defaultOptions.lang,x=m&&m.weekdays,y=m&&m.shortWeekdays;return l(o({a:y?y[p]:x[p].substr(0,3),A:x[p],d:d(u),e:d(u,2," "),w:p,b:m.shortMonths[g],B:m.months[g],m:d(g+1),o:g+1,y:f.toString().substr(2,2),Y:f,H:d(h),k:h,I:d(h%12||12),l:h%12||12,M:d(this.get("Minutes",a)),p:h<12?"AM":"PM",P:h<12?"am":"pm",S:d(this.get("Seconds",a)),L:d(Math.floor(i%1e3),3)},t.dateFormats),function(t,s){for(;-1!==e.indexOf("%"+s);)e=e.replace("%"+s,"function"==typeof t?t.call(n,i):t)}),r?e.substr(0,1).toUpperCase()+e.substr(1):e}resolveDTLFormat(t){return a(t,!0)?t:{main:(t=p(t))[0],from:t[1],to:t[2]}}getTimeTicks(t,e,i,r){let n,a,h,l;let d=this,p=d.Date,g=[],f={},m=new p(e),x=t.unitRange,y=t.count||1;if(r=c(r,1),s(e)){d.set("Milliseconds",m,x>=u.second?0:y*Math.floor(d.get("Milliseconds",m)/y)),x>=u.second&&d.set("Seconds",m,x>=u.minute?0:y*Math.floor(d.get("Seconds",m)/y)),x>=u.minute&&d.set("Minutes",m,x>=u.hour?0:y*Math.floor(d.get("Minutes",m)/y)),x>=u.hour&&d.set("Hours",m,x>=u.day?0:y*Math.floor(d.get("Hours",m)/y)),x>=u.day&&d.set("Date",m,x>=u.month?1:Math.max(1,y*Math.floor(d.get("Date",m)/y))),x>=u.month&&(d.set("Month",m,x>=u.year?0:y*Math.floor(d.get("Month",m)/y)),a=d.get("FullYear",m)),x>=u.year&&(a-=a%y,d.set("FullYear",m,a)),x===u.week&&(l=d.get("Day",m),d.set("Date",m,d.get("Date",m)-l+r+(l4*u.month||d.getTimezoneOffset(e)!==d.getTimezoneOffset(i));let p=m.getTime();for(n=1;p1?p=d.makeTime(a,t,o,c+n*y):p+=x*y,n++;g.push(p),x<=u.hour&&g.length<1e4&&g.forEach(function(t){t%18e5==0&&"000000000"===d.dateFormat("%H%M%S%L",t)&&(f[t]="day")})}return g.info=o(t,{higherRanks:f,totalRange:x*y}),g}getDateFormat(t,e,i,s){let r=this.dateFormat("%m-%d %H:%M:%S.%L",e),o="01-01 00:00:00.000",n={millisecond:15,second:12,minute:9,hour:6,day:3},a="millisecond",h=a;for(a in u){if(t===u.week&&+this.dateFormat("%w",e)===i&&r.substr(6)===o.substr(6)){a="week";break}if(u[a]>t){a=h;break}if(n[a]&&r.substr(n[a])!==o.substr(n[a]))break;"week"!==a&&(h=a)}return this.resolveDTLFormat(s[a]).main}}return m.formatCache={},m}),i(e,"Core/Defaults.js",[e["Core/Chart/ChartDefaults.js"],e["Core/Globals.js"],e["Core/Color/Palettes.js"],e["Core/Time.js"],e["Core/Utilities.js"]],function(t,e,i,s,r){let{isTouchDevice:o}=e,{fireEvent:n,merge:a}=r,h={colors:i.colors,symbols:["circle","diamond","square","triangle","triangle-down"],lang:{loading:"Loading...",months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],weekdays:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],decimalPoint:".",numericSymbols:["k","M","G","T","P","E"],resetZoom:"Reset zoom",resetZoomTitle:"Reset zoom level 1:1",thousandsSep:" "},global:{buttonTheme:{fill:"#f7f7f7",padding:8,r:2,stroke:"#cccccc","stroke-width":1,style:{color:"#333333",cursor:"pointer",fontSize:"0.8em",fontWeight:"normal"},states:{hover:{fill:"#e6e6e6"},select:{fill:"#e6e9ff",style:{color:"#000000",fontWeight:"bold"}},disabled:{style:{color:"#cccccc"}}}}},time:{Date:void 0,getTimezoneOffset:void 0,timezone:void 0,timezoneOffset:0,useUTC:!0},chart:t,title:{style:{color:"#333333",fontWeight:"bold"},text:"Chart title",align:"center",margin:15,widthAdjust:-44},subtitle:{style:{color:"#666666",fontSize:"0.8em"},text:"",align:"center",widthAdjust:-44},caption:{margin:15,style:{color:"#666666",fontSize:"0.8em"},text:"",align:"left",verticalAlign:"bottom"},plotOptions:{},legend:{enabled:!0,align:"center",alignColumns:!0,className:"highcharts-no-tooltip",events:{},layout:"horizontal",itemMarginBottom:2,itemMarginTop:2,labelFormatter:function(){return this.name},borderColor:"#999999",borderRadius:0,navigation:{style:{fontSize:"0.8em"},activeColor:"#0022ff",inactiveColor:"#cccccc"},itemStyle:{color:"#333333",cursor:"pointer",fontSize:"0.8em",textDecoration:"none",textOverflow:"ellipsis"},itemHoverStyle:{color:"#000000"},itemHiddenStyle:{color:"#666666",textDecoration:"line-through"},shadow:!1,itemCheckboxStyle:{position:"absolute",width:"13px",height:"13px"},squareSymbol:!0,symbolPadding:5,verticalAlign:"bottom",x:0,y:0,title:{style:{fontSize:"0.8em",fontWeight:"bold"}}},loading:{labelStyle:{fontWeight:"bold",position:"relative",top:"45%"},style:{position:"absolute",backgroundColor:"#ffffff",opacity:.5,textAlign:"center"}},tooltip:{enabled:!0,animation:{duration:300,easing:t=>Math.sqrt(1-Math.pow(t-1,2))},borderRadius:3,dateTimeLabelFormats:{millisecond:"%A, %e %b, %H:%M:%S.%L",second:"%A, %e %b, %H:%M:%S",minute:"%A, %e %b, %H:%M",hour:"%A, %e %b, %H:%M",day:"%A, %e %b %Y",week:"Week from %A, %e %b %Y",month:"%B %Y",year:"%Y"},footerFormat:"",headerShape:"callout",hideDelay:500,padding:8,shape:"callout",shared:!1,snap:o?25:10,headerFormat:'{point.key}
',pointFormat:' {series.name}: {point.y}
',backgroundColor:"#ffffff",borderWidth:void 0,shadow:!0,stickOnContact:!1,style:{color:"#333333",cursor:"default",fontSize:"0.8em"},useHTML:!1},credits:{enabled:!0,href:"https://www.highcharts.com?credits",position:{align:"right",x:-10,verticalAlign:"bottom",y:-5},style:{cursor:"pointer",color:"#999999",fontSize:"0.6em"},text:"Highcharts.com"}};h.chart.styledMode=!1;let l=new s(h.time);return{defaultOptions:h,defaultTime:l,getOptions:function(){return h},setOptions:function(t){return n(e,"setOptions",{options:t}),a(!0,h,t),(t.time||t.global)&&(e.time?e.time.update(a(h.global,h.time,t.global,t.time)):e.time=l),h}}}),i(e,"Core/Color/Color.js",[e["Core/Globals.js"],e["Core/Utilities.js"]],function(t,e){let{isNumber:i,merge:s,pInt:r}=e;class o{static parse(t){return t?new o(t):o.None}constructor(e){let i,s,r,n;this.rgba=[NaN,NaN,NaN,NaN],this.input=e;let a=t.Color;if(a&&a!==o)return new a(e);if("object"==typeof e&&void 0!==e.stops)this.stops=e.stops.map(t=>new o(t[1]));else if("string"==typeof e){if(this.input=e=o.names[e.toLowerCase()]||e,"#"===e.charAt(0)){let t=e.length,i=parseInt(e.substr(1),16);7===t?s=[(16711680&i)>>16,(65280&i)>>8,255&i,1]:4===t&&(s=[(3840&i)>>4|(3840&i)>>8,(240&i)>>4|240&i,(15&i)<<4|15&i,1])}if(!s)for(r=o.parsers.length;r--&&!s;)(i=(n=o.parsers[r]).regex.exec(e))&&(s=n.parse(i))}s&&(this.rgba=s)}get(t){let e=this.input,r=this.rgba;if("object"==typeof e&&void 0!==this.stops){let i=s(e);return i.stops=[].slice.call(i.stops),this.stops.forEach((e,s)=>{i.stops[s]=[i.stops[s][0],e.get(t)]}),i}return r&&i(r[0])?"rgb"!==t&&(t||1!==r[3])?"a"===t?`${r[3]}`:"rgba("+r.join(",")+")":"rgb("+r[0]+","+r[1]+","+r[2]+")":e}brighten(t){let e=this.rgba;if(this.stops)this.stops.forEach(function(e){e.brighten(t)});else if(i(t)&&0!==t)for(let i=0;i<3;i++)e[i]+=r(255*t),e[i]<0&&(e[i]=0),e[i]>255&&(e[i]=255);return this}setOpacity(t){return this.rgba[3]=t,this}tweenTo(t,e){let s=this.rgba,r=t.rgba;if(!i(s[0])||!i(r[0]))return t.input||"none";let o=1!==r[3]||1!==s[3];return(o?"rgba(":"rgb(")+Math.round(r[0]+(s[0]-r[0])*(1-e))+","+Math.round(r[1]+(s[1]-r[1])*(1-e))+","+Math.round(r[2]+(s[2]-r[2])*(1-e))+(o?","+(r[3]+(s[3]-r[3])*(1-e)):"")+")"}}return o.names={white:"#ffffff",black:"#000000"},o.parsers=[{regex:/rgba\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d?(?:\.\d+)?)\s*\)/,parse:function(t){return[r(t[1]),r(t[2]),r(t[3]),parseFloat(t[4],10)]}},{regex:/rgb\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*\)/,parse:function(t){return[r(t[1]),r(t[2]),r(t[3]),1]}}],o.None=new o(""),o}),i(e,"Core/Animation/Fx.js",[e["Core/Color/Color.js"],e["Core/Globals.js"],e["Core/Utilities.js"]],function(t,e,i){let{parse:s}=t,{win:r}=e,{isNumber:o,objectEach:n}=i;class a{constructor(t,e,i){this.pos=NaN,this.options=e,this.elem=t,this.prop=i}dSetter(){let t=this.paths,e=t&&t[0],i=t&&t[1],s=this.now||0,r=[];if(1!==s&&e&&i){if(e.length===i.length&&s<1)for(let t=0;t=h+this.startTime?(this.now=this.end,this.pos=1,this.update(),l[this.prop]=!0,i=!0,n(l,function(t){!0!==t&&(i=!1)}),i&&a&&a.call(o),e=!1):(this.pos=r.easing((s-this.startTime)/h),this.now=this.start+(this.end-this.start)*this.pos,this.update(),e=!0),e}initPath(t,e,i){let s=t.startX,r=t.endX,n=i.slice(),a=t.isArea,h=a?2:1,l=e&&i.length>e.length&&i.hasStackedCliffs,d,c,p,u,g=e&&e.slice();if(!g||l)return[n,n];function f(t,e){for(;t.length{let s=d(t.options.animation);a=n(e)&&i(e.defer)?r.defer:Math.max(a,s.duration+s.defer),h=Math.min(r.duration,s.duration)}),t.renderer.forExport&&(a=0),{defer:Math.max(0,a-h),duration:Math.min(a,h)}},setAnimation:function(t,e){e.renderer.globalAnimation=l(t,e.options.chart.animation,!0)},stop:c}}),i(e,"Core/Renderer/HTML/AST.js",[e["Core/Globals.js"],e["Core/Utilities.js"]],function(t,e){let{SVG_NS:i,win:s}=t,{attr:r,createElement:o,css:n,error:a,isFunction:h,isString:l,objectEach:d,splat:c}=e,{trustedTypes:p}=s,u=p&&h(p.createPolicy)&&p.createPolicy("highcharts",{createHTML:t=>t}),g=u?u.createHTML(""):"",f=function(){try{return!!new DOMParser().parseFromString(g,"text/html")}catch(t){return!1}}();class m{static filterUserAttributes(t){return d(t,(e,i)=>{let s=!0;-1===m.allowedAttributes.indexOf(i)&&(s=!1),-1!==["background","dynsrc","href","lowsrc","src"].indexOf(i)&&(s=l(e)&&m.allowedReferences.some(t=>0===e.indexOf(t))),s||(a(33,!1,void 0,{"Invalid attribute in config":`${i}`}),delete t[i]),l(e)&&t[i]&&(t[i]=e.replace(/{let i=e.split(":").map(t=>t.trim()),s=i.shift();return s&&i.length&&(t[s.replace(/-([a-z])/g,t=>t[1].toUpperCase())]=i.join(":")),t},{})}static setElementHTML(t,e){t.innerHTML=m.emptyHTML,e&&new m(e).addToDOM(t)}constructor(t){this.nodes="string"==typeof t?this.parseMarkup(t):t}addToDOM(e){return function e(s,o){let h;return c(s).forEach(function(s){let l;let c=s.tagName,p=s.textContent?t.doc.createTextNode(s.textContent):void 0,u=m.bypassHTMLFiltering;if(c){if("#text"===c)l=p;else if(-1!==m.allowedTags.indexOf(c)||u){let a="svg"===c?i:o.namespaceURI||i,h=t.doc.createElementNS(a,c),g=s.attributes||{};d(s,function(t,e){"tagName"!==e&&"attributes"!==e&&"children"!==e&&"style"!==e&&"textContent"!==e&&(g[e]=t)}),r(h,u?g:m.filterUserAttributes(g)),s.style&&n(h,s.style),p&&h.appendChild(p),e(s.children||[],h),l=h}else a(33,!1,void 0,{"Invalid tagName in config":c})}l&&o.appendChild(l),h=l}),h}(this.nodes,e)}parseMarkup(t){let e;let i=[];if(t=t.trim().replace(/ style=(["'])/g," data-style=$1"),f)e=new DOMParser().parseFromString(u?u.createHTML(t):t,"text/html");else{let i=o("div");i.innerHTML=t,e={body:i}}let s=(t,e)=>{let i=t.nodeName.toLowerCase(),r={tagName:i};"#text"===i&&(r.textContent=t.textContent||"");let o=t.attributes;if(o){let t={};[].forEach.call(o,e=>{"data-style"===e.name?r.style=m.parseStyle(e.value):t[e.name]=e.value}),r.attributes=t}if(t.childNodes.length){let e=[];[].forEach.call(t.childNodes,t=>{s(t,e)}),e.length&&(r.children=e)}e.push(r)};return[].forEach.call(e.body.childNodes,t=>s(t,i)),i}}return m.allowedAttributes=["alt","aria-controls","aria-describedby","aria-expanded","aria-haspopup","aria-hidden","aria-label","aria-labelledby","aria-live","aria-pressed","aria-readonly","aria-roledescription","aria-selected","class","clip-path","color","colspan","cx","cy","d","dx","dy","disabled","fill","filterUnits","flood-color","flood-opacity","height","href","id","in","in2","markerHeight","markerWidth","offset","opacity","operator","orient","padding","paddingLeft","paddingRight","patternUnits","r","radius","refX","refY","role","scope","slope","src","startOffset","stdDeviation","stroke","stroke-linecap","stroke-width","style","tableValues","result","rowspan","summary","target","tabindex","text-align","text-anchor","textAnchor","textLength","title","type","valign","width","x","x1","x2","xlink:href","y","y1","y2","zIndex"],m.allowedReferences=["https://","http://","mailto:","/","../","./","#"],m.allowedTags=["a","abbr","b","br","button","caption","circle","clipPath","code","dd","defs","div","dl","dt","em","feComponentTransfer","feComposite","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feMorphology","feOffset","feMerge","feMergeNode","filter","h1","h2","h3","h4","h5","h6","hr","i","img","li","linearGradient","marker","ol","p","path","pattern","pre","rect","small","span","stop","strong","style","sub","sup","svg","table","text","textPath","thead","title","tbody","tspan","td","th","tr","u","ul","#text"],m.emptyHTML=g,m.bypassHTMLFiltering=!1,m}),i(e,"Core/Templating.js",[e["Core/Defaults.js"],e["Core/Utilities.js"]],function(t,e){let{defaultOptions:i,defaultTime:s}=t,{extend:r,getNestedProperty:o,isArray:n,isNumber:a,isObject:h,pick:l,pInt:d}=e,c={add:(t,e)=>t+e,divide:(t,e)=>0!==e?t/e:"",eq:(t,e)=>t==e,each:function(t){let e=arguments[arguments.length-1];return!!n(t)&&t.map((i,s)=>p(e.body,r(h(i)?i:{"@this":i},{"@index":s,"@first":0===s,"@last":s===t.length-1}))).join("")},ge:(t,e)=>t>=e,gt:(t,e)=>t>e,if:t=>!!t,le:(t,e)=>t<=e,lt:(t,e)=>tt*e,ne:(t,e)=>t!=e,subtract:(t,e)=>t-e,unless:t=>!t};function p(t="",e,r){let n=/\{([\w\:\.\,;\-\/<>%@"'’= #\(\)]+)\}/g,a=/\(([\w\:\.\,;\-\/<>%@"'= ]+)\)/g,h=[],d=/f$/,g=/\.(\d)/,f=i.lang,m=r&&r.time||s,x=r&&r.numberFormatter||u,y=(t="")=>{let i;return"true"===t||"false"!==t&&((i=Number(t)).toString()===t?i:o(t,e))},b,v,S=0,C;for(;null!==(b=n.exec(t));){let i=a.exec(b[1]);i&&(b=i,C=!0),v&&v.isBlock||(v={ctx:e,expression:b[1],find:b[0],isBlock:"#"===b[1].charAt(0),start:b.index,startInner:b.index+b[0].length,length:b[0].length});let s=b[1].split(" ")[0].replace("#","");c[s]&&(v.isBlock&&s===v.fn&&S++,v.fn||(v.fn=s));let r="else"===b[1];if(v.isBlock&&v.fn&&(b[1]===`/${v.fn}`||r)){if(S)!r&&S--;else{let e=v.startInner,i=t.substr(e,b.index-e);void 0===v.body?(v.body=i,v.startInner=b.index+b[0].length):v.elseBody=i,v.find+=i+b[0],r||(h.push(v),v=void 0)}}else v.isBlock||h.push(v);if(i&&!v?.isBlock)break}return h.forEach(i=>{let s,o;let{body:n,elseBody:a,expression:h,fn:u}=i;if(u){let t=[i],l=h.split(" ");for(o=c[u].length;o--;)t.unshift(y(l[o+1]));s=c[u].apply(e,t),i.isBlock&&"boolean"==typeof s&&(s=p(s?n:a,e,r))}else{let t=h.split(":");if(s=y(t.shift()||""),t.length&&"number"==typeof s){let e=t.join(":");if(d.test(e)){let t=parseInt((e.match(g)||["","-1"])[1],10);null!==s&&(s=x(s,t,f.decimalPoint,e.indexOf(",")>-1?f.thousandsSep:""))}else s=m.dateFormat(e,s)}}t=t.replace(i.find,l(s,""))}),C?p(t,e,r):t}function u(t,e,s,r){let o,n;t=+t||0,e=+e;let h=i.lang,c=(t.toString().split(".")[1]||"").split("e")[0].length,p=t.toString().split("e"),u=e;-1===e?e=Math.min(c,20):a(e)?e&&p[1]&&p[1]<0&&((n=e+ +p[1])>=0?(p[0]=(+p[0]).toExponential(n).split("e")[0],e=n):(p[0]=p[0].split(".")[0]||0,t=e<20?(p[0]*Math.pow(10,p[1])).toFixed(e):0,p[1]=0)):e=2;let g=(Math.abs(p[1]?p[0]:t)+Math.pow(10,-Math.max(e,c)-1)).toFixed(e),f=String(d(g)),m=f.length>3?f.length%3:0;return s=l(s,h.decimalPoint),r=l(r,h.thousandsSep),o=(t<0?"-":"")+(m?f.substr(0,m)+r:""),0>+p[1]&&!u?o="0":o+=f.substr(m).replace(/(\d{3})(?=\d)/g,"$1"+r),e?o+=s+g.slice(-e):0==+o&&(o="0"),p[1]&&0!=+o&&(o+="e"+p[1]),o}return{dateFormat:function(t,e,i){return s.dateFormat(t,e,i)},format:p,helpers:c,numberFormat:u}}),i(e,"Core/Renderer/RendererRegistry.js",[e["Core/Globals.js"]],function(t){var e,i;let s;return(i=e||(e={})).rendererTypes={},i.getRendererType=function(t=s){return i.rendererTypes[t]||i.rendererTypes[s]},i.registerRendererType=function(e,r,o){i.rendererTypes[e]=r,(!s||o)&&(s=e,t.Renderer=r)},e}),i(e,"Core/Renderer/RendererUtilities.js",[e["Core/Utilities.js"]],function(t){var e;let{clamp:i,pick:s,pushUnique:r,stableSort:o}=t;return(e||(e={})).distribute=function t(e,n,a){let h=e,l=h.reducedLen||n,d=(t,e)=>t.target-e.target,c=[],p=e.length,u=[],g=c.push,f,m,x,y=!0,b,v,S=0,C;for(f=p;f--;)S+=e[f].size;if(S>l){for(o(e,(t,e)=>(e.rank||0)-(t.rank||0)),x=(C=e[0].rank===e[e.length-1].rank)?p/2:-1,m=C?x:p-1;x&&S>l;)b=e[f=Math.floor(m)],r(u,f)&&(S-=b.size),m+=x,C&&m>=e.length&&(x/=2,m=x);u.sort((t,e)=>e-t).forEach(t=>g.apply(c,e.splice(t,1)))}for(o(e,d),e=e.map(t=>({size:t.size,targets:[t.target],align:s(t.align,.5)}));y;){for(f=e.length;f--;)b=e[f],v=(Math.min.apply(0,b.targets)+Math.max.apply(0,b.targets))/2,b.pos=i(v-b.size*b.align,0,n-b.size);for(f=e.length,y=!1;f--;)f>0&&e[f-1].pos+e[f-1].size>e[f].pos&&(e[f-1].size+=e[f].size,e[f-1].targets=e[f-1].targets.concat(e[f].targets),e[f-1].align=.5,e[f-1].pos+e[f-1].size>n&&(e[f-1].pos=n-e[f-1].size),e.splice(f,1),y=!0)}return g.apply(h,c),f=0,e.some(e=>{let i=0;return(e.targets||[]).some(()=>(h[f].pos=e.pos+i,void 0!==a&&Math.abs(h[f].pos-h[f].target)>a)?(h.slice(0,f+1).forEach(t=>delete t.pos),h.reducedLen=(h.reducedLen||n)-.1*n,h.reducedLen>.1*n&&t(h,n,a),!0):(i+=h[f].size,f++,!1))}),o(h,d),h},e}),i(e,"Core/Renderer/SVG/SVGElement.js",[e["Core/Animation/AnimationUtilities.js"],e["Core/Color/Color.js"],e["Core/Globals.js"],e["Core/Utilities.js"]],function(t,e,i,s){let{animate:r,animObject:o,stop:n}=t,{deg2rad:a,doc:h,svg:l,SVG_NS:d,win:c}=i,{addEvent:p,attr:u,createElement:g,crisp:f,css:m,defined:x,erase:y,extend:b,fireEvent:v,isArray:S,isFunction:C,isObject:k,isString:M,merge:w,objectEach:T,pick:A,pInt:P,pushUnique:L,replaceNested:O,syncTimeout:D,uniqueKey:E}=s;class I{_defaultGetter(t){let e=A(this[t+"Value"],this[t],this.element?this.element.getAttribute(t):null,0);return/^-?[\d\.]+$/.test(e)&&(e=parseFloat(e)),e}_defaultSetter(t,e,i){i.setAttribute(e,t)}add(t){let e;let i=this.renderer,s=this.element;return t&&(this.parentGroup=t),void 0!==this.textStr&&"text"===this.element.nodeName&&i.buildText(this),this.added=!0,(!t||t.handleZ||this.zIndex)&&(e=this.zIndexSetter()),e||(t?t.element:i.box).appendChild(s),this.onAdd&&this.onAdd(),this}addClass(t,e){let i=e?"":this.attr("class")||"";return(t=(t||"").split(/ /g).reduce(function(t,e){return -1===i.indexOf(e)&&t.push(e),t},i?[i]:[]).join(" "))!==i&&this.attr("class",t),this}afterSetters(){this.doTransform&&(this.updateTransform(),this.doTransform=!1)}align(t,e,i,s=!0){let r,o,n,a;let h={},l=this.renderer,d=l.alignedObjects,c=!!t;t?(this.alignOptions=t,this.alignByTranslate=e,this.alignTo=i):(t=this.alignOptions||{},e=this.alignByTranslate,i=this.alignTo);let p=!i||M(i)?i||"renderer":void 0;p&&(c&&L(d,this),i=void 0);let u=A(i,l[p],l),g=t.align,f=t.verticalAlign;return r=(u.x||0)+(t.x||0),o=(u.y||0)+(t.y||0),"right"===g?n=1:"center"===g&&(n=2),n&&(r+=((u.width||0)-(t.width||0))/n),h[e?"translateX":"x"]=Math.round(r),"bottom"===f?a=1:"middle"===f&&(a=2),a&&(o+=((u.height||0)-(t.height||0))/a),h[e?"translateY":"y"]=Math.round(o),s&&(this[this.placed?"animate":"attr"](h),this.placed=!0),this.alignAttr=h,this}alignSetter(t){let e={left:"start",center:"middle",right:"end"};e[t]&&(this.alignValue=t,this.element.setAttribute("text-anchor",e[t]))}animate(t,e,i){let s=o(A(e,this.renderer.globalAnimation,!0)),n=s.defer;return h.hidden&&(s.duration=0),0!==s.duration?(i&&(s.complete=i),D(()=>{this.element&&r(this,t,s)},n)):(this.attr(t,void 0,i||s.complete),T(t,function(t,e){s.step&&s.step.call(this,t,{prop:e,pos:1,elem:this})},this)),this}applyTextOutline(t){let e=this.element;-1!==t.indexOf("contrast")&&(t=t.replace(/contrast/g,this.renderer.getContrast(e.style.fill)));let s=t.split(" "),r=s[s.length-1],o=s[0];if(o&&"none"!==o&&i.svg){this.fakeTS=!0,o=o.replace(/(^[\d\.]+)(.*?)$/g,function(t,e,i){return 2*Number(e)+i}),this.removeTextOutline();let t=h.createElementNS(d,"tspan");u(t,{class:"highcharts-text-outline",fill:r,stroke:r,"stroke-width":o,"stroke-linejoin":"round"});let i=e.querySelector("textPath")||e;[].forEach.call(i.childNodes,e=>{let i=e.cloneNode(!0);i.removeAttribute&&["fill","stroke","stroke-width","stroke"].forEach(t=>i.removeAttribute(t)),t.appendChild(i)});let s=0;[].forEach.call(i.querySelectorAll("text tspan"),t=>{s+=Number(t.getAttribute("dy"))});let n=h.createElementNS(d,"tspan");n.textContent="​",u(n,{x:Number(e.getAttribute("x")),dy:-s}),t.appendChild(n),i.insertBefore(t,i.firstChild)}}attr(t,e,i,s){let{element:r}=this,o=I.symbolCustomAttribs,a,h,l=this,d;return"string"==typeof t&&void 0!==e&&(a=t,(t={})[a]=e),"string"==typeof t?l=(this[t+"Getter"]||this._defaultGetter).call(this,t,r):(T(t,function(e,i){d=!1,s||n(this,i),this.symbolName&&-1!==o.indexOf(i)&&(h||(this.symbolAttr(t),h=!0),d=!0),this.rotation&&("x"===i||"y"===i)&&(this.doTransform=!0),d||(this[i+"Setter"]||this._defaultSetter).call(this,e,i,r)},this),this.afterSetters()),i&&i.call(this),l}clip(t){if(t&&!t.clipPath){let e=E()+"-",i=this.renderer.createElement("clipPath").attr({id:e}).add(this.renderer.defs);b(t,{clipPath:i,id:e,count:0}),t.add(i)}return this.attr("clip-path",t?`url(${this.renderer.url}#${t.id})`:"none")}crisp(t,e){e=Math.round(e||t.strokeWidth||0);let i=t.x||this.x||0,s=t.y||this.y||0,r=(t.width||this.width||0)+i,o=(t.height||this.height||0)+s,n=f(i,e),a=f(s,e);return b(t,{x:n,y:a,width:f(r,e)-n,height:f(o,e)-a}),x(t.strokeWidth)&&(t.strokeWidth=e),t}complexColor(t,i,s){let r=this.renderer,o,n,a,h,l,d,c,p,u,g,f=[],m;v(this.renderer,"complexColor",{args:arguments},function(){if(t.radialGradient?n="radialGradient":t.linearGradient&&(n="linearGradient"),n){if(a=t[n],l=r.gradients,d=t.stops,u=s.radialReference,S(a)&&(t[n]=a={x1:a[0],y1:a[1],x2:a[2],y2:a[3],gradientUnits:"userSpaceOnUse"}),"radialGradient"===n&&u&&!x(a.gradientUnits)&&(h=a,a=w(a,r.getRadialAttr(u,h),{gradientUnits:"userSpaceOnUse"})),T(a,function(t,e){"id"!==e&&f.push(e,t)}),T(d,function(t){f.push(t)}),l[f=f.join(",")])g=l[f].attr("id");else{a.id=g=E();let t=l[f]=r.createElement(n).attr(a).add(r.defs);t.radAttr=h,t.stops=[],d.forEach(function(i){0===i[1].indexOf("rgba")?(c=(o=e.parse(i[1])).get("rgb"),p=o.get("a")):(c=i[1],p=1);let s=r.createElement("stop").attr({offset:i[0],"stop-color":c,"stop-opacity":p}).add(t);t.stops.push(s)})}m="url("+r.url+"#"+g+")",s.setAttribute(i,m),s.gradient=f,t.toString=function(){return m}}})}css(t){let e=this.styles,i={},s=this.element,r,o=!e;if(e&&T(t,function(t,s){e&&e[s]!==t&&(i[s]=t,o=!0)}),o){e&&(t=b(e,i)),null===t.width||"auto"===t.width?delete this.textWidth:"text"===s.nodeName.toLowerCase()&&t.width&&(r=this.textWidth=P(t.width)),b(this.styles,t),r&&!l&&this.renderer.forExport&&delete t.width;let o=w(t);s.namespaceURI===this.SVG_NS&&(["textOutline","textOverflow","width"].forEach(t=>o&&delete o[t]),o.color&&(o.fill=o.color)),m(s,o)}return this.added&&("text"===this.element.nodeName&&this.renderer.buildText(this),t.textOutline&&this.applyTextOutline(t.textOutline)),this}dashstyleSetter(t){let e,i=this["stroke-width"];if("inherit"===i&&(i=1),t=t&&t.toLowerCase()){let s=t.replace("shortdashdotdot","3,1,1,1,1,1,").replace("shortdashdot","3,1,1,1").replace("shortdot","1,1,").replace("shortdash","3,1,").replace("longdash","8,3,").replace(/dot/g,"1,3,").replace("dash","4,3,").replace(/,$/,"").split(",");for(e=s.length;e--;)s[e]=""+P(s[e])*A(i,NaN);t=s.join(",").replace(/NaN/g,"none"),this.element.setAttribute("stroke-dasharray",t)}}destroy(){let t=this,e=t.element||{},i=t.renderer,s=e.ownerSVGElement,r="SPAN"===e.nodeName&&t.parentGroup||void 0,o,a;if(e.onclick=e.onmouseout=e.onmouseover=e.onmousemove=e.point=null,n(t),t.clipPath&&s){let e=t.clipPath;[].forEach.call(s.querySelectorAll("[clip-path],[CLIP-PATH]"),function(t){t.getAttribute("clip-path").indexOf(e.element.id)>-1&&t.removeAttribute("clip-path")}),t.clipPath=e.destroy()}if(t.connector=t.connector?.destroy(),t.stops){for(a=0;ae&&e.join?(i?t+" ":"")+e.join(" "):(e||"").toString(),"")),/(NaN| {2}|^$)/.test(t)&&(t="M 0 0"),this[e]!==t&&(i.setAttribute(e,t),this[e]=t)}fillSetter(t,e,i){"string"==typeof t?i.setAttribute(e,t):t&&this.complexColor(t,e,i)}hrefSetter(t,e,i){i.setAttributeNS("http://www.w3.org/1999/xlink",e,t)}getBBox(t,e){let i,s,r,o;let{alignValue:n,element:a,renderer:h,styles:l,textStr:d}=this,{cache:c,cacheKeys:p}=h,u=a.namespaceURI===this.SVG_NS,g=A(e,this.rotation,0),f=h.styledMode?a&&I.prototype.getStyle.call(a,"font-size"):l.fontSize;if(x(d)&&(-1===(o=d.toString()).indexOf("<")&&(o=o.replace(/\d/g,"0")),o+=["",h.rootFontSize,f,g,this.textWidth,n,l.textOverflow,l.fontWeight].join(",")),o&&!t&&(i=c[o]),!i||i.polygon){if(u||h.forExport){try{r=this.fakeTS&&function(t){let e=a.querySelector(".highcharts-text-outline");e&&m(e,{display:t})},C(r)&&r("none"),i=a.getBBox?b({},a.getBBox()):{width:a.offsetWidth,height:a.offsetHeight,x:0,y:0},C(r)&&r("")}catch(t){}(!i||i.width<0)&&(i={x:0,y:0,width:0,height:0})}else i=this.htmlGetBBox();s=i.height,u&&(i.height=s=({"11px,17":14,"13px,20":16})[`${f||""},${Math.round(s)}`]||s),g&&(i=this.getRotatedBox(i,g));let t={bBox:i};v(this,"afterGetBBox",t),i=t.bBox}if(o&&(""===d||i.height>0)){for(;p.length>250;)delete c[p.shift()];c[o]||p.push(o),c[o]=i}return i}getRotatedBox(t,e){let{x:i,y:s,width:r,height:o}=t,{alignValue:n,translateY:h,rotationOriginX:l=0,rotationOriginY:d=0}=this,c={right:1,center:.5}[n||0]||0,p=Number(this.element.getAttribute("y")||0)-(h?0:s),u=e*a,g=(e-90)*a,f=Math.cos(u),m=Math.sin(u),x=r*f,y=r*m,b=Math.cos(g),v=Math.sin(g),[[S,C],[k,M]]=[l,d].map(t=>[t-t*f,t*m]),w=i+c*(r-x)+S+M+p*b,T=w+x,A=T-o*b,P=A-x,L=s+p-c*y-C+k+p*v,O=L+y,D=O-o*v,E=D-y,I=Math.min(w,T,A,P),j=Math.min(L,O,D,E),B=Math.max(w,T,A,P)-I,R=Math.max(L,O,D,E)-j;return{x:I,y:j,width:B,height:R,polygon:[[w,L],[T,O],[A,D],[P,E]]}}getStyle(t){return c.getComputedStyle(this.element||this,"").getPropertyValue(t)}hasClass(t){return -1!==(""+this.attr("class")).split(" ").indexOf(t)}hide(){return this.attr({visibility:"hidden"})}htmlGetBBox(){return{height:0,width:0,x:0,y:0}}constructor(t,e){this.onEvents={},this.opacity=1,this.SVG_NS=d,this.element="span"===e||"body"===e?g(e):h.createElementNS(this.SVG_NS,e),this.renderer=t,this.styles={},v(this,"afterInit")}on(t,e){let{onEvents:i}=this;return i[t]&&i[t](),i[t]=p(this.element,t,e),this}opacitySetter(t,e,i){let s=Number(Number(t).toFixed(3));this.opacity=s,i.setAttribute(e,s)}reAlign(){this.alignOptions?.width&&"left"!==this.alignOptions.align&&(this.alignOptions.width=this.getBBox().width,this.placed=!1,this.align())}removeClass(t){return this.attr("class",(""+this.attr("class")).replace(M(t)?RegExp(`(^| )${t}( |$)`):t," ").replace(/ +/g," ").trim())}removeTextOutline(){let t=this.element.querySelector("tspan.highcharts-text-outline");t&&this.safeRemoveChild(t)}safeRemoveChild(t){let e=t.parentNode;e&&e.removeChild(t)}setRadialReference(t){let e=this.element.gradient&&this.renderer.gradients[this.element.gradient];return this.element.radialReference=t,e&&e.radAttr&&e.animate(this.renderer.getRadialAttr(t,e.radAttr)),this}shadow(t){let{renderer:e}=this,i=w(this.parentGroup?.rotation===90?{offsetX:-1,offsetY:-1}:{},k(t)?t:{}),s=e.shadowDefinition(i);return this.attr({filter:t?`url(${e.url}#${s})`:"none"})}show(t=!0){return this.attr({visibility:t?"inherit":"visible"})}"stroke-widthSetter"(t,e,i){this[e]=t,i.setAttribute(e,t)}strokeWidth(){if(!this.renderer.styledMode)return this["stroke-width"]||0;let t=this.getStyle("stroke-width"),e=0,i;return/px$/.test(t)?e=P(t):""!==t&&(u(i=h.createElementNS(d,"rect"),{width:t,"stroke-width":0}),this.element.parentNode.appendChild(i),e=i.getBBox().width,i.parentNode.removeChild(i)),e}symbolAttr(t){let e=this;I.symbolCustomAttribs.forEach(function(i){e[i]=A(t[i],e[i])}),e.attr({d:e.renderer.symbols[e.symbolName](e.x,e.y,e.width,e.height,e)})}textSetter(t){t!==this.textStr&&(delete this.textPxLength,this.textStr=t,this.added&&this.renderer.buildText(this),this.reAlign())}titleSetter(t){let e=this.element,i=e.getElementsByTagName("title")[0]||h.createElementNS(this.SVG_NS,"title");e.insertBefore?e.insertBefore(i,e.firstChild):e.appendChild(i),i.textContent=O(A(t,""),[/<[^>]*>/g,""]).replace(/</g,"<").replace(/>/g,">")}toFront(){let t=this.element;return t.parentNode.appendChild(t),this}translate(t,e){return this.attr({translateX:t,translateY:e})}updateTransform(t="transform"){let{element:e,matrix:i,rotation:s=0,rotationOriginX:r,rotationOriginY:o,scaleX:n,scaleY:a,translateX:h=0,translateY:l=0}=this,d=["translate("+h+","+l+")"];x(i)&&d.push("matrix("+i.join(",")+")"),s&&(d.push("rotate("+s+" "+A(r,e.getAttribute("x"),0)+" "+A(o,e.getAttribute("y")||0)+")"),this.text?.element.tagName==="SPAN"&&this.text.attr({rotation:s,rotationOriginX:(r||0)-this.padding,rotationOriginY:(o||0)-this.padding})),(x(n)||x(a))&&d.push("scale("+A(n,1)+" "+A(a,1)+")"),d.length&&!(this.text||this).textPath&&e.setAttribute(t,d.join(" "))}visibilitySetter(t,e,i){"inherit"===t?i.removeAttribute(e):this[e]!==t&&i.setAttribute(e,t),this[e]=t}xGetter(t){return"circle"===this.element.nodeName&&("x"===t?t="cx":"y"===t&&(t="cy")),this._defaultGetter(t)}zIndexSetter(t,e){let i=this.renderer,s=this.parentGroup,r=(s||i).element||i.box,o=this.element,n=r===i.box,a,h,l,d=!1,c,p=this.added,u;if(x(t)?(o.setAttribute("data-z-index",t),t=+t,this[e]===t&&(p=!1)):x(this[e])&&o.removeAttribute("data-z-index"),this[e]=t,p){for((t=this.zIndex)&&s&&(s.handleZ=!0),u=(a=r.childNodes).length-1;u>=0&&!d;u--)c=!x(l=(h=a[u]).getAttribute("data-z-index")),h!==o&&(t<0&&c&&!n&&!u?(r.insertBefore(o,a[u]),d=!0):(P(l)<=t||c&&(!x(t)||t>=0))&&(r.insertBefore(o,a[u+1]),d=!0));d||(r.insertBefore(o,a[n?3:0]),d=!0)}return d}}return I.symbolCustomAttribs=["anchorX","anchorY","clockwise","end","height","innerR","r","start","width","x","y"],I.prototype.strokeSetter=I.prototype.fillSetter,I.prototype.yGetter=I.prototype.xGetter,I.prototype.matrixSetter=I.prototype.rotationOriginXSetter=I.prototype.rotationOriginYSetter=I.prototype.rotationSetter=I.prototype.scaleXSetter=I.prototype.scaleYSetter=I.prototype.translateXSetter=I.prototype.translateYSetter=I.prototype.verticalAlignSetter=function(t,e){this[e]=t,this.doTransform=!0},I}),i(e,"Core/Renderer/SVG/SVGLabel.js",[e["Core/Renderer/SVG/SVGElement.js"],e["Core/Utilities.js"]],function(t,e){let{defined:i,extend:s,isNumber:r,merge:o,pick:n,removeEvent:a}=e;class h extends t{constructor(t,e,i,s,r,o,n,a,l,d){let c;super(t,"g"),this.paddingLeftSetter=this.paddingSetter,this.paddingRightSetter=this.paddingSetter,this.doUpdate=!1,this.textStr=e,this.x=i,this.y=s,this.anchorX=o,this.anchorY=n,this.baseline=l,this.className=d,this.addClass("button"===d?"highcharts-no-tooltip":"highcharts-label"),d&&this.addClass("highcharts-"+d),this.text=t.text(void 0,0,0,a).attr({zIndex:1}),"string"==typeof r&&((c=/^url\((.*?)\)$/.test(r))||this.renderer.symbols[r])&&(this.symbolKey=r),this.bBox=h.emptyBBox,this.padding=3,this.baselineOffset=0,this.needsBox=t.styledMode||c,this.deferredAttr={},this.alignFactor=0}alignSetter(t){let e={left:0,center:.5,right:1}[t];e!==this.alignFactor&&(this.alignFactor=e,this.bBox&&r(this.xSetting)&&this.attr({x:this.xSetting}))}anchorXSetter(t,e){this.anchorX=t,this.boxAttr(e,Math.round(t)-this.getCrispAdjust()-this.xSetting)}anchorYSetter(t,e){this.anchorY=t,this.boxAttr(e,t-this.ySetting)}boxAttr(t,e){this.box?this.box.attr(t,e):this.deferredAttr[t]=e}css(e){if(e){let t={};e=o(e),h.textProps.forEach(i=>{void 0!==e[i]&&(t[i]=e[i],delete e[i])}),this.text.css(t),"fontSize"in t||"fontWeight"in t?this.updateTextPadding():("width"in t||"textOverflow"in t)&&this.updateBoxSize()}return t.prototype.css.call(this,e)}destroy(){a(this.element,"mouseenter"),a(this.element,"mouseleave"),this.text&&this.text.destroy(),this.box&&(this.box=this.box.destroy()),t.prototype.destroy.call(this)}fillSetter(t,e){t&&(this.needsBox=!0),this.fill=t,this.boxAttr(e,t)}getBBox(t,e){this.textStr&&0===this.bBox.width&&0===this.bBox.height&&this.updateBoxSize();let{padding:i,height:s=0,translateX:r=0,translateY:o=0,width:a=0}=this,h=n(this.paddingLeft,i),l=e??(this.rotation||0),d={width:a,height:s,x:r+this.bBox.x-h,y:o+this.bBox.y-i+this.baselineOffset};return l&&(d=this.getRotatedBox(d,l)),d}getCrispAdjust(){return(this.renderer.styledMode&&this.box?this.box.strokeWidth():this["stroke-width"]?parseInt(this["stroke-width"],10):0)%2/2}heightSetter(t){this.heightSetting=t,this.doUpdate=!0}afterSetters(){super.afterSetters(),this.doUpdate&&(this.updateBoxSize(),this.doUpdate=!1)}onAdd(){this.text.add(this),this.attr({text:n(this.textStr,""),x:this.x||0,y:this.y||0}),this.box&&i(this.anchorX)&&this.attr({anchorX:this.anchorX,anchorY:this.anchorY})}paddingSetter(t,e){r(t)?t!==this[e]&&(this[e]=t,this.updateTextPadding()):this[e]=void 0}rSetter(t,e){this.boxAttr(e,t)}strokeSetter(t,e){this.stroke=t,this.boxAttr(e,t)}"stroke-widthSetter"(t,e){t&&(this.needsBox=!0),this["stroke-width"]=t,this.boxAttr(e,t)}"text-alignSetter"(t){this.textAlign=t}textSetter(t){void 0!==t&&this.text.attr({text:t}),this.updateTextPadding(),this.reAlign()}updateBoxSize(){let t;let e=this.text,o={},n=this.padding,a=this.bBox=(!r(this.widthSetting)||!r(this.heightSetting)||this.textAlign)&&i(e.textStr)?e.getBBox(void 0,0):h.emptyBBox;this.width=this.getPaddedWidth(),this.height=(this.heightSetting||a.height||0)+2*n;let l=this.renderer.fontMetrics(e);if(this.baselineOffset=n+Math.min((this.text.firstLineMetrics||l).b,a.height||1/0),this.heightSetting&&(this.baselineOffset+=(this.heightSetting-l.h)/2),this.needsBox&&!e.textPath){if(!this.box){let t=this.box=this.symbolKey?this.renderer.symbol(this.symbolKey):this.renderer.rect();t.addClass(("button"===this.className?"":"highcharts-label-box")+(this.className?" highcharts-"+this.className+"-box":"")),t.add(this)}t=this.getCrispAdjust(),o.x=t,o.y=(this.baseline?-this.baselineOffset:0)+t,o.width=Math.round(this.width),o.height=Math.round(this.height),this.box.attr(s(o,this.deferredAttr)),this.deferredAttr={}}}updateTextPadding(){let t=this.text;if(!t.textPath){this.updateBoxSize();let e=this.baseline?0:this.baselineOffset,s=n(this.paddingLeft,this.padding);i(this.widthSetting)&&this.bBox&&("center"===this.textAlign||"right"===this.textAlign)&&(s+=({center:.5,right:1})[this.textAlign]*(this.widthSetting-this.bBox.width)),(s!==t.x||e!==t.y)&&(t.attr("x",s),t.hasBoxWidthChanged&&(this.bBox=t.getBBox(!0)),void 0!==e&&t.attr("y",e)),t.x=s,t.y=e}}widthSetter(t){this.widthSetting=r(t)?t:void 0,this.doUpdate=!0}getPaddedWidth(){let t=this.padding,e=n(this.paddingLeft,t),i=n(this.paddingRight,t);return(this.widthSetting||this.bBox.width||0)+e+i}xSetter(t){this.x=t,this.alignFactor&&(t-=this.alignFactor*this.getPaddedWidth(),this["forceAnimate:x"]=!0),this.xSetting=Math.round(t),this.attr("translateX",this.xSetting)}ySetter(t){this.ySetting=this.y=Math.round(t),this.attr("translateY",this.ySetting)}}return h.emptyBBox={width:0,height:0,x:0,y:0},h.textProps=["color","direction","fontFamily","fontSize","fontStyle","fontWeight","lineHeight","textAlign","textDecoration","textOutline","textOverflow","whiteSpace","width"],h}),i(e,"Core/Renderer/SVG/Symbols.js",[e["Core/Utilities.js"]],function(t){let{defined:e,isNumber:i,pick:s}=t;function r(t,i,r,o,n){let a=[];if(n){let h=n.start||0,l=s(n.r,r),d=s(n.r,o||r),c=2e-4/(n.borderRadius?1:Math.max(l,1)),p=Math.abs((n.end||0)-h-2*Math.PI)0&&d0)return c;if(t+l>s-h){if(d>e+h&&de+h&&d0){let i=dr&&lh&&c.splice(1,1,["L",l-6,e],["L",l,e-6],["L",l+6,e],["L",s-a,e]);return c},circle:function(t,e,i,s){return r(t+i/2,e+s/2,i/2,s/2,{start:.5*Math.PI,end:2.5*Math.PI,open:!1})},diamond:function(t,e,i,s){return[["M",t+i/2,e],["L",t+i,e+s/2],["L",t+i/2,e+s],["L",t,e+s/2],["Z"]]},rect:o,roundedRect:n,square:o,triangle:function(t,e,i,s){return[["M",t+i/2,e],["L",t+i,e+s],["L",t,e+s],["Z"]]},"triangle-down":function(t,e,i,s){return[["M",t,e],["L",t+i,e],["L",t+i/2,e+s],["Z"]]}}}),i(e,"Core/Renderer/SVG/TextBuilder.js",[e["Core/Renderer/HTML/AST.js"],e["Core/Globals.js"],e["Core/Utilities.js"]],function(t,e,i){let{doc:s,SVG_NS:r,win:o}=e,{attr:n,extend:a,fireEvent:h,isString:l,objectEach:d,pick:c}=i;return class{constructor(t){let e=t.styles;this.renderer=t.renderer,this.svgElement=t,this.width=t.textWidth,this.textLineHeight=e&&e.lineHeight,this.textOutline=e&&e.textOutline,this.ellipsis=!!(e&&"ellipsis"===e.textOverflow),this.noWrap=!!(e&&"nowrap"===e.whiteSpace)}buildSVG(){let e=this.svgElement,i=e.element,r=e.renderer,o=c(e.textStr,"").toString(),n=-1!==o.indexOf("<"),a=i.childNodes,h=!e.added&&r.box,d=[o,this.ellipsis,this.noWrap,this.textLineHeight,this.textOutline,e.getStyle("font-size"),this.width].join(",");if(d!==e.textCache){e.textCache=d,delete e.actualWidth;for(let t=a.length;t--;)i.removeChild(a[t]);if(n||this.ellipsis||this.width||e.textPath||-1!==o.indexOf(" ")&&(!this.noWrap||//g.test(o))){if(""!==o){h&&h.appendChild(i);let s=new t(o);this.modifyTree(s.nodes),s.addToDOM(i),this.modifyDOM(),this.ellipsis&&-1!==(i.textContent||"").indexOf("…")&&e.attr("title",this.unescapeEntities(e.textStr||"",["<",">"])),h&&h.removeChild(i)}}else i.appendChild(s.createTextNode(this.unescapeEntities(o)));l(this.textOutline)&&e.applyTextOutline&&e.applyTextOutline(this.textOutline)}}modifyDOM(){let t;let e=this.svgElement,i=n(e.element,"x");for(e.firstLineMetrics=void 0;t=e.element.firstChild;)if(/^[\s\u200B]*$/.test(t.textContent||" "))e.element.removeChild(t);else break;[].forEach.call(e.element.querySelectorAll("tspan.highcharts-br"),(t,s)=>{t.nextSibling&&t.previousSibling&&(0===s&&1===t.previousSibling.nodeType&&(e.firstLineMetrics=e.renderer.fontMetrics(t.previousSibling)),n(t,{dy:this.getLineHeight(t.nextSibling),x:i}))});let a=this.width||0;if(!a)return;let h=(t,o)=>{let h=t.textContent||"",l=h.replace(/([^\^])-/g,"$1- ").split(" "),d=!this.noWrap&&(l.length>1||e.element.childNodes.length>1),c=this.getLineHeight(o),p=0,u=e.actualWidth;if(this.ellipsis)h&&this.truncate(t,h,void 0,0,Math.max(0,a-.8*c),(t,e)=>t.substring(0,e)+"…");else if(d){let h=[],d=[];for(;o.firstChild&&o.firstChild!==t;)d.push(o.firstChild),o.removeChild(o.firstChild);for(;l.length;)l.length&&!this.noWrap&&p>0&&(h.push(t.textContent||""),t.textContent=l.join(" ").replace(/- /g,"-")),this.truncate(t,void 0,l,0===p&&u||0,a,(t,e)=>l.slice(0,e).join(" ").replace(/- /g,"-")),u=e.actualWidth,p++;d.forEach(e=>{o.insertBefore(e,t)}),h.forEach(e=>{o.insertBefore(s.createTextNode(e),t);let a=s.createElementNS(r,"tspan");a.textContent="​",n(a,{dy:c,x:i}),o.insertBefore(a,t)})}},l=t=>{[].slice.call(t.childNodes).forEach(i=>{i.nodeType===o.Node.TEXT_NODE?h(i,t):(-1!==i.className.baseVal.indexOf("highcharts-br")&&(e.actualWidth=0),l(i))})};l(e.element)}getLineHeight(t){let e=t.nodeType===o.Node.TEXT_NODE?t.parentElement:t;return this.textLineHeight?parseInt(this.textLineHeight.toString(),10):this.renderer.fontMetrics(e||this.svgElement.element).h}modifyTree(t){let e=(i,s)=>{let{attributes:r={},children:o,style:n={},tagName:h}=i,l=this.renderer.styledMode;if("b"===h||"strong"===h?l?r.class="highcharts-strong":n.fontWeight="bold":("i"===h||"em"===h)&&(l?r.class="highcharts-emphasized":n.fontStyle="italic"),n&&n.color&&(n.fill=n.color),"br"===h){r.class="highcharts-br",i.textContent="​";let e=t[s+1];e&&e.textContent&&(e.textContent=e.textContent.replace(/^ +/gm,""))}else"a"===h&&o&&o.some(t=>"#text"===t.tagName)&&(i.children=[{children:o,tagName:"tspan"}]);"#text"!==h&&"a"!==h&&(i.tagName="tspan"),a(i,{attributes:r,style:n}),o&&o.filter(t=>"#text"!==t.tagName).forEach(e)};t.forEach(e),h(this.svgElement,"afterModifyTree",{nodes:t})}truncate(t,e,i,s,r,o){let n,a;let h=this.svgElement,{rotation:l}=h,d=[],c=i?1:0,p=(e||i||"").length,u=p,g=function(e,r){let o=r||e,n=t.parentNode;if(n&&void 0===d[o]&&n.getSubStringLength)try{d[o]=s+n.getSubStringLength(0,i?o+1:o)}catch(t){}return d[o]};if(h.rotation=0,s+(a=g(t.textContent.length))>r){for(;c<=p;)u=Math.ceil((c+p)/2),i&&(n=o(i,u)),a=g(u,n&&n.length-1),c===p?c=p+1:a>r?p=u-1:c=u;0===p?t.textContent="":e&&p===e.length-1||(t.textContent=n||o(e||i,u))}i&&i.splice(0,u),h.actualWidth=a,h.rotation=l}unescapeEntities(t,e){return d(this.renderer.escapes,function(i,s){e&&-1!==e.indexOf(i)||(t=t.toString().replace(RegExp(i,"g"),s))}),t}}}),i(e,"Core/Renderer/SVG/SVGRenderer.js",[e["Core/Renderer/HTML/AST.js"],e["Core/Defaults.js"],e["Core/Color/Color.js"],e["Core/Globals.js"],e["Core/Renderer/RendererRegistry.js"],e["Core/Renderer/SVG/SVGElement.js"],e["Core/Renderer/SVG/SVGLabel.js"],e["Core/Renderer/SVG/Symbols.js"],e["Core/Renderer/SVG/TextBuilder.js"],e["Core/Utilities.js"]],function(t,e,i,s,r,o,n,a,h,l){let d;let{defaultOptions:c}=e,{charts:p,deg2rad:u,doc:g,isFirefox:f,isMS:m,isWebKit:x,noop:y,SVG_NS:b,symbolSizes:v,win:S}=s,{addEvent:C,attr:k,createElement:M,crisp:w,css:T,defined:A,destroyObjectProperties:P,extend:L,isArray:O,isNumber:D,isObject:E,isString:I,merge:j,pick:B,pInt:R,replaceNested:z,uniqueKey:N}=l;class W{constructor(t,e,i,s,r,o,n){let a,h;let l=this.createElement("svg").attr({version:"1.1",class:"highcharts-root"}),d=l.element;n||l.css(this.getStyle(s||{})),t.appendChild(d),k(t,"dir","ltr"),-1===t.innerHTML.indexOf("xmlns")&&k(d,"xmlns",this.SVG_NS),this.box=d,this.boxWrapper=l,this.alignedObjects=[],this.url=this.getReferenceURL(),this.createElement("desc").add().element.appendChild(g.createTextNode("Created with Highcharts 11.4.8")),this.defs=this.createElement("defs").add(),this.allowHTML=o,this.forExport=r,this.styledMode=n,this.gradients={},this.cache={},this.cacheKeys=[],this.imgCount=0,this.rootFontSize=l.getStyle("font-size"),this.setSize(e,i,!1),f&&t.getBoundingClientRect&&((a=function(){T(t,{left:0,top:0}),h=t.getBoundingClientRect(),T(t,{left:Math.ceil(h.left)-h.left+"px",top:Math.ceil(h.top)-h.top+"px"})})(),this.unSubPixelFix=C(S,"resize",a))}definition(e){return new t([e]).addToDOM(this.defs.element)}getReferenceURL(){if((f||x)&&g.getElementsByTagName("base").length){if(!A(d)){let e=N(),i=new t([{tagName:"svg",attributes:{width:8,height:8},children:[{tagName:"defs",children:[{tagName:"clipPath",attributes:{id:e},children:[{tagName:"rect",attributes:{width:4,height:4}}]}]},{tagName:"rect",attributes:{id:"hitme",width:8,height:8,"clip-path":`url(#${e})`,fill:"rgba(0,0,0,0.001)"}}]}]).addToDOM(g.body);T(i,{position:"fixed",top:0,left:0,zIndex:9e5});let s=g.elementFromPoint(6,6);d="hitme"===(s&&s.id),g.body.removeChild(i)}if(d)return z(S.location.href.split("#")[0],[/<[^>]*>/g,""],[/([\('\)])/g,"\\$1"],[/ /g,"%20"])}return""}getStyle(t){return this.style=L({fontFamily:"Helvetica, Arial, sans-serif",fontSize:"1rem"},t),this.style}setStyle(t){this.boxWrapper.css(this.getStyle(t))}isHidden(){return!this.boxWrapper.getBBox().width}destroy(){let t=this.defs;return this.box=null,this.boxWrapper=this.boxWrapper.destroy(),P(this.gradients||{}),this.gradients=null,this.defs=t.destroy(),this.unSubPixelFix&&this.unSubPixelFix(),this.alignedObjects=null,null}createElement(t){return new this.Element(this,t)}getRadialAttr(t,e){return{cx:t[0]-t[2]/2+(e.cx||0)*t[2],cy:t[1]-t[2]/2+(e.cy||0)*t[2],r:(e.r||0)*t[2]}}shadowDefinition(t){let e=[`highcharts-drop-shadow-${this.chartIndex}`,...Object.keys(t).map(e=>`${e}-${t[e]}`)].join("-").toLowerCase().replace(/[^a-z\d\-]/g,""),i=j({color:"#000000",offsetX:1,offsetY:1,opacity:.15,width:5},t);return this.defs.element.querySelector(`#${e}`)||this.definition({tagName:"filter",attributes:{id:e,filterUnits:i.filterUnits},children:this.getShadowFilterContent(i)}),e}getShadowFilterContent(t){return[{tagName:"feDropShadow",attributes:{dx:t.offsetX,dy:t.offsetY,"flood-color":t.color,"flood-opacity":Math.min(5*t.opacity,1),stdDeviation:t.width/2}}]}buildText(t){new h(t).buildSVG()}getContrast(t){let e=i.parse(t).rgba.map(t=>{let e=t/255;return e<=.03928?e/12.92:Math.pow((e+.055)/1.055,2.4)}),s=.2126*e[0]+.7152*e[1]+.0722*e[2];return 1.05/(s+.05)>(s+.05)/.05?"#FFFFFF":"#000000"}button(e,i,s,r,o={},n,a,h,l,d){let p=this.label(e,i,s,l,void 0,void 0,d,void 0,"button"),u=this.styledMode,g=arguments,f=0;o=j(c.global.buttonTheme,o),u&&(delete o.fill,delete o.stroke,delete o["stroke-width"]);let x=o.states||{},y=o.style||{};delete o.states,delete o.style;let b=[t.filterUserAttributes(o)],v=[y];return u||["hover","select","disabled"].forEach((e,i)=>{b.push(j(b[0],t.filterUserAttributes(g[i+5]||x[e]||{}))),v.push(b[i+1].style),delete b[i+1].style}),C(p.element,m?"mouseover":"mouseenter",function(){3!==f&&p.setState(1)}),C(p.element,m?"mouseout":"mouseleave",function(){3!==f&&p.setState(f)}),p.setState=(t=0)=>{if(1!==t&&(p.state=f=t),p.removeClass(/highcharts-button-(normal|hover|pressed|disabled)/).addClass("highcharts-button-"+["normal","hover","pressed","disabled"][t]),!u){p.attr(b[t]);let e=v[t];E(e)&&p.css(e)}},p.attr(b[0]),!u&&(p.css(L({cursor:"default"},y)),d&&p.text.css({pointerEvents:"none"})),p.on("touchstart",t=>t.stopPropagation()).on("click",function(t){3!==f&&r.call(p,t)})}crispLine(t,e){let[i,s]=t;return A(i[1])&&i[1]===s[1]&&(i[1]=s[1]=w(i[1],e)),A(i[2])&&i[2]===s[2]&&(i[2]=s[2]=w(i[2],e)),t}path(t){let e=this.styledMode?{}:{fill:"none"};return O(t)?e.d=t:E(t)&&L(e,t),this.createElement("path").attr(e)}circle(t,e,i){let s=E(t)?t:void 0===t?{}:{x:t,y:e,r:i},r=this.createElement("circle");return r.xSetter=r.ySetter=function(t,e,i){i.setAttribute("c"+e,t)},r.attr(s)}arc(t,e,i,s,r,o){let n;E(t)?(e=(n=t).y,i=n.r,s=n.innerR,r=n.start,o=n.end,t=n.x):n={innerR:s,start:r,end:o};let a=this.symbol("arc",t,e,i,i,n);return a.r=i,a}rect(t,e,i,s,r,o){let n=E(t)?t:void 0===t?{}:{x:t,y:e,r,width:Math.max(i||0,0),height:Math.max(s||0,0)},a=this.createElement("rect");return this.styledMode||(void 0!==o&&(n["stroke-width"]=o,L(n,a.crisp(n))),n.fill="none"),a.rSetter=function(t,e,i){a.r=t,k(i,{rx:t,ry:t})},a.rGetter=function(){return a.r||0},a.attr(n)}roundedRect(t){return this.symbol("roundedRect").attr(t)}setSize(t,e,i){this.width=t,this.height=e,this.boxWrapper.animate({width:t,height:e},{step:function(){this.attr({viewBox:"0 0 "+this.attr("width")+" "+this.attr("height")})},duration:B(i,!0)?void 0:0}),this.alignElements()}g(t){let e=this.createElement("g");return t?e.attr({class:"highcharts-"+t}):e}image(t,e,i,s,r,o){let n={preserveAspectRatio:"none"};D(e)&&(n.x=e),D(i)&&(n.y=i),D(s)&&(n.width=s),D(r)&&(n.height=r);let a=this.createElement("image").attr(n),h=function(e){a.attr({href:t}),o.call(a,e)};if(o){a.attr({href:"data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="});let e=new S.Image;C(e,"load",h),e.src=t,e.complete&&h({})}else a.attr({href:t});return a}symbol(t,e,i,s,r,o){let n,a,h,l;let d=this,c=/^url\((.*?)\)$/,u=c.test(t),f=!u&&(this.symbols[t]?t:"circle"),m=f&&this.symbols[f];if(m)"number"==typeof e&&(a=m.call(this.symbols,e||0,i||0,s||0,r||0,o)),n=this.path(a),d.styledMode||n.attr("fill","none"),L(n,{symbolName:f||void 0,x:e,y:i,width:s,height:r}),o&&L(n,o);else if(u){h=t.match(c)[1];let s=n=this.image(h);s.imgwidth=B(o&&o.width,v[h]&&v[h].width),s.imgheight=B(o&&o.height,v[h]&&v[h].height),l=t=>t.attr({width:t.width,height:t.height}),["width","height"].forEach(t=>{s[`${t}Setter`]=function(t,e){this[e]=t;let{alignByTranslate:i,element:s,width:r,height:n,imgwidth:a,imgheight:h}=this,l="width"===e?a:h,d=1;o&&"within"===o.backgroundSize&&r&&n&&a&&h?(d=Math.min(r/a,n/h),k(s,{width:Math.round(a*d),height:Math.round(h*d)})):s&&l&&s.setAttribute(e,l),!i&&a&&h&&this.translate(((r||0)-a*d)/2,((n||0)-h*d)/2)}}),A(e)&&s.attr({x:e,y:i}),s.isImg=!0,s.symbolUrl=t,A(s.imgwidth)&&A(s.imgheight)?l(s):(s.attr({width:0,height:0}),M("img",{onload:function(){let t=p[d.chartIndex];0===this.width&&(T(this,{position:"absolute",top:"-999em"}),g.body.appendChild(this)),v[h]={width:this.width,height:this.height},s.imgwidth=this.width,s.imgheight=this.height,s.element&&l(s),this.parentNode&&this.parentNode.removeChild(this),d.imgCount--,d.imgCount||!t||t.hasLoaded||t.onload()},src:h}),this.imgCount++)}return n}clipRect(t,e,i,s){return this.rect(t,e,i,s,0)}text(t,e,i,s){let r={};if(s&&(this.allowHTML||!this.forExport))return this.html(t,e,i);r.x=Math.round(e||0),i&&(r.y=Math.round(i)),A(t)&&(r.text=t);let o=this.createElement("text").attr(r);return s&&(!this.forExport||this.allowHTML)||(o.xSetter=function(t,e,i){let s=i.getElementsByTagName("tspan"),r=i.getAttribute(e);for(let i=0,o;it.align())}}return L(W.prototype,{Element:o,SVG_NS:b,escapes:{"&":"&","<":"<",">":">","'":"'",'"':"""},symbols:a,draw:y}),r.registerRendererType("svg",W,!0),W}),i(e,"Core/Renderer/HTML/HTMLElement.js",[e["Core/Renderer/HTML/AST.js"],e["Core/Globals.js"],e["Core/Renderer/SVG/SVGElement.js"],e["Core/Utilities.js"]],function(t,e,i,s){let{composed:r}=e,{attr:o,css:n,createElement:a,defined:h,extend:l,pInt:d,pushUnique:c}=s;function p(t,e,s){let r=this.div?.style||s.style;i.prototype[`${e}Setter`].call(this,t,e,s),r&&(r[e]=t)}let u=(t,e)=>{if(!t.div){let s=o(t.element,"class"),r=t.css,n=a("div",s?{className:s}:void 0,{position:"absolute",left:`${t.translateX||0}px`,top:`${t.translateY||0}px`,...t.styles,display:t.display,opacity:t.opacity,visibility:t.visibility},t.parentGroup?.div||e);t.classSetter=(t,e,i)=>{i.setAttribute("class",t),n.className=t},t.translateXSetter=t.translateYSetter=(e,i)=>{t[i]=e,n.style["translateX"===i?"left":"top"]=`${e}px`,t.doTransform=!0},t.opacitySetter=t.visibilitySetter=p,t.css=e=>(r.call(t,e),e.cursor&&(n.style.cursor=e.cursor),e.pointerEvents&&(n.style.pointerEvents=e.pointerEvents),t),t.on=function(){return i.prototype.on.apply({element:n,onEvents:t.onEvents},arguments),t},t.div=n}return t.div};class g extends i{static compose(t){c(r,this.compose)&&(t.prototype.html=function(t,e,i){return new g(this,"span").attr({text:t,x:Math.round(e),y:Math.round(i)})})}constructor(t,e){super(t,e),this.css({position:"absolute",...t.styledMode?{}:{fontFamily:t.style.fontFamily,fontSize:t.style.fontSize}}),this.element.style.whiteSpace="nowrap"}getSpanCorrection(t,e,i){this.xCorr=-t*i,this.yCorr=-e}css(t){let e;let{element:i}=this,s="SPAN"===i.tagName&&t&&"width"in t,r=s&&t.width;return s&&(delete t.width,this.textWidth=d(r)||void 0,e=!0),t?.textOverflow==="ellipsis"&&(t.whiteSpace="nowrap",t.overflow="hidden"),l(this.styles,t),n(i,t),e&&this.updateTransform(),this}htmlGetBBox(){let{element:t}=this;return{x:t.offsetLeft,y:t.offsetTop,width:t.offsetWidth,height:t.offsetHeight}}updateTransform(){if(!this.added){this.alignOnAdd=!0;return}let{element:t,renderer:e,rotation:i,rotationOriginX:s,rotationOriginY:r,styles:o,textAlign:a="left",textWidth:l,translateX:d=0,translateY:c=0,x:p=0,y:u=0}=this,g={left:0,center:.5,right:1}[a],f=o.whiteSpace;if(n(t,{marginLeft:`${d}px`,marginTop:`${c}px`}),"SPAN"===t.tagName){let o=[i,a,t.innerHTML,l,this.textAlign].join(","),d=-(this.parentGroup?.padding*1)||0,c,m=!1;if(l!==this.oldTextWidth){let e=this.textPxLength?this.textPxLength:(n(t,{width:"",whiteSpace:f||"nowrap"}),t.offsetWidth),s=l||0;(s>this.oldTextWidth||e>s)&&(/[ \-]/.test(t.textContent||t.innerText)||"ellipsis"===t.style.textOverflow)&&(n(t,{width:e>s||i?l+"px":"auto",display:"block",whiteSpace:f||"normal"}),this.oldTextWidth=l,m=!0)}this.hasBoxWidthChanged=m,o!==this.cTT&&(c=e.fontMetrics(t).b,h(i)&&(i!==(this.oldRotation||0)||a!==this.oldAlign)&&this.setSpanRotation(i,d,d),this.getSpanCorrection(!h(i)&&this.textPxLength||t.offsetWidth,c,g));let{xCorr:x=0,yCorr:y=0}=this,b=(s??p)-x-p-d,v=(r??u)-y-u-d;n(t,{left:`${p+x}px`,top:`${u+y}px`,transformOrigin:`${b}px ${v}px`}),this.cTT=o,this.oldRotation=i,this.oldAlign=a}}setSpanRotation(t,e,i){n(this.element,{transform:`rotate(${t}deg)`,transformOrigin:`${e}% ${i}px`})}add(t){let e;let i=this.renderer.box.parentNode,s=[];if(this.parentGroup=t,t&&!(e=t.div)){let r=t;for(;r;)s.push(r),r=r.parentGroup;for(let t of s.reverse())e=u(t,i)}return(e||i).appendChild(this.element),this.added=!0,this.alignOnAdd&&this.updateTransform(),this}textSetter(e){e!==this.textStr&&(delete this.bBox,delete this.oldTextWidth,t.setElementHTML(this.element,e??""),this.textStr=e,this.doTransform=!0)}alignSetter(t){this.alignValue=this.textAlign=t,this.doTransform=!0}xSetter(t,e){this[e]=t,this.doTransform=!0}}let f=g.prototype;return f.visibilitySetter=f.opacitySetter=p,f.ySetter=f.rotationSetter=f.rotationOriginXSetter=f.rotationOriginYSetter=f.xSetter,g}),i(e,"Core/Axis/AxisDefaults.js",[],function(){var t,e;return(e=t||(t={})).xAxis={alignTicks:!0,allowDecimals:void 0,panningEnabled:!0,zIndex:2,zoomEnabled:!0,dateTimeLabelFormats:{millisecond:{main:"%H:%M:%S.%L",range:!1},second:{main:"%H:%M:%S",range:!1},minute:{main:"%H:%M",range:!1},hour:{main:"%H:%M",range:!1},day:{main:"%e %b"},week:{main:"%e %b"},month:{main:"%b '%y"},year:{main:"%Y"}},endOnTick:!1,gridLineDashStyle:"Solid",gridZIndex:1,labels:{autoRotationLimit:80,distance:15,enabled:!0,indentation:10,overflow:"justify",reserveSpace:void 0,rotation:void 0,staggerLines:0,step:0,useHTML:!1,zIndex:7,style:{color:"#333333",cursor:"default",fontSize:"0.8em"}},maxPadding:.01,minorGridLineDashStyle:"Solid",minorTickLength:2,minorTickPosition:"outside",minorTicksPerMajor:5,minPadding:.01,offset:void 0,reversed:void 0,reversedStacks:!1,showEmpty:!0,showFirstLabel:!0,showLastLabel:!0,startOfWeek:1,startOnTick:!1,tickLength:10,tickPixelInterval:100,tickmarkPlacement:"between",tickPosition:"outside",title:{align:"middle",useHTML:!1,x:0,y:0,style:{color:"#666666",fontSize:"0.8em"}},visible:!0,minorGridLineColor:"#f2f2f2",minorGridLineWidth:1,minorTickColor:"#999999",lineColor:"#333333",lineWidth:1,gridLineColor:"#e6e6e6",gridLineWidth:void 0,tickColor:"#333333"},e.yAxis={reversedStacks:!0,endOnTick:!0,maxPadding:.05,minPadding:.05,tickPixelInterval:72,showLastLabel:!0,labels:{x:void 0},startOnTick:!0,title:{text:"Values"},stackLabels:{animation:{},allowOverlap:!1,enabled:!1,crop:!0,overflow:"justify",formatter:function(){let{numberFormatter:t}=this.axis.chart;return t(this.total||0,-1)},style:{color:"#000000",fontSize:"0.7em",fontWeight:"bold",textOutline:"1px contrast"}},gridLineWidth:1,lineWidth:0},t}),i(e,"Core/Foundation.js",[e["Core/Utilities.js"]],function(t){var e;let{addEvent:i,isFunction:s,objectEach:r,removeEvent:o}=t;return(e||(e={})).registerEventOptions=function(t,e){t.eventOptions=t.eventOptions||{},r(e.events,function(e,r){t.eventOptions[r]!==e&&(t.eventOptions[r]&&(o(t,r,t.eventOptions[r]),delete t.eventOptions[r]),s(e)&&(t.eventOptions[r]=e,i(t,r,e,{order:0})))})},e}),i(e,"Core/Axis/Tick.js",[e["Core/Templating.js"],e["Core/Globals.js"],e["Core/Utilities.js"]],function(t,e,i){let{deg2rad:s}=e,{clamp:r,correctFloat:o,defined:n,destroyObjectProperties:a,extend:h,fireEvent:l,isNumber:d,merge:c,objectEach:p,pick:u}=i;return class{constructor(t,e,i,s,r){this.isNew=!0,this.isNewLabel=!0,this.axis=t,this.pos=e,this.type=i||"",this.parameters=r||{},this.tickmarkOffset=this.parameters.tickmarkOffset,this.options=this.parameters.options,l(this,"init"),i||s||this.addLabel()}addLabel(){let e=this,i=e.axis,s=i.options,r=i.chart,a=i.categories,c=i.logarithmic,p=i.names,g=e.pos,f=u(e.options&&e.options.labels,s.labels),m=i.tickPositions,x=g===m[0],y=g===m[m.length-1],b=(!f.step||1===f.step)&&1===i.tickInterval,v=m.info,S=e.label,C,k,M,w=this.parameters.category||(a?u(a[g],p[g],g):g);c&&d(w)&&(w=o(c.lin2log(w))),i.dateTime&&(v?C=(k=r.time.resolveDTLFormat(s.dateTimeLabelFormats[!s.grid&&v.higherRanks[g]||v.unitName])).main:d(w)&&(C=i.dateTime.getXDateFormat(w,s.dateTimeLabelFormats||{}))),e.isFirst=x,e.isLast=y;let T={axis:i,chart:r,dateTimeLabelFormat:C,isFirst:x,isLast:y,pos:g,tick:e,tickPositionInfo:v,value:w};l(this,"labelFormat",T);let A=e=>f.formatter?f.formatter.call(e,e):f.format?(e.text=i.defaultLabelFormatter.call(e),t.format(f.format,e,r)):i.defaultLabelFormatter.call(e),P=A.call(T,T),L=k&&k.list;L?e.shortenLabel=function(){for(M=0;M0&&r+c*p>h&&(v=Math.round((o-r)/Math.cos(d*s))):(y=r-c*p,b=r+(1-c)*p,yh&&(m=h-t.x+m*c,x=-1),(m=Math.min(g,m))m||e.autoRotation&&(l.styles||{}).width)&&(v=m)),v&&(this.shortenLabel?this.shortenLabel():(f.width=Math.floor(v)+"px",(i.style||{}).textOverflow||(f.textOverflow="ellipsis"),l.css(f)))}moveLabel(t,e){let i=this,s=i.label,r=i.axis,o=!1,n;s&&s.textStr===t?(i.movedLabel=s,o=!0,delete i.label):p(r.ticks,function(e){o||e.isNew||e===i||!e.label||e.label.textStr!==t||(i.movedLabel=e.label,o=!0,e.labelPos=i.movedLabel.xy,delete e.label)}),!o&&(i.labelPos||s)&&(n=i.labelPos||s.xy,i.movedLabel=i.createLabel(t,e,n),i.movedLabel&&i.movedLabel.attr({opacity:0}))}render(t,e,i){let s=this.axis,r=s.horiz,n=this.pos,a=u(this.tickmarkOffset,s.tickmarkOffset),h=this.getPosition(r,n,a,e),d=h.x,c=h.y,p=s.pos,g=p+s.len,f=r?d:c;!s.chart.polar&&this.isNew&&(o(f)g)&&(i=0);let m=u(i,this.label&&this.label.newOpacity,1);i=u(i,1),this.isActive=!0,this.renderGridLine(e,i),this.renderMark(h,i),this.renderLabel(h,e,m,t),this.isNew=!1,l(this,"afterRender")}renderGridLine(t,e){let i=this.axis,s=i.options,r={},o=this.pos,n=this.type,a=u(this.tickmarkOffset,i.tickmarkOffset),h=i.chart.renderer,l=this.gridLine,d,c=s.gridLineWidth,p=s.gridLineColor,g=s.gridLineDashStyle;"minor"===this.type&&(c=s.minorGridLineWidth,p=s.minorGridLineColor,g=s.minorGridLineDashStyle),l||(i.chart.styledMode||(r.stroke=p,r["stroke-width"]=c||0,r.dashstyle=g),n||(r.zIndex=1),t&&(e=0),this.gridLine=l=h.path().attr(r).addClass("highcharts-"+(n?n+"-":"")+"grid-line").add(i.gridGroup)),l&&(d=i.getPlotLinePath({value:o+a,lineWidth:l.strokeWidth(),force:"pass",old:t,acrossPanes:!1}))&&l[t||this.isNew?"attr":"animate"]({d:d,opacity:e})}renderMark(t,e){let i=this.axis,s=i.options,r=i.chart.renderer,o=this.type,n=i.tickSize(o?o+"Tick":"tick"),a=t.x,h=t.y,l=u(s["minor"!==o?"tickWidth":"minorTickWidth"],!o&&i.isXAxis?1:0),d=s["minor"!==o?"tickColor":"minorTickColor"],c=this.mark,p=!c;n&&(i.opposite&&(n[0]=-n[0]),c||(this.mark=c=r.path().addClass("highcharts-"+(o?o+"-":"")+"tick").add(i.axisGroup),i.chart.styledMode||c.attr({stroke:d,"stroke-width":l})),c[p?"attr":"animate"]({d:this.getMarkPath(a,h,n[0],c.strokeWidth(),i.horiz,r),opacity:e}))}renderLabel(t,e,i,s){let r=this.axis,o=r.horiz,n=r.options,a=this.label,h=n.labels,l=h.step,c=u(this.tickmarkOffset,r.tickmarkOffset),p=t.x,g=t.y,f=!0;a&&d(p)&&(a.xy=t=this.getLabelPosition(p,g,a,o,h,c,s,l),(!this.isFirst||this.isLast||n.showFirstLabel)&&(!this.isLast||this.isFirst||n.showLastLabel)?!o||h.step||h.rotation||e||0===i||this.handleOverflow(t):f=!1,l&&s%l&&(f=!1),f&&d(t.y)?(t.opacity=i,a[this.isNewLabel?"attr":"animate"](t).show(!0),this.isNewLabel=!1):(a.hide(),this.isNewLabel=!0))}replaceMovedLabel(){let t=this.label,e=this.axis;t&&!this.isNew&&(t.animate({opacity:0},void 0,t.destroy),delete this.label),e.isDirty=!0,this.label=this.movedLabel,delete this.movedLabel}}}),i(e,"Core/Axis/Axis.js",[e["Core/Animation/AnimationUtilities.js"],e["Core/Axis/AxisDefaults.js"],e["Core/Color/Color.js"],e["Core/Defaults.js"],e["Core/Foundation.js"],e["Core/Globals.js"],e["Core/Axis/Tick.js"],e["Core/Utilities.js"]],function(t,e,i,s,r,o,n,a){let{animObject:h}=t,{xAxis:l,yAxis:d}=e,{defaultOptions:c}=s,{registerEventOptions:p}=r,{deg2rad:u}=o,{arrayMax:g,arrayMin:f,clamp:m,correctFloat:x,defined:y,destroyObjectProperties:b,erase:v,error:S,extend:C,fireEvent:k,getClosestDistance:M,insertItem:w,isArray:T,isNumber:A,isString:P,merge:L,normalizeTickInterval:O,objectEach:D,pick:E,relativeLength:I,removeEvent:j,splat:B,syncTimeout:R}=a,z=(t,e)=>O(e,void 0,void 0,E(t.options.allowDecimals,e<.5||void 0!==t.tickAmount),!!t.tickAmount);C(c,{xAxis:l,yAxis:L(l,d)});class N{constructor(t,e,i){this.init(t,e,i)}init(t,e,i=this.coll){let s="xAxis"===i,r=this.isZAxis||(t.inverted?!s:s);this.chart=t,this.horiz=r,this.isXAxis=s,this.coll=i,k(this,"init",{userOptions:e}),this.opposite=E(e.opposite,this.opposite),this.side=E(e.side,this.side,r?this.opposite?0:2:this.opposite?1:3),this.setOptions(e);let o=this.options,n=o.labels;this.type??(this.type=o.type||"linear"),this.uniqueNames??(this.uniqueNames=o.uniqueNames??!0),k(this,"afterSetType"),this.userOptions=e,this.minPixelPadding=0,this.reversed=E(o.reversed,this.reversed),this.visible=o.visible,this.zoomEnabled=o.zoomEnabled,this.hasNames="category"===this.type||!0===o.categories,this.categories=T(o.categories)&&o.categories||(this.hasNames?[]:void 0),this.names||(this.names=[],this.names.keys={}),this.plotLinesAndBandsGroups={},this.positiveValuesOnly=!!this.logarithmic,this.isLinked=y(o.linkedTo),this.ticks={},this.labelEdge=[],this.minorTicks={},this.plotLinesAndBands=[],this.alternateBands={},this.len??(this.len=0),this.minRange=this.userMinRange=o.minRange||o.maxZoom,this.range=o.range,this.offset=o.offset||0,this.max=void 0,this.min=void 0;let a=E(o.crosshair,B(t.options.tooltip.crosshairs)[s?0:1]);this.crosshair=!0===a?{}:a,-1===t.axes.indexOf(this)&&(s?t.axes.splice(t.xAxis.length,0,this):t.axes.push(this),w(this,t[this.coll])),t.orderItems(this.coll),this.series=this.series||[],t.inverted&&!this.isZAxis&&s&&!y(this.reversed)&&(this.reversed=!0),this.labelRotation=A(n.rotation)?n.rotation:void 0,p(this,o),k(this,"afterInit")}setOptions(t){let e=this.horiz?{labels:{autoRotation:[-45],padding:4},margin:15}:{labels:{padding:1},title:{rotation:90*this.side}};this.options=L(e,c[this.coll],t),k(this,"afterSetOptions",{userOptions:t})}defaultLabelFormatter(){let t=this.axis,{numberFormatter:e}=this.chart,i=A(this.value)?this.value:NaN,s=t.chart.time,r=t.categories,o=this.dateTimeLabelFormat,n=c.lang,a=n.numericSymbols,h=n.numericSymbolMagnitude||1e3,l=t.logarithmic?Math.abs(i):t.tickInterval,d=a&&a.length,p,u;if(r)u=`${this.value}`;else if(o)u=s.dateFormat(o,i);else if(d&&a&&l>=1e3)for(;d--&&void 0===u;)l>=(p=Math.pow(h,d+1))&&10*i%p==0&&null!==a[d]&&0!==i&&(u=e(i/p,-1)+a[d]);return void 0===u&&(u=Math.abs(i)>=1e4?e(i,-1):e(i,-1,void 0,"")),u}getSeriesExtremes(){let t;let e=this;k(this,"getSeriesExtremes",null,function(){e.hasVisibleSeries=!1,e.dataMin=e.dataMax=e.threshold=void 0,e.softThreshold=!e.isXAxis,e.series.forEach(i=>{if(i.reserveSpace()){let s=i.options,r,o=s.threshold,n,a;if(e.hasVisibleSeries=!0,e.positiveValuesOnly&&0>=(o||0)&&(o=void 0),e.isXAxis)(r=i.xData)&&r.length&&(r=e.logarithmic?r.filter(t=>t>0):r,n=(t=i.getXExtremes(r)).min,a=t.max,A(n)||n instanceof Date||(r=r.filter(A),n=(t=i.getXExtremes(r)).min,a=t.max),r.length&&(e.dataMin=Math.min(E(e.dataMin,n),n),e.dataMax=Math.max(E(e.dataMax,a),a)));else{let t=i.applyExtremes();A(t.dataMin)&&(n=t.dataMin,e.dataMin=Math.min(E(e.dataMin,n),n)),A(t.dataMax)&&(a=t.dataMax,e.dataMax=Math.max(E(e.dataMax,a),a)),y(o)&&(e.threshold=o),(!s.softThreshold||e.positiveValuesOnly)&&(e.softThreshold=!1)}}})}),k(this,"afterGetSeriesExtremes")}translate(t,e,i,s,r,o){let n=this.linkedParent||this,a=s&&n.old?n.old.min:n.min;if(!A(a))return NaN;let h=n.minPixelPadding,l=(n.isOrdinal||n.brokenAxis?.hasBreaks||n.logarithmic&&r)&&n.lin2val,d=1,c=0,p=s&&n.old?n.old.transA:n.transA,u=0;return p||(p=n.transA),i&&(d*=-1,c=n.len),n.reversed&&(d*=-1,c-=d*(n.sector||n.len)),e?(u=(t=t*d+c-h)/p+a,l&&(u=n.lin2val(u))):(l&&(t=n.val2lin(t)),u=d*(t-a)*p+c+d*h+(A(o)?p*o:0),n.isRadial||(u=x(u))),u}toPixels(t,e){return this.translate(t,!1,!this.horiz,void 0,!0)+(e?0:this.pos)}toValue(t,e){return this.translate(t-(e?0:this.pos),!0,!this.horiz,void 0,!0)}getPlotLinePath(t){let e=this,i=e.chart,s=e.left,r=e.top,o=t.old,n=t.value,a=t.lineWidth,h=o&&i.oldChartHeight||i.chartHeight,l=o&&i.oldChartWidth||i.chartWidth,d=e.transB,c=t.translatedValue,p=t.force,u,g,f,x,y;function b(t,e,i){return"pass"!==p&&(ti)&&(p?t=m(t,e,i):y=!0),t}let v={value:n,lineWidth:a,old:o,force:p,acrossPanes:t.acrossPanes,translatedValue:c};return k(this,"getPlotLinePath",v,function(t){u=f=(c=m(c=E(c,e.translate(n,void 0,void 0,o)),-1e9,1e9))+d,g=x=h-c-d,A(c)?e.horiz?(g=r,x=h-e.bottom+(e.options.isInternal?0:i.scrollablePixelsY||0),u=f=b(u,s,s+e.width)):(u=s,f=l-e.right+(i.scrollablePixelsX||0),g=x=b(g,r,r+e.height)):(y=!0,p=!1),t.path=y&&!p?void 0:i.renderer.crispLine([["M",u,g],["L",f,x]],a||1)}),v.path}getLinearTickPositions(t,e,i){let s,r,o;let n=x(Math.floor(e/t)*t),a=x(Math.ceil(i/t)*t),h=[];if(x(n+t)===n&&(o=20),this.single)return[e];for(s=n;s<=a&&(h.push(s),(s=x(s+t,o))!==r);)r=s;return h}getMinorTickInterval(){let{minorTicks:t,minorTickInterval:e}=this.options;return!0===t?E(e,"auto"):!1!==t?e:void 0}getMinorTickPositions(){let t=this.options,e=this.tickPositions,i=this.minorTickInterval,s=this.pointRangePadding||0,r=(this.min||0)-s,o=(this.max||0)+s,n=o-r,a=[],h;if(n&&n/i(t.xIncrement?t.xData?.slice(0,2):t.xData)||[]))||0),this.dataMax-this.dataMin)),A(i)&&A(s)&&A(r)&&i-s=r,o=(r-i+s)/2,a=[s-o,E(t.min,s-o)],n&&(a[2]=e?e.log2lin(this.dataMin):this.dataMin),h=[(s=g(a))+r,E(t.max,s+r)],n&&(h[2]=e?e.log2lin(this.dataMax):this.dataMax),(i=f(h))-st-e),t=M([i]))}return t&&e?Math.min(t,e):t||e}nameToX(t){let e=T(this.options.categories),i=e?this.categories:this.names,s=t.options.x,r;return t.series.requireSorting=!1,y(s)||(s=this.uniqueNames&&i?e?i.indexOf(t.name):E(i.keys[t.name],-1):t.series.autoIncrement()),-1===s?!e&&i&&(r=i.length):r=s,void 0!==r?(this.names[r]=t.name,this.names.keys[t.name]=r):t.x&&(r=t.x),r}updateNames(){let t=this,e=this.names;e.length>0&&(Object.keys(e.keys).forEach(function(t){delete e.keys[t]}),e.length=0,this.minRange=this.userMinRange,(this.series||[]).forEach(e=>{e.xIncrement=null,(!e.points||e.isDirtyData)&&(t.max=Math.max(t.max,e.xData.length-1),e.processData(),e.generatePoints()),e.data.forEach(function(i,s){let r;i?.options&&void 0!==i.name&&void 0!==(r=t.nameToX(i))&&r!==i.x&&(i.x=r,e.xData[s]=r)})}))}setAxisTranslation(){let t=this,e=t.max-t.min,i=t.linkedParent,s=!!t.categories,r=t.isXAxis,o=t.axisPointRange||0,n,a=0,h=0,l,d=t.transA;(r||s||o)&&(n=t.getClosest(),i?(a=i.minPointOffset,h=i.pointRangePadding):t.series.forEach(function(e){let i=s?1:r?E(e.options.pointRange,n,0):t.axisPointRange||0,l=e.options.pointPlacement;if(o=Math.max(o,i),!t.single||s){let t=e.is("xrange")?!r:r;a=Math.max(a,t&&P(l)?0:i/2),h=Math.max(h,t&&"on"===l?0:i)}}),l=t.ordinal&&t.ordinal.slope&&n?t.ordinal.slope/n:1,t.minPointOffset=a*=l,t.pointRangePadding=h*=l,t.pointRange=Math.min(o,t.single&&s?1:e),r&&n&&(t.closestPointRange=n)),t.translationSlope=t.transA=d=t.staticScale||t.len/(e+h||1),t.transB=t.horiz?t.left:t.bottom,t.minPixelPadding=d*a,k(this,"afterSetAxisTranslation")}minFromRange(){let{max:t,min:e}=this;return A(t)&&A(e)&&t-e||void 0}setTickInterval(t){let{categories:e,chart:i,dataMax:s,dataMin:r,dateTime:o,isXAxis:n,logarithmic:a,options:h,softThreshold:l}=this,d=A(this.threshold)?this.threshold:void 0,c=this.minRange||0,{ceiling:p,floor:u,linkedTo:g,softMax:f,softMin:m}=h,b=A(g)&&i[this.coll]?.[g],v=h.tickPixelInterval,C=h.maxPadding,M=h.minPadding,w=0,T,P=A(h.tickInterval)&&h.tickInterval>=0?h.tickInterval:void 0,L,O,D,I;if(o||e||b||this.getTickAmount(),D=E(this.userMin,h.min),I=E(this.userMax,h.max),b?(this.linkedParent=b,T=b.getExtremes(),this.min=E(T.min,T.dataMin),this.max=E(T.max,T.dataMax),this.type!==b.type&&S(11,!0,i)):(l&&y(d)&&A(s)&&A(r)&&(r>=d?(L=d,M=0):s<=d&&(O=d,C=0)),this.min=E(D,L,r),this.max=E(I,O,s)),A(this.max)&&A(this.min)&&(a&&(this.positiveValuesOnly&&!t&&0>=Math.min(this.min,E(r,this.min))&&S(10,!0,i),this.min=x(a.log2lin(this.min),16),this.max=x(a.log2lin(this.max),16)),this.range&&A(r)&&(this.userMin=this.min=D=Math.max(r,this.minFromRange()||0),this.userMax=I=this.max,this.range=void 0)),k(this,"foundExtremes"),this.adjustForMinRange(),A(this.min)&&A(this.max)){if(!A(this.userMin)&&A(m)&&mthis.max&&(this.max=I=f),e||this.axisPointRange||this.stacking?.usePercentage||b||!(w=this.max-this.min)||(!y(D)&&M&&(this.min-=w*M),y(I)||!C||(this.max+=w*C)),!A(this.userMin)&&A(u)&&(this.min=Math.max(this.min,u)),!A(this.userMax)&&A(p)&&(this.max=Math.min(this.max,p)),l&&A(r)&&A(s)){let t=d||0;!y(D)&&this.min=t?this.min=h.minRange?Math.min(t,this.max-c):t:!y(I)&&this.max>t&&s<=t&&(this.max=h.minRange?Math.max(t,this.min+c):t)}!i.polar&&this.min>this.max&&(y(h.min)?this.max=this.min:y(h.max)&&(this.min=this.max)),w=this.max-this.min}if(this.min!==this.max&&A(this.min)&&A(this.max)?b&&!P&&v===b.options.tickPixelInterval?this.tickInterval=P=b.tickInterval:this.tickInterval=E(P,this.tickAmount?w/Math.max(this.tickAmount-1,1):void 0,e?1:w*v/Math.max(this.len,v)):this.tickInterval=1,n&&!t){let t=this.min!==this.old?.min||this.max!==this.old?.max;this.series.forEach(function(e){e.forceCrop=e.forceCropping?.(),e.processData(t)}),k(this,"postProcessData",{hasExtremesChanged:t})}this.setAxisTranslation(),k(this,"initialAxisTranslation"),this.pointRange&&!P&&(this.tickInterval=Math.max(this.pointRange,this.tickInterval));let j=E(h.minTickInterval,o&&!this.series.some(t=>t.noSharedTooltip)?this.closestPointRange:0);!P&&this.tickIntervalMath.max(2*this.len,200))a=[this.min,this.max],S(19,!1,this.chart);else if(this.dateTime)a=this.getTimeTicks(this.dateTime.normalizeTimeTickInterval(this.tickInterval,t.units),this.min,this.max,t.startOfWeek,this.ordinal?.positions,this.closestPointRange,!0);else if(this.logarithmic)a=this.logarithmic.getLogTickPositions(this.tickInterval,this.min,this.max);else{let t=this.tickInterval,e=t;for(;e<=2*t;)if(a=this.getLinearTickPositions(this.tickInterval,this.min,this.max),this.tickAmount&&a.length>this.tickAmount)this.tickInterval=z(this,e*=1.1);else break}a.length>this.len&&(a=[a[0],a[a.length-1]])[0]===a[1]&&(a.length=1),i&&(this.tickPositions=a,(h=i.apply(this,[this.min,this.max]))&&(a=h))}this.tickPositions=a,this.minorTickInterval="auto"===s&&this.tickInterval?this.tickInterval/t.minorTicksPerMajor:s,this.paddedTicks=a.slice(0),this.trimTicks(a,o,n),!this.isLinked&&A(this.min)&&A(this.max)&&(this.single&&a.length<2&&!this.categories&&!this.series.some(t=>t.is("heatmap")&&"between"===t.options.pointPlacement)&&(this.min-=.5,this.max+=.5),e||h||this.adjustTickAmount()),k(this,"afterSetTickPositions")}trimTicks(t,e,i){let s=t[0],r=t[t.length-1],o=!this.isOrdinal&&this.minPointOffset||0;if(k(this,"trimTicks"),!this.isLinked){if(e&&s!==-1/0)this.min=s;else for(;this.min-o>t[0];)t.shift();if(i)this.max=r;else for(;this.max+o{let{horiz:e,options:i}=t;return[e?i.left:i.top,i.width,i.height,i.pane].join(",")},o=r(this);i[this.coll].forEach(function(i){let{series:n}=i;n.length&&n.some(t=>t.visible)&&i!==e&&r(i)===o&&(t=!0,s.push(i))})}if(t&&n){s.forEach(t=>{let i=t.getThresholdAlignment(e);A(i)&&a.push(i)});let t=a.length>1?a.reduce((t,e)=>t+=e,0)/a.length:void 0;s.forEach(e=>{e.thresholdAlignment=t})}return t}getThresholdAlignment(t){if((!A(this.dataMin)||this!==t&&this.series.some(t=>t.isDirty||t.isDirtyData))&&this.getSeriesExtremes(),A(this.threshold)){let t=m((this.threshold-(this.dataMin||0))/((this.dataMax||0)-(this.dataMin||0)),0,1);return this.options.reversed&&(t=1-t),t}}getTickAmount(){let t=this.options,e=t.tickPixelInterval,i=t.tickAmount;y(t.tickInterval)||i||!(this.leno.push(x(o[o.length-1]+p)),f=()=>o.unshift(x(o[0]-p));if(A(a)&&(u=a<.5?Math.ceil(a*(n-1)):Math.floor(a*(n-1)),r.reversed&&(u=n-1-u)),t.hasData()&&A(s)&&A(i)){let a=()=>{t.transA*=(h-1)/(n-1),t.min=r.startOnTick?o[0]:Math.min(s,o[0]),t.max=r.endOnTick?o[o.length-1]:Math.max(i,o[o.length-1])};if(A(u)&&A(t.threshold)){for(;o[u]!==l||o.length!==n||o[0]>s||o[o.length-1]t.threshold?f():g();if(p>8*t.tickInterval)break;p*=2}a()}else if(h0&&c{i=i||t.isDirtyData||t.isDirty,s=s||t.xAxis&&t.xAxis.isDirty||!1}),this.setAxisSize();let r=this.len!==(this.old&&this.old.len);r||i||s||this.isLinked||this.forceRedraw||this.userMin!==(this.old&&this.old.userMin)||this.userMax!==(this.old&&this.old.userMax)||this.alignToOthers()?(e&&"yAxis"===t&&e.buildStacks(),this.forceRedraw=!1,this.userMinRange||(this.minRange=void 0),this.getSeriesExtremes(),this.setTickInterval(),e&&"xAxis"===t&&e.buildStacks(),this.isDirty||(this.isDirty=r||this.min!==this.old?.min||this.max!==this.old?.max)):e&&e.cleanStacks(),i&&delete this.allExtremes,k(this,"afterSetScale")}setExtremes(t,e,i=!0,s,r){this.series.forEach(t=>{delete t.kdTree}),k(this,"setExtremes",r=C(r,{min:t,max:e}),t=>{this.userMin=t.min,this.userMax=t.max,this.eventArgs=t,i&&this.chart.redraw(s)})}setAxisSize(){let t=this.chart,e=this.options,i=e.offsets||[0,0,0,0],s=this.horiz,r=this.width=Math.round(I(E(e.width,t.plotWidth-i[3]+i[1]),t.plotWidth)),o=this.height=Math.round(I(E(e.height,t.plotHeight-i[0]+i[2]),t.plotHeight)),n=this.top=Math.round(I(E(e.top,t.plotTop+i[0]),t.plotHeight,t.plotTop)),a=this.left=Math.round(I(E(e.left,t.plotLeft+i[3]),t.plotWidth,t.plotLeft));this.bottom=t.chartHeight-o-n,this.right=t.chartWidth-r-a,this.len=Math.max(s?r:o,0),this.pos=s?a:n}getExtremes(){let t=this.logarithmic;return{min:t?x(t.lin2log(this.min)):this.min,max:t?x(t.lin2log(this.max)):this.max,dataMin:this.dataMin,dataMax:this.dataMax,userMin:this.userMin,userMax:this.userMax}}getThreshold(t){let e=this.logarithmic,i=e?e.lin2log(this.min):this.min,s=e?e.lin2log(this.max):this.max;return null===t||t===-1/0?t=i:t===1/0?t=s:i>t?t=i:s15&&e<165?t.align="right":e>195&&e<345&&(t.align="left")}),i.align}tickSize(t){let e=this.options,i=E(e["tick"===t?"tickWidth":"minorTickWidth"],"tick"===t&&this.isXAxis&&!this.categories?1:0),s=e["tick"===t?"tickLength":"minorTickLength"],r;i&&s&&("inside"===e[t+"Position"]&&(s=-s),r=[s,i]);let o={tickSize:r};return k(this,"afterTickSize",o),o.tickSize}labelMetrics(){let t=this.chart.renderer,e=this.ticks,i=e[Object.keys(e)[0]]||{};return this.chart.renderer.fontMetrics(i.label||i.movedLabel||t.box)}unsquish(){let t=this.options.labels,e=t.padding||0,i=this.horiz,s=this.tickInterval,r=this.len/(((this.categories?1:0)+this.max-this.min)/s),o=t.rotation,n=x(.8*this.labelMetrics().h),a=Math.max(this.max-this.min,0),h=function(t){let i=(t+2*e)/(r||1);return(i=i>1?Math.ceil(i):1)*s>a&&t!==1/0&&r!==1/0&&a&&(i=Math.ceil(a/s)),x(i*s)},l=s,d,c=Number.MAX_VALUE,p;if(i){if(!t.staggerLines&&(A(o)?p=[o]:r=-90&&i<=90)&&(e=(t=h(Math.abs(n/Math.sin(u*i))))+Math.abs(i/360))g&&(g=e.label.textPxLength)}),this.maxLabelLength=g,this.autoRotation)g>h&&g>d.h?l.rotation=this.labelRotation:this.labelRotation=0;else if(a&&(p=h,!c))for(u="clip",m=i.length;!n&&m--;)(f=s[i[m]].label)&&("ellipsis"===f.styles.textOverflow?f.css({textOverflow:"clip"}):f.textPxLength>a&&f.css({width:a+"px"}),f.getBBox().height>this.len/i.length-(d.h-d.f)&&(f.specificTextOverflow="ellipsis"));l.rotation&&(p=g>.5*t.chartHeight?.33*t.chartHeight:g,c||(u="ellipsis")),this.labelAlign=r.align||this.autoLabelAlign(this.labelRotation),this.labelAlign&&(l.align=this.labelAlign),i.forEach(function(t){let e=s[t],i=e&&e.label,r=o.width,n={};i&&(i.attr(l),e.shortenLabel?e.shortenLabel():p&&!r&&"nowrap"!==o.whiteSpace&&(pr.g(e).attr({zIndex:n}).addClass(`highcharts-${i.toLowerCase()}${o} `+(this.isRadial?`highcharts-radial-axis${o} `:"")+(s.className||"")).add(t);this.axisGroup||(this.gridGroup=o("grid","-grid",s.gridZIndex),this.axisGroup=o("axis","",s.zIndex),this.labelGroup=o("axis-labels","-labels",s.labels.zIndex))}getOffset(){let t=this,{chart:e,horiz:i,options:s,side:r,ticks:o,tickPositions:n,coll:a}=t,h=e.inverted&&!t.isZAxis?[1,0,3,2][r]:r,l=t.hasData(),d=s.title,c=s.labels,p=A(s.crossing),u=e.axisOffset,g=e.clipOffset,f=[-1,1,1,-1][r],m,x=0,b,v=0,S=0,C,M;if(t.showAxis=m=l||s.showEmpty,t.staggerLines=t.horiz&&c.staggerLines||void 0,t.createGroups(),l||t.isLinked?(n.forEach(function(e){t.generateTick(e)}),t.renderUnsquish(),t.reserveSpaceDefault=0===r||2===r||({1:"left",3:"right"})[r]===t.labelAlign,E(c.reserveSpace,!p&&null,"center"===t.labelAlign||null,t.reserveSpaceDefault)&&n.forEach(function(t){S=Math.max(o[t].getLabelSize(),S)}),t.staggerLines&&(S*=t.staggerLines),t.labelOffset=S*(t.opposite?-1:1)):D(o,function(t,e){t.destroy(),delete o[e]}),d?.text&&!1!==d.enabled&&(t.addTitle(m),m&&!p&&!1!==d.reserveSpace&&(t.titleOffset=x=t.axisTitle.getBBox()[i?"height":"width"],v=y(b=d.offset)?0:E(d.margin,i?5:10))),t.renderLine(),t.offset=f*E(s.offset,u[r]?u[r]+(s.margin||0):0),t.tickRotCorr=t.tickRotCorr||{x:0,y:0},M=0===r?-t.labelMetrics().h:2===r?t.tickRotCorr.y:0,C=Math.abs(S)+v,S&&(C-=M,C+=f*(i?E(c.y,t.tickRotCorr.y+f*c.distance):E(c.x,f*c.distance))),t.axisTitleMargin=E(b,C),t.getMaxLabelDimensions&&(t.maxLabelDimensions=t.getMaxLabelDimensions(o,n)),"colorAxis"!==a&&g){let e=this.tickSize("tick");u[r]=Math.max(u[r],(t.axisTitleMargin||0)+x+f*t.offset,C,n&&n.length&&e?e[0]+f*t.offset:0);let i=!t.axisLine||s.offset?0:t.axisLine.strokeWidth()/2;g[h]=Math.max(g[h],i)}k(this,"afterGetOffset")}getLinePath(t){let e=this.chart,i=this.opposite,s=this.offset,r=this.horiz,o=this.left+(i?this.width:0)+s,n=e.chartHeight-this.bottom-(i?this.height:0)+s;return i&&(t*=-1),e.renderer.crispLine([["M",r?this.left:o,r?n:this.top],["L",r?e.chartWidth-this.right:o,r?n:e.chartHeight-this.bottom]],t)}renderLine(){this.axisLine||(this.axisLine=this.chart.renderer.path().addClass("highcharts-axis-line").add(this.axisGroup),this.chart.styledMode||this.axisLine.attr({stroke:this.options.lineColor,"stroke-width":this.options.lineWidth,zIndex:7}))}getTitlePosition(t){let e=this.horiz,i=this.left,s=this.top,r=this.len,o=this.options.title,n=e?i:s,a=this.opposite,h=this.offset,l=o.x,d=o.y,c=this.chart.renderer.fontMetrics(t),p=t?Math.max(t.getBBox(!1,0).height-c.h-1,0):0,u={low:n+(e?0:r),middle:n+r/2,high:n+(e?r:0)}[o.align],g=(e?s+this.height:i)+(e?1:-1)*(a?-1:1)*(this.axisTitleMargin||0)+[-p,p,c.f,-p][this.side],f={x:e?u+l:g+(a?this.width:0)+h+l,y:e?g+d-(a?this.height:0)+h:u+d};return k(this,"afterGetTitlePosition",{titlePosition:f}),f}renderMinorTick(t,e){let i=this.minorTicks;i[t]||(i[t]=new n(this,t,"minor")),e&&i[t].isNew&&i[t].render(null,!0),i[t].render(null,!1,1)}renderTick(t,e,i){let s=this.isLinked,r=this.ticks;(!s||t>=this.min&&t<=this.max||this.grid&&this.grid.isColumn)&&(r[t]||(r[t]=new n(this,t)),i&&r[t].isNew&&r[t].render(e,!0,-1),r[t].render(e))}render(){let t,e;let i=this,s=i.chart,r=i.logarithmic,a=s.renderer,l=i.options,d=i.isLinked,c=i.tickPositions,p=i.axisTitle,u=i.ticks,g=i.minorTicks,f=i.alternateBands,m=l.stackLabels,x=l.alternateGridColor,y=l.crossing,b=i.tickmarkOffset,v=i.axisLine,S=i.showAxis,C=h(a.globalAnimation);if(i.labelEdge.length=0,i.overlap=!1,[u,g,f].forEach(function(t){D(t,function(t){t.isActive=!1})}),A(y)){let t=this.isXAxis?s.yAxis[0]:s.xAxis[0],e=[1,-1,-1,1][this.side];if(t){let s=t.toPixels(y,!0);i.horiz&&(s=t.len-s),i.offset=e*s}}if(i.hasData()||d){let a=i.chart.hasRendered&&i.old&&A(i.old.min);i.minorTickInterval&&!i.categories&&i.getMinorTickPositions().forEach(function(t){i.renderMinorTick(t,a)}),c.length&&(c.forEach(function(t,e){i.renderTick(t,e,a)}),b&&(0===i.min||i.single)&&(u[-1]||(u[-1]=new n(i,-1,null,!0)),u[-1].render(-1))),x&&c.forEach(function(n,a){e=void 0!==c[a+1]?c[a+1]+b:i.max-b,a%2==0&&n=.5)t=Math.round(t),l=n.getLinearTickPositions(t,e,i);else if(t>=.08){let s,r,n,a,h,d,c;let p=Math.floor(e);for(s=t>.3?[1,2,4]:t>.15?[1,2,4,6,8]:[1,2,3,4,5,6,7,8,9],r=p;re&&(!o||d<=i)&&void 0!==d&&l.push(d),d>i&&(c=!0),d=h}else{let d=this.lin2log(e),c=this.lin2log(i),p=o?n.getMinorTickInterval():h.tickInterval,u=h.tickPixelInterval/(o?5:1),g=o?a/n.tickPositions.length:a;t=s(t=r("auto"===p?null:p,this.minorAutoInterval,(c-d)*u/(g||1))),l=n.getLinearTickPositions(t,d,c).map(this.log2lin),o||(this.minorAutoInterval=t/5)}return o||(n.tickInterval=t),l}lin2log(t){return Math.pow(10,t)}log2lin(t){return Math.log(t)/Math.LN10}}t.Additions=n}(e||(e={})),e}),i(e,"Core/Axis/PlotLineOrBand/PlotLineOrBandAxis.js",[e["Core/Utilities.js"]],function(t){var e;let{erase:i,extend:s,isNumber:r}=t;return function(t){let e;function o(t){return this.addPlotBandOrLine(t,"plotBands")}function n(t,i){let s=this.userOptions,r=new e(this,t);if(this.visible&&(r=r.render()),r){if(this._addedPlotLB||(this._addedPlotLB=!0,(s.plotLines||[]).concat(s.plotBands||[]).forEach(t=>{this.addPlotBandOrLine(t)})),i){let e=s[i]||[];e.push(t),s[i]=e}this.plotLinesAndBands.push(r)}return r}function a(t){return this.addPlotBandOrLine(t,"plotLines")}function h(t,e,i){i=i||this.options;let s=this.getPlotLinePath({value:e,force:!0,acrossPanes:i.acrossPanes}),o=[],n=this.horiz,a=!r(this.min)||!r(this.max)||tthis.max&&e>this.max,h=this.getPlotLinePath({value:t,force:!0,acrossPanes:i.acrossPanes}),l,d=1,c;if(h&&s)for(a&&(c=h.toString()===s.toString(),d=0),l=0;l{let t=[];for(let e of this.axes)for(let{label:i,options:s}of e.plotLinesAndBands)i&&!s?.label?.allowOverlap&&t.push(i);return t})}),t.compose(p,s)}constructor(t,e){this.axis=t,this.options=e,this.id=e.id}render(){h(this,"render");let{axis:t,options:e}=this,{horiz:i,logarithmic:s}=t,{color:r,events:n,zIndex:a=0}=e,p={},u=t.chart.renderer,g=e.to,f=e.from,m=e.value,x=e.borderWidth,y=e.label,{label:b,svgElem:v}=this,S=[],C,k=o(f)&&o(g),M=o(m),w=!v,T={class:"highcharts-plot-"+(k?"band ":"line ")+(e.className||"")},A=k?"bands":"lines";if(!t.chart.styledMode&&(M?(T.stroke=r||"#999999",T["stroke-width"]=c(e.width,1),e.dashStyle&&(T.dashstyle=e.dashStyle)):k&&(T.fill=r||"#e6e9ff",x&&(T.stroke=e.borderColor,T["stroke-width"]=x))),p.zIndex=a,A+="-"+a,(C=t.plotLinesAndBandsGroups[A])||(t.plotLinesAndBandsGroups[A]=C=u.g("plot-"+A).attr(p).add()),v||(this.svgElem=v=u.path().attr(T).add(C)),o(m))S=t.getPlotLinePath({value:s?.log2lin(m)??m,lineWidth:v.strokeWidth(),acrossPanes:e.acrossPanes});else{if(!(o(f)&&o(g)))return;S=t.getPlotBandPath(s?.log2lin(f)??f,s?.log2lin(g)??g,e)}return!this.eventsAdded&&n&&(d(n,(t,e)=>{v?.on(e,t=>{n[e].apply(this,[t])})}),this.eventsAdded=!0),(w||!v.d)&&S?.length?v.attr({d:S}):v&&(S?(v.show(),v.animate({d:S})):v.d&&(v.hide(),b&&(this.label=b=b.destroy()))),y&&(o(y.text)||o(y.formatter))&&S?.length&&t.width>0&&t.height>0&&!S.isFlat?(y=l({align:i&&k?"center":void 0,x:i?!k&&4:10,verticalAlign:!i&&k?"middle":void 0,y:i?k?16:10:k?6:-4,rotation:i&&!k?90:0,...k?{inside:!0}:{}},y),this.renderLabel(y,S,k,a)):b&&b.hide(),this}renderLabel(t,e,i,n){let a=this.axis,h=a.chart.renderer,d=t.inside,c=this.label;c||(this.label=c=h.text(this.getLabelText(t),0,0,t.useHTML).attr({align:t.textAlign||t.align,rotation:t.rotation,class:"highcharts-plot-"+(i?"band":"line")+"-label "+(t.className||""),zIndex:n}),a.chart.styledMode||c.css(l({fontSize:"0.8em",textOverflow:i&&!d?"":"ellipsis"},t.style)),c.add());let p=e.xBounds||[e[0][1],e[1][1],i?e[2][1]:e[0][1]],u=e.yBounds||[e[0][2],e[1][2],i?e[2][2]:e[0][2]],g=r(p),f=r(u),m=s(p)-g;c.align(t,!1,{x:g,y:f,width:m,height:s(u)-f}),(!c.alignValue||"left"===c.alignValue||o(d))&&c.css({width:(t.style?.width||(i&&d?m:90===c.rotation?a.height-(c.alignAttr.y-a.top):(t.clip?a.width:a.chart.chartWidth)-(c.alignAttr.x-a.left)))+"px"}),c.show(!0)}getLabelText(t){return o(t.formatter)?t.formatter.call(this):t.text}destroy(){a(this.axis.plotLinesAndBands,this),delete this.axis,n(this)}}return p}),i(e,"Core/Tooltip.js",[e["Core/Animation/AnimationUtilities.js"],e["Core/Templating.js"],e["Core/Globals.js"],e["Core/Renderer/RendererUtilities.js"],e["Core/Renderer/RendererRegistry.js"],e["Core/Utilities.js"]],function(t,e,i,s,r,o){var n;let{animObject:a}=t,{format:h}=e,{composed:l,doc:d,isSafari:c}=i,{distribute:p}=s,{addEvent:u,clamp:g,css:f,discardElement:m,extend:x,fireEvent:y,isArray:b,isNumber:v,isString:S,merge:C,pick:k,pushUnique:M,splat:w,syncTimeout:T}=o;class A{constructor(t,e,i){this.allowShared=!0,this.crosshairs=[],this.distance=0,this.isHidden=!0,this.isSticky=!1,this.options={},this.outside=!1,this.chart=t,this.init(t,e),this.pointer=i}bodyFormatter(t){return t.map(function(t){let e=t.series.tooltipOptions;return(e[(t.point.formatPrefix||"point")+"Formatter"]||t.point.tooltipFormatter).call(t.point,e[(t.point.formatPrefix||"point")+"Format"]||"")})}cleanSplit(t){this.chart.series.forEach(function(e){let i=e&&e.tt;i&&(!i.isActive||t?e.tt=i.destroy():i.isActive=!1)})}defaultFormatter(t){let e;let i=this.points||w(this);return(e=(e=[t.tooltipFooterHeaderFormatter(i[0])]).concat(t.bodyFormatter(i))).push(t.tooltipFooterHeaderFormatter(i[0],!0)),e}destroy(){this.label&&(this.label=this.label.destroy()),this.split&&(this.cleanSplit(!0),this.tt&&(this.tt=this.tt.destroy())),this.renderer&&(this.renderer=this.renderer.destroy(),m(this.container)),o.clearTimeout(this.hideTimer)}getAnchor(t,e){let i;let{chart:s,pointer:r}=this,o=s.inverted,n=s.plotTop,a=s.plotLeft;if((t=w(t))[0].series&&t[0].series.yAxis&&!t[0].series.yAxis.options.reversedStacks&&(t=t.slice().reverse()),this.followPointer&&e)void 0===e.chartX&&(e=r.normalize(e)),i=[e.chartX-a,e.chartY-n];else if(t[0].tooltipPos)i=t[0].tooltipPos;else{let s=0,r=0;t.forEach(function(t){let e=t.pos(!0);e&&(s+=e[0],r+=e[1])}),s/=t.length,r/=t.length,this.shared&&t.length>1&&e&&(o?s=e.chartX:r=e.chartY),i=[s-a,r-n]}return i.map(Math.round)}getClassName(t,e,i){let s=this.options,r=t.series,o=r.options;return[s.className,"highcharts-label",i&&"highcharts-tooltip-header",e?"highcharts-tooltip-box":"highcharts-tooltip",!i&&"highcharts-color-"+k(t.colorIndex,r.colorIndex),o&&o.className].filter(S).join(" ")}getLabel({anchorX:t,anchorY:e}={anchorX:0,anchorY:0}){let s=this,o=this.chart.styledMode,n=this.options,a=this.split&&this.allowShared,h=this.container,l=this.chart.renderer;if(this.label){let t=!this.label.hasClass("highcharts-label");(!a&&t||a&&!t)&&this.destroy()}if(!this.label){if(this.outside){let t=this.chart.options.chart.style,e=r.getRendererType();this.container=h=i.doc.createElement("div"),h.className="highcharts-tooltip-container",f(h,{position:"absolute",top:"1px",pointerEvents:"none",zIndex:Math.max(this.options.style.zIndex||0,(t&&t.zIndex||0)+3)}),this.renderer=l=new e(h,0,0,t,void 0,void 0,l.styledMode)}if(a?this.label=l.g("tooltip"):(this.label=l.label("",t,e,n.shape,void 0,void 0,n.useHTML,void 0,"tooltip").attr({padding:n.padding,r:n.borderRadius}),o||this.label.attr({fill:n.backgroundColor,"stroke-width":n.borderWidth||0}).css(n.style).css({pointerEvents:n.style.pointerEvents||(this.shouldStickOnContact()?"auto":"none")})),s.outside){let t=this.label;[t.xSetter,t.ySetter].forEach((e,i)=>{t[i?"ySetter":"xSetter"]=r=>{e.call(t,s.distance),t[i?"y":"x"]=r,h&&(h.style[i?"top":"left"]=`${r}px`)}})}this.label.attr({zIndex:8}).shadow(n.shadow).add()}return h&&!h.parentElement&&i.doc.body.appendChild(h),this.label}getPlayingField(){let{body:t,documentElement:e}=d,{chart:i,distance:s,outside:r}=this;return{width:r?Math.max(t.scrollWidth,e.scrollWidth,t.offsetWidth,e.offsetWidth,e.clientWidth)-2*s:i.chartWidth,height:r?Math.max(t.scrollHeight,e.scrollHeight,t.offsetHeight,e.offsetHeight,e.clientHeight):i.chartHeight}}getPosition(t,e,i){let{distance:s,chart:r,outside:o,pointer:n}=this,{inverted:a,plotLeft:h,plotTop:l,polar:d}=r,{plotX:c=0,plotY:p=0}=i,u={},g=a&&i.h||0,{height:f,width:m}=this.getPlayingField(),x=n.getChartPosition(),y=t=>t*x.scaleX,b=t=>t*x.scaleY,v=i=>{let n="x"===i;return[i,n?m:f,n?t:e].concat(o?[n?y(t):b(e),n?x.left-s+y(c+h):x.top-s+b(p+l),0,n?m:f]:[n?t:e,n?c+h:p+l,n?h:l,n?h+r.plotWidth:l+r.plotHeight])},S=v("y"),C=v("x"),M,w=!!i.negative;!d&&r.hoverSeries?.yAxis?.reversed&&(w=!w);let T=!this.followPointer&&k(i.ttBelow,!d&&!a===w),A=function(t,e,i,r,n,a,h){let l=o?"y"===t?b(s):y(s):s,d=(i-r)/2,c=re?m:m+g)}},P=function(t,e,i,r,o){if(oe-s)return!1;oe-r/2?u[t]=e-r-2:u[t]=o-i/2},L=function(t){[S,C]=[C,S],M=t},O=()=>{!1!==A.apply(0,S)?!1!==P.apply(0,C)||M||(L(!0),O()):M?u.x=u.y=0:(L(!0),O())};return(a&&!d||this.len>1)&&L(),O(),u}hide(t){let e=this;o.clearTimeout(this.hideTimer),t=k(t,this.options.hideDelay),this.isHidden||(this.hideTimer=T(function(){let i=e.getLabel();e.getLabel().animate({opacity:0},{duration:t?150:t,complete:()=>{i.hide(),e.container&&e.container.remove()}}),e.isHidden=!0},t))}init(t,e){this.chart=t,this.options=e,this.crosshairs=[],this.isHidden=!0,this.split=e.split&&!t.inverted&&!t.polar,this.shared=e.shared||this.split,this.outside=k(e.outside,!!(t.scrollablePixelsX||t.scrollablePixelsY))}shouldStickOnContact(t){return!!(!this.followPointer&&this.options.stickOnContact&&(!t||this.pointer.inClass(t.target,"highcharts-tooltip")))}move(t,e,i,s){let r=this,o=a(!r.isHidden&&r.options.animation),n=r.followPointer||(r.len||0)>1,h={x:t,y:e};n||(h.anchorX=i,h.anchorY=s),o.step=()=>r.drawTracker(),r.getLabel().animate(h,o)}refresh(t,e){let{chart:i,options:s,pointer:r,shared:n}=this,a=w(t),l=a[0],d=[],c=s.format,p=s.formatter||this.defaultFormatter,u=i.styledMode,f={},m=this.allowShared;if(!s.enabled||!l.series)return;o.clearTimeout(this.hideTimer),this.allowShared=!(!b(t)&&t.series&&t.series.noSharedTooltip),m=m&&!this.allowShared,this.followPointer=!this.split&&l.series.tooltipOptions.followPointer;let x=this.getAnchor(t,e),v=x[0],C=x[1];n&&this.allowShared?(r.applyInactiveState(a),a.forEach(function(t){t.setState("hover"),d.push(t.getLabelConfig())}),(f=l.getLabelConfig()).points=d):f=l.getLabelConfig(),this.len=d.length;let M=S(c)?h(c,f,i):p.call(f,this),T=l.series;if(this.distance=k(T.tooltipOptions.distance,16),!1===M)this.hide();else{if(this.split&&this.allowShared)this.renderSplit(M,a);else{let t=v,o=C;if(e&&r.isDirectTouch&&(t=e.chartX-i.plotLeft,o=e.chartY-i.plotTop),i.polar||!1===T.options.clip||a.some(e=>r.isDirectTouch||e.series.shouldShowTooltip(t,o))){let t=this.getLabel(m&&this.tt||{});(!s.style.width||u)&&t.css({width:(this.outside?this.getPlayingField():i.spacingBox).width+"px"}),t.attr({class:this.getClassName(l),text:M&&M.join?M.join(""):M}),this.outside&&t.attr({x:g(t.x||0,0,this.getPlayingField().width-(t.width||0))}),u||t.attr({stroke:s.borderColor||l.color||T.color||"#666666"}),this.updatePosition({plotX:v,plotY:C,negative:l.negative,ttBelow:l.ttBelow,h:x[2]||0})}else{this.hide();return}}this.isHidden&&this.label&&this.label.attr({opacity:1}).show(),this.isHidden=!1}y(this,"refresh")}renderSplit(t,e){let i=this,{chart:s,chart:{chartWidth:r,chartHeight:o,plotHeight:n,plotLeft:a,plotTop:h,scrollablePixelsY:l=0,scrollablePixelsX:u,styledMode:f},distance:m,options:y,options:{positioner:b},pointer:v}=i,{scrollLeft:C=0,scrollTop:M=0}=s.scrollablePlotArea?.scrollingContainer||{},w=i.outside&&"number"!=typeof u?d.documentElement.getBoundingClientRect():{left:C,right:C+r,top:M,bottom:M+o},T=i.getLabel(),A=this.renderer||s.renderer,P=!!(s.xAxis[0]&&s.xAxis[0].opposite),{left:L,top:O}=v.getChartPosition(),D=h+M,E=0,I=n-l;function j(t,e,s,r,o=!0){let n,a;return s?(n=P?0:I,a=g(t-r/2,w.left,w.right-r-(i.outside?L:0))):(n=e-D,a=g(a=o?t-r-m:t+m,o?a:w.left,w.right)),{x:a,y:n}}S(t)&&(t=[!1,t]);let B=t.slice(0,e.length+1).reduce(function(t,s,r){if(!1!==s&&""!==s){let o=e[r-1]||{isHeader:!0,plotX:e[0].plotX,plotY:n,series:{}},l=o.isHeader,d=l?i:o.series,c=d.tt=function(t,e,s){let r=t,{isHeader:o,series:n}=e;if(!r){let t={padding:y.padding,r:y.borderRadius};f||(t.fill=y.backgroundColor,t["stroke-width"]=y.borderWidth??1),r=A.label("",0,0,y[o?"headerShape":"shape"],void 0,void 0,y.useHTML).addClass(i.getClassName(e,!0,o)).attr(t).add(T)}return r.isActive=!0,r.attr({text:s}),f||r.css(y.style).attr({stroke:y.borderColor||e.color||n.color||"#333333"}),r}(d.tt,o,s.toString()),p=c.getBBox(),u=p.width+c.strokeWidth();l&&(E=p.height,I+=E,P&&(D-=E));let{anchorX:x,anchorY:v}=function(t){let e,i;let{isHeader:s,plotX:r=0,plotY:o=0,series:l}=t;if(s)e=Math.max(a+r,a),i=h+n/2;else{let{xAxis:t,yAxis:s}=l;e=t.pos+g(r,-m,t.len+m),l.shouldShowTooltip(0,s.pos-h+o,{ignoreX:!0})&&(i=s.pos+o)}return{anchorX:e=g(e,w.left-m,w.right+m),anchorY:i}}(o);if("number"==typeof v){let e=p.height+1,s=b?b.call(i,u,e,o):j(x,v,l,u);t.push({align:b?0:void 0,anchorX:x,anchorY:v,boxWidth:u,point:o,rank:k(s.rank,l?1:0),size:e,target:s.y,tt:c,x:s.x})}else c.isActive=!1}return t},[]);!b&&B.some(t=>{let{outside:e}=i,s=(e?L:0)+t.anchorX;return ss})&&(B=B.map(t=>{let{x:e,y:i}=j(t.anchorX,t.anchorY,t.point.isHeader,t.boxWidth,!1);return x(t,{target:i,x:e})})),i.cleanSplit(),p(B,I);let R={left:L,right:L};B.forEach(function(t){let{x:e,boxWidth:s,isHeader:r}=t;!r&&(i.outside&&L+eR.right&&(R.right=L+e))}),B.forEach(function(t){let{x:e,anchorX:s,anchorY:r,pos:o,point:{isHeader:n}}=t,a={visibility:void 0===o?"hidden":"inherit",x:e,y:(o||0)+D,anchorX:s,anchorY:r};if(i.outside&&e0&&(n||(a.x=e+t,a.anchorX=s+t),n&&(a.x=(R.right-R.left)/2,a.anchorX=s+t))}t.tt.attr(a)});let{container:z,outside:N,renderer:W}=i;if(N&&z&&W){let{width:t,height:e,x:i,y:s}=T.getBBox();W.setSize(t+i,e+s,!1),z.style.left=R.left+"px",z.style.top=O+"px"}c&&T.attr({opacity:1===T.opacity?.999:1})}drawTracker(){if(!this.shouldStickOnContact()){this.tracker&&(this.tracker=this.tracker.destroy());return}let t=this.chart,e=this.label,i=this.shared?t.hoverPoints:t.hoverPoint;if(!e||!i)return;let s={x:0,y:0,width:0,height:0},r=this.getAnchor(i),o=e.getBBox();r[0]+=t.plotLeft-(e.translateX||0),r[1]+=t.plotTop-(e.translateY||0),s.x=Math.min(0,r[0]),s.y=Math.min(0,r[1]),s.width=r[0]<0?Math.max(Math.abs(r[0]),o.width-r[0]):Math.max(Math.abs(r[0]),o.width),s.height=r[1]<0?Math.max(Math.abs(r[1]),o.height-Math.abs(r[1])):Math.max(Math.abs(r[1]),o.height),this.tracker?this.tracker.attr(s):(this.tracker=e.renderer.rect(s).addClass("highcharts-tracker").add(e),t.styledMode||this.tracker.attr({fill:"rgba(0,0,0,0)"}))}styledModeFormat(t){return t.replace('style="font-size: 0.8em"','class="highcharts-header"').replace(/style="color:{(point|series)\.color}"/g,'class="highcharts-color-{$1.colorIndex} {series.options.className} {point.options.className}"')}tooltipFooterHeaderFormatter(t,e){let i=t.series,s=i.tooltipOptions,r=i.xAxis,o=r&&r.dateTime,n={isFooter:e,labelConfig:t},a=s.xDateFormat,l=s[e?"footerFormat":"headerFormat"];return y(this,"headerFormatter",n,function(e){o&&!a&&v(t.key)&&(a=o.getXDateFormat(t.key,s.dateTimeLabelFormats)),o&&a&&(t.point&&t.point.tooltipDateKeys||["key"]).forEach(function(t){l=l.replace("{point."+t+"}","{point."+t+":"+a+"}")}),i.chart.styledMode&&(l=this.styledModeFormat(l)),e.text=h(l,{point:t,series:i},this.chart)}),n.text}update(t){this.destroy(),this.init(this.chart,C(!0,this.options,t))}updatePosition(t){let{chart:e,container:i,distance:s,options:r,pointer:o,renderer:n}=this,{height:a=0,width:h=0}=this.getLabel(),{left:l,top:d,scaleX:c,scaleY:p}=o.getChartPosition(),u=(r.positioner||this.getPosition).call(this,h,a,t),g=(t.plotX||0)+e.plotLeft,m=(t.plotY||0)+e.plotTop,x;n&&i&&(r.positioner&&(u.x+=l-s,u.y+=d-s),x=(r.borderWidth||0)+2*s+2,n.setSize(h+x,a+x,!1),(1!==c||1!==p)&&(f(i,{transform:`scale(${c}, ${p})`}),g*=c,m*=p),g+=l-u.x,m+=d-u.y),this.move(Math.round(u.x),Math.round(u.y||0),g,m)}}return(n=A||(A={})).compose=function(t){M(l,"Core.Tooltip")&&u(t,"afterInit",function(){let t=this.chart;t.options.tooltip&&(t.tooltip=new n(t,t.options.tooltip,this))})},A}),i(e,"Core/Series/Point.js",[e["Core/Renderer/HTML/AST.js"],e["Core/Animation/AnimationUtilities.js"],e["Core/Defaults.js"],e["Core/Templating.js"],e["Core/Utilities.js"]],function(t,e,i,s,r){let{animObject:o}=e,{defaultOptions:n}=i,{format:a}=s,{addEvent:h,crisp:l,erase:d,extend:c,fireEvent:p,getNestedProperty:u,isArray:g,isFunction:f,isNumber:m,isObject:x,merge:y,pick:b,syncTimeout:v,removeEvent:S,uniqueKey:C}=r;class k{animateBeforeDestroy(){let t=this,e={x:t.startXPos,opacity:0},i=t.getGraphicalProps();i.singular.forEach(function(i){t[i]=t[i].animate("dataLabel"===i?{x:t[i].startXPos,y:t[i].startYPos,opacity:0}:e)}),i.plural.forEach(function(e){t[e].forEach(function(e){e.element&&e.animate(c({x:t.startXPos},e.startYPos?{x:e.startXPos,y:e.startYPos}:{}))})})}applyOptions(t,e){let i=this.series,s=i.options.pointValKey||i.pointValKey;return c(this,t=k.prototype.optionsToObject.call(this,t)),this.options=this.options?c(this.options,t):t,t.group&&delete this.group,t.dataLabels&&delete this.dataLabels,s&&(this.y=k.prototype.getNestedProperty.call(this,s)),this.selected&&(this.state="select"),"name"in this&&void 0===e&&i.xAxis&&i.xAxis.hasNames&&(this.x=i.xAxis.nameToX(this)),void 0===this.x&&i?this.x=e??i.autoIncrement():m(t.x)&&i.options.relativeXValue&&(this.x=i.autoIncrement(t.x)),this.isNull=this.isValid&&!this.isValid(),this.formatPrefix=this.isNull?"null":"point",this}destroy(){if(!this.destroyed){let t=this,e=t.series,i=e.chart,s=e.options.dataSorting,r=i.hoverPoints,n=o(t.series.chart.renderer.globalAnimation),a=()=>{for(let e in(t.graphic||t.graphics||t.dataLabel||t.dataLabels)&&(S(t),t.destroyElements()),t)delete t[e]};t.legendItem&&i.legend.destroyItem(t),r&&(t.setState(),d(r,t),r.length||(i.hoverPoints=null)),t===i.hoverPoint&&t.onMouseOut(),s&&s.enabled?(this.animateBeforeDestroy(),v(a,n.duration)):a(),i.pointCount--}this.destroyed=!0}destroyElements(t){let e=this,i=e.getGraphicalProps(t);i.singular.forEach(function(t){e[t]=e[t].destroy()}),i.plural.forEach(function(t){e[t].forEach(function(t){t&&t.element&&t.destroy()}),delete e[t]})}firePointEvent(t,e,i){let s=this,r=this.series.options;s.manageEvent(t),"click"===t&&r.allowPointSelect&&(i=function(t){!s.destroyed&&s.select&&s.select(null,t.ctrlKey||t.metaKey||t.shiftKey)}),p(s,t,e,i)}getClassName(){return"highcharts-point"+(this.selected?" highcharts-point-select":"")+(this.negative?" highcharts-negative":"")+(this.isNull?" highcharts-null-point":"")+(void 0!==this.colorIndex?" highcharts-color-"+this.colorIndex:"")+(this.options.className?" "+this.options.className:"")+(this.zone&&this.zone.className?" "+this.zone.className.replace("highcharts-negative",""):"")}getGraphicalProps(t){let e,i;let s=this,r=[],o={singular:[],plural:[]};for((t=t||{graphic:1,dataLabel:1}).graphic&&r.push("graphic","connector"),t.dataLabel&&r.push("dataLabel","dataLabelPath","dataLabelUpper"),i=r.length;i--;)s[e=r[i]]&&o.singular.push(e);return["graphic","dataLabel"].forEach(function(e){let i=e+"s";t[e]&&s[i]&&o.plural.push(i)}),o}getLabelConfig(){return{x:this.category,y:this.y,color:this.color,colorIndex:this.colorIndex,key:this.name||this.category,series:this.series,point:this,percentage:this.percentage,total:this.total||this.stackTotal}}getNestedProperty(t){return t?0===t.indexOf("custom.")?u(t,this.options):this[t]:void 0}getZone(){let t=this.series,e=t.zones,i=t.zoneAxis||"y",s,r=0;for(s=e[0];this[i]>=s.value;)s=e[++r];return this.nonZonedColor||(this.nonZonedColor=this.color),s&&s.color&&!this.options.color?this.color=s.color:this.color=this.nonZonedColor,s}hasNewShapeType(){return(this.graphic&&(this.graphic.symbolName||this.graphic.element.nodeName))!==this.shapeType}constructor(t,e,i){this.formatPrefix="point",this.visible=!0,this.series=t,this.applyOptions(e,i),this.id??(this.id=C()),this.resolveColor(),t.chart.pointCount++,p(this,"afterInit")}isValid(){return(m(this.x)||this.x instanceof Date)&&m(this.y)}optionsToObject(t){let e=this.series,i=e.options.keys,s=i||e.pointArrayMap||["y"],r=s.length,o={},n,a=0,h=0;if(m(t)||null===t)o[s[0]]=t;else if(g(t))for(!i&&t.length>r&&("string"==(n=typeof t[0])?o.name=t[0]:"number"===n&&(o.x=t[0]),a++);h0?k.prototype.setNestedProperty(o,t[a],s[h]):o[s[h]]=t[a]),a++,h++;else"object"==typeof t&&(o=t,t.dataLabels&&(e.hasDataLabels=()=>!0),t.marker&&(e._hasPointMarkers=!0));return o}pos(t,e=this.plotY){if(!this.destroyed){let{plotX:i,series:s}=this,{chart:r,xAxis:o,yAxis:n}=s,a=0,h=0;if(m(i)&&m(e))return t&&(a=o?o.pos:r.plotLeft,h=n?n.pos:r.plotTop),r.inverted&&o&&n?[n.len-e+h,o.len-i+a]:[i+a,e+h]}}resolveColor(){let t=this.series,e=t.chart.options.chart,i=t.chart.styledMode,s,r,o=e.colorCount,n;delete this.nonZonedColor,t.options.colorByPoint?(i||(s=(r=t.options.colors||t.chart.options.colors)[t.colorCounter],o=r.length),n=t.colorCounter,t.colorCounter++,t.colorCounter===o&&(t.colorCounter=0)):(i||(s=t.color),n=t.colorIndex),this.colorIndex=b(this.options.colorIndex,n),this.color=b(this.options.color,s)}setNestedProperty(t,e,i){return i.split(".").reduce(function(t,i,s,r){let o=r.length-1===s;return t[i]=o?e:x(t[i],!0)?t[i]:{},t[i]},t),t}shouldDraw(){return!this.isNull}tooltipFormatter(t){let e=this.series,i=e.tooltipOptions,s=b(i.valueDecimals,""),r=i.valuePrefix||"",o=i.valueSuffix||"";return e.chart.styledMode&&(t=e.chart.tooltip.styledModeFormat(t)),(e.pointArrayMap||["y"]).forEach(function(e){e="{point."+e,(r||o)&&(t=t.replace(RegExp(e+"}","g"),r+e+"}"+o)),t=t.replace(RegExp(e+"}","g"),e+":,."+s+"f}")}),a(t,{point:this,series:this.series},e.chart)}update(t,e,i,s){let r;let o=this,n=o.series,a=o.graphic,h=n.chart,l=n.options;function d(){o.applyOptions(t);let s=a&&o.hasMockGraphic,d=null===o.y?!s:s;a&&d&&(o.graphic=a.destroy(),delete o.hasMockGraphic),x(t,!0)&&(a&&a.element&&t&&t.marker&&void 0!==t.marker.symbol&&(o.graphic=a.destroy()),t?.dataLabels&&o.dataLabel&&(o.dataLabel=o.dataLabel.destroy())),r=o.index,n.updateParallelArrays(o,r),l.data[r]=x(l.data[r],!0)||x(t,!0)?o.options:b(t,l.data[r]),n.isDirty=n.isDirtyData=!0,!n.fixedBox&&n.hasCartesianSeries&&(h.isDirtyBox=!0),"point"===l.legendType&&(h.isDirtyLegend=!0),e&&h.redraw(i)}e=b(e,!0),!1===s?d():o.firePointEvent("update",{options:t},d)}remove(t,e){this.series.removePoint(this.series.data.indexOf(this),t,e)}select(t,e){let i=this,s=i.series,r=s.chart;t=b(t,!i.selected),this.selectedStaging=t,i.firePointEvent(t?"select":"unselect",{accumulate:e},function(){i.selected=i.options.selected=t,s.options.data[s.data.indexOf(i)]=i.options,i.setState(t&&"select"),e||r.getSelectedPoints().forEach(function(t){let e=t.series;t.selected&&t!==i&&(t.selected=t.options.selected=!1,e.options.data[e.data.indexOf(t)]=t.options,t.setState(r.hoverPoints&&e.options.inactiveOtherPoints?"inactive":""),t.firePointEvent("unselect"))})}),delete this.selectedStaging}onMouseOver(t){let{inverted:e,pointer:i}=this.series.chart;i&&(t=t?i.normalize(t):i.getChartCoordinatesFromPoint(this,e),i.runPointActions(t,this))}onMouseOut(){let t=this.series.chart;this.firePointEvent("mouseOut"),this.series.options.inactiveOtherPoints||(t.hoverPoints||[]).forEach(function(t){t.setState()}),t.hoverPoints=t.hoverPoint=null}manageEvent(t){let e=y(this.series.options.point,this.options),i=e.events?.[t];f(i)&&(!this.hcEvents?.[t]||this.hcEvents?.[t]?.map(t=>t.fn).indexOf(i)===-1)?(this.importedUserEvent?.(),this.importedUserEvent=h(this,t,i)):this.importedUserEvent&&!i&&this.hcEvents?.[t]&&(S(this,t),delete this.hcEvents[t],Object.keys(this.hcEvents)||delete this.importedUserEvent)}setState(e,i){let s=this.series,r=this.state,o=s.options.states[e||"normal"]||{},a=n.plotOptions[s.type].marker&&s.options.marker,h=a&&!1===a.enabled,l=a&&a.states&&a.states[e||"normal"]||{},d=!1===l.enabled,u=this.marker||{},g=s.chart,f=a&&s.markerAttribs,x=s.halo,y,v,S,C=s.stateMarkerGraphic,k;if((e=e||"")===this.state&&!i||this.selected&&"select"!==e||!1===o.enabled||e&&(d||h&&!1===l.enabled)||e&&u.states&&u.states[e]&&!1===u.states[e].enabled)return;if(this.state=e,f&&(y=s.markerAttribs(this,e)),this.graphic&&!this.hasMockGraphic){if(r&&this.graphic.removeClass("highcharts-point-"+r),e&&this.graphic.addClass("highcharts-point-"+e),!g.styledMode){v=s.pointAttribs(this,e),S=b(g.options.chart.animation,o.animation);let t=v.opacity;s.options.inactiveOtherPoints&&m(t)&&(this.dataLabels||[]).forEach(function(e){e&&!e.hasClass("highcharts-data-label-hidden")&&(e.animate({opacity:t},S),e.connector&&e.connector.animate({opacity:t},S))}),this.graphic.animate(v,S)}y&&this.graphic.animate(y,b(g.options.chart.animation,l.animation,a.animation)),C&&C.hide()}else e&&l&&(k=u.symbol||s.symbol,C&&C.currentSymbol!==k&&(C=C.destroy()),y&&(C?C[i?"animate":"attr"]({x:y.x,y:y.y}):k&&(s.stateMarkerGraphic=C=g.renderer.symbol(k,y.x,y.y,y.width,y.height).add(s.markerGroup),C.currentSymbol=k)),!g.styledMode&&C&&"inactive"!==this.state&&C.attr(s.pointAttribs(this,e))),C&&(C[e&&this.isInside?"show":"hide"](),C.element.point=this,C.addClass(this.getClassName(),!0));let M=o.halo,w=this.graphic||C,T=w&&w.visibility||"inherit";M&&M.size&&w&&"hidden"!==T&&!this.isCluster?(x||(s.halo=x=g.renderer.path().add(w.parentGroup)),x.show()[i?"animate":"attr"]({d:this.haloPath(M.size)}),x.attr({class:"highcharts-halo highcharts-color-"+b(this.colorIndex,s.colorIndex)+(this.className?" "+this.className:""),visibility:T,zIndex:-1}),x.point=this,g.styledMode||x.attr(c({fill:this.color||s.color,"fill-opacity":M.opacity},t.filterUserAttributes(M.attributes||{})))):x?.point?.haloPath&&!x.point.destroyed&&x.animate({d:x.point.haloPath(0)},null,x.hide),p(this,"afterSetState",{state:e})}haloPath(t){let e=this.pos();return e?this.series.chart.renderer.symbols.circle(l(e[0],1)-t,e[1]-t,2*t,2*t):[]}}return k}),i(e,"Core/Pointer.js",[e["Core/Color/Color.js"],e["Core/Globals.js"],e["Core/Utilities.js"]],function(t,e,i){var s;let{parse:r}=t,{charts:o,composed:n,isTouchDevice:a}=e,{addEvent:h,attr:l,css:d,extend:c,find:p,fireEvent:u,isNumber:g,isObject:f,objectEach:m,offset:x,pick:y,pushUnique:b,splat:v}=i;class S{applyInactiveState(t){let e=[],i;(t||[]).forEach(function(t){i=t.series,e.push(i),i.linkedParent&&e.push(i.linkedParent),i.linkedSeries&&(e=e.concat(i.linkedSeries)),i.navigatorSeries&&e.push(i.navigatorSeries)}),this.chart.series.forEach(function(t){-1===e.indexOf(t)?t.setState("inactive",!0):t.options.inactiveOtherPoints&&t.setAllPointsToState("inactive")})}destroy(){let t=this;this.eventsToUnbind.forEach(t=>t()),this.eventsToUnbind=[],!e.chartCount&&(S.unbindDocumentMouseUp&&S.unbindDocumentMouseUp.forEach(t=>t()),S.unbindDocumentTouchEnd&&(S.unbindDocumentTouchEnd=S.unbindDocumentTouchEnd())),clearInterval(t.tooltipTimeout),m(t,function(e,i){t[i]=void 0})}getSelectionMarkerAttrs(t,e){let i={args:{chartX:t,chartY:e},attrs:{},shapeType:"rect"};return u(this,"getSelectionMarkerAttrs",i,i=>{let s;let{chart:r,zoomHor:o,zoomVert:n}=this,{mouseDownX:a=0,mouseDownY:h=0}=r,l=i.attrs;l.x=r.plotLeft,l.y=r.plotTop,l.width=o?1:r.plotWidth,l.height=n?1:r.plotHeight,o&&(s=t-a,l.width=Math.max(1,Math.abs(s)),l.x=(s>0?0:s)+a),n&&(s=e-h,l.height=Math.max(1,Math.abs(s)),l.y=(s>0?0:s)+h)}),i}drag(t){let{chart:e}=this,{mouseDownX:i=0,mouseDownY:s=0}=e,{panning:o,panKey:n,selectionMarkerFill:a}=e.options.chart,h=e.plotLeft,l=e.plotTop,d=e.plotWidth,c=e.plotHeight,p=f(o)?o.enabled:o,u=n&&t[`${n}Key`],g=t.chartX,m=t.chartY,x,y=this.selectionMarker;if((!y||!y.touch)&&(gh+d&&(g=h+d),ml+c&&(m=l+c),this.hasDragged=Math.sqrt(Math.pow(i-g,2)+Math.pow(s-m,2)),this.hasDragged>10)){x=e.isInsidePlot(i-h,s-l,{visiblePlotOnly:!0});let{shapeType:n,attrs:d}=this.getSelectionMarkerAttrs(g,m);(e.hasCartesianSeries||e.mapView)&&this.hasZoom&&x&&!u&&!y&&(this.selectionMarker=y=e.renderer[n](),y.attr({class:"highcharts-selection-marker",zIndex:7}).add(),e.styledMode||y.attr({fill:a||r("#334eff").setOpacity(.25).get()})),y&&y.attr(d),x&&!y&&p&&e.pan(t,o)}}dragStart(t){let e=this.chart;e.mouseIsDown=t.type,e.cancelClick=!1,e.mouseDownX=t.chartX,e.mouseDownY=t.chartY}getSelectionBox(t){let e={args:{marker:t},result:t.getBBox()};return u(this,"getSelectionBox",e),e.result}drop(t){let e;let{chart:i,selectionMarker:s}=this;for(let t of i.axes)t.isPanning&&(t.isPanning=!1,(t.options.startOnTick||t.options.endOnTick||t.series.some(t=>t.boosted))&&(t.forceRedraw=!0,t.setExtremes(t.userMin,t.userMax,!1),e=!0));if(e&&i.redraw(),s&&t){if(this.hasDragged){let e=this.getSelectionBox(s);i.transform({axes:i.axes.filter(t=>t.zoomEnabled&&("xAxis"===t.coll&&this.zoomX||"yAxis"===t.coll&&this.zoomY)),selection:{originalEvent:t,xAxis:[],yAxis:[],...e},from:e})}g(i.index)&&(this.selectionMarker=s.destroy())}i&&g(i.index)&&(d(i.container,{cursor:i._cursor}),i.cancelClick=this.hasDragged>10,i.mouseIsDown=!1,this.hasDragged=0,this.pinchDown=[])}findNearestKDPoint(t,e,i){let s;return t.forEach(function(t){let r=!(t.noSharedTooltip&&e)&&0>t.options.findNearestPointBy.indexOf("y"),o=t.searchPoint(i,r);f(o,!0)&&o.series&&(!f(s,!0)||function(t,i){let s=t.distX-i.distX,r=t.dist-i.dist,o=i.series.group?.zIndex-t.series.group?.zIndex;return 0!==s&&e?s:0!==r?r:0!==o?o:t.series.index>i.series.index?-1:1}(s,o)>0)&&(s=o)}),s}getChartCoordinatesFromPoint(t,e){let{xAxis:i,yAxis:s}=t.series,r=t.shapeArgs;if(i&&s){let o=t.clientX??t.plotX??0,n=t.plotY||0;return t.isNode&&r&&g(r.x)&&g(r.y)&&(o=r.x,n=r.y),e?{chartX:s.len+s.pos-n,chartY:i.len+i.pos-o}:{chartX:o+i.pos,chartY:n+s.pos}}if(r&&r.x&&r.y)return{chartX:r.x,chartY:r.y}}getChartPosition(){if(this.chartPosition)return this.chartPosition;let{container:t}=this.chart,e=x(t);this.chartPosition={left:e.left,top:e.top,scaleX:1,scaleY:1};let{offsetHeight:i,offsetWidth:s}=t;return s>2&&i>2&&(this.chartPosition.scaleX=e.width/s,this.chartPosition.scaleY=e.height/i),this.chartPosition}getCoordinates(t){let e={xAxis:[],yAxis:[]};for(let i of this.chart.axes)e[i.isXAxis?"xAxis":"yAxis"].push({axis:i,value:i.toValue(t[i.horiz?"chartX":"chartY"])});return e}getHoverData(t,e,i,s,r,o){let n=[],a=function(t){return t.visible&&!(!r&&t.directTouch)&&y(t.options.enableMouseTracking,!0)},h=e,l,d={chartX:o?o.chartX:void 0,chartY:o?o.chartY:void 0,shared:r};u(this,"beforeGetHoverData",d),l=h&&!h.stickyTracking?[h]:i.filter(t=>t.stickyTracking&&(d.filter||a)(t));let c=s&&t||!o?t:this.findNearestKDPoint(l,r,o);return h=c&&c.series,c&&(r&&!h.noSharedTooltip?(l=i.filter(function(t){return d.filter?d.filter(t):a(t)&&!t.noSharedTooltip})).forEach(function(t){let e=p(t.points,function(t){return t.x===c.x&&!t.isNull});f(e)&&(t.boosted&&t.boost&&(e=t.boost.getPoint(e)),n.push(e))}):n.push(c)),u(this,"afterGetHoverData",d={hoverPoint:c}),{hoverPoint:d.hoverPoint,hoverSeries:h,hoverPoints:n}}getPointFromEvent(t){let e=t.target,i;for(;e&&!i;)i=e.point,e=e.parentNode;return i}onTrackerMouseOut(t){let e=this.chart,i=t.relatedTarget,s=e.hoverSeries;this.isDirectTouch=!1,!s||!i||s.stickyTracking||this.inClass(i,"highcharts-tooltip")||this.inClass(i,"highcharts-series-"+s.index)&&this.inClass(i,"highcharts-tracker")||s.onMouseOut()}inClass(t,e){let i=t,s;for(;i;){if(s=l(i,"class")){if(-1!==s.indexOf(e))return!0;if(-1!==s.indexOf("highcharts-container"))return!1}i=i.parentElement}}constructor(t,e){this.hasDragged=0,this.pointerCaptureEventsToUnbind=[],this.eventsToUnbind=[],this.options=e,this.chart=t,this.runChartClick=!!e.chart.events?.click,this.pinchDown=[],this.setDOMEvents(),u(this,"afterInit")}normalize(t,e){let i=t.touches,s=i?i.length?i.item(0):y(i.changedTouches,t.changedTouches)[0]:t;e||(e=this.getChartPosition());let r=s.pageX-e.left,o=s.pageY-e.top;return c(t,{chartX:Math.round(r/=e.scaleX),chartY:Math.round(o/=e.scaleY)})}onContainerClick(t){let e=this.chart,i=e.hoverPoint,s=this.normalize(t),r=e.plotLeft,o=e.plotTop;!e.cancelClick&&(i&&this.inClass(s.target,"highcharts-tracker")?(u(i.series,"click",c(s,{point:i})),e.hoverPoint&&i.firePointEvent("click",s)):(c(s,this.getCoordinates(s)),e.isInsidePlot(s.chartX-r,s.chartY-o,{visiblePlotOnly:!0})&&u(e,"click",s)))}onContainerMouseDown(t){let i=(1&(t.buttons||t.button))==1;t=this.normalize(t),e.isFirefox&&0!==t.button&&this.onContainerMouseMove(t),(void 0===t.button||i)&&(this.zoomOption(t),i&&t.preventDefault?.(),this.dragStart(t))}onContainerMouseLeave(t){let{pointer:e}=o[y(S.hoverChartIndex,-1)]||{};t=this.normalize(t),this.onContainerMouseMove(t),e&&!this.inClass(t.relatedTarget,"highcharts-tooltip")&&(e.reset(),e.chartPosition=void 0)}onContainerMouseEnter(){delete this.chartPosition}onContainerMouseMove(t){let e=this.chart,i=e.tooltip,s=this.normalize(t);this.setHoverChartIndex(t),("mousedown"===e.mouseIsDown||this.touchSelect(s))&&this.drag(s),!e.openMenu&&(this.inClass(s.target,"highcharts-tracker")||e.isInsidePlot(s.chartX-e.plotLeft,s.chartY-e.plotTop,{visiblePlotOnly:!0}))&&!(i&&i.shouldStickOnContact(s))&&(this.inClass(s.target,"highcharts-no-tooltip")?this.reset(!1,0):this.runPointActions(s))}onDocumentTouchEnd(t){this.onDocumentMouseUp(t)}onContainerTouchMove(t){this.touchSelect(t)?this.onContainerMouseMove(t):this.touch(t)}onContainerTouchStart(t){this.touchSelect(t)?this.onContainerMouseDown(t):(this.zoomOption(t),this.touch(t,!0))}onDocumentMouseMove(t){let e=this.chart,i=e.tooltip,s=this.chartPosition,r=this.normalize(t,s);!s||e.isInsidePlot(r.chartX-e.plotLeft,r.chartY-e.plotTop,{visiblePlotOnly:!0})||i&&i.shouldStickOnContact(r)||r.target!==e.container.ownerDocument&&this.inClass(r.target,"highcharts-tracker")||this.reset()}onDocumentMouseUp(t){o[y(S.hoverChartIndex,-1)]?.pointer?.drop(t)}pinch(t){let e=this,{chart:i,hasZoom:s,lastTouches:r}=e,o=[].map.call(t.touches||[],t=>e.normalize(t)),n=o.length,a=1===n&&(e.inClass(t.target,"highcharts-tracker")&&i.runTrackerClick||e.runChartClick),h=i.tooltip,l=1===n&&y(h?.options.followTouchMove,!0);n>1?e.initiated=!0:l&&(e.initiated=!1),s&&e.initiated&&!a&&!1!==t.cancelable&&t.preventDefault(),"touchstart"===t.type?(e.pinchDown=o,e.res=!0,i.mouseDownX=t.chartX):l?this.runPointActions(e.normalize(t)):r&&(u(i,"touchpan",{originalEvent:t,touches:o},()=>{let e=t=>{let e=t[0],i=t[1]||e;return{x:e.chartX,y:e.chartY,width:i.chartX-e.chartX,height:i.chartY-e.chartY}};i.transform({axes:i.axes.filter(t=>t.zoomEnabled&&(this.zoomHor&&t.horiz||this.zoomVert&&!t.horiz)),to:e(o),from:e(r),trigger:t.type})}),e.res&&(e.res=!1,this.reset(!1,0))),e.lastTouches=o}reset(t,e){let i=this.chart,s=i.hoverSeries,r=i.hoverPoint,o=i.hoverPoints,n=i.tooltip,a=n&&n.shared?o:r;t&&a&&v(a).forEach(function(e){e.series.isCartesian&&void 0===e.plotX&&(t=!1)}),t?n&&a&&v(a).length&&(n.refresh(a),n.shared&&o?o.forEach(function(t){t.setState(t.state,!0),t.series.isCartesian&&(t.series.xAxis.crosshair&&t.series.xAxis.drawCrosshair(null,t),t.series.yAxis.crosshair&&t.series.yAxis.drawCrosshair(null,t))}):r&&(r.setState(r.state,!0),i.axes.forEach(function(t){t.crosshair&&r.series[t.coll]===t&&t.drawCrosshair(null,r)}))):(r&&r.onMouseOut(),o&&o.forEach(function(t){t.setState()}),s&&s.onMouseOut(),n&&n.hide(e),this.unDocMouseMove&&(this.unDocMouseMove=this.unDocMouseMove()),i.axes.forEach(function(t){t.hideCrosshair()}),i.hoverPoints=i.hoverPoint=void 0)}runPointActions(t,e,i){let s=this.chart,r=s.series,n=s.tooltip&&s.tooltip.options.enabled?s.tooltip:void 0,a=!!n&&n.shared,l=e||s.hoverPoint,d=l&&l.series||s.hoverSeries,c=(!t||"touchmove"!==t.type)&&(!!e||d&&d.directTouch&&this.isDirectTouch),u=this.getHoverData(l,d,r,c,a,t);l=u.hoverPoint,d=u.hoverSeries;let g=u.hoverPoints,f=d&&d.tooltipOptions.followPointer&&!d.tooltipOptions.split,m=a&&d&&!d.noSharedTooltip;if(l&&(i||l!==s.hoverPoint||n&&n.isHidden)){if((s.hoverPoints||[]).forEach(function(t){-1===g.indexOf(t)&&t.setState()}),s.hoverSeries!==d&&d.onMouseOver(),this.applyInactiveState(g),(g||[]).forEach(function(t){t.setState("hover")}),s.hoverPoint&&s.hoverPoint.firePointEvent("mouseOut"),!l.series)return;s.hoverPoints=g,s.hoverPoint=l,l.firePointEvent("mouseOver",void 0,()=>{n&&l&&n.refresh(m?g:l,t)})}else if(f&&n&&!n.isHidden){let e=n.getAnchor([{}],t);s.isInsidePlot(e[0],e[1],{visiblePlotOnly:!0})&&n.updatePosition({plotX:e[0],plotY:e[1]})}this.unDocMouseMove||(this.unDocMouseMove=h(s.container.ownerDocument,"mousemove",t=>o[S.hoverChartIndex??-1]?.pointer?.onDocumentMouseMove(t)),this.eventsToUnbind.push(this.unDocMouseMove)),s.axes.forEach(function(e){let i;let r=y((e.crosshair||{}).snap,!0);!r||(i=s.hoverPoint)&&i.series[e.coll]===e||(i=p(g,t=>t.series&&t.series[e.coll]===e)),i||!r?e.drawCrosshair(t,i):e.hideCrosshair()})}setDOMEvents(){let t=this.chart.container,e=t.ownerDocument;t.onmousedown=this.onContainerMouseDown.bind(this),t.onmousemove=this.onContainerMouseMove.bind(this),t.onclick=this.onContainerClick.bind(this),this.eventsToUnbind.push(h(t,"mouseenter",this.onContainerMouseEnter.bind(this)),h(t,"mouseleave",this.onContainerMouseLeave.bind(this))),S.unbindDocumentMouseUp||(S.unbindDocumentMouseUp=[]),S.unbindDocumentMouseUp.push(h(e,"mouseup",this.onDocumentMouseUp.bind(this)));let i=this.chart.renderTo.parentElement;for(;i&&"BODY"!==i.tagName;)this.eventsToUnbind.push(h(i,"scroll",()=>{delete this.chartPosition})),i=i.parentElement;this.eventsToUnbind.push(h(t,"touchstart",this.onContainerTouchStart.bind(this),{passive:!1}),h(t,"touchmove",this.onContainerTouchMove.bind(this),{passive:!1})),S.unbindDocumentTouchEnd||(S.unbindDocumentTouchEnd=h(e,"touchend",this.onDocumentTouchEnd.bind(this),{passive:!1})),this.setPointerCapture(),h(this.chart,"redraw",this.setPointerCapture.bind(this))}setPointerCapture(){if(!a)return;let t=this.pointerCaptureEventsToUnbind,e=this.chart,i=e.container,s=y(e.options.tooltip?.followTouchMove,!0)&&e.series.some(t=>t.options.findNearestPointBy.indexOf("y")>-1);!this.hasPointerCapture&&s?(t.push(h(i,"pointerdown",t=>{t.target?.hasPointerCapture(t.pointerId)&&t.target?.releasePointerCapture(t.pointerId)}),h(i,"pointermove",t=>{e.pointer?.getPointFromEvent(t)?.onMouseOver(t)})),e.styledMode||d(i,{"touch-action":"none"}),i.className+=" highcharts-no-touch-action",this.hasPointerCapture=!0):this.hasPointerCapture&&!s&&(t.forEach(t=>t()),t.length=0,e.styledMode||d(i,{"touch-action":y(e.options.chart.style?.["touch-action"],"manipulation")}),i.className=i.className.replace(" highcharts-no-touch-action",""),this.hasPointerCapture=!1)}setHoverChartIndex(t){let i=this.chart,s=e.charts[y(S.hoverChartIndex,-1)];if(s&&s!==i){let e={relatedTarget:i.container};t&&!t?.relatedTarget&&(t={...e,...t}),s.pointer?.onContainerMouseLeave(t||e)}s&&s.mouseIsDown||(S.hoverChartIndex=i.index)}touch(t,e){let i;let{chart:s,pinchDown:r=[]}=this;this.setHoverChartIndex(),1===(t=this.normalize(t)).touches.length?s.isInsidePlot(t.chartX-s.plotLeft,t.chartY-s.plotTop,{visiblePlotOnly:!0})&&!s.openMenu?(e&&this.runPointActions(t),"touchmove"===t.type&&(i=!!r[0]&&Math.pow(r[0].chartX-t.chartX,2)+Math.pow(r[0].chartY-t.chartY,2)>=16),y(i,!0)&&this.pinch(t)):e&&this.reset():2===t.touches.length&&this.pinch(t)}touchSelect(t){return!!(this.chart.zooming.singleTouch&&t.touches&&1===t.touches.length)}zoomOption(t){let e=this.chart,i=e.inverted,s=e.zooming.type||"",r,o;/touch/.test(t.type)&&(s=y(e.zooming.pinchType,s)),this.zoomX=r=/x/.test(s),this.zoomY=o=/y/.test(s),this.zoomHor=r&&!i||o&&i,this.zoomVert=o&&!i||r&&i,this.hasZoom=r||o}}return(s=S||(S={})).compose=function(t){b(n,"Core.Pointer")&&h(t,"beforeRender",function(){this.pointer=new s(this,this.options)})},S}),i(e,"Core/Legend/LegendSymbol.js",[e["Core/Utilities.js"]],function(t){var e;let{extend:i,merge:s,pick:r}=t;return function(t){function e(t,e,o){let n=this.legendItem=this.legendItem||{},{chart:a,options:h}=this,{baseline:l=0,symbolWidth:d,symbolHeight:c}=t,p=this.symbol||"circle",u=c/2,g=a.renderer,f=n.group,m=l-Math.round((t.fontMetrics?.b||c)*(o?.4:.3)),x={},y,b=h.marker,v=0;if(a.styledMode||(x["stroke-width"]=Math.min(h.lineWidth||0,24),h.dashStyle?x.dashstyle=h.dashStyle:"square"===h.linecap||(x["stroke-linecap"]="round")),n.line=g.path().addClass("highcharts-graph").attr(x).add(f),o&&(n.area=g.path().addClass("highcharts-area").add(f)),x["stroke-linecap"]&&(v=Math.min(n.line.strokeWidth(),d)/2),d){let t=[["M",v,m],["L",d-v,m]];n.line.attr({d:t}),n.area?.attr({d:[...t,["L",d-v,l],["L",v,l]]})}if(b&&!1!==b.enabled&&d){let t=Math.min(r(b.radius,u),u);0===p.indexOf("url")&&(b=s(b,{width:c,height:c}),t=0),n.symbol=y=g.symbol(p,d/2-t,m-t,2*t,2*t,i({context:"legend"},b)).addClass("highcharts-point").add(f),y.isMarker=!0}}t.areaMarker=function(t,i){e.call(this,t,i,!0)},t.lineMarker=e,t.rectangle=function(t,e){let i=e.legendItem||{},s=t.options,o=t.symbolHeight,n=s.squareSymbol,a=n?o:t.symbolWidth;i.symbol=this.chart.renderer.rect(n?(t.symbolWidth-o)/2:0,t.baseline-o+1,a,o,r(t.options.symbolRadius,o/2)).addClass("highcharts-point").attr({zIndex:3}).add(i.group)}}(e||(e={})),e}),i(e,"Core/Series/SeriesDefaults.js",[],function(){return{lineWidth:2,allowPointSelect:!1,crisp:!0,showCheckbox:!1,animation:{duration:1e3},enableMouseTracking:!0,events:{},marker:{enabledThreshold:2,lineColor:"#ffffff",lineWidth:0,radius:4,states:{normal:{animation:!0},hover:{animation:{duration:150},enabled:!0,radiusPlus:2,lineWidthPlus:1},select:{fillColor:"#cccccc",lineColor:"#000000",lineWidth:2}}},point:{events:{}},dataLabels:{animation:{},align:"center",borderWidth:0,defer:!0,formatter:function(){let{numberFormatter:t}=this.series.chart;return"number"!=typeof this.y?"":t(this.y,-1)},padding:5,style:{fontSize:"0.7em",fontWeight:"bold",color:"contrast",textOutline:"1px contrast"},verticalAlign:"bottom",x:0,y:0},cropThreshold:300,opacity:1,pointRange:0,softThreshold:!0,states:{normal:{animation:!0},hover:{animation:{duration:150},lineWidthPlus:1,marker:{},halo:{size:10,opacity:.25}},select:{animation:{duration:0}},inactive:{animation:{duration:150},opacity:.2}},stickyTracking:!0,turboThreshold:1e3,findNearestPointBy:"x"}}),i(e,"Core/Series/SeriesRegistry.js",[e["Core/Globals.js"],e["Core/Defaults.js"],e["Core/Series/Point.js"],e["Core/Utilities.js"]],function(t,e,i,s){var r;let{defaultOptions:o}=e,{extend:n,extendClass:a,merge:h}=s;return function(e){function s(t,s){let r=o.plotOptions||{},n=s.defaultOptions,a=s.prototype;return a.type=t,a.pointClass||(a.pointClass=i),!e.seriesTypes[t]&&(n&&(r[t]=n),e.seriesTypes[t]=s,!0)}e.seriesTypes=t.seriesTypes,e.registerSeriesType=s,e.seriesType=function(t,r,l,d,c){let p=o.plotOptions||{};if(r=r||"",p[t]=h(p[r],l),delete e.seriesTypes[t],s(t,a(e.seriesTypes[r]||function(){},d)),e.seriesTypes[t].prototype.type=t,c){class s extends i{}n(s.prototype,c),e.seriesTypes[t].prototype.pointClass=s}return e.seriesTypes[t]}}(r||(r={})),r}),i(e,"Core/Series/Series.js",[e["Core/Animation/AnimationUtilities.js"],e["Core/Defaults.js"],e["Core/Foundation.js"],e["Core/Globals.js"],e["Core/Legend/LegendSymbol.js"],e["Core/Series/Point.js"],e["Core/Series/SeriesDefaults.js"],e["Core/Series/SeriesRegistry.js"],e["Core/Renderer/SVG/SVGElement.js"],e["Core/Utilities.js"]],function(t,e,i,s,r,o,n,a,h,l){let{animObject:d,setAnimation:c}=t,{defaultOptions:p}=e,{registerEventOptions:u}=i,{svg:g,win:f}=s,{seriesTypes:m}=a,{arrayMax:x,arrayMin:y,clamp:b,correctFloat:v,crisp:S,defined:C,destroyObjectProperties:k,diffObjects:M,erase:w,error:T,extend:A,find:P,fireEvent:L,getClosestDistance:O,getNestedProperty:D,insertItem:E,isArray:I,isNumber:j,isString:B,merge:R,objectEach:z,pick:N,removeEvent:W,splat:G,syncTimeout:H}=l;class X{constructor(){this.zoneAxis="y"}init(t,e){let i;L(this,"init",{options:e});let s=this,r=t.series;this.eventsToUnbind=[],s.chart=t,s.options=s.setOptions(e);let o=s.options,n=!1!==o.visible;s.linkedSeries=[],s.bindAxes(),A(s,{name:o.name,state:"",visible:n,selected:!0===o.selected}),u(this,o);let a=o.events;(a&&a.click||o.point&&o.point.events&&o.point.events.click||o.allowPointSelect)&&(t.runTrackerClick=!0),s.getColor(),s.getSymbol(),s.parallelArrays.forEach(function(t){s[t+"Data"]||(s[t+"Data"]=[])}),s.isCartesian&&(t.hasCartesianSeries=!0),r.length&&(i=r[r.length-1]),s._i=N(i&&i._i,-1)+1,s.opacity=s.options.opacity,t.orderItems("series",E(this,r)),o.dataSorting&&o.dataSorting.enabled?s.setDataSortingOptions():s.points||s.data||s.setData(o.data,!1),L(this,"afterInit")}is(t){return m[t]&&this instanceof m[t]}bindAxes(){let t;let e=this,i=e.options,s=e.chart;L(this,"bindAxes",null,function(){(e.axisTypes||[]).forEach(function(r){(s[r]||[]).forEach(function(s){t=s.options,(N(i[r],0)===s.index||void 0!==i[r]&&i[r]===t.id)&&(E(e,s.series),e[r]=s,s.isDirty=!0)}),e[r]||e.optionalAxis===r||T(18,!0,s)})}),L(this,"afterBindAxes")}updateParallelArrays(t,e,i){let s=t.series,r=j(e)?function(i){let r="y"===i&&s.toYData?s.toYData(t):t[i];s[i+"Data"][e]=r}:function(t){Array.prototype[e].apply(s[t+"Data"],i)};s.parallelArrays.forEach(r)}hasData(){return this.visible&&void 0!==this.dataMax&&void 0!==this.dataMin||this.visible&&this.yData&&this.yData.length>0}hasMarkerChanged(t,e){let i=t.marker,s=e.marker||{};return i&&(s.enabled&&!i.enabled||s.symbol!==i.symbol||s.height!==i.height||s.width!==i.width)}autoIncrement(t){let e=this.options,i=e.pointIntervalUnit,s=e.relativeXValue,r=this.chart.time,o=this.xIncrement,n,a;return(o=N(o,e.pointStart,0),this.pointInterval=a=N(this.pointInterval,e.pointInterval,1),s&&j(t)&&(a*=t),i&&(n=new r.Date(o),"day"===i?r.set("Date",n,r.get("Date",n)+a):"month"===i?r.set("Month",n,r.get("Month",n)+a):"year"===i&&r.set("FullYear",n,r.get("FullYear",n)+a),a=n.getTime()-o),s&&j(t))?o+a:(this.xIncrement=o+a,o)}setDataSortingOptions(){let t=this.options;A(this,{requireSorting:!1,sorted:!1,enabledDataSorting:!0,allowDG:!1}),C(t.pointRange)||(t.pointRange=1)}setOptions(t){let e;let i=this.chart,s=i.options.plotOptions,r=i.userOptions||{},o=R(t),n=i.styledMode,a={plotOptions:s,userOptions:o};L(this,"setOptions",a);let h=a.plotOptions[this.type],l=r.plotOptions||{},d=l.series||{},c=p.plotOptions[this.type]||{},u=l[this.type]||{};this.userOptions=a.userOptions;let g=R(h,s.series,u,o);this.tooltipOptions=R(p.tooltip,p.plotOptions.series?.tooltip,c?.tooltip,i.userOptions.tooltip,l.series?.tooltip,u.tooltip,o.tooltip),this.stickyTracking=N(o.stickyTracking,u.stickyTracking,d.stickyTracking,!!this.tooltipOptions.shared&&!this.noSharedTooltip||g.stickyTracking),null===h.marker&&delete g.marker,this.zoneAxis=g.zoneAxis||"y";let f=this.zones=(g.zones||[]).map(t=>({...t}));return(g.negativeColor||g.negativeFillColor)&&!g.zones&&(e={value:g[this.zoneAxis+"Threshold"]||g.threshold||0,className:"highcharts-negative"},n||(e.color=g.negativeColor,e.fillColor=g.negativeFillColor),f.push(e)),f.length&&C(f[f.length-1].value)&&f.push(n?{}:{color:this.color,fillColor:this.fillColor}),L(this,"afterSetOptions",{options:g}),g}getName(){return N(this.options.name,"Series "+(this.index+1))}getCyclic(t,e,i){let s,r;let o=this.chart,n=`${t}Index`,a=`${t}Counter`,h=i?.length||o.options.chart.colorCount;!e&&(C(r=N("color"===t?this.options.colorIndex:void 0,this[n]))?s=r:(o.series.length||(o[a]=0),s=o[a]%h,o[a]+=1),i&&(e=i[s])),void 0!==s&&(this[n]=s),this[t]=e}getColor(){this.chart.styledMode?this.getCyclic("color"):this.options.colorByPoint?this.color="#cccccc":this.getCyclic("color",this.options.color||p.plotOptions[this.type].color,this.chart.options.colors)}getPointsCollection(){return(this.hasGroupedData?this.points:this.data)||[]}getSymbol(){let t=this.options.marker;this.getCyclic("symbol",t.symbol,this.chart.options.symbols)}findPointIndex(t,e){let i,s,r;let n=t.id,a=t.x,h=this.points,l=this.options.dataSorting;if(n){let t=this.chart.get(n);t instanceof o&&(i=t)}else if(this.linkedParent||this.enabledDataSorting||this.options.relativeXValue){let e=e=>!e.touched&&e.index===t.index;if(l&&l.matchByName?e=e=>!e.touched&&e.name===t.name:this.options.relativeXValue&&(e=e=>!e.touched&&e.options.x===t.x),!(i=P(h,e)))return}return i&&void 0!==(r=i&&i.index)&&(s=!0),void 0===r&&j(a)&&(r=this.xData.indexOf(a,e)),-1!==r&&void 0!==r&&this.cropped&&(r=r>=this.cropStart?r-this.cropStart:r),!s&&j(r)&&h[r]&&h[r].touched&&(r=void 0),r}updateData(t,e){let i=this.options,s=i.dataSorting,r=this.points,o=[],n=this.requireSorting,a=t.length===r.length,h,l,d,c,p=!0;if(this.xIncrement=null,t.forEach(function(t,e){let l;let d=C(t)&&this.pointClass.prototype.optionsToObject.call({series:this},t)||{},p=d.x;d.id||j(p)?(-1===(l=this.findPointIndex(d,c))||void 0===l?o.push(t):r[l]&&t!==i.data[l]?(r[l].update(t,!1,null,!1),r[l].touched=!0,n&&(c=l+1)):r[l]&&(r[l].touched=!0),(!a||e!==l||s&&s.enabled||this.hasDerivedData)&&(h=!0)):o.push(t)},this),h)for(l=r.length;l--;)(d=r[l])&&!d.touched&&d.remove&&d.remove(!1,e);else!a||s&&s.enabled?p=!1:(t.forEach(function(t,e){t===r[e].y||r[e].destroyed||r[e].update(t,!1,null,!1)}),o.length=0);return r.forEach(function(t){t&&(t.touched=!1)}),!!p&&(o.forEach(function(t){this.addPoint(t,!1,null,null,!1)},this),null===this.xIncrement&&this.xData&&this.xData.length&&(this.xIncrement=x(this.xData),this.autoIncrement()),!0)}setData(t,e=!0,i,s){let r=this,o=r.points,n=o&&o.length||0,a=r.options,h=r.chart,l=a.dataSorting,d=r.xAxis,c=a.turboThreshold,p=this.xData,u=this.yData,g=r.pointArrayMap,f=g&&g.length,m=a.keys,x,y,b,v=0,S=1,C;h.options.chart.allowMutatingData||(a.data&&delete r.options.data,r.userOptions.data&&delete r.userOptions.data,C=R(!0,t));let k=(t=C||t||[]).length;if(l&&l.enabled&&(t=this.sortData(t)),h.options.chart.allowMutatingData&&!1!==s&&k&&n&&!r.cropped&&!r.hasGroupedData&&r.visible&&!r.boosted&&(b=this.updateData(t,i)),!b){r.xIncrement=null,r.colorCounter=0,this.parallelArrays.forEach(function(t){r[t+"Data"].length=0});let e=c&&k>c;if(e){let i=r.getFirstValidPoint(t),s=r.getFirstValidPoint(t,k-1,-1),o=t=>!!(I(t)&&(m||j(t[0])));if(j(i)&&j(s))for(x=0;x=0?v:0,S=S>=0?S:1),1===i.length&&(S=0),v===S)for(x=0;x{let s=D(i,t),r=D(i,e);return rs?1:0}).forEach(function(t,e){t.x=e},this),e.linkedSeries&&e.linkedSeries.forEach(function(e){let i=e.options,r=i.data;i.dataSorting&&i.dataSorting.enabled||!r||(r.forEach(function(i,o){r[o]=s(e,i),t[o]&&(r[o].x=t[o].x,r[o].index=o)}),e.setData(r,!1))}),t}getProcessedData(t){let e=this,i=e.xAxis,s=e.options.cropThreshold,r=i?.logarithmic,o=e.isCartesian,n,a,h=0,l,d,c,p=e.xData,u=e.yData,g=!1,f=p.length;i&&(d=(l=i.getExtremes()).min,c=l.max,g=!!(i.categories&&!i.names.length)),o&&e.sorted&&!t&&(!s||f>s||e.forceCrop)&&(p[f-1]c?(p=[],u=[]):e.yData&&(p[0]c)&&(p=(n=this.cropData(e.xData,e.yData,d,c)).xData,u=n.yData,h=n.start,a=!0));let m=O([r?p.map(r.log2lin):p],()=>e.requireSorting&&!g&&T(15,!1,e.chart));return{xData:p,yData:u,cropped:a,cropStart:h,closestPointRange:m}}processData(t){let e=this.xAxis;if(this.isCartesian&&!this.isDirty&&!e.isDirty&&!this.yAxis.isDirty&&!t)return!1;let i=this.getProcessedData();this.cropped=i.cropped,this.cropStart=i.cropStart,this.processedXData=i.xData,this.processedYData=i.yData,this.closestPointRange=this.basePointRange=i.closestPointRange,L(this,"afterProcessData")}cropData(t,e,i,s){let r=t.length,o,n,a=0,h=r;for(o=0;o=i){a=Math.max(0,o-1);break}for(n=o;ns){h=n+1;break}return{xData:t.slice(a,h),yData:e.slice(a,h),start:a,end:h}}generatePoints(){let t=this.options,e=this.processedData||t.data,i=this.processedXData,s=this.processedYData,r=this.pointClass,o=i.length,n=this.cropStart||0,a=this.hasGroupedData,h=t.keys,l=[],d=t.dataGrouping&&t.dataGrouping.groupAll?n:0,c,p,u,g,f=this.data;if(!f&&!a){let t=[];t.length=e.length,f=this.data=t}for(h&&a&&(this.options.keys=!1),g=0;g0:g.length)||!n),p=e||this.getExtremesFromAll||this.options.getExtremesFromAll||this.cropped||!i||(k[f+o]||u)>=b&&(k[f-o]||u)<=v,c&&p){if(m=g.length)for(;m--;)j(g[m])&&(r[S++]=g[m]);else r[S++]=g}let M={activeYData:r,dataMin:y(r),dataMax:x(r)};return L(this,"afterGetExtremes",{dataExtremes:M}),M}applyExtremes(){let t=this.getExtremes();return this.dataMin=t.dataMin,this.dataMax=t.dataMax,t}getFirstValidPoint(t,e=0,i=1){let s=t.length,r=e;for(;r>=0&&r1)&&(o.step=function(t,e){i&&i.apply(e,arguments),"width"===e.prop&&h?.element&&h.attr(r?"height":"width",t+99)}),a.addClass("highcharts-animating").animate(t,o)}}afterAnimate(){this.setClip(),z(this.chart.sharedClips,(t,e,i)=>{t&&!this.chart.container.querySelector(`[clip-path="url(#${t.id})"]`)&&(t.destroy(),delete i[e])}),this.finishedAnimating=!0,L(this,"afterAnimate")}drawPoints(t=this.points){let e,i,s,r,o,n,a;let h=this.chart,l=h.styledMode,{colorAxis:d,options:c}=this,p=c.marker,u=this[this.specialGroup||"markerGroup"],g=this.xAxis,f=N(p.enabled,!g||!!g.isRadial||null,this.closestPointRangePx>=p.enabledThreshold*p.radius);if(!1!==p.enabled||this._hasPointMarkers)for(e=0;e0||i.hasImage)&&(i.graphic=s=h.renderer.symbol(t,a.x,a.y,a.width,a.height,n?o:p).add(u),this.enabledDataSorting&&h.hasRendered&&(s.attr({x:i.startXPos}),r="animate")),s&&"animate"===r&&s[e?"show":"hide"](e).animate(a),s){let t=this.pointAttribs(i,l||!i.selected?void 0:"select");l?d&&s.css({fill:t.fill}):s[r](t)}s&&s.addClass(i.getClassName(),!0)}else s&&(i.graphic=s.destroy())}markerAttribs(t,e){let i=this.options,s=i.marker,r=t.marker||{},o=r.symbol||s.symbol,n={},a,h,l=N(r.radius,s&&s.radius);e&&(a=s.states[e],l=N((h=r.states&&r.states[e])&&h.radius,a&&a.radius,l&&l+(a&&a.radiusPlus||0))),t.hasImage=o&&0===o.indexOf("url"),t.hasImage&&(l=0);let d=t.pos();return j(l)&&d&&(i.crisp&&(d[0]=S(d[0],t.hasImage?0:"rect"===o?s?.lineWidth||0:1)),n.x=d[0]-l,n.y=d[1]-l),l&&(n.width=n.height=2*l),n}pointAttribs(t,e){let i=this.options.marker,s=t&&t.options,r=s&&s.marker||{},o=s&&s.color,n=t&&t.color,a=t&&t.zone&&t.zone.color,h,l,d=this.color,c,p,u=N(r.lineWidth,i.lineWidth),g=1;return d=o||a||n||d,c=r.fillColor||i.fillColor||d,p=r.lineColor||i.lineColor||d,e=e||"normal",h=i.states[e]||{},u=N((l=r.states&&r.states[e]||{}).lineWidth,h.lineWidth,u+N(l.lineWidthPlus,h.lineWidthPlus,0)),c=l.fillColor||h.fillColor||c,{stroke:p=l.lineColor||h.lineColor||p,"stroke-width":u,fill:c,opacity:g=N(l.opacity,h.opacity,g)}}destroy(t){let e,i,s;let r=this,o=r.chart,n=/AppleWebKit\/533/.test(f.navigator.userAgent),a=r.data||[];for(L(r,"destroy",{keepEventsForUpdate:t}),this.removeEvents(t),(r.axisTypes||[]).forEach(function(t){(s=r[t])&&s.series&&(w(s.series,r),s.isDirty=s.forceRedraw=!0)}),r.legendItem&&r.chart.legend.destroyItem(r),e=a.length;e--;)(i=a[e])&&i.destroy&&i.destroy();for(let t of r.zones)k(t,void 0,!0);l.clearTimeout(r.animationTimeout),z(r,function(t,e){t instanceof h&&!t.survive&&t[n&&"group"===e?"hide":"destroy"]()}),o.hoverSeries===r&&(o.hoverSeries=void 0),w(o.series,r),o.orderItems("series"),z(r,function(e,i){t&&"hcEvents"===i||delete r[i]})}applyZones(){let{area:t,chart:e,graph:i,zones:s,points:r,xAxis:o,yAxis:n,zoneAxis:a}=this,{inverted:h,renderer:l}=e,d=this[`${a}Axis`],{isXAxis:c,len:p=0}=d||{},u=(i?.strokeWidth()||0)/2+1,g=(t,e=0,i=0)=>{h&&(i=p-i);let{translated:s=0,lineClip:r}=t,o=i-s;r?.push(["L",e,Math.abs(o){t.forEach((e,i)=>{("M"===e[0]||"L"===e[0])&&(t[i]=[e[0],c?p-e[1]:e[1],c?e[2]:p-e[2]])})};if(s.forEach(t=>{t.lineClip=[],t.translated=b(d.toPixels(N(t.value,e),!0)||0,0,p)}),i&&!this.showLine&&i.hide(),t&&t.hide(),"y"===a&&r.length{let s=e.lineClip||[],r=Math.round(e.translated||0);o.reversed&&s.reverse();let{clip:a,simpleClip:d}=e,p=0,g=0,x=o.len,y=n.len;c?(p=r,x=m):(g=r,y=m);let b=[["M",p,g],["L",x,g],["L",x,y],["L",p,y],["Z"]],v=[b[0],...s,b[1],b[2],...f,b[3],b[4]];f=s.reverse(),m=r,h&&(u(v),t&&u(b)),a?(a.animate({d:v}),d?.animate({d:b})):(a=e.clip=l.path(v),t&&(d=e.simpleClip=l.path(b))),i&&e.graph?.clip(a),t&&e.area?.clip(d)})}else this.visible&&(i&&i.show(),t&&t.show())}plotGroup(t,e,i,s,r){let o=this[t],n=!o,a={visibility:i,zIndex:s||.1};return C(this.opacity)&&!this.chart.styledMode&&"inactive"!==this.state&&(a.opacity=this.opacity),o||(this[t]=o=this.chart.renderer.g().add(r)),o.addClass("highcharts-"+e+" highcharts-series-"+this.index+" highcharts-"+this.type+"-series "+(C(this.colorIndex)?"highcharts-color-"+this.colorIndex+" ":"")+(this.options.className||"")+(o.hasClass("highcharts-tracker")?" highcharts-tracker":""),!0),o.attr(a)[n?"attr":"animate"](this.getPlotBox(e)),o}getPlotBox(t){let e=this.xAxis,i=this.yAxis,s=this.chart,r=s.inverted&&!s.polar&&e&&this.invertible&&"series"===t;return s.inverted&&(e=i,i=this.xAxis),{translateX:e?e.left:s.plotLeft,translateY:i?i.top:s.plotTop,rotation:r?90:0,rotationOriginX:r?(e.len-i.len)/2:0,rotationOriginY:r?(e.len+i.len)/2:0,scaleX:r?-1:1,scaleY:1}}removeEvents(t){let{eventsToUnbind:e}=this;t||W(this),e.length&&(e.forEach(t=>{t()}),e.length=0)}render(){let t=this,{chart:e,options:i,hasRendered:s}=t,r=d(i.animation),o=t.visible?"inherit":"hidden",n=i.zIndex,a=e.seriesGroup,h=t.finishedAnimating?0:r.duration;L(this,"render"),t.plotGroup("group","series",o,n,a),t.markerGroup=t.plotGroup("markerGroup","markers",o,n,a),!1!==i.clip&&t.setClip(),h&&t.animate?.(!0),t.drawGraph&&(t.drawGraph(),t.applyZones()),t.visible&&t.drawPoints(),t.drawDataLabels?.(),t.redrawPoints?.(),i.enableMouseTracking&&t.drawTracker?.(),h&&t.animate?.(),s||(h&&r.defer&&(h+=r.defer),t.animationTimeout=H(()=>{t.afterAnimate()},h||0)),t.isDirty=!1,t.hasRendered=!0,L(t,"afterRender")}redraw(){let t=this.isDirty||this.isDirtyData;this.translate(),this.render(),t&&delete this.kdTree}reserveSpace(){return this.visible||!this.chart.options.chart.ignoreHiddenSeries}searchPoint(t,e){let{xAxis:i,yAxis:s}=this,r=this.chart.inverted;return this.searchKDTree({clientX:r?i.len-t.chartY+i.pos:t.chartX-i.pos,plotY:r?s.len-t.chartX+s.pos:t.chartY-s.pos},e,t)}buildKDTree(t){this.buildingKdTree=!0;let e=this,i=e.options.findNearestPointBy.indexOf("y")>-1?2:1;delete e.kdTree,H(function(){e.kdTree=function t(i,s,r){let o,n;let a=i?.length;if(a)return o=e.kdAxisArray[s%r],i.sort((t,e)=>(t[o]||0)-(e[o]||0)),{point:i[n=Math.floor(a/2)],left:t(i.slice(0,n),s+1,r),right:t(i.slice(n+1),s+1,r)}}(e.getValidPoints(void 0,!e.directTouch),i,i),e.buildingKdTree=!1},e.options.kdNow||t?.type==="touchstart"?0:1)}searchKDTree(t,e,i){let s=this,[r,o]=this.kdAxisArray,n=e?"distX":"dist",a=(s.options.findNearestPointBy||"").indexOf("y")>-1?2:1,h=!!s.isBubble;if(this.kdTree||this.buildingKdTree||this.buildKDTree(i),this.kdTree)return function t(e,i,a,l){let d=i.point,c=s.kdAxisArray[a%l],p,u,g=d;!function(t,e){let i=t[r],s=e[r],n=C(i)&&C(s)?i-s:null,a=t[o],l=e[o],d=C(a)&&C(l)?a-l:0,c=h&&e.marker?.radius||0;e.dist=Math.sqrt((n&&n*n||0)+d*d)-c,e.distX=C(n)?Math.abs(n)-c:Number.MAX_VALUE}(e,d);let f=(e[c]||0)-(d[c]||0)+(h&&d.marker?.radius||0),m=f<0?"left":"right",x=f<0?"right":"left";return i[m]&&(g=(p=t(e,i[m],a+1,l))[n]=0&&o<=(s?s.len:e.plotHeight)&&r>=0&&r<=(i?i.len:e.plotWidth)}drawTracker(){let t=this,e=t.options,i=e.trackByArea,s=[].concat((i?t.areaPath:t.graphPath)||[]),r=t.chart,o=r.pointer,n=r.renderer,a=r.options.tooltip?.snap||0,h=()=>{e.enableMouseTracking&&r.hoverSeries!==t&&t.onMouseOver()},l="rgba(192,192,192,"+(g?1e-4:.002)+")",d=t.tracker;d?d.attr({d:s}):t.graph&&(t.tracker=d=n.path(s).attr({visibility:t.visible?"inherit":"hidden",zIndex:2}).addClass(i?"highcharts-tracker-area":"highcharts-tracker-line").add(t.group),r.styledMode||d.attr({"stroke-linecap":"round","stroke-linejoin":"round",stroke:l,fill:i?l:"none","stroke-width":t.graph.strokeWidth()+(i?0:2*a)}),[t.tracker,t.markerGroup,t.dataLabelsGroup].forEach(t=>{t&&(t.addClass("highcharts-tracker").on("mouseover",h).on("mouseout",t=>{o?.onTrackerMouseOut(t)}),e.cursor&&!r.styledMode&&t.css({cursor:e.cursor}),t.on("touchstart",h))})),L(this,"afterDrawTracker")}addPoint(t,e,i,s,r){let o,n;let a=this.options,h=this.data,l=this.chart,d=this.xAxis,c=d&&d.hasNames&&d.names,p=a.data,u=this.xData;e=N(e,!0);let g={series:this};this.pointClass.prototype.applyOptions.apply(g,[t]);let f=g.x;if(n=u.length,this.requireSorting&&ff;)n--;this.updateParallelArrays(g,"splice",[n,0,0]),this.updateParallelArrays(g,n),c&&g.name&&(c[f]=g.name),p.splice(n,0,t),(o||this.processedData)&&(this.data.splice(n,0,null),this.processData()),"point"===a.legendType&&this.generatePoints(),i&&(h[0]&&h[0].remove?h[0].remove(!1):(h.shift(),this.updateParallelArrays(g,"shift"),p.shift())),!1!==r&&L(this,"addPoint",{point:g}),this.isDirty=!0,this.isDirtyData=!0,e&&l.redraw(s)}removePoint(t,e,i){let s=this,r=s.data,o=r[t],n=s.points,a=s.chart,h=function(){n&&n.length===r.length&&n.splice(t,1),r.splice(t,1),s.options.data.splice(t,1),s.updateParallelArrays(o||{series:s},"splice",[t,1]),o&&o.destroy(),s.isDirty=!0,s.isDirtyData=!0,e&&a.redraw()};c(i,a),e=N(e,!0),o?o.firePointEvent("remove",null,h):h()}remove(t,e,i,s){let r=this,o=r.chart;function n(){r.destroy(s),o.isDirtyLegend=o.isDirtyBox=!0,o.linkSeries(s),N(t,!0)&&o.redraw(e)}!1!==i?L(r,"remove",null,n):n()}update(t,e){L(this,"update",{options:t=M(t,this.userOptions)});let i=this,s=i.chart,r=i.userOptions,o=i.initialType||i.type,n=s.options.plotOptions,a=m[o].prototype,h=i.finishedAnimating&&{animation:!1},l={},d,c,p=["colorIndex","eventOptions","navigatorSeries","symbolIndex","baseSeries"],u=t.type||r.type||s.options.chart.type,g=!(this.hasDerivedData||u&&u!==this.type||void 0!==t.pointStart||void 0!==t.pointInterval||void 0!==t.relativeXValue||t.joinBy||t.mapData||["dataGrouping","pointStart","pointInterval","pointIntervalUnit","keys"].some(t=>i.hasOptionChanged(t)));u=u||o,g&&(p.push("data","isDirtyData","isDirtyCanvas","points","processedData","processedXData","processedYData","xIncrement","cropped","_hasPointMarkers","hasDataLabels","nodes","layout","level","mapMap","mapData","minY","maxY","minX","maxX","transformGroups"),!1!==t.visible&&p.push("area","graph"),i.parallelArrays.forEach(function(t){p.push(t+"Data")}),t.data&&(t.dataSorting&&A(i.options.dataSorting,t.dataSorting),this.setData(t.data,!1))),t=R(r,{index:void 0===r.index?i.index:r.index,pointStart:n?.series?.pointStart??r.pointStart??i.xData?.[0]},!g&&{data:i.options.data},t,h),g&&t.data&&(t.data=i.options.data),(p=["group","markerGroup","dataLabelsGroup","transformGroup"].concat(p)).forEach(function(t){p[t]=i[t],delete i[t]});let f=!1;if(m[u]){if(f=u!==i.type,i.remove(!1,!1,!1,!0),f){if(s.propFromSeries(),Object.setPrototypeOf)Object.setPrototypeOf(i,m[u].prototype);else{let t=Object.hasOwnProperty.call(i,"hcEvents")&&i.hcEvents;for(c in a)i[c]=void 0;A(i,m[u].prototype),t?i.hcEvents=t:delete i.hcEvents}}}else T(17,!0,s,{missingModuleFor:u});if(p.forEach(function(t){i[t]=p[t]}),i.init(s,t),g&&this.points)for(let t of(!1===(d=i.options).visible?(l.graphic=1,l.dataLabel=1):(this.hasMarkerChanged(d,r)&&(l.graphic=1),i.hasDataLabels?.()||(l.dataLabel=1)),this.points))t&&t.series&&(t.resolveColor(),Object.keys(l).length&&t.destroyElements(l),!1===d.showInLegend&&t.legendItem&&s.legend.destroyItem(t));i.initialType=o,s.linkSeries(),s.setSortedData(),f&&i.linkedSeries.length&&(i.isDirtyData=!0),L(this,"afterUpdate"),N(e,!0)&&s.redraw(!!g&&void 0)}setName(t){this.name=this.options.name=this.userOptions.name=t,this.chart.isDirtyLegend=!0}hasOptionChanged(t){let e=this.chart,i=this.options[t],s=e.options.plotOptions,r=this.userOptions[t],o=N(s?.[this.type]?.[t],s?.series?.[t]);return r&&!C(o)?i!==r:i!==N(o,i)}onMouseOver(){let t=this.chart,e=t.hoverSeries,i=t.pointer;i?.setHoverChartIndex(),e&&e!==this&&e.onMouseOut(),this.options.events.mouseOver&&L(this,"mouseOver"),this.setState("hover"),t.hoverSeries=this}onMouseOut(){let t=this.options,e=this.chart,i=e.tooltip,s=e.hoverPoint;e.hoverSeries=null,s&&s.onMouseOut(),this&&t.events.mouseOut&&L(this,"mouseOut"),i&&!this.stickyTracking&&(!i.shared||this.noSharedTooltip)&&i.hide(),e.series.forEach(function(t){t.setState("",!0)})}setState(t,e){let i=this,s=i.options,r=i.graph,o=s.inactiveOtherPoints,n=s.states,a=N(n[t||"normal"]&&n[t||"normal"].animation,i.chart.options.chart.animation),h=s.lineWidth,l=s.opacity;if(t=t||"",i.state!==t&&([i.group,i.markerGroup,i.dataLabelsGroup].forEach(function(e){e&&(i.state&&e.removeClass("highcharts-series-"+i.state),t&&e.addClass("highcharts-series-"+t))}),i.state=t,!i.chart.styledMode)){if(n[t]&&!1===n[t].enabled)return;if(t&&(h=n[t].lineWidth||h+(n[t].lineWidthPlus||0),l=N(n[t].opacity,l)),r&&!r.dashstyle&&j(h))for(let t of[r,...this.zones.map(t=>t.graph)])t?.animate({"stroke-width":h},a);o||[i.group,i.markerGroup,i.dataLabelsGroup,i.labelBySeries].forEach(function(t){t&&t.animate({opacity:l},a)})}e&&o&&i.points&&i.setAllPointsToState(t||void 0)}setAllPointsToState(t){this.points.forEach(function(e){e.setState&&e.setState(t)})}setVisible(t,e){let i=this,s=i.chart,r=s.options.chart.ignoreHiddenSeries,o=i.visible;i.visible=t=i.options.visible=i.userOptions.visible=void 0===t?!o:t;let n=t?"show":"hide";["group","dataLabelsGroup","markerGroup","tracker","tt"].forEach(t=>{i[t]?.[n]()}),(s.hoverSeries===i||s.hoverPoint?.series===i)&&i.onMouseOut(),i.legendItem&&s.legend.colorizeItem(i,t),i.isDirty=!0,i.options.stacking&&s.series.forEach(t=>{t.options.stacking&&t.visible&&(t.isDirty=!0)}),i.linkedSeries.forEach(e=>{e.setVisible(t,!1)}),r&&(s.isDirtyBox=!0),L(i,n),!1!==e&&s.redraw()}show(){this.setVisible(!0)}hide(){this.setVisible(!1)}select(t){this.selected=t=this.options.selected=void 0===t?!this.selected:t,this.checkbox&&(this.checkbox.checked=t),L(this,t?"select":"unselect")}shouldShowTooltip(t,e,i={}){return i.series=this,i.visiblePlotOnly=!0,this.chart.isInsidePlot(t,e,i)}drawLegendSymbol(t,e){r[this.options.legendSymbol||"rectangle"]?.call(this,t,e)}}return X.defaultOptions=n,X.types=a.seriesTypes,X.registerType=a.registerSeriesType,A(X.prototype,{axisTypes:["xAxis","yAxis"],coll:"series",colorCounter:0,directTouch:!1,invertible:!0,isCartesian:!0,kdAxisArray:["clientX","plotY"],parallelArrays:["x","y"],pointClass:o,requireSorting:!0,sorted:!0}),a.series=X,X}),i(e,"Core/Legend/Legend.js",[e["Core/Animation/AnimationUtilities.js"],e["Core/Foundation.js"],e["Core/Globals.js"],e["Core/Series/Series.js"],e["Core/Series/Point.js"],e["Core/Renderer/RendererUtilities.js"],e["Core/Templating.js"],e["Core/Utilities.js"]],function(t,e,i,s,r,o,n,a){var h;let{animObject:l,setAnimation:d}=t,{registerEventOptions:c}=e,{composed:p,marginNames:u}=i,{distribute:g}=o,{format:f}=n,{addEvent:m,createElement:x,css:y,defined:b,discardElement:v,find:S,fireEvent:C,isNumber:k,merge:M,pick:w,pushUnique:T,relativeLength:A,stableSort:P,syncTimeout:L}=a;class O{constructor(t,e){this.allItems=[],this.initialItemY=0,this.itemHeight=0,this.itemMarginBottom=0,this.itemMarginTop=0,this.itemX=0,this.itemY=0,this.lastItemY=0,this.lastLineHeight=0,this.legendHeight=0,this.legendWidth=0,this.maxItemWidth=0,this.maxLegendWidth=0,this.offsetWidth=0,this.padding=0,this.pages=[],this.symbolHeight=0,this.symbolWidth=0,this.titleHeight=0,this.totalItemWidth=0,this.widthOption=0,this.chart=t,this.setOptions(e),e.enabled&&(this.render(),c(this,e),m(this.chart,"endResize",function(){this.legend.positionCheckboxes()})),m(this.chart,"render",()=>{this.options.enabled&&this.proximate&&(this.proximatePositions(),this.positionItems())})}setOptions(t){let e=w(t.padding,8);this.options=t,this.chart.styledMode||(this.itemStyle=t.itemStyle,this.itemHiddenStyle=M(this.itemStyle,t.itemHiddenStyle)),this.itemMarginTop=t.itemMarginTop,this.itemMarginBottom=t.itemMarginBottom,this.padding=e,this.initialItemY=e-5,this.symbolWidth=w(t.symbolWidth,16),this.pages=[],this.proximate="proximate"===t.layout&&!this.chart.inverted,this.baseline=void 0}update(t,e){let i=this.chart;this.setOptions(M(!0,this.options,t)),"events"in this.options&&c(this,this.options),this.destroy(),i.isDirtyLegend=i.isDirtyBox=!0,w(e,!0)&&i.redraw(),C(this,"afterUpdate",{redraw:e})}colorizeItem(t,e){let{area:i,group:s,label:r,line:o,symbol:n}=t.legendItem||{};if(s?.[e?"removeClass":"addClass"]("highcharts-legend-item-hidden"),!this.chart.styledMode){let{itemHiddenStyle:s={}}=this,a=s.color,{fillColor:h,fillOpacity:l,lineColor:d,marker:c}=t.options,p=t=>(!e&&(t.fill&&(t.fill=a),t.stroke&&(t.stroke=a)),t);r?.css(M(e?this.itemStyle:s)),o?.attr(p({stroke:d||t.color})),n&&n.attr(p(c&&n.isMarker?t.pointAttribs():{fill:t.color})),i?.attr(p({fill:h||t.color,"fill-opacity":h?1:l??.75}))}C(this,"afterColorizeItem",{item:t,visible:e})}positionItems(){this.allItems.forEach(this.positionItem,this),this.chart.isResizing||this.positionCheckboxes()}positionItem(t){let{group:e,x:i=0,y:s=0}=t.legendItem||{},r=this.options,o=r.symbolPadding,n=!r.rtl,a=t.checkbox;if(e&&e.element){let r={translateX:n?i:this.legendWidth-i-2*o-4,translateY:s};e[b(e.translateY)?"animate":"attr"](r,void 0,()=>{C(this,"afterPositionItem",{item:t})})}a&&(a.x=i,a.y=s)}destroyItem(t){let e=t.checkbox,i=t.legendItem||{};for(let t of["group","label","line","symbol"])i[t]&&(i[t]=i[t].destroy());e&&v(e),t.legendItem=void 0}destroy(){for(let t of this.getAllItems())this.destroyItem(t);for(let t of["clipRect","up","down","pager","nav","box","title","group"])this[t]&&(this[t]=this[t].destroy());this.display=null}positionCheckboxes(){let t;let e=this.group&&this.group.alignAttr,i=this.clipHeight||this.legendHeight,s=this.titleHeight;e&&(t=e.translateY,this.allItems.forEach(function(r){let o;let n=r.checkbox;n&&(o=t+s+n.y+(this.scrollOffset||0)+3,y(n,{left:e.translateX+r.checkboxOffset+n.x-20+"px",top:o+"px",display:this.proximate||o>t-6&&o1.5*S?v.height:S))}layoutItem(t){let e=this.options,i=this.padding,s="horizontal"===e.layout,r=t.itemHeight,o=this.itemMarginBottom,n=this.itemMarginTop,a=s?w(e.itemDistance,20):0,h=this.maxLegendWidth,l=e.alignColumns&&this.totalItemWidth>h?this.maxItemWidth:t.itemWidth,d=t.legendItem||{};s&&this.itemX-i+l>h&&(this.itemX=i,this.lastLineHeight&&(this.itemY+=n+this.lastLineHeight+o),this.lastLineHeight=0),this.lastItemY=n+this.itemY+o,this.lastLineHeight=Math.max(r,this.lastLineHeight),d.x=this.itemX,d.y=this.itemY,s?this.itemX+=l:(this.itemY+=n+r+o,this.lastLineHeight=r),this.offsetWidth=this.widthOption||Math.max((s?this.itemX-i-(t.checkbox?0:a):l)+i,this.offsetWidth)}getAllItems(){let t=[];return this.chart.series.forEach(function(e){let i=e&&e.options;e&&w(i.showInLegend,!b(i.linkedTo)&&void 0,!0)&&(t=t.concat((e.legendItem||{}).labels||("point"===i.legendType?e.data:e)))}),C(this,"afterGetAllItems",{allItems:t}),t}getAlignment(){let t=this.options;return this.proximate?t.align.charAt(0)+"tv":t.floating?"":t.align.charAt(0)+t.verticalAlign.charAt(0)+t.layout.charAt(0)}adjustMargins(t,e){let i=this.chart,s=this.options,r=this.getAlignment();r&&[/(lth|ct|rth)/,/(rtv|rm|rbv)/,/(rbh|cb|lbh)/,/(lbv|lm|ltv)/].forEach(function(o,n){o.test(r)&&!b(t[n])&&(i[u[n]]=Math.max(i[u[n]],i.legend[(n+1)%2?"legendHeight":"legendWidth"]+[1,-1,-1,1][n]*s[n%2?"x":"y"]+w(s.margin,12)+e[n]+(i.titleOffset[n]||0)))})}proximatePositions(){let t;let e=this.chart,i=[],s="left"===this.options.align;for(let r of(this.allItems.forEach(function(t){let r,o,n=s,a,h;t.yAxis&&(t.xAxis.options.reversed&&(n=!n),t.points&&(r=S(n?t.points:t.points.slice(0).reverse(),function(t){return k(t.plotY)})),o=this.itemMarginTop+t.legendItem.label.getBBox().height+this.itemMarginBottom,h=t.yAxis.top-e.plotTop,a=t.visible?(r?r.plotY:t.yAxis.height)+(h-.3*o):h+t.yAxis.height,i.push({target:a,size:o,item:t}))},this),g(i,e.plotHeight)))t=r.item.legendItem||{},k(r.pos)&&(t.y=e.plotTop-e.spacing[0]+r.pos)}render(){let t=this.chart,e=t.renderer,i=this.options,s=this.padding,r=this.getAllItems(),o,n,a,h=this.group,l,d=this.box;this.itemX=s,this.itemY=this.initialItemY,this.offsetWidth=0,this.lastItemY=0,this.widthOption=A(i.width,t.spacingBox.width-s),l=t.spacingBox.width-2*s-i.x,["rm","lm"].indexOf(this.getAlignment().substring(0,2))>-1&&(l/=2),this.maxLegendWidth=this.widthOption||l,h||(this.group=h=e.g("legend").addClass(i.className||"").attr({zIndex:7}).add(),this.contentGroup=e.g().attr({zIndex:1}).add(h),this.scrollGroup=e.g().add(this.contentGroup)),this.renderTitle(),P(r,(t,e)=>(t.options&&t.options.legendIndex||0)-(e.options&&e.options.legendIndex||0)),i.reversed&&r.reverse(),this.allItems=r,this.display=o=!!r.length,this.lastLineHeight=0,this.maxItemWidth=0,this.totalItemWidth=0,this.itemHeight=0,r.forEach(this.renderItem,this),r.forEach(this.layoutItem,this),n=(this.widthOption||this.offsetWidth)+s,a=this.lastItemY+this.lastLineHeight+this.titleHeight,a=this.handleOverflow(a)+s,d||(this.box=d=e.rect().addClass("highcharts-legend-box").attr({r:i.borderRadius}).add(h)),t.styledMode||d.attr({stroke:i.borderColor,"stroke-width":i.borderWidth||0,fill:i.backgroundColor||"none"}).shadow(i.shadow),n>0&&a>0&&d[d.placed?"animate":"attr"](d.crisp.call({},{x:0,y:0,width:n,height:a},d.strokeWidth())),h[o?"show":"hide"](),t.styledMode&&"none"===h.getStyle("display")&&(n=a=0),this.legendWidth=n,this.legendHeight=a,o&&this.align(),this.proximate||this.positionItems(),C(this,"afterRender")}align(t=this.chart.spacingBox){let e=this.chart,i=this.options,s=t.y;/(lth|ct|rth)/.test(this.getAlignment())&&e.titleOffset[0]>0?s+=e.titleOffset[0]:/(lbh|cb|rbh)/.test(this.getAlignment())&&e.titleOffset[2]>0&&(s-=e.titleOffset[2]),s!==t.y&&(t=M(t,{y:s})),e.hasRendered||(this.group.placed=!1),this.group.align(M(i,{width:this.legendWidth,height:this.legendHeight,verticalAlign:this.proximate?"top":i.verticalAlign}),!0,t)}handleOverflow(t){let e=this,i=this.chart,s=i.renderer,r=this.options,o=r.y,n="top"===r.verticalAlign,a=this.padding,h=r.maxHeight,l=r.navigation,d=w(l.animation,!0),c=l.arrowSize||12,p=this.pages,u=this.allItems,g=function(t){"number"==typeof t?S.attr({height:t}):S&&(e.clipRect=S.destroy(),e.contentGroup.clip()),e.contentGroup.div&&(e.contentGroup.div.style.clip=t?"rect("+a+"px,9999px,"+(a+t)+"px,0)":"auto")},f=function(t){return e[t]=s.circle(0,0,1.3*c).translate(c/2,c/2).add(v),i.styledMode||e[t].attr("fill","rgba(0,0,0,0.0001)"),e[t]},m,x,y,b=i.spacingBox.height+(n?-o:o)-a,v=this.nav,S=this.clipRect;return"horizontal"!==r.layout||"middle"===r.verticalAlign||r.floating||(b/=2),h&&(b=Math.min(b,h)),p.length=0,t&&b>0&&t>b&&!1!==l.enabled?(this.clipHeight=m=Math.max(b-20-this.titleHeight-a,0),this.currentPage=w(this.currentPage,1),this.fullHeight=t,u.forEach((t,e)=>{let i=(y=t.legendItem||{}).y||0,s=Math.round(y.label.getBBox().height),r=p.length;(!r||i-p[r-1]>m&&(x||i)!==p[r-1])&&(p.push(x||i),r++),y.pageIx=r-1,x&&((u[e-1].legendItem||{}).pageIx=r-1),e===u.length-1&&i+s-p[r-1]>m&&i>p[r-1]&&(p.push(i),y.pageIx=r),i!==x&&(x=i)}),S||(S=e.clipRect=s.clipRect(0,a-2,9999,0),e.contentGroup.clip(S)),g(m),v||(this.nav=v=s.g().attr({zIndex:1}).add(this.group),this.up=s.symbol("triangle",0,0,c,c).add(v),f("upTracker").on("click",function(){e.scroll(-1,d)}),this.pager=s.text("",15,10).addClass("highcharts-legend-navigation"),!i.styledMode&&l.style&&this.pager.css(l.style),this.pager.add(v),this.down=s.symbol("triangle-down",0,0,c,c).add(v),f("downTracker").on("click",function(){e.scroll(1,d)})),e.scroll(0),t=b):v&&(g(),this.nav=v.destroy(),this.scrollGroup.attr({translateY:1}),this.clipHeight=0),t}scroll(t,e){let i=this.chart,s=this.pages,r=s.length,o=this.clipHeight,n=this.options.navigation,a=this.pager,h=this.padding,c=this.currentPage+t;c>r&&(c=r),c>0&&(void 0!==e&&d(e,i),this.nav.attr({translateX:h,translateY:o+this.padding+7+this.titleHeight,visibility:"inherit"}),[this.up,this.upTracker].forEach(function(t){t.attr({class:1===c?"highcharts-legend-nav-inactive":"highcharts-legend-nav-active"})}),a.attr({text:c+"/"+r}),[this.down,this.downTracker].forEach(function(t){t.attr({x:18+this.pager.getBBox().width,class:c===r?"highcharts-legend-nav-inactive":"highcharts-legend-nav-active"})},this),i.styledMode||(this.up.attr({fill:1===c?n.inactiveColor:n.activeColor}),this.upTracker.css({cursor:1===c?"default":"pointer"}),this.down.attr({fill:c===r?n.inactiveColor:n.activeColor}),this.downTracker.css({cursor:c===r?"default":"pointer"})),this.scrollOffset=-s[c-1]+this.initialItemY,this.scrollGroup.animate({translateY:this.scrollOffset}),this.currentPage=c,this.positionCheckboxes(),L(()=>{C(this,"afterScroll",{currentPage:c})},l(w(e,i.renderer.globalAnimation,!0)).duration))}setItemEvents(t,e,i){let o=this,n=t.legendItem||{},a=o.chart.renderer.boxWrapper,h=t instanceof r,l=t instanceof s,d="highcharts-legend-"+(h?"point":"series")+"-active",c=o.chart.styledMode,p=i?[e,n.symbol]:[n.group],u=e=>{o.allItems.forEach(i=>{t!==i&&[i].concat(i.linkedSeries||[]).forEach(t=>{t.setState(e,!h)})})};for(let i of p)i&&i.on("mouseover",function(){t.visible&&u("inactive"),t.setState("hover"),t.visible&&a.addClass(d),c||e.css(o.options.itemHoverStyle)}).on("mouseout",function(){o.chart.styledMode||e.css(M(t.visible?o.itemStyle:o.itemHiddenStyle)),u(""),a.removeClass(d),t.setState()}).on("click",function(e){let i=function(){t.setVisible&&t.setVisible(),u(t.visible?"inactive":"")};a.removeClass(d),C(o,"itemClick",{browserEvent:e,legendItem:t},i),h?t.firePointEvent("legendItemClick",{browserEvent:e}):l&&C(t,"legendItemClick",{browserEvent:e})})}createCheckboxForItem(t){t.checkbox=x("input",{type:"checkbox",className:"highcharts-legend-checkbox",checked:t.selected,defaultChecked:t.selected},this.options.itemCheckboxStyle,this.chart.container),m(t.checkbox,"click",function(e){let i=e.target;C(t.series||t,"checkboxClick",{checked:i.checked,item:t},function(){t.select()})})}}return(h=O||(O={})).compose=function(t){T(p,"Core.Legend")&&m(t,"beforeMargins",function(){this.legend=new h(this,this.options.legend)})},O}),i(e,"Core/Chart/Chart.js",[e["Core/Animation/AnimationUtilities.js"],e["Core/Axis/Axis.js"],e["Core/Defaults.js"],e["Core/Templating.js"],e["Core/Foundation.js"],e["Core/Globals.js"],e["Core/Renderer/RendererRegistry.js"],e["Core/Series/Series.js"],e["Core/Series/SeriesRegistry.js"],e["Core/Renderer/SVG/SVGRenderer.js"],e["Core/Time.js"],e["Core/Utilities.js"],e["Core/Renderer/HTML/AST.js"],e["Core/Axis/Tick.js"]],function(t,e,i,s,r,o,n,a,h,l,d,c,p,u){let{animate:g,animObject:f,setAnimation:m}=t,{defaultOptions:x,defaultTime:y}=i,{numberFormat:b}=s,{registerEventOptions:v}=r,{charts:S,doc:C,marginNames:k,svg:M,win:w}=o,{seriesTypes:T}=h,{addEvent:A,attr:P,createElement:L,css:O,defined:D,diffObjects:E,discardElement:I,erase:j,error:B,extend:R,find:z,fireEvent:N,getStyle:W,isArray:G,isNumber:H,isObject:X,isString:F,merge:Y,objectEach:U,pick:V,pInt:$,relativeLength:Z,removeEvent:_,splat:q,syncTimeout:K,uniqueKey:J}=c;class Q{static chart(t,e,i){return new Q(t,e,i)}constructor(t,e,i){this.sharedClips={};let s=[...arguments];(F(t)||t.nodeName)&&(this.renderTo=s.shift()),this.init(s[0],s[1])}setZoomOptions(){let t=this.options.chart,e=t.zooming;this.zooming={...e,type:V(t.zoomType,e.type),key:V(t.zoomKey,e.key),pinchType:V(t.pinchType,e.pinchType),singleTouch:V(t.zoomBySingleTouch,e.singleTouch,!1),resetButton:Y(e.resetButton,t.resetZoomButton)}}init(t,e){N(this,"init",{args:arguments},function(){let i=Y(x,t),s=i.chart;this.userOptions=R({},t),this.margin=[],this.spacing=[],this.labelCollectors=[],this.callback=e,this.isResizing=0,this.options=i,this.axes=[],this.series=[],this.time=t.time&&Object.keys(t.time).length?new d(t.time):o.time,this.numberFormatter=s.numberFormatter||b,this.styledMode=s.styledMode,this.hasCartesianSeries=s.showAxes,this.index=S.length,S.push(this),o.chartCount++,v(this,s),this.xAxis=[],this.yAxis=[],this.pointCount=this.colorCounter=this.symbolCounter=0,this.setZoomOptions(),N(this,"afterInit"),this.firstRender()})}initSeries(t){let e=this.options.chart,i=t.type||e.type,s=T[i];s||B(17,!0,this,{missingModuleFor:i});let r=new s;return"function"==typeof r.init&&r.init(this,t),r}setSortedData(){this.getSeriesOrderByLinks().forEach(function(t){t.points||t.data||!t.enabledDataSorting||t.setData(t.options.data,!1)})}getSeriesOrderByLinks(){return this.series.concat().sort(function(t,e){return t.linkedSeries.length||e.linkedSeries.length?e.linkedSeries.length-t.linkedSeries.length:0})}orderItems(t,e=0){let i=this[t],s=this.options[t]=q(this.options[t]).slice(),r=this.userOptions[t]=this.userOptions[t]?q(this.userOptions[t]).slice():[];if(this.hasRendered&&(s.splice(e),r.splice(e)),i)for(let t=e,o=i.length;t=Math.max(h+o,t.pos)&&e<=Math.min(h+o+c.width,t.pos+t.len)||(g.isInsidePlot=!1)}if(!i.ignoreY&&g.isInsidePlot){let t=!s&&i.axis&&!i.axis.isXAxis&&i.axis||d&&(s?d.xAxis:d.yAxis)||{pos:n,len:1/0},e=i.paneCoordinates?t.pos+u:n+u;e>=Math.max(l+n,t.pos)&&e<=Math.min(l+n+c.height,t.pos+t.len)||(g.isInsidePlot=!1)}return N(this,"afterIsInsidePlot",g),g.isInsidePlot}redraw(t){N(this,"beforeRedraw");let e=this.hasCartesianSeries?this.axes:this.colorAxis||[],i=this.series,s=this.pointer,r=this.legend,o=this.userOptions.legend,n=this.renderer,a=n.isHidden(),h=[],l,d,c,p=this.isDirtyBox,u=this.isDirtyLegend,g;for(n.rootFontSize=n.boxWrapper.getStyle("font-size"),this.setResponsive&&this.setResponsive(!1),m(!!this.hasRendered&&t,this),a&&this.temporaryDisplay(),this.layOutTitles(!1),c=i.length;c--;)if(((g=i[c]).options.stacking||g.options.centerInCategory)&&(d=!0,g.isDirty)){l=!0;break}if(l)for(c=i.length;c--;)(g=i[c]).options.stacking&&(g.isDirty=!0);i.forEach(function(t){t.isDirty&&("point"===t.options.legendType?("function"==typeof t.updateTotals&&t.updateTotals(),u=!0):o&&(o.labelFormatter||o.labelFormat)&&(u=!0)),t.isDirtyData&&N(t,"updatedData")}),u&&r&&r.options.enabled&&(r.render(),this.isDirtyLegend=!1),d&&this.getStacks(),e.forEach(function(t){t.updateNames(),t.setScale()}),this.getMargins(),e.forEach(function(t){t.isDirty&&(p=!0)}),e.forEach(function(t){let e=t.min+","+t.max;t.extKey!==e&&(t.extKey=e,h.push(function(){N(t,"afterSetExtremes",R(t.eventArgs,t.getExtremes())),delete t.eventArgs})),(p||d)&&t.redraw()}),p&&this.drawChartBox(),N(this,"predraw"),i.forEach(function(t){(p||t.isDirty)&&t.visible&&t.redraw(),t.isDirtyData=!1}),s&&s.reset(!0),n.draw(),N(this,"redraw"),N(this,"render"),a&&this.temporaryDisplay(!0),h.forEach(function(t){t.call()})}get(t){let e=this.series;function i(e){return e.id===t||e.options&&e.options.id===t}let s=z(this.axes,i)||z(this.series,i);for(let t=0;!s&&t(e.getPointsCollection().forEach(e=>{V(e.selectedStaging,e.selected)&&t.push(e)}),t),[])}getSelectedSeries(){return this.series.filter(function(t){return t.selected})}setTitle(t,e,i){this.applyDescription("title",t),this.applyDescription("subtitle",e),this.applyDescription("caption",void 0),this.layOutTitles(i)}applyDescription(t,e){let i=this,s=this.options[t]=Y(this.options[t],e),r=this[t];r&&e&&(this[t]=r=r.destroy()),s&&!r&&((r=this.renderer.text(s.text,0,0,s.useHTML).attr({align:s.align,class:"highcharts-"+t,zIndex:s.zIndex||4}).add()).update=function(e,s){i.applyDescription(t,e),i.layOutTitles(s)},this.styledMode||r.css(R("title"===t?{fontSize:this.options.isStock?"1em":"1.2em"}:{},s.style)),this[t]=r)}layOutTitles(t=!0){let e=[0,0,0],i=this.renderer,s=this.spacingBox;["title","subtitle","caption"].forEach(function(t){let r=this[t],o=this.options[t],n=o.verticalAlign||"top",a="title"===t?"top"===n?-3:0:"top"===n?e[0]+2:0;if(r){r.css({width:(o.width||s.width+(o.widthAdjust||0))+"px"});let t=i.fontMetrics(r).b,h=Math.round(r.getBBox(o.useHTML).height);r.align(R({y:"bottom"===n?t:a+t,height:h},o),!1,"spacingBox"),o.floating||("top"===n?e[0]=Math.ceil(e[0]+h):"bottom"===n&&(e[2]=Math.ceil(e[2]+h)))}},this),e[0]&&"top"===(this.options.title.verticalAlign||"top")&&(e[0]+=this.options.title.margin),e[2]&&"bottom"===this.options.caption.verticalAlign&&(e[2]+=this.options.caption.margin);let r=!this.titleOffset||this.titleOffset.join(",")!==e.join(",");this.titleOffset=e,N(this,"afterLayOutTitles"),!this.isDirtyBox&&r&&(this.isDirtyBox=this.isDirtyLegend=r,this.hasRendered&&t&&this.isDirtyBox&&this.redraw())}getContainerBox(){let t=[].map.call(this.renderTo.children,t=>{if(t!==this.container){let e=t.style.display;return t.style.display="none",[t,e]}}),e={width:W(this.renderTo,"width",!0)||0,height:W(this.renderTo,"height",!0)||0};return t.filter(Boolean).forEach(([t,e])=>{t.style.display=e}),e}getChartSize(){let t=this.options.chart,e=t.width,i=t.height,s=this.getContainerBox(),r=s.height>1&&!(!this.renderTo.parentElement?.style.height&&"100%"===this.renderTo.style.height);this.chartWidth=Math.max(0,e||s.width||600),this.chartHeight=Math.max(0,Z(i,this.chartWidth)||(r?s.height:400)),this.containerBox=s}temporaryDisplay(t){let e=this.renderTo,i;if(t)for(;e&&e.style;)e.hcOrigStyle&&(O(e,e.hcOrigStyle),delete e.hcOrigStyle),e.hcOrigDetached&&(C.body.removeChild(e),e.hcOrigDetached=!1),e=e.parentNode;else for(;e&&e.style&&(C.body.contains(e)||e.parentNode||(e.hcOrigDetached=!0,C.body.appendChild(e)),("none"===W(e,"display",!1)||e.hcOricDetached)&&(e.hcOrigStyle={display:e.style.display,height:e.style.height,overflow:e.style.overflow},i={display:"block",overflow:"hidden"},e!==this.renderTo&&(i.height=0),O(e,i),e.offsetWidth||e.style.setProperty("display","block","important")),(e=e.parentNode)!==C.body););}setClassName(t){this.container.className="highcharts-container "+(t||"")}getContainer(){let t=this.options,e=t.chart,i="data-highcharts-chart",s=J(),r,o=this.renderTo;o||(this.renderTo=o=e.renderTo),F(o)&&(this.renderTo=o=C.getElementById(o)),o||B(13,!0,this);let a=$(P(o,i));H(a)&&S[a]&&S[a].hasRendered&&S[a].destroy(),P(o,i,this.index),o.innerHTML=p.emptyHTML,e.skipClone||o.offsetWidth||this.temporaryDisplay(),this.getChartSize();let h=this.chartHeight,d=this.chartWidth;O(o,{overflow:"hidden"}),this.styledMode||(r=R({position:"relative",overflow:"hidden",width:d+"px",height:h+"px",textAlign:"left",lineHeight:"normal",zIndex:0,"-webkit-tap-highlight-color":"rgba(0,0,0,0)",userSelect:"none","touch-action":"manipulation",outline:"none",padding:"0px"},e.style||{}));let c=L("div",{id:s},r,o);this.container=c,this.getChartSize(),d===this.chartWidth||(d=this.chartWidth,this.styledMode||O(c,{width:V(e.style?.width,d+"px")})),this.containerBox=this.getContainerBox(),this._cursor=c.style.cursor;let u=e.renderer||!M?n.getRendererType(e.renderer):l;if(this.renderer=new u(c,d,h,void 0,e.forExport,t.exporting&&t.exporting.allowHTML,this.styledMode),m(void 0,this),this.setClassName(e.className),this.styledMode)for(let e in t.defs)this.renderer.definition(t.defs[e]);else this.renderer.setStyle(e.style);this.renderer.chartIndex=this.index,N(this,"afterGetContainer")}getMargins(t){let{spacing:e,margin:i,titleOffset:s}=this;this.resetMargins(),s[0]&&!D(i[0])&&(this.plotTop=Math.max(this.plotTop,s[0]+e[0])),s[2]&&!D(i[2])&&(this.marginBottom=Math.max(this.marginBottom,s[2]+e[2])),this.legend&&this.legend.display&&this.legend.adjustMargins(i,e),N(this,"getMargins"),t||this.getAxisMargins()}getAxisMargins(){let t=this,e=t.axisOffset=[0,0,0,0],i=t.colorAxis,s=t.margin,r=function(t){t.forEach(function(t){t.visible&&t.getOffset()})};t.hasCartesianSeries?r(t.axes):i&&i.length&&r(i),k.forEach(function(i,r){D(s[r])||(t[i]+=e[r])}),t.setChartSize()}getOptions(){return E(this.userOptions,x)}reflow(t){let e=this,i=e.containerBox,s=e.getContainerBox();delete e.pointer?.chartPosition,!e.isPrinting&&!e.isResizing&&i&&s.width&&((s.width!==i.width||s.height!==i.height)&&(c.clearTimeout(e.reflowTimeout),e.reflowTimeout=K(function(){e.container&&e.setSize(void 0,void 0,!1)},t?100:0)),e.containerBox=s)}setReflow(){let t=this,e=e=>{t.options?.chart.reflow&&t.hasLoaded&&t.reflow(e)};if("function"==typeof ResizeObserver)new ResizeObserver(e).observe(t.renderTo);else{let t=A(w,"resize",e);A(this,"destroy",t)}}setSize(t,e,i){let s=this,r=s.renderer;s.isResizing+=1,m(i,s);let o=r.globalAnimation;s.oldChartHeight=s.chartHeight,s.oldChartWidth=s.chartWidth,void 0!==t&&(s.options.chart.width=t),void 0!==e&&(s.options.chart.height=e),s.getChartSize();let{chartWidth:n,chartHeight:a,scrollablePixelsX:h=0,scrollablePixelsY:l=0}=s;(s.isDirtyBox||n!==s.oldChartWidth||a!==s.oldChartHeight)&&(s.styledMode||(o?g:O)(s.container,{width:`${n+h}px`,height:`${a+l}px`},o),s.setChartSize(!0),r.setSize(n,a,o),s.axes.forEach(function(t){t.isDirty=!0,t.setScale()}),s.isDirtyLegend=!0,s.isDirtyBox=!0,s.layOutTitles(),s.getMargins(),s.redraw(o),s.oldChartHeight=void 0,N(s,"resize"),setTimeout(()=>{s&&N(s,"endResize")},f(o).duration)),s.isResizing-=1}setChartSize(t){let e,i,s,r;let{chartHeight:o,chartWidth:n,inverted:a,spacing:h,renderer:l}=this,d=this.clipOffset,c=Math[a?"floor":"round"];this.plotLeft=e=Math.round(this.plotLeft),this.plotTop=i=Math.round(this.plotTop),this.plotWidth=s=Math.max(0,Math.round(n-e-this.marginRight)),this.plotHeight=r=Math.max(0,Math.round(o-i-this.marginBottom)),this.plotSizeX=a?r:s,this.plotSizeY=a?s:r,this.spacingBox=l.spacingBox={x:h[3],y:h[0],width:n-h[3]-h[1],height:o-h[0]-h[2]},this.plotBox=l.plotBox={x:e,y:i,width:s,height:r},d&&(this.clipBox={x:c(d[3]),y:c(d[0]),width:c(this.plotSizeX-d[1]-d[3]),height:c(this.plotSizeY-d[0]-d[2])}),t||(this.axes.forEach(function(t){t.setAxisSize(),t.setAxisTranslation()}),l.alignElements()),N(this,"afterSetChartSize",{skipAxes:t})}resetMargins(){N(this,"resetMargins");let t=this,e=t.options.chart,i=e.plotBorderWidth||0,s=i/2;["margin","spacing"].forEach(function(i){let s=e[i],r=X(s)?s:[s,s,s,s];["Top","Right","Bottom","Left"].forEach(function(s,o){t[i][o]=V(e[i+s],r[o])})}),k.forEach(function(e,i){t[e]=V(t.margin[i],t.spacing[i])}),t.axisOffset=[0,0,0,0],t.clipOffset=[s,s,s,s],t.plotBorderWidth=i}drawChartBox(){let t=this.options.chart,e=this.renderer,i=this.chartWidth,s=this.chartHeight,r=this.styledMode,o=this.plotBGImage,n=t.backgroundColor,a=t.plotBackgroundColor,h=t.plotBackgroundImage,l=this.plotLeft,d=this.plotTop,c=this.plotWidth,p=this.plotHeight,u=this.plotBox,g=this.clipRect,f=this.clipBox,m=this.chartBackground,x=this.plotBackground,y=this.plotBorder,b,v,S,C="animate";m||(this.chartBackground=m=e.rect().addClass("highcharts-background").add(),C="attr"),r?b=v=m.strokeWidth():(v=(b=t.borderWidth||0)+(t.shadow?8:0),S={fill:n||"none"},(b||m["stroke-width"])&&(S.stroke=t.borderColor,S["stroke-width"]=b),m.attr(S).shadow(t.shadow)),m[C]({x:v/2,y:v/2,width:i-v-b%2,height:s-v-b%2,r:t.borderRadius}),C="animate",x||(C="attr",this.plotBackground=x=e.rect().addClass("highcharts-plot-background").add()),x[C](u),!r&&(x.attr({fill:a||"none"}).shadow(t.plotShadow),h&&(o?(h!==o.attr("href")&&o.attr("href",h),o.animate(u)):this.plotBGImage=e.image(h,l,d,c,p).add())),g?g.animate({width:f.width,height:f.height}):this.clipRect=e.clipRect(f),C="animate",y||(C="attr",this.plotBorder=y=e.rect().addClass("highcharts-plot-border").attr({zIndex:1}).add()),r||y.attr({stroke:t.plotBorderColor,"stroke-width":t.plotBorderWidth||0,fill:"none"}),y[C](y.crisp({x:l,y:d,width:c,height:p},-y.strokeWidth())),this.isDirtyBox=!1,N(this,"afterDrawChartBox")}propFromSeries(){let t,e,i;let s=this,r=s.options.chart,o=s.options.series;["inverted","angular","polar"].forEach(function(n){for(e=T[r.type],i=r[n]||e&&e.prototype[n],t=o&&o.length;!i&&t--;)(e=T[o[t].type])&&e.prototype[n]&&(i=!0);s[n]=i})}linkSeries(t){let e=this,i=e.series;i.forEach(function(t){t.linkedSeries.length=0}),i.forEach(function(t){let{linkedTo:i}=t.options;if(F(i)){let s;(s=":previous"===i?e.series[t.index-1]:e.get(i))&&s.linkedParent!==t&&(s.linkedSeries.push(t),t.linkedParent=s,s.enabledDataSorting&&t.setDataSortingOptions(),t.visible=V(t.options.visible,s.options.visible,t.visible))}}),N(this,"afterLinkSeries",{isUpdating:t})}renderSeries(){this.series.forEach(function(t){t.translate(),t.render()})}render(){let t=this.axes,e=this.colorAxis,i=this.renderer,s=this.options.chart.axisLayoutRuns||2,r=t=>{t.forEach(t=>{t.visible&&t.render()})},o=0,n=!0,a,h=0;for(let e of(this.setTitle(),N(this,"beforeMargins"),this.getStacks?.(),this.getMargins(!0),this.setChartSize(),t)){let{options:t}=e,{labels:i}=t;if(this.hasCartesianSeries&&e.horiz&&e.visible&&i.enabled&&e.series.length&&"colorAxis"!==e.coll&&!this.polar){o=t.tickLength,e.createGroups();let s=new u(e,0,"",!0),r=s.createLabel("x",i);if(s.destroy(),r&&V(i.reserveSpace,!H(t.crossing))&&(o=r.getBBox().height+i.distance+Math.max(t.offset||0,0)),o){r?.destroy();break}}}for(this.plotHeight=Math.max(this.plotHeight-o,0);(n||a||s>1)&&h(h?1:1.1),a=i/this.plotHeight>(h?1:1.05),h++}this.drawChartBox(),this.hasCartesianSeries?r(t):e&&e.length&&r(e),this.seriesGroup||(this.seriesGroup=i.g("series-group").attr({zIndex:3}).shadow(this.options.chart.seriesGroupShadow).add()),this.renderSeries(),this.addCredits(),this.setResponsive&&this.setResponsive(),this.hasRendered=!0}addCredits(t){let e=this,i=Y(!0,this.options.credits,t);i.enabled&&!this.credits&&(this.credits=this.renderer.text(i.text+(this.mapCredits||""),0,0).addClass("highcharts-credits").on("click",function(){i.href&&(w.location.href=i.href)}).attr({align:i.position.align,zIndex:8}),e.styledMode||this.credits.css(i.style),this.credits.add().align(i.position),this.credits.update=function(t){e.credits=e.credits.destroy(),e.addCredits(t)})}destroy(){let t;let e=this,i=e.axes,s=e.series,r=e.container,n=r&&r.parentNode;for(N(e,"destroy"),e.renderer.forExport?j(S,e):S[e.index]=void 0,o.chartCount--,e.renderTo.removeAttribute("data-highcharts-chart"),_(e),t=i.length;t--;)i[t]=i[t].destroy();for(this.scroller&&this.scroller.destroy&&this.scroller.destroy(),t=s.length;t--;)s[t]=s[t].destroy();["title","subtitle","chartBackground","plotBackground","plotBGImage","plotBorder","seriesGroup","clipRect","credits","pointer","rangeSelector","legend","resetZoomButton","tooltip","renderer"].forEach(function(t){let i=e[t];i&&i.destroy&&(e[t]=i.destroy())}),r&&(r.innerHTML=p.emptyHTML,_(r),n&&I(r)),U(e,function(t,i){delete e[i]})}firstRender(){let t=this,e=t.options;t.getContainer(),t.resetMargins(),t.setChartSize(),t.propFromSeries(),t.getAxes();let i=G(e.series)?e.series:[];e.series=[],i.forEach(function(e){t.initSeries(e)}),t.linkSeries(),t.setSortedData(),N(t,"beforeRender"),t.render(),t.pointer?.getChartPosition(),t.renderer.imgCount||t.hasLoaded||t.onload(),t.temporaryDisplay(!0)}onload(){this.callbacks.concat([this.callback]).forEach(function(t){t&&void 0!==this.index&&t.apply(this,[this])},this),N(this,"load"),N(this,"render"),D(this.index)&&this.setReflow(),this.warnIfA11yModuleNotLoaded(),this.hasLoaded=!0}warnIfA11yModuleNotLoaded(){let{options:t,title:e}=this;!t||this.accessibility||(this.renderer.boxWrapper.attr({role:"img","aria-label":(e&&e.element.textContent||"").replace(/this.transform({reset:!0,trigger:"zoom"}))}pan(t,e){let i=this,s="object"==typeof e?e:{enabled:e,type:"x"},r=s.type,o=r&&i[({x:"xAxis",xy:"axes",y:"yAxis"})[r]].filter(t=>t.options.panningEnabled&&!t.options.isInternal),n=i.options.chart;n?.panning&&(n.panning=s),N(this,"pan",{originalEvent:t},()=>{i.transform({axes:o,event:t,to:{x:t.chartX-(i.mouseDownX||0),y:t.chartY-(i.mouseDownY||0)},trigger:"pan"}),O(i.container,{cursor:"move"})})}transform(t){let{axes:e=this.axes,event:i,from:s={},reset:r,selection:o,to:n={},trigger:a}=t,{inverted:h}=this,l=!1,d,c;for(let t of(this.hoverPoints?.forEach(t=>t.setState()),e)){let{horiz:e,len:p,minPointOffset:u=0,options:g,reversed:f}=t,m=e?"width":"height",x=e?"x":"y",y=V(n[m],t.len),b=V(s[m],t.len),v=10>Math.abs(y)?1:y/b,S=(s[x]||0)+b/2-t.pos,C=S-((n[x]??t.pos)+y/2-t.pos)/v,k=f&&!h||!f&&h?-1:1;if(!r&&(S<0||S>t.len))continue;let M=t.toValue(C,!0)+(o||t.isOrdinal?0:u*k),w=t.toValue(C+p/v,!0)-(o||t.isOrdinal?0:u*k||0),T=t.allExtremes;if(M>w&&([M,w]=[w,M]),1===v&&!r&&"yAxis"===t.coll&&!T){for(let e of t.series){let t=e.getExtremes(e.getProcessedData(!0).yData,!0);T??(T={dataMin:Number.MAX_VALUE,dataMax:-Number.MAX_VALUE}),H(t.dataMin)&&H(t.dataMax)&&(T.dataMin=Math.min(t.dataMin,T.dataMin),T.dataMax=Math.max(t.dataMax,T.dataMax))}t.allExtremes=T}let{dataMin:A,dataMax:P,min:L,max:O}=R(t.getExtremes(),T||{}),E=A??g.min,I=P??g.max,j=w-M,B=t.categories?0:Math.min(j,I-E),z=E-B*(D(g.min)?0:g.minPadding),N=I+B*(D(g.max)?0:g.maxPadding),W=t.allowZoomOutside||1===v||"zoom"!==a&&v>1,G=Math.min(g.min??z,z,W?L:z),X=Math.max(g.max??N,N,W?O:N);(!t.isOrdinal||t.options.overscroll||1!==v||r)&&(M=1&&(w=M+j)),w>X&&(w=X,v>=1&&(M=w-j)),(r||t.series.length&&(M!==L||w!==O)&&M>=G&&w<=X)&&(o?o[t.coll].push({axis:t,min:M,max:w}):(t.isPanning="zoom"!==a,t.isPanning&&(c=!0),t.setExtremes(r?void 0:M,r?void 0:w,!1,!1,{move:C,trigger:a,scale:v}),!r&&(M>G||w{delete t.selection,t.trigger="zoom",this.transform(t)}):(!d||c||this.resetZoomButton?!d&&this.resetZoomButton&&(this.resetZoomButton=this.resetZoomButton.destroy()):this.showResetZoom(),this.redraw("zoom"===a&&(this.options.chart.animation??this.pointCount<100)))),l}}return R(Q.prototype,{callbacks:[],collectionsWithInit:{xAxis:[Q.prototype.addAxis,[!0]],yAxis:[Q.prototype.addAxis,[!1]],series:[Q.prototype.addSeries]},collectionsWithUpdate:["xAxis","yAxis","series"],propsRequireDirtyBox:["backgroundColor","borderColor","borderWidth","borderRadius","plotBackgroundColor","plotBackgroundImage","plotBorderColor","plotBorderWidth","plotShadow","shadow"],propsRequireReflow:["margin","marginTop","marginRight","marginBottom","marginLeft","spacing","spacingTop","spacingRight","spacingBottom","spacingLeft"],propsRequireUpdateSeries:["chart.inverted","chart.polar","chart.ignoreHiddenSeries","chart.type","colors","plotOptions","time","tooltip"]}),Q}),i(e,"Extensions/ScrollablePlotArea.js",[e["Core/Animation/AnimationUtilities.js"],e["Core/Globals.js"],e["Core/Renderer/RendererRegistry.js"],e["Core/Utilities.js"]],function(t,e,i,s){let{stop:r}=t,{composed:o}=e,{addEvent:n,createElement:a,css:h,defined:l,merge:d,pushUnique:c}=s;function p(){let t=this.scrollablePlotArea;(this.scrollablePixelsX||this.scrollablePixelsY)&&!t&&(this.scrollablePlotArea=t=new g(this)),t?.applyFixed()}function u(){this.chart.scrollablePlotArea&&(this.chart.scrollablePlotArea.isDirty=!0)}class g{static compose(t,e,i){c(o,this.compose)&&(n(t,"afterInit",u),n(e,"afterSetChartSize",t=>this.afterSetSize(t.target,t)),n(e,"render",p),n(i,"show",u))}static afterSetSize(t,e){let i,s,r;let{minWidth:o,minHeight:n}=t.options.chart.scrollablePlotArea||{},{clipBox:a,plotBox:h,inverted:c,renderer:p}=t;if(!p.forExport&&(o?(t.scrollablePixelsX=i=Math.max(0,o-t.chartWidth),i&&(t.scrollablePlotBox=d(t.plotBox),h.width=t.plotWidth+=i,a[c?"height":"width"]+=i,r=!0)):n&&(t.scrollablePixelsY=s=Math.max(0,n-t.chartHeight),l(s)&&(t.scrollablePlotBox=d(t.plotBox),h.height=t.plotHeight+=s,a[c?"width":"height"]+=s,r=!1)),l(r)&&!e.skipAxes))for(let e of t.axes)e.horiz===r&&(e.setAxisSize(),e.setAxisTranslation())}constructor(t){let e;let s=t.options.chart,r=i.getRendererType(),o=s.scrollablePlotArea||{},l=this.moveFixedElements.bind(this),d={WebkitOverflowScrolling:"touch",overflowX:"hidden",overflowY:"hidden"};t.scrollablePixelsX&&(d.overflowX="auto"),t.scrollablePixelsY&&(d.overflowY="auto"),this.chart=t;let c=this.parentDiv=a("div",{className:"highcharts-scrolling-parent"},{position:"relative"},t.renderTo),p=this.scrollingContainer=a("div",{className:"highcharts-scrolling"},d,c),u=this.innerContainer=a("div",{className:"highcharts-inner-container"},void 0,p),g=this.fixedDiv=a("div",{className:"highcharts-fixed"},{position:"absolute",overflow:"hidden",pointerEvents:"none",zIndex:(s.style?.zIndex||0)+2,top:0},void 0,!0),f=this.fixedRenderer=new r(g,t.chartWidth,t.chartHeight,s.style);this.mask=f.path().attr({fill:s.backgroundColor||"#fff","fill-opacity":o.opacity??.85,zIndex:-1}).addClass("highcharts-scrollable-mask").add(),p.parentNode.insertBefore(g,p),h(t.renderTo,{overflow:"visible"}),n(t,"afterShowResetZoom",l),n(t,"afterApplyDrilldown",l),n(t,"afterLayOutTitles",l),n(p,"scroll",()=>{let{pointer:i,hoverPoint:s}=t;i&&(delete i.chartPosition,s&&(e=s),i.runPointActions(void 0,e,!0))}),u.appendChild(t.container)}applyFixed(){let{chart:t,fixedRenderer:e,isDirty:i,scrollingContainer:s}=this,{axisOffset:o,chartWidth:n,chartHeight:a,container:d,plotHeight:c,plotLeft:p,plotTop:u,plotWidth:g,scrollablePixelsX:f=0,scrollablePixelsY:m=0}=t,{scrollPositionX:x=0,scrollPositionY:y=0}=t.options.chart.scrollablePlotArea||{},b=n+f,v=a+m;e.setSize(n,a),(i??!0)&&(this.isDirty=!1,this.moveFixedElements()),r(t.container),h(d,{width:`${b}px`,height:`${v}px`}),t.renderer.boxWrapper.attr({width:b,height:v,viewBox:[0,0,b,v].join(" ")}),t.chartBackground?.attr({width:b,height:v}),h(s,{width:`${n}px`,height:`${a}px`}),l(i)||(s.scrollLeft=f*x,s.scrollTop=m*y);let S=u-o[0]-1,C=p-o[3]-1,k=u+c+o[2]+1,M=p+g+o[1]+1,w=p+g-f,T=u+c-m,A=[["M",0,0]];f?A=[["M",0,S],["L",p-1,S],["L",p-1,k],["L",0,k],["Z"],["M",w,S],["L",n,S],["L",n,k],["L",w,k],["Z"]]:m&&(A=[["M",C,0],["L",C,u-1],["L",M,u-1],["L",M,0],["Z"],["M",C,T],["L",C,a],["L",M,a],["L",M,T],["Z"]]),"adjustHeight"!==t.redrawTrigger&&this.mask.attr({d:A})}moveFixedElements(){let t;let{container:e,inverted:i,scrollablePixelsX:s,scrollablePixelsY:r}=this.chart,o=this.fixedRenderer,n=g.fixedSelectors;for(let a of(s&&!i?t=".highcharts-yaxis":s&&i?t=".highcharts-xaxis":r&&!i?t=".highcharts-xaxis":r&&i&&(t=".highcharts-yaxis"),t&&n.push(`${t}:not(.highcharts-radial-axis)`,`${t}-labels:not(.highcharts-radial-axis-labels)`),n))[].forEach.call(e.querySelectorAll(a),t=>{(t.namespaceURI===o.SVG_NS?o.box:o.box.parentNode).appendChild(t),t.style.pointerEvents="auto"})}}return g.fixedSelectors=[".highcharts-breadcrumbs-group",".highcharts-contextbutton",".highcharts-caption",".highcharts-credits",".highcharts-drillup-button",".highcharts-legend",".highcharts-legend-checkbox",".highcharts-navigator-series",".highcharts-navigator-xaxis",".highcharts-navigator-yaxis",".highcharts-navigator",".highcharts-range-selector-group",".highcharts-reset-zoom",".highcharts-scrollbar",".highcharts-subtitle",".highcharts-title"],g}),i(e,"Core/Axis/Stacking/StackItem.js",[e["Core/Templating.js"],e["Core/Series/SeriesRegistry.js"],e["Core/Utilities.js"]],function(t,e,i){let{format:s}=t,{series:r}=e,{destroyObjectProperties:o,fireEvent:n,isNumber:a,pick:h}=i;return class{constructor(t,e,i,s,r){let o=t.chart.inverted,n=t.reversed;this.axis=t;let a=this.isNegative=!!i!=!!n;this.options=e=e||{},this.x=s,this.total=null,this.cumulative=null,this.points={},this.hasValidPoints=!1,this.stack=r,this.leftCliff=0,this.rightCliff=0,this.alignOptions={align:e.align||(o?a?"left":"right":"center"),verticalAlign:e.verticalAlign||(o?"middle":a?"bottom":"top"),y:e.y,x:e.x},this.textAlign=e.textAlign||(o?a?"right":"left":"center")}destroy(){o(this,this.axis)}render(t){let e=this.axis.chart,i=this.options,r=i.format,o=r?s(r,this,e):i.formatter.call(this);if(this.label)this.label.attr({text:o,visibility:"hidden"});else{this.label=e.renderer.label(o,null,void 0,i.shape,void 0,void 0,i.useHTML,!1,"stack-labels");let s={r:i.borderRadius||0,text:o,padding:h(i.padding,5),visibility:"hidden"};e.styledMode||(s.fill=i.backgroundColor,s.stroke=i.borderColor,s["stroke-width"]=i.borderWidth,this.label.css(i.style||{})),this.label.attr(s),this.label.added||this.label.add(t)}this.label.labelrank=e.plotSizeY,n(this,"afterRender")}setOffset(t,e,i,s,o,l){let{alignOptions:d,axis:c,label:p,options:u,textAlign:g}=this,f=c.chart,m=this.getStackBox({xOffset:t,width:e,boxBottom:i,boxTop:s,defaultX:o,xAxis:l}),{verticalAlign:x}=d;if(p&&m){let t=p.getBBox(void 0,0),e=p.padding,i="justify"===h(u.overflow,"justify"),s;d.x=u.x||0,d.y=u.y||0;let{x:o,y:n}=this.adjustStackPosition({labelBox:t,verticalAlign:x,textAlign:g});m.x-=o,m.y-=n,p.align(d,!1,m),(s=f.isInsidePlot(p.alignAttr.x+d.x+o,p.alignAttr.y+d.y+n))||(i=!1),i&&r.prototype.justifyDataLabel.call(c,p,d,p.alignAttr,t,m),p.attr({x:p.alignAttr.x,y:p.alignAttr.y,rotation:u.rotation,rotationOriginX:t.width*({left:0,center:.5,right:1})[u.textAlign||"center"],rotationOriginY:t.height/2}),h(!i&&u.crop,!0)&&(s=a(p.x)&&a(p.y)&&f.isInsidePlot(p.x-e+(p.width||0),p.y)&&f.isInsidePlot(p.x+e,p.y)),p[s?"show":"hide"]()}n(this,"afterSetOffset",{xOffset:t,width:e})}adjustStackPosition({labelBox:t,verticalAlign:e,textAlign:i}){let s={bottom:0,middle:1,top:2,right:1,center:0,left:-1},r=s[e],o=s[i];return{x:t.width/2+t.width/2*o,y:t.height/2*r}}getStackBox(t){let e=this.axis,i=e.chart,{boxTop:s,defaultX:r,xOffset:o,width:n,boxBottom:l}=t,d=e.stacking.usePercentage?100:h(s,this.total,0),c=e.toPixels(d),p=t.xAxis||i.xAxis[0],u=h(r,p.translate(this.x))+o,g=Math.abs(c-e.toPixels(l||a(e.min)&&e.logarithmic&&e.logarithmic.lin2log(e.min)||0)),f=i.inverted,m=this.isNegative;return f?{x:(m?c:c-g)-i.plotLeft,y:p.height-u-n+p.top-i.plotTop,width:g,height:n}:{x:u+p.transB-i.plotLeft,y:(m?c-g:c)-i.plotTop,width:n,height:g}}}}),i(e,"Core/Axis/Stacking/StackingAxis.js",[e["Core/Animation/AnimationUtilities.js"],e["Core/Axis/Axis.js"],e["Core/Series/SeriesRegistry.js"],e["Core/Axis/Stacking/StackItem.js"],e["Core/Utilities.js"]],function(t,e,i,s,r){var o;let{getDeferredAnimation:n}=t,{series:{prototype:a}}=i,{addEvent:h,correctFloat:l,defined:d,destroyObjectProperties:c,fireEvent:p,isArray:u,isNumber:g,objectEach:f,pick:m}=r;function x(){let t=this.inverted;this.axes.forEach(t=>{t.stacking&&t.stacking.stacks&&t.hasVisibleSeries&&(t.stacking.oldStacks=t.stacking.stacks)}),this.series.forEach(e=>{let i=e.xAxis&&e.xAxis.options||{};e.options.stacking&&e.reserveSpace()&&(e.stackKey=[e.type,m(e.options.stack,""),t?i.top:i.left,t?i.height:i.width].join(","))})}function y(){let t=this.stacking;if(t){let e=t.stacks;f(e,(t,i)=>{c(t),delete e[i]}),t.stackTotalGroup?.destroy()}}function b(){this.stacking||(this.stacking=new w(this))}function v(t,e,i,s){return!d(t)||t.x!==e||s&&t.stackKey!==s?t={x:e,index:0,key:s,stackKey:s}:t.index++,t.key=[i,e,t.index].join(","),t}function S(){let t;let e=this,i=e.yAxis,s=e.stackKey||"",r=i.stacking.stacks,o=e.processedXData,n=e.options.stacking,a=e[n+"Stacker"];a&&[s,"-"+s].forEach(i=>{let s=o.length,n,h,l;for(;s--;)n=o[s],t=e.getStackIndicator(t,n,e.index,i),h=r[i]?.[n],(l=h?.points[t.key||""])&&a.call(e,l,h,s)})}function C(t,e,i){let s=e.total?100/e.total:0;t[0]=l(t[0]*s),t[1]=l(t[1]*s),this.stackedYData[i]=t[1]}function k(t){(this.is("column")||this.is("columnrange"))&&(this.options.centerInCategory&&!this.options.stacking&&this.chart.series.length>1?a.setStackedPoints.call(this,t,"group"):t.stacking.resetStacks())}function M(t,e){let i,r,o,n,a,h,c,p,g;let f=e||this.options.stacking;if(!f||!this.reserveSpace()||(({group:"xAxis"})[f]||"yAxis")!==t.coll)return;let x=this.processedXData,y=this.processedYData,b=[],v=y.length,S=this.options,C=S.threshold||0,k=S.startFromThreshold?C:0,M=S.stack,w=e?`${this.type},${f}`:this.stackKey||"",T="-"+w,A=this.negStacks,P=t.stacking,L=P.stacks,O=P.oldStacks;for(P.stacksTouched+=1,c=0;c0&&!1===this.singleStacks&&(o.points[h][0]=o.points[this.index+","+p+",0"][0])):(delete o.points[h],delete o.points[this.index]);let e=o.total||0;"percent"===f?(n=r?w:T,e=A&&L[n]?.[p]?(n=L[n][p]).total=Math.max(n.total||0,e)+Math.abs(g)||0:l(e+(Math.abs(g)||0))):"group"===f?(u(g)&&(g=g[0]),null!==g&&e++):e=l(e+(g||0)),"group"===f?o.cumulative=(e||1)-1:o.cumulative=l(m(o.cumulative,k)+(g||0)),o.total=e,null!==g&&(o.points[h].push(o.cumulative),b[c]=o.cumulative,o.hasValidPoints=!0)}"percent"===f&&(P.usePercentage=!0),"group"!==f&&(this.stackedYData=b),P.oldStacks={}}class w{constructor(t){this.oldStacks={},this.stacks={},this.stacksTouched=0,this.axis=t}buildStacks(){let t,e;let i=this.axis,s=i.series,r="xAxis"===i.coll,o=i.options.reversedStacks,n=s.length;for(this.resetStacks(),this.usePercentage=!1,e=n;e--;)t=s[o?e:n-e-1],r&&t.setGroupedPoints(i),t.setStackedPoints(i);if(!r)for(e=0;e{f(t,t=>{t.cumulative=t.total})}))}resetStacks(){f(this.stacks,t=>{f(t,(e,i)=>{g(e.touched)&&e.touched{f(t,t=>{t.render(o)})}),o.animate({opacity:1},r)}}return(o||(o={})).compose=function(t,e,i){let s=e.prototype,r=i.prototype;s.getStacks||(h(t,"init",b),h(t,"destroy",y),s.getStacks=x,r.getStackIndicator=v,r.modifyStacks=S,r.percentStacker=C,r.setGroupedPoints=k,r.setStackedPoints=M)},o}),i(e,"Series/Line/LineSeries.js",[e["Core/Series/Series.js"],e["Core/Series/SeriesRegistry.js"],e["Core/Utilities.js"]],function(t,e,i){let{defined:s,merge:r,isObject:o}=i;class n extends t{drawGraph(){let t=this.options,e=(this.gappedPath||this.getGraphPath).call(this),i=this.chart.styledMode;[this,...this.zones].forEach((s,n)=>{let a,h=s.graph,l=h?"animate":"attr",d=s.dashStyle||t.dashStyle;h?(h.endX=this.preventGraphAnimation?null:e.xMap,h.animate({d:e})):e.length&&(s.graph=h=this.chart.renderer.path(e).addClass("highcharts-graph"+(n?` highcharts-zone-graph-${n-1} `:" ")+(n&&s.className||"")).attr({zIndex:1}).add(this.group)),h&&!i&&(a={stroke:!n&&t.lineColor||s.color||this.color||"#cccccc","stroke-width":t.lineWidth||0,fill:this.fillGraph&&this.color||"none"},d?a.dashstyle=d:"square"!==t.linecap&&(a["stroke-linecap"]=a["stroke-linejoin"]="round"),h[l](a).shadow(n<2&&t.shadow&&r({filterUnits:"userSpaceOnUse"},o(t.shadow)?t.shadow:{}))),h&&(h.startX=e.xMap,h.isArea=e.isArea)})}getGraphPath(t,e,i){let r=this,o=r.options,n=[],a=[],h,l=o.step,d=(t=t||r.points).reversed;return d&&t.reverse(),(l=({right:1,center:2})[l]||l&&3)&&d&&(l=4-l),(t=this.getValidPoints(t,!1,!(o.connectNulls&&!e&&!i))).forEach(function(d,c){let p;let u=d.plotX,g=d.plotY,f=t[c-1],m=d.isNull||"number"!=typeof g;(d.leftCliff||f&&f.rightCliff)&&!i&&(h=!0),m&&!s(e)&&c>0?h=!o.connectNulls:m&&!e?h=!0:(0===c||h?p=[["M",d.plotX,d.plotY]]:r.getPointSpline?p=[r.getPointSpline(t,d,c)]:l?(p=1===l?[["L",f.plotX,g]]:2===l?[["L",(f.plotX+u)/2,f.plotY],["L",(f.plotX+u)/2,g]]:[["L",u,f.plotY]]).push(["L",u,g]):p=[["L",u,g]],a.push(d.x),l&&(a.push(d.x),2===l&&a.push(d.x)),n.push.apply(n,p),h=!1)}),n.xMap=a,r.graphPath=n,n}}return n.defaultOptions=r(t.defaultOptions,{legendSymbol:"lineMarker"}),e.registerSeriesType("line",n),n}),i(e,"Series/Area/AreaSeriesDefaults.js",[],function(){return{threshold:0,legendSymbol:"areaMarker"}}),i(e,"Series/Area/AreaSeries.js",[e["Series/Area/AreaSeriesDefaults.js"],e["Core/Series/SeriesRegistry.js"],e["Core/Utilities.js"]],function(t,e,i){let{seriesTypes:{line:s}}=e,{extend:r,merge:o,objectEach:n,pick:a}=i;class h extends s{drawGraph(){this.areaPath=[],super.drawGraph.apply(this);let{areaPath:t,options:e}=this;[this,...this.zones].forEach((i,s)=>{let r={},o=i.fillColor||e.fillColor,n=i.area,a=n?"animate":"attr";n?(n.endX=this.preventGraphAnimation?null:t.xMap,n.animate({d:t})):(r.zIndex=0,(n=i.area=this.chart.renderer.path(t).addClass("highcharts-area"+(s?` highcharts-zone-area-${s-1} `:" ")+(s&&i.className||"")).add(this.group)).isArea=!0),this.chart.styledMode||(r.fill=o||i.color||this.color,r["fill-opacity"]=o?1:e.fillOpacity??.75,n.css({pointerEvents:this.stickyTracking?"none":"auto"})),n[a](r),n.startX=t.xMap,n.shiftUnit=e.step?2:1})}getGraphPath(t){let e,i,r;let o=s.prototype.getGraphPath,n=this.options,h=n.stacking,l=this.yAxis,d=[],c=[],p=this.index,u=l.stacking.stacks[this.stackKey],g=n.threshold,f=Math.round(l.getThreshold(n.threshold)),m=a(n.connectNulls,"percent"===h),x=function(i,s,r){let o=t[i],n=h&&u[o.x].points[p],a=o[r+"Null"]||0,m=o[r+"Cliff"]||0,x,y,b=!0;m||a?(x=(a?n[0]:n[1])+m,y=n[0]+m,b=!!a):!h&&t[s]&&t[s].isNull&&(x=y=g),void 0!==x&&(c.push({plotX:e,plotY:null===x?f:l.getThreshold(x),isNull:b,isCliff:!0}),d.push({plotX:e,plotY:null===y?f:l.getThreshold(y),doCurve:!1}))};t=t||this.points,h&&(t=this.getStackPoints(t));for(let s=0,o=t.length;s1&&h&&c.some(t=>t.isCliff)&&(S.hasStackedCliffs=C.hasStackedCliffs=!0),S.xMap=y.xMap,this.areaPath=S,C}getStackPoints(t){let e=this,i=[],s=[],r=this.xAxis,o=this.yAxis,h=o.stacking.stacks[this.stackKey],l={},d=o.series,c=d.length,p=o.options.reversedStacks?1:-1,u=d.indexOf(e);if(t=t||this.points,this.options.stacking){for(let e=0;et.visible);s.forEach(function(t,n){let f=0,m,x;if(l[t]&&!l[t].isNull)i.push(l[t]),[-1,1].forEach(function(i){let r=1===i?"rightNull":"leftNull",o=h[s[n+i]],a=0;if(o){let i=u;for(;i>=0&&i=0&&ei&&o>l?(o=Math.max(i,l),a=2*l-o):op&&a>l?(a=Math.max(p,l),o=2*l-a):a1){let r=this.xAxis.series.filter(t=>t.visible).map(t=>t.index),o=0,n=0;b(this.xAxis.stacking?.stacks,t=>{if("number"==typeof i.x){let e=t[i.x.toString()];if(e&&f(e.points[this.index])){let t=Object.keys(e.points).filter(t=>!t.match(",")&&e.points[t]&&e.points[t].length>1).map(parseFloat).filter(t=>-1!==r.indexOf(t)).sort((t,e)=>e-t);o=t.indexOf(this.index),n=t.length}}}),o=this.xAxis.reversed?n-1-o:o;let a=(n-1)*s.paddedWidth+e;t=(i.plotX||0)+a/2-e-o*s.paddedWidth}return t}translate(){let t=this,e=t.chart,i=t.options,s=t.dense=t.closestPointRange*t.xAxis.transA<2,o=t.borderWidth=y(i.borderWidth,s?0:1),n=t.xAxis,a=t.yAxis,h=i.threshold,l=y(i.minPointLength,5),c=t.getColumnMetrics(),u=c.width,f=t.pointXOffset=c.offset,x=t.dataMin,b=t.dataMax,v=t.translatedThreshold=a.getThreshold(h),S=t.barW=Math.max(u,1+2*o);i.pointPadding&&(S=Math.ceil(S)),r.prototype.translate.apply(t),t.points.forEach(function(s){let r=y(s.yBottom,v),o=999+Math.abs(r),g=s.plotX||0,C=d(s.plotY,-o,a.len+o),k,M=Math.min(C,r),w=Math.max(C,r)-M,T=u,A=g+f,P=S;l&&Math.abs(w)l?r-l:v-(k?l:0)),p(s.options.pointWidth)&&(A-=Math.round(((T=P=Math.ceil(s.options.pointWidth))-u)/2)),i.centerInCategory&&!i.stacking&&(A=t.adjustForMissingColumns(A,T,s,c)),s.barX=A,s.pointWidth=T,s.tooltipPos=e.inverted?[d(a.len+a.pos-e.plotLeft-C,a.pos-e.plotLeft,a.len+a.pos-e.plotLeft),n.len+n.pos-e.plotTop-A-P/2,w]:[n.left-e.plotLeft+A+P/2,d(C+a.pos-e.plotTop,a.pos-e.plotTop,a.len+a.pos-e.plotTop),w],s.shapeType=t.pointClass.prototype.shapeType||"roundedRect",s.shapeArgs=t.crispCol(A,s.isNull?v:M,P,s.isNull?0:w)}),g(this,"afterColumnTranslate")}drawGraph(){this.group[this.dense?"addClass":"removeClass"]("highcharts-dense-data")}pointAttribs(t,e){let i=this.options,s=this.pointAttrToOptions||{},r=s.stroke||"borderColor",o=s["stroke-width"]||"borderWidth",n,a,l,d=t&&t.color||this.color,c=t&&t[r]||i[r]||d,p=t&&t.options.dashStyle||i.dashStyle,u=t&&t[o]||i[o]||this[o]||0,g=y(t&&t.opacity,i.opacity,1);t&&this.zones.length&&(a=t.getZone(),d=t.options.color||a&&(a.color||t.nonZonedColor)||this.color,a&&(c=a.borderColor||c,p=a.dashStyle||p,u=a.borderWidth||u)),e&&t&&(l=(n=x(i.states[e],t.options.states&&t.options.states[e]||{})).brightness,d=n.color||void 0!==l&&h(d).brighten(n.brightness).get()||d,c=n[r]||c,u=n[o]||u,p=n.dashStyle||p,g=y(n.opacity,g));let f={fill:d,stroke:c,"stroke-width":u,opacity:g};return p&&(f.dashstyle=p),f}drawPoints(t=this.points){let e;let i=this,s=this.chart,r=i.options,o=s.renderer,n=r.animationLimit||250;t.forEach(function(t){let a=t.plotY,h=t.graphic,l=!!h,d=h&&s.pointCountt?.enabled)}function i(t,e,i,s,r){let{chart:o,enabledDataSorting:h}=this,l=this.isCartesian&&o.inverted,d=t.plotX,p=t.plotY,g=i.rotation||0,f=n(d)&&n(p)&&o.isInsidePlot(d,Math.round(p),{inverted:l,paneCoordinates:!0,series:this}),m=0===g&&"justify"===u(i.overflow,h?"none":"justify"),x=this.visible&&!1!==t.visible&&n(d)&&(t.series.forceDL||h&&!m||f||u(i.inside,!!this.options.stacking)&&s&&o.isInsidePlot(d,l?s.x+1:s.y+s.height-1,{inverted:l,paneCoordinates:!0,series:this})),y=t.pos();if(x&&y){var b;let n=e.getBBox(),d=e.getBBox(void 0,0),p={right:1,center:.5}[i.align||0]||0,v={bottom:1,middle:.5}[i.verticalAlign||0]||0;if(s=a({x:y[0],y:Math.round(y[1]),width:0,height:0},s||{}),"plotEdges"===i.alignTo&&this.isCartesian&&(s[l?"x":"y"]=0,s[l?"width":"height"]=this.yAxis?.len||0),a(i,{width:n.width,height:n.height}),b=s,h&&this.xAxis&&!m&&this.setDataLabelStartPos(t,e,r,f,b),e.align(c(i,{width:d.width,height:d.height}),!1,s,!1),e.alignAttr.x+=p*(d.width-n.width),e.alignAttr.y+=v*(d.height-n.height),e[e.placed?"animate":"attr"]({x:e.alignAttr.x+(n.width-d.width)/2,y:e.alignAttr.y+(n.height-d.height)/2,rotationOriginX:(e.width||0)/2,rotationOriginY:(e.height||0)/2}),m&&s.height>=0)this.justifyDataLabel(e,i,e.alignAttr,n,s,r);else if(u(i.crop,!0)){let{x:t,y:i}=e.alignAttr;x=o.isInsidePlot(t,i,{paneCoordinates:!0,series:this})&&o.isInsidePlot(t+n.width-1,i+n.height-1,{paneCoordinates:!0,series:this})}i.shape&&!g&&e[r?"attr":"animate"]({anchorX:y[0],anchorY:y[1]})}r&&h&&(e.placed=!1),x||h&&!m?(e.show(),e.placed=!0):(e.hide(),e.placed=!1)}function s(){return this.plotGroup("dataLabelsGroup","data-labels",this.hasRendered?"inherit":"hidden",this.options.dataLabels.zIndex||6)}function m(t){let e=this.hasRendered||0,i=this.initDataLabelsGroup().attr({opacity:+e});return!e&&i&&(this.visible&&i.show(),this.options.animation?i.animate({opacity:1},t):i.attr({opacity:1})),i}function x(t){let e;t=t||this.points;let i=this,s=i.chart,a=i.options,l=s.renderer,{backgroundColor:c,plotBackgroundColor:m}=s.options.chart,x=l.getContrast(d(m)&&m||d(c)&&c||"#000000"),y=v(i),{animation:S,defer:C}=y[0],k=C?r(s,S,i):{defer:0,duration:0};h(this,"drawDataLabels"),i.hasDataLabels?.()&&(e=this.initDataLabels(k),t.forEach(t=>{let r=t.dataLabels||[];f(b(y,t.dlOptions||t.options?.dataLabels)).forEach((c,f)=>{let m=c.enabled&&(t.visible||t.dataLabelOnHidden)&&(!t.isNull||t.dataLabelOnNull)&&function(t,e){let i=e.filter;if(i){let e=i.operator,s=t[i.property],r=i.value;return">"===e&&s>r||"<"===e&&s="===e&&s>=r||"<="===e&&s<=r||"=="===e&&s==r||"==="===e&&s===r||"!="===e&&s!=r||"!=="===e&&s!==r}return!0}(t,c),{backgroundColor:y,borderColor:b,distance:v,style:S={}}=c,C,k,M,w,T={},A=r[f],P=!A,L;m&&(k=u(c[t.formatPrefix+"Format"],c.format),C=t.getLabelConfig(),M=n(k)?o(k,C,s):(c[t.formatPrefix+"Formatter"]||c.formatter).call(C,c),w=c.rotation,!s.styledMode&&(S.color=u(c.color,S.color,d(i.color)?i.color:void 0,"#000000"),"contrast"===S.color?("none"!==y&&(L=y),t.contrastColor=l.getContrast("auto"!==L&&L||t.color||i.color),S.color=L||!n(v)&&c.inside||0>g(v||0)||a.stacking?t.contrastColor:x):delete t.contrastColor,a.cursor&&(S.cursor=a.cursor)),T={r:c.borderRadius||0,rotation:w,padding:c.padding,zIndex:1},s.styledMode||(T.fill="auto"===y?t.color:y,T.stroke="auto"===b?t.color:b,T["stroke-width"]=c.borderWidth),p(T,(t,e)=>{void 0===t&&delete T[e]})),!A||m&&n(M)&&!!A.div==!!c.useHTML&&(A.rotation&&c.rotation||A.rotation===c.rotation)||(A=void 0,P=!0),m&&n(M)&&(A?T.text=M:(A=l.label(M,0,0,c.shape,void 0,void 0,c.useHTML,void 0,"data-label")).addClass(" highcharts-data-label-color-"+t.colorIndex+" "+(c.className||"")+(c.useHTML?" highcharts-tracker":"")),A&&(A.options=c,A.attr(T),s.styledMode?S.width&&A.css({width:S.width,textOverflow:S.textOverflow}):A.css(S).shadow(c.shadow),h(A,"beforeAddingDataLabel",{labelOptions:c,point:t}),A.added||A.add(e),i.alignDataLabel(t,A,c,void 0,P),A.isActive=!0,r[f]&&r[f]!==A&&r[f].destroy(),r[f]=A))});let c=r.length;for(;c--;)r[c]&&r[c].isActive?r[c].isActive=!1:(r[c]?.destroy(),r.splice(c,1));t.dataLabel=r[0],t.dataLabels=r})),h(this,"afterDrawDataLabels")}function y(t,e,i,s,r,o){let n=this.chart,a=e.align,h=e.verticalAlign,l=t.box?0:t.padding||0,d=n.inverted?this.yAxis:this.xAxis,c=d?d.left-n.plotLeft:0,p=n.inverted?this.xAxis:this.yAxis,u=p?p.top-n.plotTop:0,{x:g=0,y:f=0}=e,m,x;return(m=(i.x||0)+l+c)<0&&("right"===a&&g>=0?(e.align="left",e.inside=!0):g-=m,x=!0),(m=(i.x||0)+s.width-l+c)>n.plotWidth&&("left"===a&&g<=0?(e.align="right",e.inside=!0):g+=n.plotWidth-m,x=!0),(m=i.y+l+u)<0&&("bottom"===h&&f>=0?(e.verticalAlign="top",e.inside=!0):f-=m,x=!0),(m=(i.y||0)+s.height-l+u)>n.plotHeight&&("top"===h&&f<=0?(e.verticalAlign="bottom",e.inside=!0):f+=n.plotHeight-m,x=!0),x&&(e.x=g,e.y=f,t.placed=!o,t.align(e,void 0,r)),x}function b(t,e){let i=[],s;if(l(t)&&!l(e))i=t.map(function(t){return c(t,e)});else if(l(e)&&!l(t))i=e.map(function(e){return c(t,e)});else if(l(t)||l(e)){if(l(t)&&l(e))for(s=Math.max(t.length,e.length);s--;)i[s]=c(t[s],e[s])}else i=c(t,e);return i}function v(t){let e=t.chart.options.plotOptions;return f(b(b(e?.series?.dataLabels,e?.[t.type]?.dataLabels),t.options.dataLabels))}function S(t,e,i,s,r){let o=this.chart,n=o.inverted,a=this.xAxis,h=a.reversed,l=((n?e.height:e.width)||0)/2,d=t.pointWidth,c=d?d/2:0;e.startXPos=n?r.x:h?-l-c:a.width-l+c,e.startYPos=n?h?this.yAxis.height-l+c:-l-c:r.y,s?"hidden"===e.visibility&&(e.show(),e.attr({opacity:0}).animate({opacity:1})):e.attr({opacity:1}).animate({opacity:0},void 0,e.hide),o.hasRendered&&(i&&e.attr({x:e.startXPos,y:e.startYPos}),e.placed=!0)}t.compose=function(t){let r=t.prototype;r.initDataLabels||(r.initDataLabels=m,r.initDataLabelsGroup=s,r.alignDataLabel=i,r.drawDataLabels=x,r.justifyDataLabel=y,r.setDataLabelStartPos=S,r.hasDataLabels=e)}}(s||(s={})),s}),i(e,"Series/Column/ColumnDataLabel.js",[e["Core/Series/DataLabel.js"],e["Core/Globals.js"],e["Core/Series/SeriesRegistry.js"],e["Core/Utilities.js"]],function(t,e,i,s){var r;let{composed:o}=e,{series:n}=i,{merge:a,pick:h,pushUnique:l}=s;return function(e){function i(t,e,i,s,r){let o=this.chart.inverted,l=t.series,d=(l.xAxis?l.xAxis.len:this.chart.plotSizeX)||0,c=(l.yAxis?l.yAxis.len:this.chart.plotSizeY)||0,p=t.dlBox||t.shapeArgs,u=h(t.below,t.plotY>h(this.translatedThreshold,c)),g=h(i.inside,!!this.options.stacking);if(p){if(s=a(p),!("allow"===i.overflow&&!1===i.crop)){s.y<0&&(s.height+=s.y,s.y=0);let t=s.y+s.height-c;t>0&&t {series.name}
',pointFormat:"x: {point.x}
y: {point.y}
"}}}),i(e,"Series/Scatter/ScatterSeries.js",[e["Series/Scatter/ScatterSeriesDefaults.js"],e["Core/Series/SeriesRegistry.js"],e["Core/Utilities.js"]],function(t,e,i){let{column:s,line:r}=e.seriesTypes,{addEvent:o,extend:n,merge:a}=i;class h extends r{applyJitter(){let t=this,e=this.options.jitter,i=this.points.length;e&&this.points.forEach(function(s,r){["x","y"].forEach(function(o,n){if(e[o]&&!s.isNull){let a=`plot${o.toUpperCase()}`,h=t[`${o}Axis`],l=e[o]*h.transA;if(h&&!h.logarithmic){let t=Math.max(0,(s[a]||0)-l),e=Math.min(h.len,(s[a]||0)+l);s[a]=t+(e-t)*function(t){let e=1e4*Math.sin(t);return e-Math.floor(e)}(r+n*i),"x"===o&&(s.clientX=s.plotX)}}})})}drawGraph(){this.options.lineWidth?super.drawGraph():this.graph&&(this.graph=this.graph.destroy())}}return h.defaultOptions=a(r.defaultOptions,t),n(h.prototype,{drawTracker:s.prototype.drawTracker,sorted:!1,requireSorting:!1,noSharedTooltip:!0,trackerGroups:["group","markerGroup","dataLabelsGroup"]}),o(h,"afterTranslate",function(){this.applyJitter()}),e.registerSeriesType("scatter",h),h}),i(e,"Series/CenteredUtilities.js",[e["Core/Globals.js"],e["Core/Series/Series.js"],e["Core/Utilities.js"]],function(t,e,i){var s,r;let{deg2rad:o}=t,{fireEvent:n,isNumber:a,pick:h,relativeLength:l}=i;return(r=s||(s={})).getCenter=function(){let t=this.options,i=this.chart,s=2*(t.slicedOffset||0),r=i.plotWidth-2*s,o=i.plotHeight-2*s,d=t.center,c=Math.min(r,o),p=t.thickness,u,g=t.size,f=t.innerSize||0,m,x;"string"==typeof g&&(g=parseFloat(g)),"string"==typeof f&&(f=parseFloat(f));let y=[h(d[0],"50%"),h(d[1],"50%"),h(g&&g<0?void 0:t.size,"100%"),h(f&&f<0?void 0:t.innerSize||0,"0%")];for(!i.angular||this instanceof e||(y[3]=0),m=0;m<4;++m)x=y[m],u=m<2||2===m&&/%$/.test(x),y[m]=l(x,[r,o,c,y[2]][m])+(u?s:0);return y[3]>y[2]&&(y[3]=y[2]),a(p)&&2*p0&&(y[3]=y[2]-2*p),n(this,"afterGetCenter",{positions:y}),y},r.getStartAndEndRadians=function(t,e){let i=a(t)?t:0,s=a(e)&&e>i&&e-i<360?e:i+360;return{start:o*(i+-90),end:o*(s+-90)}},s}),i(e,"Series/Pie/PiePoint.js",[e["Core/Animation/AnimationUtilities.js"],e["Core/Series/Point.js"],e["Core/Utilities.js"]],function(t,e,i){let{setAnimation:s}=t,{addEvent:r,defined:o,extend:n,isNumber:a,pick:h,relativeLength:l}=i;class d extends e{getConnectorPath(t){let e=t.dataLabelPosition,i=t.options||{},s=i.connectorShape,r=this.connectorShapes[s]||s;return e&&r.call(this,{...e.computed,alignment:e.alignment},e.connectorPosition,i)||[]}getTranslate(){return this.sliced&&this.slicedTranslation||{translateX:0,translateY:0}}haloPath(t){let e=this.shapeArgs;return this.sliced||!this.visible?[]:this.series.chart.renderer.symbols.arc(e.x,e.y,e.r+t,e.r+t,{innerR:e.r-1,start:e.start,end:e.end,borderRadius:e.borderRadius})}constructor(t,e,i){super(t,e,i),this.half=0,this.name??(this.name="Slice");let s=t=>{this.slice("select"===t.type)};r(this,"select",s),r(this,"unselect",s)}isValid(){return a(this.y)&&this.y>=0}setVisible(t,e=!0){t!==this.visible&&this.update({visible:t??!this.visible},e,void 0,!1)}slice(t,e,i){let r=this.series;s(i,r.chart),e=h(e,!0),this.sliced=this.options.sliced=t=o(t)?t:!this.sliced,r.options.data[r.data.indexOf(this)]=this.options,this.graphic&&this.graphic.animate(this.getTranslate())}}return n(d.prototype,{connectorShapes:{fixedOffset:function(t,e,i){let s=e.breakAt,r=e.touchingSliceAt,o=i.softConnector?["C",t.x+("left"===t.alignment?-5:5),t.y,2*s.x-r.x,2*s.y-r.y,s.x,s.y]:["L",s.x,s.y];return[["M",t.x,t.y],o,["L",r.x,r.y]]},straight:function(t,e){let i=e.touchingSliceAt;return[["M",t.x,t.y],["L",i.x,i.y]]},crookedLine:function(t,e,i){let{breakAt:s,touchingSliceAt:r}=e,{series:o}=this,[n,a,h]=o.center,d=h/2,{plotLeft:c,plotWidth:p}=o.chart,u="left"===t.alignment,{x:g,y:f}=t,m=s.x;if(i.crookDistance){let t=l(i.crookDistance,1);m=u?n+d+(p+c-n-d)*(1-t):c+(n-d)*t}else m=n+(a-f)*Math.tan((this.angle||0)-Math.PI/2);let x=[["M",g,f]];return(u?m<=g&&m>=s.x:m>=g&&m<=s.x)&&x.push(["L",m,f]),x.push(["L",s.x,s.y],["L",r.x,r.y]),x}}}),d}),i(e,"Series/Pie/PieSeriesDefaults.js",[],function(){return{borderRadius:3,center:[null,null],clip:!1,colorByPoint:!0,dataLabels:{connectorPadding:5,connectorShape:"crookedLine",crookDistance:void 0,distance:30,enabled:!0,formatter:function(){return this.point.isNull?void 0:this.point.name},softConnector:!0,x:0},fillColor:void 0,ignoreHiddenPoint:!0,inactiveOtherPoints:!0,legendType:"point",marker:null,size:null,showInLegend:!1,slicedOffset:10,stickyTracking:!1,tooltip:{followPointer:!0},borderColor:"#ffffff",borderWidth:1,lineWidth:void 0,states:{hover:{brightness:.1}}}}),i(e,"Series/Pie/PieSeries.js",[e["Series/CenteredUtilities.js"],e["Series/Column/ColumnSeries.js"],e["Core/Globals.js"],e["Series/Pie/PiePoint.js"],e["Series/Pie/PieSeriesDefaults.js"],e["Core/Series/Series.js"],e["Core/Series/SeriesRegistry.js"],e["Core/Renderer/SVG/Symbols.js"],e["Core/Utilities.js"]],function(t,e,i,s,r,o,n,a,h){let{getStartAndEndRadians:l}=t,{noop:d}=i,{clamp:c,extend:p,fireEvent:u,merge:g,pick:f}=h;class m extends o{animate(t){let e=this,i=e.points,s=e.startAngleRad;t||i.forEach(function(t){let i=t.graphic,r=t.shapeArgs;i&&r&&(i.attr({r:f(t.startR,e.center&&e.center[3]/2),start:s,end:s}),i.animate({r:r.r,start:r.start,end:r.end},e.options.animation))})}drawEmpty(){let t,e;let i=this.startAngleRad,s=this.endAngleRad,r=this.options;0===this.total&&this.center?(t=this.center[0],e=this.center[1],this.graph||(this.graph=this.chart.renderer.arc(t,e,this.center[1]/2,0,i,s).addClass("highcharts-empty-series").add(this.group)),this.graph.attr({d:a.arc(t,e,this.center[2]/2,0,{start:i,end:s,innerR:this.center[3]/2})}),this.chart.styledMode||this.graph.attr({"stroke-width":r.borderWidth,fill:r.fillColor||"none",stroke:r.color||"#cccccc"})):this.graph&&(this.graph=this.graph.destroy())}drawPoints(){let t=this.chart.renderer;this.points.forEach(function(e){e.graphic&&e.hasNewShapeType()&&(e.graphic=e.graphic.destroy()),e.graphic||(e.graphic=t[e.shapeType](e.shapeArgs).add(e.series.group),e.delayedRendering=!0)})}generatePoints(){super.generatePoints(),this.updateTotals()}getX(t,e,i,s){let r=this.center,o=this.radii?this.radii[i.index]||0:r[2]/2,n=s.dataLabelPosition,a=n?.distance||0,h=Math.asin(c((t-r[1])/(o+a),-1,1));return r[0]+Math.cos(h)*(o+a)*(e?-1:1)+(a>0?(e?-1:1)*(s.padding||0):0)}hasData(){return!!this.processedXData.length}redrawPoints(){let t,e,i,s;let r=this,o=r.chart;this.drawEmpty(),r.group&&!o.styledMode&&r.group.shadow(r.options.shadow),r.points.forEach(function(n){let a={};e=n.graphic,!n.isNull&&e?(s=n.shapeArgs,t=n.getTranslate(),o.styledMode||(i=r.pointAttribs(n,n.selected&&"select")),n.delayedRendering?(e.setRadialReference(r.center).attr(s).attr(t),o.styledMode||e.attr(i).attr({"stroke-linejoin":"round"}),n.delayedRendering=!1):(e.setRadialReference(r.center),o.styledMode||g(!0,a,i),g(!0,a,s,t),e.animate(a)),e.attr({visibility:n.visible?"inherit":"hidden"}),e.addClass(n.getClassName(),!0)):e&&(n.graphic=e.destroy())})}sortByAngle(t,e){t.sort(function(t,i){return void 0!==t.angle&&(i.angle-t.angle)*e})}translate(t){u(this,"translate"),this.generatePoints();let e=this.options,i=e.slicedOffset,s=l(e.startAngle,e.endAngle),r=this.startAngleRad=s.start,o=(this.endAngleRad=s.end)-r,n=this.points,a=e.ignoreHiddenPoint,h=n.length,d,c,p,g,f,m,x,y=0;for(t||(this.center=t=this.getCenter()),m=0;m1.5*Math.PI?p-=2*Math.PI:p<-Math.PI/2&&(p+=2*Math.PI),x.slicedTranslation={translateX:Math.round(Math.cos(p)*i),translateY:Math.round(Math.sin(p)*i)},g=Math.cos(p)*t[2]/2,f=Math.sin(p)*t[2]/2,x.tooltipPos=[t[0]+.7*g,t[1]+.7*f],x.half=p<-Math.PI/2||p>Math.PI/2?1:0,x.angle=p}u(this,"afterTranslate")}updateTotals(){let t=this.points,e=t.length,i=this.options.ignoreHiddenPoint,s,r,o=0;for(s=0;s0&&(r.visible||!i)?r.y/o*100:0,r.total=o}}return m.defaultOptions=g(o.defaultOptions,r),p(m.prototype,{axisTypes:[],directTouch:!0,drawGraph:void 0,drawTracker:e.prototype.drawTracker,getCenter:t.getCenter,getSymbol:d,invertible:!1,isCartesian:!1,noSharedTooltip:!0,pointAttribs:e.prototype.pointAttribs,pointClass:s,requireSorting:!1,searchPoint:d,trackerGroups:["group","dataLabelsGroup"]}),n.registerSeriesType("pie",m),m}),i(e,"Series/Pie/PieDataLabel.js",[e["Core/Series/DataLabel.js"],e["Core/Globals.js"],e["Core/Renderer/RendererUtilities.js"],e["Core/Series/SeriesRegistry.js"],e["Core/Utilities.js"]],function(t,e,i,s,r){var o;let{composed:n,noop:a}=e,{distribute:h}=i,{series:l}=s,{arrayMax:d,clamp:c,defined:p,pick:u,pushUnique:g,relativeLength:f}=r;return function(e){let i={radialDistributionY:function(t,e){return(e.dataLabelPosition?.top||0)+t.distributeBox.pos},radialDistributionX:function(t,e,i,s,r){let o=r.dataLabelPosition;return t.getX(i<(o?.top||0)+2||i>(o?.bottom||0)-2?s:i,e.half,e,r)},justify:function(t,e,i,s){return s[0]+(t.half?-1:1)*(i+(e.dataLabelPosition?.distance||0))},alignToPlotEdges:function(t,e,i,s){let r=t.getBBox().width;return e?r+s:i-r-s},alignToConnectors:function(t,e,i,s){let r=0,o;return t.forEach(function(t){(o=t.dataLabel.getBBox().width)>r&&(r=o)}),e?r+s:i-r-s}};function s(t,e){let{center:i,options:s}=this,r=i[2]/2,o=t.angle||0,n=Math.cos(o),a=Math.sin(o),h=i[0]+n*r,l=i[1]+a*r,d=Math.min((s.slicedOffset||0)+(s.borderWidth||0),e/5);return{natural:{x:h+n*e,y:l+a*e},computed:{},alignment:e<0?"center":t.half?"right":"left",connectorPosition:{breakAt:{x:h+n*d,y:l+a*d},touchingSliceAt:{x:h,y:l}},distance:e}}function r(){let t=this,e=t.points,i=t.chart,s=i.plotWidth,r=i.plotHeight,o=i.plotLeft,n=Math.round(i.chartWidth/3),a=t.center,c=a[2]/2,g=a[1],m=[[],[]],x=[0,0,0,0],y=t.dataLabelPositioners,b,v,S,C=0;t.visible&&t.hasDataLabels?.()&&(e.forEach(t=>{(t.dataLabels||[]).forEach(t=>{t.shortened&&(t.attr({width:"auto"}).css({width:"auto",textOverflow:"clip"}),t.shortened=!1)})}),l.prototype.drawDataLabels.apply(t),e.forEach(t=>{(t.dataLabels||[]).forEach((e,i)=>{let s=a[2]/2,r=e.options,o=f(r?.distance||0,s);0===i&&m[t.half].push(t),!p(r?.style?.width)&&e.getBBox().width>n&&(e.css({width:Math.round(.7*n)+"px"}),e.shortened=!0),e.dataLabelPosition=this.getDataLabelPosition(t,o),C=Math.max(C,o)})}),m.forEach((e,n)=>{let l=e.length,d=[],f,m,b=0,k;l&&(t.sortByAngle(e,n-.5),C>0&&(f=Math.max(0,g-c-C),m=Math.min(g+c+C,i.plotHeight),e.forEach(t=>{(t.dataLabels||[]).forEach(e=>{let s=e.dataLabelPosition;s&&s.distance>0&&(s.top=Math.max(0,g-c-s.distance),s.bottom=Math.min(g+c+s.distance,i.plotHeight),b=e.getBBox().height||21,e.lineHeight=i.renderer.fontMetrics(e.text||e).h+2*e.padding,t.distributeBox={target:(e.dataLabelPosition?.natural.y||0)-s.top+e.lineHeight/2,size:b,rank:t.y},d.push(t.distributeBox))})}),h(d,k=m+b-f,k/5)),e.forEach(i=>{(i.dataLabels||[]).forEach(h=>{let l=h.options||{},g=i.distributeBox,f=h.dataLabelPosition,m=f?.natural.y||0,b=l.connectorPadding||0,C=h.lineHeight||21,k=(C-h.getBBox().height)/2,M=0,w=m,T="inherit";if(f){if(d&&p(g)&&f.distance>0&&(void 0===g.pos?T="hidden":(S=g.size,w=y.radialDistributionY(i,h))),l.justify)M=y.justify(i,h,c,a);else switch(l.alignTo){case"connectors":M=y.alignToConnectors(e,n,s,o);break;case"plotEdges":M=y.alignToPlotEdges(h,n,s,o);break;default:M=y.radialDistributionX(t,i,w-k,m,h)}if(f.attribs={visibility:T,align:f.alignment},f.posAttribs={x:M+(l.x||0)+(({left:b,right:-b})[f.alignment]||0),y:w+(l.y||0)-C/2},f.computed.x=M,f.computed.y=w-k,u(l.crop,!0)){let t;M-(v=h.getBBox().width)s-b&&0===n&&(t=Math.round(M+v-s+b),x[1]=Math.max(t,x[1])),w-S/2<0?x[0]=Math.max(Math.round(-w+S/2),x[0]):w+S/2>r&&(x[2]=Math.max(Math.round(w+S/2-r),x[2])),f.sideOverflow=t}}})}))}),(0===d(x)||this.verifyDataLabelOverflow(x))&&(this.placeDataLabels(),this.points.forEach(e=>{(e.dataLabels||[]).forEach(s=>{let{connectorColor:r,connectorWidth:o=1}=s.options||{},n=s.dataLabelPosition;if(o){let a;b=s.connector,n&&n.distance>0?(a=!b,b||(s.connector=b=i.renderer.path().addClass("highcharts-data-label-connector highcharts-color-"+e.colorIndex+(e.className?" "+e.className:"")).add(t.dataLabelsGroup)),i.styledMode||b.attr({"stroke-width":o,stroke:r||e.color||"#666666"}),b[a?"attr":"animate"]({d:e.getConnectorPath(s)}),b.attr({visibility:n.attribs?.visibility})):b&&(s.connector=b.destroy())}})})))}function o(){this.points.forEach(t=>{(t.dataLabels||[]).forEach(t=>{let e=t.dataLabelPosition;e?(e.sideOverflow&&(t.css({width:Math.max(t.getBBox().width-e.sideOverflow,0)+"px",textOverflow:(t.options?.style||{}).textOverflow||"ellipsis"}),t.shortened=!0),t.attr(e.attribs),t[t.moved?"animate":"attr"](e.posAttribs),t.moved=!0):t&&t.attr({y:-9999})}),delete t.distributeBox},this)}function m(t){let e=this.center,i=this.options,s=i.center,r=i.minSize||80,o=r,n=null!==i.size;return!n&&(null!==s[0]?o=Math.max(e[2]-Math.max(t[1],t[3]),r):(o=Math.max(e[2]-t[1]-t[3],r),e[0]+=(t[3]-t[1])/2),null!==s[1]?o=c(o,r,e[2]-Math.max(t[0],t[2])):(o=c(o,r,e[2]-t[0]-t[2]),e[1]+=(t[0]-t[2])/2),o(t.x+=e.x,t.y+=e.y,t),{x:0,y:0});return{x:e.x/t.length,y:e.y/t.length}},e.getDistanceBetweenPoints=function(t,e){return Math.sqrt(Math.pow(e.x-t.x,2)+Math.pow(e.y-t.y,2))},e.getAngleBetweenPoints=function(t,e){return Math.atan2(e.x-t.x,e.y-t.y)},e.pointInPolygon=function({x:t,y:e},i){let s=i.length,r,o,n=!1;for(r=0,o=s-1;re!=l>e&&t<(h-s)*(e-a)/(l-a)+s&&(n=!n)}return n},t}),i(e,"Extensions/OverlappingDataLabels.js",[e["Core/Geometry/GeometryUtilities.js"],e["Core/Utilities.js"]],function(t,e){let{pointInPolygon:i}=t,{addEvent:s,fireEvent:r,objectEach:o,pick:n}=e;function a(t){let e=t.length,s=(t,e)=>!(e.x>=t.x+t.width||e.x+e.width<=t.x||e.y>=t.y+t.height||e.y+e.height<=t.y),o=(t,e)=>{for(let s of t)if(i({x:s[0],y:s[1]},e))return!0;return!1},n,a,l,d,c,p=!1;for(let i=0;i(e.labelrank||0)-(t.labelrank||0));for(let i=0;i{o(t,t=>{t.label&&e.push(t.label)})});for(let i of t.series||[])if(i.visible&&i.hasDataLabels?.()){let s=i=>{for(let s of i)s.visible&&(s.dataLabels||[]).forEach(i=>{let r=i.options||{};i.labelrank=n(r.labelrank,s.labelrank,s.shapeArgs?.height),r.allowOverlap??Number(r.distance)>0?(i.oldOpacity=i.opacity,i.newOpacity=1,h(i,t)):e.push(i)})};s(i.nodes||[]),s(i.points)}this.hideOverlappingLabels(e)}return{compose:function(t){let e=t.prototype;e.hideOverlappingLabels||(e.hideOverlappingLabels=a,s(t,"render",l))}}}),i(e,"Extensions/BorderRadius.js",[e["Core/Defaults.js"],e["Core/Globals.js"],e["Core/Utilities.js"]],function(t,e,i){let{defaultOptions:s}=t,{noop:r}=e,{addEvent:o,extend:n,isObject:a,merge:h,relativeLength:l}=i,d={radius:0,scope:"stack",where:void 0},c=r,p=r;function u(t,e,i,s,r={}){let o=c(t,e,i,s,r),{innerR:n=0,r:a=i,start:h=0,end:d=0}=r;if(r.open||!r.borderRadius)return o;let p=d-h,g=Math.sin(p/2),f=Math.max(Math.min(l(r.borderRadius||0,a-n),(a-n)/2,a*g/(1+g)),0),m=Math.min(f,p/Math.PI*2*n),x=o.length-1;for(;x--;)!function(t,e,i){let s,r,o;let n=t[e],a=t[e+1];if("Z"===a[0]&&(a=t[0]),("M"===n[0]||"L"===n[0])&&"A"===a[0]?(s=n,r=a,o=!0):"A"===n[0]&&("M"===a[0]||"L"===a[0])&&(s=a,r=n),s&&r&&r.params){let n=r[1],a=r[5],h=r.params,{start:l,end:d,cx:c,cy:p}=h,u=a?n-i:n+i,g=u?Math.asin(i/u):0,f=a?g:-g,m=Math.cos(g)*u;o?(h.start=l+f,s[1]=c+m*Math.cos(l),s[2]=p+m*Math.sin(l),t.splice(e+1,0,["A",i,i,0,0,1,c+n*Math.cos(h.start),p+n*Math.sin(h.start)])):(h.end=d-f,r[6]=c+n*Math.cos(h.end),r[7]=p+n*Math.sin(h.end),t.splice(e+1,0,["A",i,i,0,0,1,c+m*Math.cos(d),p+m*Math.sin(d)])),r[4]=Math.abs(h.end-h.start)1?m:f);return o}function g(){if(this.options.borderRadius&&!(this.chart.is3d&&this.chart.is3d())){let{options:t,yAxis:e}=this,i="percent"===t.stacking,r=s.plotOptions?.[this.type]?.borderRadius,o=f(t.borderRadius,a(r)?r:{}),h=e.options.reversed;for(let s of this.points){let{shapeArgs:r}=s;if("roundedRect"===s.shapeType&&r){let{width:a=0,height:d=0,y:c=0}=r,p=c,u=d;if("stack"===o.scope&&s.stackTotal){let r=e.translate(i?100:s.stackTotal,!1,!0,!1,!0),o=e.translate(t.threshold||0,!1,!0,!1,!0),n=this.crispCol(0,Math.min(r,o),0,Math.abs(r-o));p=n.y,u=n.height}let g=(s.negative?-1:1)*(h?-1:1)==-1,f=o.where;!f&&this.is("waterfall")&&Math.abs((s.yBottom||0)-(this.translatedThreshold||0))>this.borderWidth&&(f="all"),f||(f="end");let m=Math.min(l(o.radius,a),a/2,"all"===f?d/2:1/0)||0;"end"===f&&(g&&(p-=m),u+=m),n(r,{brBoxHeight:u,brBoxY:p,r:m})}}}}function f(t,e){return a(t)||(t={radius:t||0}),h(d,e,t)}function m(){let t=f(this.options.borderRadius);for(let e of this.points){let i=e.shapeArgs;i&&(i.borderRadius=l(t.radius,(i.r||0)-(i.innerR||0)))}}function x(t,e,i,s,r={}){let o=p(t,e,i,s,r),{r:n=0,brBoxHeight:a=s,brBoxY:h=e}=r,l=e-h,d=h+a-(e+s),c=l-n>-.1?0:n,u=d-n>-.1?0:n,g=Math.max(c&&l,0),f=Math.max(u&&d,0),m=[t+c,e],y=[t+i-c,e],b=[t+i,e+c],v=[t+i,e+s-u],S=[t+i-u,e+s],C=[t+u,e+s],k=[t,e+s-u],M=[t,e+c],w=(t,e)=>Math.sqrt(Math.pow(t,2)-Math.pow(e,2));if(g){let t=w(c,c-g);m[0]-=t,y[0]+=t,b[1]=M[1]=e+c-g}if(s=n(i.minWidth,0)&&this.chartHeight>=n(i.minHeight,0)}).call(this)&&e.push(t._id)}function h(t,e){let s=this.options.responsive,n=this.currentResponsive,h=[],l;!e&&s&&s.rules&&s.rules.forEach(t=>{void 0===t._id&&(t._id=a()),this.matchResponsiveRule(t,h)},this);let d=o(...h.map(t=>r((s||{}).rules||[],e=>e._id===t)).map(t=>t&&t.chartOptions));d.isResponsiveOptions=!0,h=h.toString()||void 0;let c=n&&n.ruleIds;h===c||(n&&(this.currentResponsive=void 0,this.updatingResponsive=!0,this.update(n.undoOptions,t,!0),this.updatingResponsive=!1),h?((l=i(d,this.options,!0,this.collectionsWithUpdate)).isResponsiveOptions=!0,this.currentResponsive={ruleIds:h,mergedOptions:d,undoOptions:l},this.updatingResponsive||this.update(d,t,!0)):this.currentResponsive=void 0)}t.compose=function(t){let i=t.prototype;return i.matchResponsiveRule||s(i,{matchResponsiveRule:e,setResponsive:h}),t}}(e||(e={})),e}),i(e,"masters/highcharts.src.js",[e["Core/Globals.js"],e["Core/Utilities.js"],e["Core/Defaults.js"],e["Core/Animation/Fx.js"],e["Core/Animation/AnimationUtilities.js"],e["Core/Renderer/HTML/AST.js"],e["Core/Templating.js"],e["Core/Renderer/RendererRegistry.js"],e["Core/Renderer/RendererUtilities.js"],e["Core/Renderer/SVG/SVGElement.js"],e["Core/Renderer/SVG/SVGRenderer.js"],e["Core/Renderer/HTML/HTMLElement.js"],e["Core/Axis/Axis.js"],e["Core/Axis/DateTimeAxis.js"],e["Core/Axis/LogarithmicAxis.js"],e["Core/Axis/PlotLineOrBand/PlotLineOrBand.js"],e["Core/Axis/Tick.js"],e["Core/Tooltip.js"],e["Core/Series/Point.js"],e["Core/Pointer.js"],e["Core/Legend/Legend.js"],e["Core/Legend/LegendSymbol.js"],e["Core/Chart/Chart.js"],e["Extensions/ScrollablePlotArea.js"],e["Core/Axis/Stacking/StackingAxis.js"],e["Core/Axis/Stacking/StackItem.js"],e["Core/Series/Series.js"],e["Core/Series/SeriesRegistry.js"],e["Series/Column/ColumnDataLabel.js"],e["Series/Pie/PieDataLabel.js"],e["Core/Series/DataLabel.js"],e["Extensions/OverlappingDataLabels.js"],e["Extensions/BorderRadius.js"],e["Core/Responsive.js"],e["Core/Color/Color.js"],e["Core/Time.js"]],function(t,e,i,s,r,o,n,a,h,l,d,c,p,u,g,f,m,x,y,b,v,S,C,k,M,w,T,A,P,L,O,D,E,I,j,B){return t.AST=o,t.Axis=p,t.Chart=C,t.Color=j,t.DataLabel=O,t.Fx=s,t.HTMLElement=c,t.Legend=v,t.LegendSymbol=S,t.OverlappingDataLabels=t.OverlappingDataLabels||D,t.PlotLineOrBand=f,t.Point=y,t.Pointer=b,t.RendererRegistry=a,t.Series=T,t.SeriesRegistry=A,t.StackItem=w,t.SVGElement=l,t.SVGRenderer=d,t.Templating=n,t.Tick=m,t.Time=B,t.Tooltip=x,t.animate=r.animate,t.animObject=r.animObject,t.chart=C.chart,t.color=j.parse,t.dateFormat=n.dateFormat,t.defaultOptions=i.defaultOptions,t.distribute=h.distribute,t.format=n.format,t.getDeferredAnimation=r.getDeferredAnimation,t.getOptions=i.getOptions,t.numberFormat=n.numberFormat,t.seriesType=A.seriesType,t.setAnimation=r.setAnimation,t.setOptions=i.setOptions,t.stop=r.stop,t.time=i.defaultTime,t.timers=s.timers,E.compose(t.Series,t.SVGElement,t.SVGRenderer),P.compose(t.Series.types.column),O.compose(t.Series),u.compose(t.Axis),c.compose(t.SVGRenderer),v.compose(t.Chart),g.compose(t.Axis),D.compose(t.Chart),L.compose(t.Series.types.pie),f.compose(t.Chart,t.Axis),b.compose(t.Chart),I.compose(t.Chart),k.compose(t.Axis,t.Chart,t.Series),M.compose(t.Axis,t.Chart,t.Series),x.compose(t.Pointer),e.extend(t,e),t}),e["masters/highcharts.src.js"]._modules=e,e["masters/highcharts.src.js"]}); - -/***/ }), - -/***/ 4146: -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { - -"use strict"; - - -var reactIs = __webpack_require__(4363); - -/** - * Copyright 2015, Yahoo! Inc. - * Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms. - */ -var REACT_STATICS = { - childContextTypes: true, - contextType: true, - contextTypes: true, - defaultProps: true, - displayName: true, - getDefaultProps: true, - getDerivedStateFromError: true, - getDerivedStateFromProps: true, - mixins: true, - propTypes: true, - type: true -}; -var KNOWN_STATICS = { - name: true, - length: true, - prototype: true, - caller: true, - callee: true, - arguments: true, - arity: true -}; -var FORWARD_REF_STATICS = { - '$$typeof': true, - render: true, - defaultProps: true, - displayName: true, - propTypes: true -}; -var MEMO_STATICS = { - '$$typeof': true, - compare: true, - defaultProps: true, - displayName: true, - propTypes: true, - type: true -}; -var TYPE_STATICS = {}; -TYPE_STATICS[reactIs.ForwardRef] = FORWARD_REF_STATICS; -TYPE_STATICS[reactIs.Memo] = MEMO_STATICS; - -function getStatics(component) { - // React v16.11 and below - if (reactIs.isMemo(component)) { - return MEMO_STATICS; - } // React v16.12 and above - - - return TYPE_STATICS[component['$$typeof']] || REACT_STATICS; -} - -var defineProperty = Object.defineProperty; -var getOwnPropertyNames = Object.getOwnPropertyNames; -var getOwnPropertySymbols = Object.getOwnPropertySymbols; -var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; -var getPrototypeOf = Object.getPrototypeOf; -var objectPrototype = Object.prototype; -function hoistNonReactStatics(targetComponent, sourceComponent, blacklist) { - if (typeof sourceComponent !== 'string') { - // don't hoist over string (html) components - if (objectPrototype) { - var inheritedComponent = getPrototypeOf(sourceComponent); - - if (inheritedComponent && inheritedComponent !== objectPrototype) { - hoistNonReactStatics(targetComponent, inheritedComponent, blacklist); - } - } - - var keys = getOwnPropertyNames(sourceComponent); - - if (getOwnPropertySymbols) { - keys = keys.concat(getOwnPropertySymbols(sourceComponent)); - } - - var targetStatics = getStatics(targetComponent); - var sourceStatics = getStatics(sourceComponent); - - for (var i = 0; i < keys.length; ++i) { - var key = keys[i]; - - if (!KNOWN_STATICS[key] && !(blacklist && blacklist[key]) && !(sourceStatics && sourceStatics[key]) && !(targetStatics && targetStatics[key])) { - var descriptor = getOwnPropertyDescriptor(sourceComponent, key); - - try { - // Avoid failures from read-only properties - defineProperty(targetComponent, key, descriptor); - } catch (e) {} - } - } - } - - return targetComponent; -} - -module.exports = hoistNonReactStatics; - - -/***/ }), - -/***/ 4692: -/***/ (function(module, exports) { - -var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*! - * jQuery JavaScript Library v3.7.1 - * https://jquery.com/ - * - * Copyright OpenJS Foundation and other contributors - * Released under the MIT license - * https://jquery.org/license - * - * Date: 2023-08-28T13:37Z - */ -( function( global, factory ) { - - "use strict"; - - if ( true && typeof module.exports === "object" ) { - - // For CommonJS and CommonJS-like environments where a proper `window` - // is present, execute the factory and get jQuery. - // For environments that do not have a `window` with a `document` - // (such as Node.js), expose a factory as module.exports. - // This accentuates the need for the creation of a real `window`. - // e.g. var jQuery = require("jquery")(window); - // See ticket trac-14549 for more info. - module.exports = global.document ? - factory( global, true ) : - function( w ) { - if ( !w.document ) { - throw new Error( "jQuery requires a window with a document" ); - } - return factory( w ); - }; - } else { - factory( global ); - } - -// Pass this if window is not defined yet -} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) { - -// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1 -// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode -// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common -// enough that all such attempts are guarded in a try block. -"use strict"; - -var arr = []; - -var getProto = Object.getPrototypeOf; - -var slice = arr.slice; - -var flat = arr.flat ? function( array ) { - return arr.flat.call( array ); -} : function( array ) { - return arr.concat.apply( [], array ); -}; - - -var push = arr.push; - -var indexOf = arr.indexOf; - -var class2type = {}; - -var toString = class2type.toString; - -var hasOwn = class2type.hasOwnProperty; - -var fnToString = hasOwn.toString; - -var ObjectFunctionString = fnToString.call( Object ); - -var support = {}; - -var isFunction = function isFunction( obj ) { - - // Support: Chrome <=57, Firefox <=52 - // In some browsers, typeof returns "function" for HTML elements - // (i.e., `typeof document.createElement( "object" ) === "function"`). - // We don't want to classify *any* DOM node as a function. - // Support: QtWeb <=3.8.5, WebKit <=534.34, wkhtmltopdf tool <=0.12.5 - // Plus for old WebKit, typeof returns "function" for HTML collections - // (e.g., `typeof document.getElementsByTagName("div") === "function"`). (gh-4756) - return typeof obj === "function" && typeof obj.nodeType !== "number" && - typeof obj.item !== "function"; - }; - - -var isWindow = function isWindow( obj ) { - return obj != null && obj === obj.window; - }; - - -var document = window.document; - - - - var preservedScriptAttributes = { - type: true, - src: true, - nonce: true, - noModule: true - }; - - function DOMEval( code, node, doc ) { - doc = doc || document; - - var i, val, - script = doc.createElement( "script" ); - - script.text = code; - if ( node ) { - for ( i in preservedScriptAttributes ) { - - // Support: Firefox 64+, Edge 18+ - // Some browsers don't support the "nonce" property on scripts. - // On the other hand, just using `getAttribute` is not enough as - // the `nonce` attribute is reset to an empty string whenever it - // becomes browsing-context connected. - // See https://github.com/whatwg/html/issues/2369 - // See https://html.spec.whatwg.org/#nonce-attributes - // The `node.getAttribute` check was added for the sake of - // `jQuery.globalEval` so that it can fake a nonce-containing node - // via an object. - val = node[ i ] || node.getAttribute && node.getAttribute( i ); - if ( val ) { - script.setAttribute( i, val ); - } - } - } - doc.head.appendChild( script ).parentNode.removeChild( script ); - } - - -function toType( obj ) { - if ( obj == null ) { - return obj + ""; - } - - // Support: Android <=2.3 only (functionish RegExp) - return typeof obj === "object" || typeof obj === "function" ? - class2type[ toString.call( obj ) ] || "object" : - typeof obj; -} -/* global Symbol */ -// Defining this global in .eslintrc.json would create a danger of using the global -// unguarded in another place, it seems safer to define global only for this module - - - -var version = "3.7.1", - - rhtmlSuffix = /HTML$/i, - - // Define a local copy of jQuery - jQuery = function( selector, context ) { - - // The jQuery object is actually just the init constructor 'enhanced' - // Need init if jQuery is called (just allow error to be thrown if not included) - return new jQuery.fn.init( selector, context ); - }; - -jQuery.fn = jQuery.prototype = { - - // The current version of jQuery being used - jquery: version, - - constructor: jQuery, - - // The default length of a jQuery object is 0 - length: 0, - - toArray: function() { - return slice.call( this ); - }, - - // Get the Nth element in the matched element set OR - // Get the whole matched element set as a clean array - get: function( num ) { - - // Return all the elements in a clean array - if ( num == null ) { - return slice.call( this ); - } - - // Return just the one element from the set - return num < 0 ? this[ num + this.length ] : this[ num ]; - }, - - // Take an array of elements and push it onto the stack - // (returning the new matched element set) - pushStack: function( elems ) { - - // Build a new jQuery matched element set - var ret = jQuery.merge( this.constructor(), elems ); - - // Add the old object onto the stack (as a reference) - ret.prevObject = this; - - // Return the newly-formed element set - return ret; - }, - - // Execute a callback for every element in the matched set. - each: function( callback ) { - return jQuery.each( this, callback ); - }, - - map: function( callback ) { - return this.pushStack( jQuery.map( this, function( elem, i ) { - return callback.call( elem, i, elem ); - } ) ); - }, - - slice: function() { - return this.pushStack( slice.apply( this, arguments ) ); - }, - - first: function() { - return this.eq( 0 ); - }, - - last: function() { - return this.eq( -1 ); - }, - - even: function() { - return this.pushStack( jQuery.grep( this, function( _elem, i ) { - return ( i + 1 ) % 2; - } ) ); - }, - - odd: function() { - return this.pushStack( jQuery.grep( this, function( _elem, i ) { - return i % 2; - } ) ); - }, - - eq: function( i ) { - var len = this.length, - j = +i + ( i < 0 ? len : 0 ); - return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); - }, - - end: function() { - return this.prevObject || this.constructor(); - }, - - // For internal use only. - // Behaves like an Array's method, not like a jQuery method. - push: push, - sort: arr.sort, - splice: arr.splice -}; - -jQuery.extend = jQuery.fn.extend = function() { - var options, name, src, copy, copyIsArray, clone, - target = arguments[ 0 ] || {}, - i = 1, - length = arguments.length, - deep = false; - - // Handle a deep copy situation - if ( typeof target === "boolean" ) { - deep = target; - - // Skip the boolean and the target - target = arguments[ i ] || {}; - i++; - } - - // Handle case when target is a string or something (possible in deep copy) - if ( typeof target !== "object" && !isFunction( target ) ) { - target = {}; - } - - // Extend jQuery itself if only one argument is passed - if ( i === length ) { - target = this; - i--; - } - - for ( ; i < length; i++ ) { - - // Only deal with non-null/undefined values - if ( ( options = arguments[ i ] ) != null ) { - - // Extend the base object - for ( name in options ) { - copy = options[ name ]; - - // Prevent Object.prototype pollution - // Prevent never-ending loop - if ( name === "__proto__" || target === copy ) { - continue; - } - - // Recurse if we're merging plain objects or arrays - if ( deep && copy && ( jQuery.isPlainObject( copy ) || - ( copyIsArray = Array.isArray( copy ) ) ) ) { - src = target[ name ]; - - // Ensure proper type for the source value - if ( copyIsArray && !Array.isArray( src ) ) { - clone = []; - } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) { - clone = {}; - } else { - clone = src; - } - copyIsArray = false; - - // Never move original objects, clone them - target[ name ] = jQuery.extend( deep, clone, copy ); - - // Don't bring in undefined values - } else if ( copy !== undefined ) { - target[ name ] = copy; - } - } - } - } - - // Return the modified object - return target; -}; - -jQuery.extend( { - - // Unique for each copy of jQuery on the page - expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), - - // Assume jQuery is ready without the ready module - isReady: true, - - error: function( msg ) { - throw new Error( msg ); - }, - - noop: function() {}, - - isPlainObject: function( obj ) { - var proto, Ctor; - - // Detect obvious negatives - // Use toString instead of jQuery.type to catch host objects - if ( !obj || toString.call( obj ) !== "[object Object]" ) { - return false; - } - - proto = getProto( obj ); - - // Objects with no prototype (e.g., `Object.create( null )`) are plain - if ( !proto ) { - return true; - } - - // Objects with prototype are plain iff they were constructed by a global Object function - Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; - return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; - }, - - isEmptyObject: function( obj ) { - var name; - - for ( name in obj ) { - return false; - } - return true; - }, - - // Evaluates a script in a provided context; falls back to the global one - // if not specified. - globalEval: function( code, options, doc ) { - DOMEval( code, { nonce: options && options.nonce }, doc ); - }, - - each: function( obj, callback ) { - var length, i = 0; - - if ( isArrayLike( obj ) ) { - length = obj.length; - for ( ; i < length; i++ ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } else { - for ( i in obj ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } - - return obj; - }, - - - // Retrieve the text value of an array of DOM nodes - text: function( elem ) { - var node, - ret = "", - i = 0, - nodeType = elem.nodeType; - - if ( !nodeType ) { - - // If no nodeType, this is expected to be an array - while ( ( node = elem[ i++ ] ) ) { - - // Do not traverse comment nodes - ret += jQuery.text( node ); - } - } - if ( nodeType === 1 || nodeType === 11 ) { - return elem.textContent; - } - if ( nodeType === 9 ) { - return elem.documentElement.textContent; - } - if ( nodeType === 3 || nodeType === 4 ) { - return elem.nodeValue; - } - - // Do not include comment or processing instruction nodes - - return ret; - }, - - // results is for internal usage only - makeArray: function( arr, results ) { - var ret = results || []; - - if ( arr != null ) { - if ( isArrayLike( Object( arr ) ) ) { - jQuery.merge( ret, - typeof arr === "string" ? - [ arr ] : arr - ); - } else { - push.call( ret, arr ); - } - } - - return ret; - }, - - inArray: function( elem, arr, i ) { - return arr == null ? -1 : indexOf.call( arr, elem, i ); - }, - - isXMLDoc: function( elem ) { - var namespace = elem && elem.namespaceURI, - docElem = elem && ( elem.ownerDocument || elem ).documentElement; - - // Assume HTML when documentElement doesn't yet exist, such as inside - // document fragments. - return !rhtmlSuffix.test( namespace || docElem && docElem.nodeName || "HTML" ); - }, - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - merge: function( first, second ) { - var len = +second.length, - j = 0, - i = first.length; - - for ( ; j < len; j++ ) { - first[ i++ ] = second[ j ]; - } - - first.length = i; - - return first; - }, - - grep: function( elems, callback, invert ) { - var callbackInverse, - matches = [], - i = 0, - length = elems.length, - callbackExpect = !invert; - - // Go through the array, only saving the items - // that pass the validator function - for ( ; i < length; i++ ) { - callbackInverse = !callback( elems[ i ], i ); - if ( callbackInverse !== callbackExpect ) { - matches.push( elems[ i ] ); - } - } - - return matches; - }, - - // arg is for internal usage only - map: function( elems, callback, arg ) { - var length, value, - i = 0, - ret = []; - - // Go through the array, translating each of the items to their new values - if ( isArrayLike( elems ) ) { - length = elems.length; - for ( ; i < length; i++ ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - - // Go through every key on the object, - } else { - for ( i in elems ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - } - - // Flatten any nested arrays - return flat( ret ); - }, - - // A global GUID counter for objects - guid: 1, - - // jQuery.support is not used in Core but other projects attach their - // properties to it so it needs to exist. - support: support -} ); - -if ( typeof Symbol === "function" ) { - jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; -} - -// Populate the class2type map -jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), - function( _i, name ) { - class2type[ "[object " + name + "]" ] = name.toLowerCase(); - } ); - -function isArrayLike( obj ) { - - // Support: real iOS 8.2 only (not reproducible in simulator) - // `in` check used to prevent JIT error (gh-2145) - // hasOwn isn't used here due to false negatives - // regarding Nodelist length in IE - var length = !!obj && "length" in obj && obj.length, - type = toType( obj ); - - if ( isFunction( obj ) || isWindow( obj ) ) { - return false; - } - - return type === "array" || length === 0 || - typeof length === "number" && length > 0 && ( length - 1 ) in obj; -} - - -function nodeName( elem, name ) { - - return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); - -} -var pop = arr.pop; - - -var sort = arr.sort; - - -var splice = arr.splice; - - -var whitespace = "[\\x20\\t\\r\\n\\f]"; - - -var rtrimCSS = new RegExp( - "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", - "g" -); - - - - -// Note: an element does not contain itself -jQuery.contains = function( a, b ) { - var bup = b && b.parentNode; - - return a === bup || !!( bup && bup.nodeType === 1 && ( - - // Support: IE 9 - 11+ - // IE doesn't have `contains` on SVG. - a.contains ? - a.contains( bup ) : - a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 - ) ); -}; - - - - -// CSS string/identifier serialization -// https://drafts.csswg.org/cssom/#common-serializing-idioms -var rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g; - -function fcssescape( ch, asCodePoint ) { - if ( asCodePoint ) { - - // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER - if ( ch === "\0" ) { - return "\uFFFD"; - } - - // Control characters and (dependent upon position) numbers get escaped as code points - return ch.slice( 0, -1 ) + "\\" + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; - } - - // Other potentially-special ASCII characters get backslash-escaped - return "\\" + ch; -} - -jQuery.escapeSelector = function( sel ) { - return ( sel + "" ).replace( rcssescape, fcssescape ); -}; - - - - -var preferredDoc = document, - pushNative = push; - -( function() { - -var i, - Expr, - outermostContext, - sortInput, - hasDuplicate, - push = pushNative, - - // Local document vars - document, - documentElement, - documentIsHTML, - rbuggyQSA, - matches, - - // Instance-specific data - expando = jQuery.expando, - dirruns = 0, - done = 0, - classCache = createCache(), - tokenCache = createCache(), - compilerCache = createCache(), - nonnativeSelectorCache = createCache(), - sortOrder = function( a, b ) { - if ( a === b ) { - hasDuplicate = true; - } - return 0; - }, - - booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|" + - "loop|multiple|open|readonly|required|scoped", - - // Regular expressions - - // https://www.w3.org/TR/css-syntax-3/#ident-token-diagram - identifier = "(?:\\\\[\\da-fA-F]{1,6}" + whitespace + - "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", - - // Attribute selectors: https://www.w3.org/TR/selectors/#attribute-selectors - attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + - - // Operator (capture 2) - "*([*^$|!~]?=)" + whitespace + - - // "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]" - "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + - whitespace + "*\\]", - - pseudos = ":(" + identifier + ")(?:\\((" + - - // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: - // 1. quoted (capture 3; capture 4 or capture 5) - "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + - - // 2. simple (capture 6) - "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + - - // 3. anything else (capture 2) - ".*" + - ")\\)|)", - - // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter - rwhitespace = new RegExp( whitespace + "+", "g" ), - - rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), - rleadingCombinator = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + - whitespace + "*" ), - rdescend = new RegExp( whitespace + "|>" ), - - rpseudo = new RegExp( pseudos ), - ridentifier = new RegExp( "^" + identifier + "$" ), - - matchExpr = { - ID: new RegExp( "^#(" + identifier + ")" ), - CLASS: new RegExp( "^\\.(" + identifier + ")" ), - TAG: new RegExp( "^(" + identifier + "|[*])" ), - ATTR: new RegExp( "^" + attributes ), - PSEUDO: new RegExp( "^" + pseudos ), - CHILD: new RegExp( - "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + - whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + - whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), - bool: new RegExp( "^(?:" + booleans + ")$", "i" ), - - // For use in libraries implementing .is() - // We use this for POS matching in `select` - needsContext: new RegExp( "^" + whitespace + - "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + - "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) - }, - - rinputs = /^(?:input|select|textarea|button)$/i, - rheader = /^h\d$/i, - - // Easily-parseable/retrievable ID or TAG or CLASS selectors - rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, - - rsibling = /[+~]/, - - // CSS escapes - // https://www.w3.org/TR/CSS21/syndata.html#escaped-characters - runescape = new RegExp( "\\\\[\\da-fA-F]{1,6}" + whitespace + - "?|\\\\([^\\r\\n\\f])", "g" ), - funescape = function( escape, nonHex ) { - var high = "0x" + escape.slice( 1 ) - 0x10000; - - if ( nonHex ) { - - // Strip the backslash prefix from a non-hex escape sequence - return nonHex; - } - - // Replace a hexadecimal escape sequence with the encoded Unicode code point - // Support: IE <=11+ - // For values outside the Basic Multilingual Plane (BMP), manually construct a - // surrogate pair - return high < 0 ? - String.fromCharCode( high + 0x10000 ) : - String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); - }, - - // Used for iframes; see `setDocument`. - // Support: IE 9 - 11+, Edge 12 - 18+ - // Removing the function wrapper causes a "Permission Denied" - // error in IE/Edge. - unloadHandler = function() { - setDocument(); - }, - - inDisabledFieldset = addCombinator( - function( elem ) { - return elem.disabled === true && nodeName( elem, "fieldset" ); - }, - { dir: "parentNode", next: "legend" } - ); - -// Support: IE <=9 only -// Accessing document.activeElement can throw unexpectedly -// https://bugs.jquery.com/ticket/13393 -function safeActiveElement() { - try { - return document.activeElement; - } catch ( err ) { } -} - -// Optimize for push.apply( _, NodeList ) -try { - push.apply( - ( arr = slice.call( preferredDoc.childNodes ) ), - preferredDoc.childNodes - ); - - // Support: Android <=4.0 - // Detect silently failing push.apply - // eslint-disable-next-line no-unused-expressions - arr[ preferredDoc.childNodes.length ].nodeType; -} catch ( e ) { - push = { - apply: function( target, els ) { - pushNative.apply( target, slice.call( els ) ); - }, - call: function( target ) { - pushNative.apply( target, slice.call( arguments, 1 ) ); - } - }; -} - -function find( selector, context, results, seed ) { - var m, i, elem, nid, match, groups, newSelector, - newContext = context && context.ownerDocument, - - // nodeType defaults to 9, since context defaults to document - nodeType = context ? context.nodeType : 9; - - results = results || []; - - // Return early from calls with invalid selector or context - if ( typeof selector !== "string" || !selector || - nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { - - return results; - } - - // Try to shortcut find operations (as opposed to filters) in HTML documents - if ( !seed ) { - setDocument( context ); - context = context || document; - - if ( documentIsHTML ) { - - // If the selector is sufficiently simple, try using a "get*By*" DOM method - // (excepting DocumentFragment context, where the methods don't exist) - if ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) { - - // ID selector - if ( ( m = match[ 1 ] ) ) { - - // Document context - if ( nodeType === 9 ) { - if ( ( elem = context.getElementById( m ) ) ) { - - // Support: IE 9 only - // getElementById can match elements by name instead of ID - if ( elem.id === m ) { - push.call( results, elem ); - return results; - } - } else { - return results; - } - - // Element context - } else { - - // Support: IE 9 only - // getElementById can match elements by name instead of ID - if ( newContext && ( elem = newContext.getElementById( m ) ) && - find.contains( context, elem ) && - elem.id === m ) { - - push.call( results, elem ); - return results; - } - } - - // Type selector - } else if ( match[ 2 ] ) { - push.apply( results, context.getElementsByTagName( selector ) ); - return results; - - // Class selector - } else if ( ( m = match[ 3 ] ) && context.getElementsByClassName ) { - push.apply( results, context.getElementsByClassName( m ) ); - return results; - } - } - - // Take advantage of querySelectorAll - if ( !nonnativeSelectorCache[ selector + " " ] && - ( !rbuggyQSA || !rbuggyQSA.test( selector ) ) ) { - - newSelector = selector; - newContext = context; - - // qSA considers elements outside a scoping root when evaluating child or - // descendant combinators, which is not what we want. - // In such cases, we work around the behavior by prefixing every selector in the - // list with an ID selector referencing the scope context. - // The technique has to be used as well when a leading combinator is used - // as such selectors are not recognized by querySelectorAll. - // Thanks to Andrew Dupont for this technique. - if ( nodeType === 1 && - ( rdescend.test( selector ) || rleadingCombinator.test( selector ) ) ) { - - // Expand context for sibling selectors - newContext = rsibling.test( selector ) && testContext( context.parentNode ) || - context; - - // We can use :scope instead of the ID hack if the browser - // supports it & if we're not changing the context. - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when - // strict-comparing two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( newContext != context || !support.scope ) { - - // Capture the context ID, setting it first if necessary - if ( ( nid = context.getAttribute( "id" ) ) ) { - nid = jQuery.escapeSelector( nid ); - } else { - context.setAttribute( "id", ( nid = expando ) ); - } - } - - // Prefix every selector in the list - groups = tokenize( selector ); - i = groups.length; - while ( i-- ) { - groups[ i ] = ( nid ? "#" + nid : ":scope" ) + " " + - toSelector( groups[ i ] ); - } - newSelector = groups.join( "," ); - } - - try { - push.apply( results, - newContext.querySelectorAll( newSelector ) - ); - return results; - } catch ( qsaError ) { - nonnativeSelectorCache( selector, true ); - } finally { - if ( nid === expando ) { - context.removeAttribute( "id" ); - } - } - } - } - } - - // All others - return select( selector.replace( rtrimCSS, "$1" ), context, results, seed ); -} - -/** - * Create key-value caches of limited size - * @returns {function(string, object)} Returns the Object data after storing it on itself with - * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) - * deleting the oldest entry - */ -function createCache() { - var keys = []; - - function cache( key, value ) { - - // Use (key + " ") to avoid collision with native prototype properties - // (see https://github.com/jquery/sizzle/issues/157) - if ( keys.push( key + " " ) > Expr.cacheLength ) { - - // Only keep the most recent entries - delete cache[ keys.shift() ]; - } - return ( cache[ key + " " ] = value ); - } - return cache; -} - -/** - * Mark a function for special use by jQuery selector module - * @param {Function} fn The function to mark - */ -function markFunction( fn ) { - fn[ expando ] = true; - return fn; -} - -/** - * Support testing using an element - * @param {Function} fn Passed the created element and returns a boolean result - */ -function assert( fn ) { - var el = document.createElement( "fieldset" ); - - try { - return !!fn( el ); - } catch ( e ) { - return false; - } finally { - - // Remove from its parent by default - if ( el.parentNode ) { - el.parentNode.removeChild( el ); - } - - // release memory in IE - el = null; - } -} - -/** - * Returns a function to use in pseudos for input types - * @param {String} type - */ -function createInputPseudo( type ) { - return function( elem ) { - return nodeName( elem, "input" ) && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for buttons - * @param {String} type - */ -function createButtonPseudo( type ) { - return function( elem ) { - return ( nodeName( elem, "input" ) || nodeName( elem, "button" ) ) && - elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for :enabled/:disabled - * @param {Boolean} disabled true for :disabled; false for :enabled - */ -function createDisabledPseudo( disabled ) { - - // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable - return function( elem ) { - - // Only certain elements can match :enabled or :disabled - // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled - // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled - if ( "form" in elem ) { - - // Check for inherited disabledness on relevant non-disabled elements: - // * listed form-associated elements in a disabled fieldset - // https://html.spec.whatwg.org/multipage/forms.html#category-listed - // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled - // * option elements in a disabled optgroup - // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled - // All such elements have a "form" property. - if ( elem.parentNode && elem.disabled === false ) { - - // Option elements defer to a parent optgroup if present - if ( "label" in elem ) { - if ( "label" in elem.parentNode ) { - return elem.parentNode.disabled === disabled; - } else { - return elem.disabled === disabled; - } - } - - // Support: IE 6 - 11+ - // Use the isDisabled shortcut property to check for disabled fieldset ancestors - return elem.isDisabled === disabled || - - // Where there is no isDisabled, check manually - elem.isDisabled !== !disabled && - inDisabledFieldset( elem ) === disabled; - } - - return elem.disabled === disabled; - - // Try to winnow out elements that can't be disabled before trusting the disabled property. - // Some victims get caught in our net (label, legend, menu, track), but it shouldn't - // even exist on them, let alone have a boolean value. - } else if ( "label" in elem ) { - return elem.disabled === disabled; - } - - // Remaining elements are neither :enabled nor :disabled - return false; - }; -} - -/** - * Returns a function to use in pseudos for positionals - * @param {Function} fn - */ -function createPositionalPseudo( fn ) { - return markFunction( function( argument ) { - argument = +argument; - return markFunction( function( seed, matches ) { - var j, - matchIndexes = fn( [], seed.length, argument ), - i = matchIndexes.length; - - // Match elements found at the specified indexes - while ( i-- ) { - if ( seed[ ( j = matchIndexes[ i ] ) ] ) { - seed[ j ] = !( matches[ j ] = seed[ j ] ); - } - } - } ); - } ); -} - -/** - * Checks a node for validity as a jQuery selector context - * @param {Element|Object=} context - * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value - */ -function testContext( context ) { - return context && typeof context.getElementsByTagName !== "undefined" && context; -} - -/** - * Sets document-related variables once based on the current document - * @param {Element|Object} [node] An element or document object to use to set the document - * @returns {Object} Returns the current document - */ -function setDocument( node ) { - var subWindow, - doc = node ? node.ownerDocument || node : preferredDoc; - - // Return early if doc is invalid or already selected - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) { - return document; - } - - // Update global variables - document = doc; - documentElement = document.documentElement; - documentIsHTML = !jQuery.isXMLDoc( document ); - - // Support: iOS 7 only, IE 9 - 11+ - // Older browsers didn't support unprefixed `matches`. - matches = documentElement.matches || - documentElement.webkitMatchesSelector || - documentElement.msMatchesSelector; - - // Support: IE 9 - 11+, Edge 12 - 18+ - // Accessing iframe documents after unload throws "permission denied" errors - // (see trac-13936). - // Limit the fix to IE & Edge Legacy; despite Edge 15+ implementing `matches`, - // all IE 9+ and Edge Legacy versions implement `msMatchesSelector` as well. - if ( documentElement.msMatchesSelector && - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - preferredDoc != document && - ( subWindow = document.defaultView ) && subWindow.top !== subWindow ) { - - // Support: IE 9 - 11+, Edge 12 - 18+ - subWindow.addEventListener( "unload", unloadHandler ); - } - - // Support: IE <10 - // Check if getElementById returns elements by name - // The broken getElementById methods don't pick up programmatically-set names, - // so use a roundabout getElementsByName test - support.getById = assert( function( el ) { - documentElement.appendChild( el ).id = jQuery.expando; - return !document.getElementsByName || - !document.getElementsByName( jQuery.expando ).length; - } ); - - // Support: IE 9 only - // Check to see if it's possible to do matchesSelector - // on a disconnected node. - support.disconnectedMatch = assert( function( el ) { - return matches.call( el, "*" ); - } ); - - // Support: IE 9 - 11+, Edge 12 - 18+ - // IE/Edge don't support the :scope pseudo-class. - support.scope = assert( function() { - return document.querySelectorAll( ":scope" ); - } ); - - // Support: Chrome 105 - 111 only, Safari 15.4 - 16.3 only - // Make sure the `:has()` argument is parsed unforgivingly. - // We include `*` in the test to detect buggy implementations that are - // _selectively_ forgiving (specifically when the list includes at least - // one valid selector). - // Note that we treat complete lack of support for `:has()` as if it were - // spec-compliant support, which is fine because use of `:has()` in such - // environments will fail in the qSA path and fall back to jQuery traversal - // anyway. - support.cssHas = assert( function() { - try { - document.querySelector( ":has(*,:jqfake)" ); - return false; - } catch ( e ) { - return true; - } - } ); - - // ID filter and find - if ( support.getById ) { - Expr.filter.ID = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - return elem.getAttribute( "id" ) === attrId; - }; - }; - Expr.find.ID = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var elem = context.getElementById( id ); - return elem ? [ elem ] : []; - } - }; - } else { - Expr.filter.ID = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - var node = typeof elem.getAttributeNode !== "undefined" && - elem.getAttributeNode( "id" ); - return node && node.value === attrId; - }; - }; - - // Support: IE 6 - 7 only - // getElementById is not reliable as a find shortcut - Expr.find.ID = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var node, i, elems, - elem = context.getElementById( id ); - - if ( elem ) { - - // Verify the id attribute - node = elem.getAttributeNode( "id" ); - if ( node && node.value === id ) { - return [ elem ]; - } - - // Fall back on getElementsByName - elems = context.getElementsByName( id ); - i = 0; - while ( ( elem = elems[ i++ ] ) ) { - node = elem.getAttributeNode( "id" ); - if ( node && node.value === id ) { - return [ elem ]; - } - } - } - - return []; - } - }; - } - - // Tag - Expr.find.TAG = function( tag, context ) { - if ( typeof context.getElementsByTagName !== "undefined" ) { - return context.getElementsByTagName( tag ); - - // DocumentFragment nodes don't have gEBTN - } else { - return context.querySelectorAll( tag ); - } - }; - - // Class - Expr.find.CLASS = function( className, context ) { - if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { - return context.getElementsByClassName( className ); - } - }; - - /* QSA/matchesSelector - ---------------------------------------------------------------------- */ - - // QSA and matchesSelector support - - rbuggyQSA = []; - - // Build QSA regex - // Regex strategy adopted from Diego Perini - assert( function( el ) { - - var input; - - documentElement.appendChild( el ).innerHTML = - "" + - ""; - - // Support: iOS <=7 - 8 only - // Boolean attributes and "value" are not treated correctly in some XML documents - if ( !el.querySelectorAll( "[selected]" ).length ) { - rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); - } - - // Support: iOS <=7 - 8 only - if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { - rbuggyQSA.push( "~=" ); - } - - // Support: iOS 8 only - // https://bugs.webkit.org/show_bug.cgi?id=136851 - // In-page `selector#id sibling-combinator selector` fails - if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { - rbuggyQSA.push( ".#.+[+~]" ); - } - - // Support: Chrome <=105+, Firefox <=104+, Safari <=15.4+ - // In some of the document kinds, these selectors wouldn't work natively. - // This is probably OK but for backwards compatibility we want to maintain - // handling them through jQuery traversal in jQuery 3.x. - if ( !el.querySelectorAll( ":checked" ).length ) { - rbuggyQSA.push( ":checked" ); - } - - // Support: Windows 8 Native Apps - // The type and name attributes are restricted during .innerHTML assignment - input = document.createElement( "input" ); - input.setAttribute( "type", "hidden" ); - el.appendChild( input ).setAttribute( "name", "D" ); - - // Support: IE 9 - 11+ - // IE's :disabled selector does not pick up the children of disabled fieldsets - // Support: Chrome <=105+, Firefox <=104+, Safari <=15.4+ - // In some of the document kinds, these selectors wouldn't work natively. - // This is probably OK but for backwards compatibility we want to maintain - // handling them through jQuery traversal in jQuery 3.x. - documentElement.appendChild( el ).disabled = true; - if ( el.querySelectorAll( ":disabled" ).length !== 2 ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Support: IE 11+, Edge 15 - 18+ - // IE 11/Edge don't find elements on a `[name='']` query in some cases. - // Adding a temporary attribute to the document before the selection works - // around the issue. - // Interestingly, IE 10 & older don't seem to have the issue. - input = document.createElement( "input" ); - input.setAttribute( "name", "" ); - el.appendChild( input ); - if ( !el.querySelectorAll( "[name='']" ).length ) { - rbuggyQSA.push( "\\[" + whitespace + "*name" + whitespace + "*=" + - whitespace + "*(?:''|\"\")" ); - } - } ); - - if ( !support.cssHas ) { - - // Support: Chrome 105 - 110+, Safari 15.4 - 16.3+ - // Our regular `try-catch` mechanism fails to detect natively-unsupported - // pseudo-classes inside `:has()` (such as `:has(:contains("Foo"))`) - // in browsers that parse the `:has()` argument as a forgiving selector list. - // https://drafts.csswg.org/selectors/#relational now requires the argument - // to be parsed unforgivingly, but browsers have not yet fully adjusted. - rbuggyQSA.push( ":has" ); - } - - rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) ); - - /* Sorting - ---------------------------------------------------------------------- */ - - // Document order sorting - sortOrder = function( a, b ) { - - // Flag for duplicate removal - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - // Sort on method existence if only one input has compareDocumentPosition - var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; - if ( compare ) { - return compare; - } - - // Calculate position if both inputs belong to the same document - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - compare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ? - a.compareDocumentPosition( b ) : - - // Otherwise we know they are disconnected - 1; - - // Disconnected nodes - if ( compare & 1 || - ( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) { - - // Choose the first element that is related to our preferred document - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( a === document || a.ownerDocument == preferredDoc && - find.contains( preferredDoc, a ) ) { - return -1; - } - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( b === document || b.ownerDocument == preferredDoc && - find.contains( preferredDoc, b ) ) { - return 1; - } - - // Maintain original order - return sortInput ? - ( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) : - 0; - } - - return compare & 4 ? -1 : 1; - }; - - return document; -} - -find.matches = function( expr, elements ) { - return find( expr, null, null, elements ); -}; - -find.matchesSelector = function( elem, expr ) { - setDocument( elem ); - - if ( documentIsHTML && - !nonnativeSelectorCache[ expr + " " ] && - ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { - - try { - var ret = matches.call( elem, expr ); - - // IE 9's matchesSelector returns false on disconnected nodes - if ( ret || support.disconnectedMatch || - - // As well, disconnected nodes are said to be in a document - // fragment in IE 9 - elem.document && elem.document.nodeType !== 11 ) { - return ret; - } - } catch ( e ) { - nonnativeSelectorCache( expr, true ); - } - } - - return find( expr, document, null, [ elem ] ).length > 0; -}; - -find.contains = function( context, elem ) { - - // Set document vars if needed - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( ( context.ownerDocument || context ) != document ) { - setDocument( context ); - } - return jQuery.contains( context, elem ); -}; - - -find.attr = function( elem, name ) { - - // Set document vars if needed - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( ( elem.ownerDocument || elem ) != document ) { - setDocument( elem ); - } - - var fn = Expr.attrHandle[ name.toLowerCase() ], - - // Don't get fooled by Object.prototype properties (see trac-13807) - val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? - fn( elem, name, !documentIsHTML ) : - undefined; - - if ( val !== undefined ) { - return val; - } - - return elem.getAttribute( name ); -}; - -find.error = function( msg ) { - throw new Error( "Syntax error, unrecognized expression: " + msg ); -}; - -/** - * Document sorting and removing duplicates - * @param {ArrayLike} results - */ -jQuery.uniqueSort = function( results ) { - var elem, - duplicates = [], - j = 0, - i = 0; - - // Unless we *know* we can detect duplicates, assume their presence - // - // Support: Android <=4.0+ - // Testing for detecting duplicates is unpredictable so instead assume we can't - // depend on duplicate detection in all browsers without a stable sort. - hasDuplicate = !support.sortStable; - sortInput = !support.sortStable && slice.call( results, 0 ); - sort.call( results, sortOrder ); - - if ( hasDuplicate ) { - while ( ( elem = results[ i++ ] ) ) { - if ( elem === results[ i ] ) { - j = duplicates.push( i ); - } - } - while ( j-- ) { - splice.call( results, duplicates[ j ], 1 ); - } - } - - // Clear input after sorting to release objects - // See https://github.com/jquery/sizzle/pull/225 - sortInput = null; - - return results; -}; - -jQuery.fn.uniqueSort = function() { - return this.pushStack( jQuery.uniqueSort( slice.apply( this ) ) ); -}; - -Expr = jQuery.expr = { - - // Can be adjusted by the user - cacheLength: 50, - - createPseudo: markFunction, - - match: matchExpr, - - attrHandle: {}, - - find: {}, - - relative: { - ">": { dir: "parentNode", first: true }, - " ": { dir: "parentNode" }, - "+": { dir: "previousSibling", first: true }, - "~": { dir: "previousSibling" } - }, - - preFilter: { - ATTR: function( match ) { - match[ 1 ] = match[ 1 ].replace( runescape, funescape ); - - // Move the given value to match[3] whether quoted or unquoted - match[ 3 ] = ( match[ 3 ] || match[ 4 ] || match[ 5 ] || "" ) - .replace( runescape, funescape ); - - if ( match[ 2 ] === "~=" ) { - match[ 3 ] = " " + match[ 3 ] + " "; - } - - return match.slice( 0, 4 ); - }, - - CHILD: function( match ) { - - /* matches from matchExpr["CHILD"] - 1 type (only|nth|...) - 2 what (child|of-type) - 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) - 4 xn-component of xn+y argument ([+-]?\d*n|) - 5 sign of xn-component - 6 x of xn-component - 7 sign of y-component - 8 y of y-component - */ - match[ 1 ] = match[ 1 ].toLowerCase(); - - if ( match[ 1 ].slice( 0, 3 ) === "nth" ) { - - // nth-* requires argument - if ( !match[ 3 ] ) { - find.error( match[ 0 ] ); - } - - // numeric x and y parameters for Expr.filter.CHILD - // remember that false/true cast respectively to 0/1 - match[ 4 ] = +( match[ 4 ] ? - match[ 5 ] + ( match[ 6 ] || 1 ) : - 2 * ( match[ 3 ] === "even" || match[ 3 ] === "odd" ) - ); - match[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === "odd" ); - - // other types prohibit arguments - } else if ( match[ 3 ] ) { - find.error( match[ 0 ] ); - } - - return match; - }, - - PSEUDO: function( match ) { - var excess, - unquoted = !match[ 6 ] && match[ 2 ]; - - if ( matchExpr.CHILD.test( match[ 0 ] ) ) { - return null; - } - - // Accept quoted arguments as-is - if ( match[ 3 ] ) { - match[ 2 ] = match[ 4 ] || match[ 5 ] || ""; - - // Strip excess characters from unquoted arguments - } else if ( unquoted && rpseudo.test( unquoted ) && - - // Get excess from tokenize (recursively) - ( excess = tokenize( unquoted, true ) ) && - - // advance to the next closing parenthesis - ( excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length ) ) { - - // excess is a negative index - match[ 0 ] = match[ 0 ].slice( 0, excess ); - match[ 2 ] = unquoted.slice( 0, excess ); - } - - // Return only captures needed by the pseudo filter method (type and argument) - return match.slice( 0, 3 ); - } - }, - - filter: { - - TAG: function( nodeNameSelector ) { - var expectedNodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); - return nodeNameSelector === "*" ? - function() { - return true; - } : - function( elem ) { - return nodeName( elem, expectedNodeName ); - }; - }, - - CLASS: function( className ) { - var pattern = classCache[ className + " " ]; - - return pattern || - ( pattern = new RegExp( "(^|" + whitespace + ")" + className + - "(" + whitespace + "|$)" ) ) && - classCache( className, function( elem ) { - return pattern.test( - typeof elem.className === "string" && elem.className || - typeof elem.getAttribute !== "undefined" && - elem.getAttribute( "class" ) || - "" - ); - } ); - }, - - ATTR: function( name, operator, check ) { - return function( elem ) { - var result = find.attr( elem, name ); - - if ( result == null ) { - return operator === "!="; - } - if ( !operator ) { - return true; - } - - result += ""; - - if ( operator === "=" ) { - return result === check; - } - if ( operator === "!=" ) { - return result !== check; - } - if ( operator === "^=" ) { - return check && result.indexOf( check ) === 0; - } - if ( operator === "*=" ) { - return check && result.indexOf( check ) > -1; - } - if ( operator === "$=" ) { - return check && result.slice( -check.length ) === check; - } - if ( operator === "~=" ) { - return ( " " + result.replace( rwhitespace, " " ) + " " ) - .indexOf( check ) > -1; - } - if ( operator === "|=" ) { - return result === check || result.slice( 0, check.length + 1 ) === check + "-"; - } - - return false; - }; - }, - - CHILD: function( type, what, _argument, first, last ) { - var simple = type.slice( 0, 3 ) !== "nth", - forward = type.slice( -4 ) !== "last", - ofType = what === "of-type"; - - return first === 1 && last === 0 ? - - // Shortcut for :nth-*(n) - function( elem ) { - return !!elem.parentNode; - } : - - function( elem, _context, xml ) { - var cache, outerCache, node, nodeIndex, start, - dir = simple !== forward ? "nextSibling" : "previousSibling", - parent = elem.parentNode, - name = ofType && elem.nodeName.toLowerCase(), - useCache = !xml && !ofType, - diff = false; - - if ( parent ) { - - // :(first|last|only)-(child|of-type) - if ( simple ) { - while ( dir ) { - node = elem; - while ( ( node = node[ dir ] ) ) { - if ( ofType ? - nodeName( node, name ) : - node.nodeType === 1 ) { - - return false; - } - } - - // Reverse direction for :only-* (if we haven't yet done so) - start = dir = type === "only" && !start && "nextSibling"; - } - return true; - } - - start = [ forward ? parent.firstChild : parent.lastChild ]; - - // non-xml :nth-child(...) stores cache data on `parent` - if ( forward && useCache ) { - - // Seek `elem` from a previously-cached index - outerCache = parent[ expando ] || ( parent[ expando ] = {} ); - cache = outerCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex && cache[ 2 ]; - node = nodeIndex && parent.childNodes[ nodeIndex ]; - - while ( ( node = ++nodeIndex && node && node[ dir ] || - - // Fallback to seeking `elem` from the start - ( diff = nodeIndex = 0 ) || start.pop() ) ) { - - // When found, cache indexes on `parent` and break - if ( node.nodeType === 1 && ++diff && node === elem ) { - outerCache[ type ] = [ dirruns, nodeIndex, diff ]; - break; - } - } - - } else { - - // Use previously-cached element index if available - if ( useCache ) { - outerCache = elem[ expando ] || ( elem[ expando ] = {} ); - cache = outerCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex; - } - - // xml :nth-child(...) - // or :nth-last-child(...) or :nth(-last)?-of-type(...) - if ( diff === false ) { - - // Use the same loop as above to seek `elem` from the start - while ( ( node = ++nodeIndex && node && node[ dir ] || - ( diff = nodeIndex = 0 ) || start.pop() ) ) { - - if ( ( ofType ? - nodeName( node, name ) : - node.nodeType === 1 ) && - ++diff ) { - - // Cache the index of each encountered element - if ( useCache ) { - outerCache = node[ expando ] || - ( node[ expando ] = {} ); - outerCache[ type ] = [ dirruns, diff ]; - } - - if ( node === elem ) { - break; - } - } - } - } - } - - // Incorporate the offset, then check against cycle size - diff -= last; - return diff === first || ( diff % first === 0 && diff / first >= 0 ); - } - }; - }, - - PSEUDO: function( pseudo, argument ) { - - // pseudo-class names are case-insensitive - // https://www.w3.org/TR/selectors/#pseudo-classes - // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters - // Remember that setFilters inherits from pseudos - var args, - fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || - find.error( "unsupported pseudo: " + pseudo ); - - // The user may use createPseudo to indicate that - // arguments are needed to create the filter function - // just as jQuery does - if ( fn[ expando ] ) { - return fn( argument ); - } - - // But maintain support for old signatures - if ( fn.length > 1 ) { - args = [ pseudo, pseudo, "", argument ]; - return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? - markFunction( function( seed, matches ) { - var idx, - matched = fn( seed, argument ), - i = matched.length; - while ( i-- ) { - idx = indexOf.call( seed, matched[ i ] ); - seed[ idx ] = !( matches[ idx ] = matched[ i ] ); - } - } ) : - function( elem ) { - return fn( elem, 0, args ); - }; - } - - return fn; - } - }, - - pseudos: { - - // Potentially complex pseudos - not: markFunction( function( selector ) { - - // Trim the selector passed to compile - // to avoid treating leading and trailing - // spaces as combinators - var input = [], - results = [], - matcher = compile( selector.replace( rtrimCSS, "$1" ) ); - - return matcher[ expando ] ? - markFunction( function( seed, matches, _context, xml ) { - var elem, - unmatched = matcher( seed, null, xml, [] ), - i = seed.length; - - // Match elements unmatched by `matcher` - while ( i-- ) { - if ( ( elem = unmatched[ i ] ) ) { - seed[ i ] = !( matches[ i ] = elem ); - } - } - } ) : - function( elem, _context, xml ) { - input[ 0 ] = elem; - matcher( input, null, xml, results ); - - // Don't keep the element - // (see https://github.com/jquery/sizzle/issues/299) - input[ 0 ] = null; - return !results.pop(); - }; - } ), - - has: markFunction( function( selector ) { - return function( elem ) { - return find( selector, elem ).length > 0; - }; - } ), - - contains: markFunction( function( text ) { - text = text.replace( runescape, funescape ); - return function( elem ) { - return ( elem.textContent || jQuery.text( elem ) ).indexOf( text ) > -1; - }; - } ), - - // "Whether an element is represented by a :lang() selector - // is based solely on the element's language value - // being equal to the identifier C, - // or beginning with the identifier C immediately followed by "-". - // The matching of C against the element's language value is performed case-insensitively. - // The identifier C does not have to be a valid language name." - // https://www.w3.org/TR/selectors/#lang-pseudo - lang: markFunction( function( lang ) { - - // lang value must be a valid identifier - if ( !ridentifier.test( lang || "" ) ) { - find.error( "unsupported lang: " + lang ); - } - lang = lang.replace( runescape, funescape ).toLowerCase(); - return function( elem ) { - var elemLang; - do { - if ( ( elemLang = documentIsHTML ? - elem.lang : - elem.getAttribute( "xml:lang" ) || elem.getAttribute( "lang" ) ) ) { - - elemLang = elemLang.toLowerCase(); - return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; - } - } while ( ( elem = elem.parentNode ) && elem.nodeType === 1 ); - return false; - }; - } ), - - // Miscellaneous - target: function( elem ) { - var hash = window.location && window.location.hash; - return hash && hash.slice( 1 ) === elem.id; - }, - - root: function( elem ) { - return elem === documentElement; - }, - - focus: function( elem ) { - return elem === safeActiveElement() && - document.hasFocus() && - !!( elem.type || elem.href || ~elem.tabIndex ); - }, - - // Boolean properties - enabled: createDisabledPseudo( false ), - disabled: createDisabledPseudo( true ), - - checked: function( elem ) { - - // In CSS3, :checked should return both checked and selected elements - // https://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - return ( nodeName( elem, "input" ) && !!elem.checked ) || - ( nodeName( elem, "option" ) && !!elem.selected ); - }, - - selected: function( elem ) { - - // Support: IE <=11+ - // Accessing the selectedIndex property - // forces the browser to treat the default option as - // selected when in an optgroup. - if ( elem.parentNode ) { - // eslint-disable-next-line no-unused-expressions - elem.parentNode.selectedIndex; - } - - return elem.selected === true; - }, - - // Contents - empty: function( elem ) { - - // https://www.w3.org/TR/selectors/#empty-pseudo - // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), - // but not by others (comment: 8; processing instruction: 7; etc.) - // nodeType < 6 works because attributes (2) do not appear as children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - if ( elem.nodeType < 6 ) { - return false; - } - } - return true; - }, - - parent: function( elem ) { - return !Expr.pseudos.empty( elem ); - }, - - // Element/input types - header: function( elem ) { - return rheader.test( elem.nodeName ); - }, - - input: function( elem ) { - return rinputs.test( elem.nodeName ); - }, - - button: function( elem ) { - return nodeName( elem, "input" ) && elem.type === "button" || - nodeName( elem, "button" ); - }, - - text: function( elem ) { - var attr; - return nodeName( elem, "input" ) && elem.type === "text" && - - // Support: IE <10 only - // New HTML5 attribute values (e.g., "search") appear - // with elem.type === "text" - ( ( attr = elem.getAttribute( "type" ) ) == null || - attr.toLowerCase() === "text" ); - }, - - // Position-in-collection - first: createPositionalPseudo( function() { - return [ 0 ]; - } ), - - last: createPositionalPseudo( function( _matchIndexes, length ) { - return [ length - 1 ]; - } ), - - eq: createPositionalPseudo( function( _matchIndexes, length, argument ) { - return [ argument < 0 ? argument + length : argument ]; - } ), - - even: createPositionalPseudo( function( matchIndexes, length ) { - var i = 0; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - odd: createPositionalPseudo( function( matchIndexes, length ) { - var i = 1; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - lt: createPositionalPseudo( function( matchIndexes, length, argument ) { - var i; - - if ( argument < 0 ) { - i = argument + length; - } else if ( argument > length ) { - i = length; - } else { - i = argument; - } - - for ( ; --i >= 0; ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - gt: createPositionalPseudo( function( matchIndexes, length, argument ) { - var i = argument < 0 ? argument + length : argument; - for ( ; ++i < length; ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ) - } -}; - -Expr.pseudos.nth = Expr.pseudos.eq; - -// Add button/input type pseudos -for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { - Expr.pseudos[ i ] = createInputPseudo( i ); -} -for ( i in { submit: true, reset: true } ) { - Expr.pseudos[ i ] = createButtonPseudo( i ); -} - -// Easy API for creating new setFilters -function setFilters() {} -setFilters.prototype = Expr.filters = Expr.pseudos; -Expr.setFilters = new setFilters(); - -function tokenize( selector, parseOnly ) { - var matched, match, tokens, type, - soFar, groups, preFilters, - cached = tokenCache[ selector + " " ]; - - if ( cached ) { - return parseOnly ? 0 : cached.slice( 0 ); - } - - soFar = selector; - groups = []; - preFilters = Expr.preFilter; - - while ( soFar ) { - - // Comma and first run - if ( !matched || ( match = rcomma.exec( soFar ) ) ) { - if ( match ) { - - // Don't consume trailing commas as valid - soFar = soFar.slice( match[ 0 ].length ) || soFar; - } - groups.push( ( tokens = [] ) ); - } - - matched = false; - - // Combinators - if ( ( match = rleadingCombinator.exec( soFar ) ) ) { - matched = match.shift(); - tokens.push( { - value: matched, - - // Cast descendant combinators to space - type: match[ 0 ].replace( rtrimCSS, " " ) - } ); - soFar = soFar.slice( matched.length ); - } - - // Filters - for ( type in Expr.filter ) { - if ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] || - ( match = preFilters[ type ]( match ) ) ) ) { - matched = match.shift(); - tokens.push( { - value: matched, - type: type, - matches: match - } ); - soFar = soFar.slice( matched.length ); - } - } - - if ( !matched ) { - break; - } - } - - // Return the length of the invalid excess - // if we're just parsing - // Otherwise, throw an error or return tokens - if ( parseOnly ) { - return soFar.length; - } - - return soFar ? - find.error( selector ) : - - // Cache the tokens - tokenCache( selector, groups ).slice( 0 ); -} - -function toSelector( tokens ) { - var i = 0, - len = tokens.length, - selector = ""; - for ( ; i < len; i++ ) { - selector += tokens[ i ].value; - } - return selector; -} - -function addCombinator( matcher, combinator, base ) { - var dir = combinator.dir, - skip = combinator.next, - key = skip || dir, - checkNonElements = base && key === "parentNode", - doneName = done++; - - return combinator.first ? - - // Check against closest ancestor/preceding element - function( elem, context, xml ) { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - return matcher( elem, context, xml ); - } - } - return false; - } : - - // Check against all ancestor/preceding elements - function( elem, context, xml ) { - var oldCache, outerCache, - newCache = [ dirruns, doneName ]; - - // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching - if ( xml ) { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - if ( matcher( elem, context, xml ) ) { - return true; - } - } - } - } else { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - outerCache = elem[ expando ] || ( elem[ expando ] = {} ); - - if ( skip && nodeName( elem, skip ) ) { - elem = elem[ dir ] || elem; - } else if ( ( oldCache = outerCache[ key ] ) && - oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { - - // Assign to newCache so results back-propagate to previous elements - return ( newCache[ 2 ] = oldCache[ 2 ] ); - } else { - - // Reuse newcache so results back-propagate to previous elements - outerCache[ key ] = newCache; - - // A match means we're done; a fail means we have to keep checking - if ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) { - return true; - } - } - } - } - } - return false; - }; -} - -function elementMatcher( matchers ) { - return matchers.length > 1 ? - function( elem, context, xml ) { - var i = matchers.length; - while ( i-- ) { - if ( !matchers[ i ]( elem, context, xml ) ) { - return false; - } - } - return true; - } : - matchers[ 0 ]; -} - -function multipleContexts( selector, contexts, results ) { - var i = 0, - len = contexts.length; - for ( ; i < len; i++ ) { - find( selector, contexts[ i ], results ); - } - return results; -} - -function condense( unmatched, map, filter, context, xml ) { - var elem, - newUnmatched = [], - i = 0, - len = unmatched.length, - mapped = map != null; - - for ( ; i < len; i++ ) { - if ( ( elem = unmatched[ i ] ) ) { - if ( !filter || filter( elem, context, xml ) ) { - newUnmatched.push( elem ); - if ( mapped ) { - map.push( i ); - } - } - } - } - - return newUnmatched; -} - -function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { - if ( postFilter && !postFilter[ expando ] ) { - postFilter = setMatcher( postFilter ); - } - if ( postFinder && !postFinder[ expando ] ) { - postFinder = setMatcher( postFinder, postSelector ); - } - return markFunction( function( seed, results, context, xml ) { - var temp, i, elem, matcherOut, - preMap = [], - postMap = [], - preexisting = results.length, - - // Get initial elements from seed or context - elems = seed || - multipleContexts( selector || "*", - context.nodeType ? [ context ] : context, [] ), - - // Prefilter to get matcher input, preserving a map for seed-results synchronization - matcherIn = preFilter && ( seed || !selector ) ? - condense( elems, preMap, preFilter, context, xml ) : - elems; - - if ( matcher ) { - - // If we have a postFinder, or filtered seed, or non-seed postFilter - // or preexisting results, - matcherOut = postFinder || ( seed ? preFilter : preexisting || postFilter ) ? - - // ...intermediate processing is necessary - [] : - - // ...otherwise use results directly - results; - - // Find primary matches - matcher( matcherIn, matcherOut, context, xml ); - } else { - matcherOut = matcherIn; - } - - // Apply postFilter - if ( postFilter ) { - temp = condense( matcherOut, postMap ); - postFilter( temp, [], context, xml ); - - // Un-match failing elements by moving them back to matcherIn - i = temp.length; - while ( i-- ) { - if ( ( elem = temp[ i ] ) ) { - matcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem ); - } - } - } - - if ( seed ) { - if ( postFinder || preFilter ) { - if ( postFinder ) { - - // Get the final matcherOut by condensing this intermediate into postFinder contexts - temp = []; - i = matcherOut.length; - while ( i-- ) { - if ( ( elem = matcherOut[ i ] ) ) { - - // Restore matcherIn since elem is not yet a final match - temp.push( ( matcherIn[ i ] = elem ) ); - } - } - postFinder( null, ( matcherOut = [] ), temp, xml ); - } - - // Move matched elements from seed to results to keep them synchronized - i = matcherOut.length; - while ( i-- ) { - if ( ( elem = matcherOut[ i ] ) && - ( temp = postFinder ? indexOf.call( seed, elem ) : preMap[ i ] ) > -1 ) { - - seed[ temp ] = !( results[ temp ] = elem ); - } - } - } - - // Add elements to results, through postFinder if defined - } else { - matcherOut = condense( - matcherOut === results ? - matcherOut.splice( preexisting, matcherOut.length ) : - matcherOut - ); - if ( postFinder ) { - postFinder( null, results, matcherOut, xml ); - } else { - push.apply( results, matcherOut ); - } - } - } ); -} - -function matcherFromTokens( tokens ) { - var checkContext, matcher, j, - len = tokens.length, - leadingRelative = Expr.relative[ tokens[ 0 ].type ], - implicitRelative = leadingRelative || Expr.relative[ " " ], - i = leadingRelative ? 1 : 0, - - // The foundational matcher ensures that elements are reachable from top-level context(s) - matchContext = addCombinator( function( elem ) { - return elem === checkContext; - }, implicitRelative, true ), - matchAnyContext = addCombinator( function( elem ) { - return indexOf.call( checkContext, elem ) > -1; - }, implicitRelative, true ), - matchers = [ function( elem, context, xml ) { - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - var ret = ( !leadingRelative && ( xml || context != outermostContext ) ) || ( - ( checkContext = context ).nodeType ? - matchContext( elem, context, xml ) : - matchAnyContext( elem, context, xml ) ); - - // Avoid hanging onto element - // (see https://github.com/jquery/sizzle/issues/299) - checkContext = null; - return ret; - } ]; - - for ( ; i < len; i++ ) { - if ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) { - matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ]; - } else { - matcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches ); - - // Return special upon seeing a positional matcher - if ( matcher[ expando ] ) { - - // Find the next relative operator (if any) for proper handling - j = ++i; - for ( ; j < len; j++ ) { - if ( Expr.relative[ tokens[ j ].type ] ) { - break; - } - } - return setMatcher( - i > 1 && elementMatcher( matchers ), - i > 1 && toSelector( - - // If the preceding token was a descendant combinator, insert an implicit any-element `*` - tokens.slice( 0, i - 1 ) - .concat( { value: tokens[ i - 2 ].type === " " ? "*" : "" } ) - ).replace( rtrimCSS, "$1" ), - matcher, - i < j && matcherFromTokens( tokens.slice( i, j ) ), - j < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ), - j < len && toSelector( tokens ) - ); - } - matchers.push( matcher ); - } - } - - return elementMatcher( matchers ); -} - -function matcherFromGroupMatchers( elementMatchers, setMatchers ) { - var bySet = setMatchers.length > 0, - byElement = elementMatchers.length > 0, - superMatcher = function( seed, context, xml, results, outermost ) { - var elem, j, matcher, - matchedCount = 0, - i = "0", - unmatched = seed && [], - setMatched = [], - contextBackup = outermostContext, - - // We must always have either seed elements or outermost context - elems = seed || byElement && Expr.find.TAG( "*", outermost ), - - // Use integer dirruns iff this is the outermost matcher - dirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ), - len = elems.length; - - if ( outermost ) { - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - outermostContext = context == document || context || outermost; - } - - // Add elements passing elementMatchers directly to results - // Support: iOS <=7 - 9 only - // Tolerate NodeList properties (IE: "length"; Safari: ) matching - // elements by id. (see trac-14142) - for ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) { - if ( byElement && elem ) { - j = 0; - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( !context && elem.ownerDocument != document ) { - setDocument( elem ); - xml = !documentIsHTML; - } - while ( ( matcher = elementMatchers[ j++ ] ) ) { - if ( matcher( elem, context || document, xml ) ) { - push.call( results, elem ); - break; - } - } - if ( outermost ) { - dirruns = dirrunsUnique; - } - } - - // Track unmatched elements for set filters - if ( bySet ) { - - // They will have gone through all possible matchers - if ( ( elem = !matcher && elem ) ) { - matchedCount--; - } - - // Lengthen the array for every element, matched or not - if ( seed ) { - unmatched.push( elem ); - } - } - } - - // `i` is now the count of elements visited above, and adding it to `matchedCount` - // makes the latter nonnegative. - matchedCount += i; - - // Apply set filters to unmatched elements - // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` - // equals `i`), unless we didn't visit _any_ elements in the above loop because we have - // no element matchers and no seed. - // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that - // case, which will result in a "00" `matchedCount` that differs from `i` but is also - // numerically zero. - if ( bySet && i !== matchedCount ) { - j = 0; - while ( ( matcher = setMatchers[ j++ ] ) ) { - matcher( unmatched, setMatched, context, xml ); - } - - if ( seed ) { - - // Reintegrate element matches to eliminate the need for sorting - if ( matchedCount > 0 ) { - while ( i-- ) { - if ( !( unmatched[ i ] || setMatched[ i ] ) ) { - setMatched[ i ] = pop.call( results ); - } - } - } - - // Discard index placeholder values to get only actual matches - setMatched = condense( setMatched ); - } - - // Add matches to results - push.apply( results, setMatched ); - - // Seedless set matches succeeding multiple successful matchers stipulate sorting - if ( outermost && !seed && setMatched.length > 0 && - ( matchedCount + setMatchers.length ) > 1 ) { - - jQuery.uniqueSort( results ); - } - } - - // Override manipulation of globals by nested matchers - if ( outermost ) { - dirruns = dirrunsUnique; - outermostContext = contextBackup; - } - - return unmatched; - }; - - return bySet ? - markFunction( superMatcher ) : - superMatcher; -} - -function compile( selector, match /* Internal Use Only */ ) { - var i, - setMatchers = [], - elementMatchers = [], - cached = compilerCache[ selector + " " ]; - - if ( !cached ) { - - // Generate a function of recursive functions that can be used to check each element - if ( !match ) { - match = tokenize( selector ); - } - i = match.length; - while ( i-- ) { - cached = matcherFromTokens( match[ i ] ); - if ( cached[ expando ] ) { - setMatchers.push( cached ); - } else { - elementMatchers.push( cached ); - } - } - - // Cache the compiled function - cached = compilerCache( selector, - matcherFromGroupMatchers( elementMatchers, setMatchers ) ); - - // Save selector and tokenization - cached.selector = selector; - } - return cached; -} - -/** - * A low-level selection function that works with jQuery's compiled - * selector functions - * @param {String|Function} selector A selector or a pre-compiled - * selector function built with jQuery selector compile - * @param {Element} context - * @param {Array} [results] - * @param {Array} [seed] A set of elements to match against - */ -function select( selector, context, results, seed ) { - var i, tokens, token, type, find, - compiled = typeof selector === "function" && selector, - match = !seed && tokenize( ( selector = compiled.selector || selector ) ); - - results = results || []; - - // Try to minimize operations if there is only one selector in the list and no seed - // (the latter of which guarantees us context) - if ( match.length === 1 ) { - - // Reduce context if the leading compound selector is an ID - tokens = match[ 0 ] = match[ 0 ].slice( 0 ); - if ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === "ID" && - context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) { - - context = ( Expr.find.ID( - token.matches[ 0 ].replace( runescape, funescape ), - context - ) || [] )[ 0 ]; - if ( !context ) { - return results; - - // Precompiled matchers will still verify ancestry, so step up a level - } else if ( compiled ) { - context = context.parentNode; - } - - selector = selector.slice( tokens.shift().value.length ); - } - - // Fetch a seed set for right-to-left matching - i = matchExpr.needsContext.test( selector ) ? 0 : tokens.length; - while ( i-- ) { - token = tokens[ i ]; - - // Abort if we hit a combinator - if ( Expr.relative[ ( type = token.type ) ] ) { - break; - } - if ( ( find = Expr.find[ type ] ) ) { - - // Search, expanding context for leading sibling combinators - if ( ( seed = find( - token.matches[ 0 ].replace( runescape, funescape ), - rsibling.test( tokens[ 0 ].type ) && - testContext( context.parentNode ) || context - ) ) ) { - - // If seed is empty or no tokens remain, we can return early - tokens.splice( i, 1 ); - selector = seed.length && toSelector( tokens ); - if ( !selector ) { - push.apply( results, seed ); - return results; - } - - break; - } - } - } - } - - // Compile and execute a filtering function if one is not provided - // Provide `match` to avoid retokenization if we modified the selector above - ( compiled || compile( selector, match ) )( - seed, - context, - !documentIsHTML, - results, - !context || rsibling.test( selector ) && testContext( context.parentNode ) || context - ); - return results; -} - -// One-time assignments - -// Support: Android <=4.0 - 4.1+ -// Sort stability -support.sortStable = expando.split( "" ).sort( sortOrder ).join( "" ) === expando; - -// Initialize against the default document -setDocument(); - -// Support: Android <=4.0 - 4.1+ -// Detached nodes confoundingly follow *each other* -support.sortDetached = assert( function( el ) { - - // Should return 1, but returns 4 (following) - return el.compareDocumentPosition( document.createElement( "fieldset" ) ) & 1; -} ); - -jQuery.find = find; - -// Deprecated -jQuery.expr[ ":" ] = jQuery.expr.pseudos; -jQuery.unique = jQuery.uniqueSort; - -// These have always been private, but they used to be documented as part of -// Sizzle so let's maintain them for now for backwards compatibility purposes. -find.compile = compile; -find.select = select; -find.setDocument = setDocument; -find.tokenize = tokenize; - -find.escape = jQuery.escapeSelector; -find.getText = jQuery.text; -find.isXML = jQuery.isXMLDoc; -find.selectors = jQuery.expr; -find.support = jQuery.support; -find.uniqueSort = jQuery.uniqueSort; - - /* eslint-enable */ - -} )(); - - -var dir = function( elem, dir, until ) { - var matched = [], - truncate = until !== undefined; - - while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { - if ( elem.nodeType === 1 ) { - if ( truncate && jQuery( elem ).is( until ) ) { - break; - } - matched.push( elem ); - } - } - return matched; -}; - - -var siblings = function( n, elem ) { - var matched = []; - - for ( ; n; n = n.nextSibling ) { - if ( n.nodeType === 1 && n !== elem ) { - matched.push( n ); - } - } - - return matched; -}; - - -var rneedsContext = jQuery.expr.match.needsContext; - -var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); - - - -// Implement the identical functionality for filter and not -function winnow( elements, qualifier, not ) { - if ( isFunction( qualifier ) ) { - return jQuery.grep( elements, function( elem, i ) { - return !!qualifier.call( elem, i, elem ) !== not; - } ); - } - - // Single element - if ( qualifier.nodeType ) { - return jQuery.grep( elements, function( elem ) { - return ( elem === qualifier ) !== not; - } ); - } - - // Arraylike of elements (jQuery, arguments, Array) - if ( typeof qualifier !== "string" ) { - return jQuery.grep( elements, function( elem ) { - return ( indexOf.call( qualifier, elem ) > -1 ) !== not; - } ); - } - - // Filtered directly for both simple and complex selectors - return jQuery.filter( qualifier, elements, not ); -} - -jQuery.filter = function( expr, elems, not ) { - var elem = elems[ 0 ]; - - if ( not ) { - expr = ":not(" + expr + ")"; - } - - if ( elems.length === 1 && elem.nodeType === 1 ) { - return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; - } - - return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { - return elem.nodeType === 1; - } ) ); -}; - -jQuery.fn.extend( { - find: function( selector ) { - var i, ret, - len = this.length, - self = this; - - if ( typeof selector !== "string" ) { - return this.pushStack( jQuery( selector ).filter( function() { - for ( i = 0; i < len; i++ ) { - if ( jQuery.contains( self[ i ], this ) ) { - return true; - } - } - } ) ); - } - - ret = this.pushStack( [] ); - - for ( i = 0; i < len; i++ ) { - jQuery.find( selector, self[ i ], ret ); - } - - return len > 1 ? jQuery.uniqueSort( ret ) : ret; - }, - filter: function( selector ) { - return this.pushStack( winnow( this, selector || [], false ) ); - }, - not: function( selector ) { - return this.pushStack( winnow( this, selector || [], true ) ); - }, - is: function( selector ) { - return !!winnow( - this, - - // If this is a positional/relative selector, check membership in the returned set - // so $("p:first").is("p:last") won't return true for a doc with two "p". - typeof selector === "string" && rneedsContext.test( selector ) ? - jQuery( selector ) : - selector || [], - false - ).length; - } -} ); - - -// Initialize a jQuery object - - -// A central reference to the root jQuery(document) -var rootjQuery, - - // A simple way to check for HTML strings - // Prioritize #id over to avoid XSS via location.hash (trac-9521) - // Strict HTML recognition (trac-11290: must start with <) - // Shortcut simple #id case for speed - rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, - - init = jQuery.fn.init = function( selector, context, root ) { - var match, elem; - - // HANDLE: $(""), $(null), $(undefined), $(false) - if ( !selector ) { - return this; - } - - // Method init() accepts an alternate rootjQuery - // so migrate can support jQuery.sub (gh-2101) - root = root || rootjQuery; - - // Handle HTML strings - if ( typeof selector === "string" ) { - if ( selector[ 0 ] === "<" && - selector[ selector.length - 1 ] === ">" && - selector.length >= 3 ) { - - // Assume that strings that start and end with <> are HTML and skip the regex check - match = [ null, selector, null ]; - - } else { - match = rquickExpr.exec( selector ); - } - - // Match html or make sure no context is specified for #id - if ( match && ( match[ 1 ] || !context ) ) { - - // HANDLE: $(html) -> $(array) - if ( match[ 1 ] ) { - context = context instanceof jQuery ? context[ 0 ] : context; - - // Option to run scripts is true for back-compat - // Intentionally let the error be thrown if parseHTML is not present - jQuery.merge( this, jQuery.parseHTML( - match[ 1 ], - context && context.nodeType ? context.ownerDocument || context : document, - true - ) ); - - // HANDLE: $(html, props) - if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { - for ( match in context ) { - - // Properties of context are called as methods if possible - if ( isFunction( this[ match ] ) ) { - this[ match ]( context[ match ] ); - - // ...and otherwise set as attributes - } else { - this.attr( match, context[ match ] ); - } - } - } - - return this; - - // HANDLE: $(#id) - } else { - elem = document.getElementById( match[ 2 ] ); - - if ( elem ) { - - // Inject the element directly into the jQuery object - this[ 0 ] = elem; - this.length = 1; - } - return this; - } - - // HANDLE: $(expr, $(...)) - } else if ( !context || context.jquery ) { - return ( context || root ).find( selector ); - - // HANDLE: $(expr, context) - // (which is just equivalent to: $(context).find(expr) - } else { - return this.constructor( context ).find( selector ); - } - - // HANDLE: $(DOMElement) - } else if ( selector.nodeType ) { - this[ 0 ] = selector; - this.length = 1; - return this; - - // HANDLE: $(function) - // Shortcut for document ready - } else if ( isFunction( selector ) ) { - return root.ready !== undefined ? - root.ready( selector ) : - - // Execute immediately if ready is not present - selector( jQuery ); - } - - return jQuery.makeArray( selector, this ); - }; - -// Give the init function the jQuery prototype for later instantiation -init.prototype = jQuery.fn; - -// Initialize central reference -rootjQuery = jQuery( document ); - - -var rparentsprev = /^(?:parents|prev(?:Until|All))/, - - // Methods guaranteed to produce a unique set when starting from a unique set - guaranteedUnique = { - children: true, - contents: true, - next: true, - prev: true - }; - -jQuery.fn.extend( { - has: function( target ) { - var targets = jQuery( target, this ), - l = targets.length; - - return this.filter( function() { - var i = 0; - for ( ; i < l; i++ ) { - if ( jQuery.contains( this, targets[ i ] ) ) { - return true; - } - } - } ); - }, - - closest: function( selectors, context ) { - var cur, - i = 0, - l = this.length, - matched = [], - targets = typeof selectors !== "string" && jQuery( selectors ); - - // Positional selectors never match, since there's no _selection_ context - if ( !rneedsContext.test( selectors ) ) { - for ( ; i < l; i++ ) { - for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { - - // Always skip document fragments - if ( cur.nodeType < 11 && ( targets ? - targets.index( cur ) > -1 : - - // Don't pass non-elements to jQuery#find - cur.nodeType === 1 && - jQuery.find.matchesSelector( cur, selectors ) ) ) { - - matched.push( cur ); - break; - } - } - } - } - - return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); - }, - - // Determine the position of an element within the set - index: function( elem ) { - - // No argument, return index in parent - if ( !elem ) { - return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; - } - - // Index in selector - if ( typeof elem === "string" ) { - return indexOf.call( jQuery( elem ), this[ 0 ] ); - } - - // Locate the position of the desired element - return indexOf.call( this, - - // If it receives a jQuery object, the first element is used - elem.jquery ? elem[ 0 ] : elem - ); - }, - - add: function( selector, context ) { - return this.pushStack( - jQuery.uniqueSort( - jQuery.merge( this.get(), jQuery( selector, context ) ) - ) - ); - }, - - addBack: function( selector ) { - return this.add( selector == null ? - this.prevObject : this.prevObject.filter( selector ) - ); - } -} ); - -function sibling( cur, dir ) { - while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} - return cur; -} - -jQuery.each( { - parent: function( elem ) { - var parent = elem.parentNode; - return parent && parent.nodeType !== 11 ? parent : null; - }, - parents: function( elem ) { - return dir( elem, "parentNode" ); - }, - parentsUntil: function( elem, _i, until ) { - return dir( elem, "parentNode", until ); - }, - next: function( elem ) { - return sibling( elem, "nextSibling" ); - }, - prev: function( elem ) { - return sibling( elem, "previousSibling" ); - }, - nextAll: function( elem ) { - return dir( elem, "nextSibling" ); - }, - prevAll: function( elem ) { - return dir( elem, "previousSibling" ); - }, - nextUntil: function( elem, _i, until ) { - return dir( elem, "nextSibling", until ); - }, - prevUntil: function( elem, _i, until ) { - return dir( elem, "previousSibling", until ); - }, - siblings: function( elem ) { - return siblings( ( elem.parentNode || {} ).firstChild, elem ); - }, - children: function( elem ) { - return siblings( elem.firstChild ); - }, - contents: function( elem ) { - if ( elem.contentDocument != null && - - // Support: IE 11+ - // elements with no `data` attribute has an object - // `contentDocument` with a `null` prototype. - getProto( elem.contentDocument ) ) { - - return elem.contentDocument; - } - - // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only - // Treat the template element as a regular one in browsers that - // don't support it. - if ( nodeName( elem, "template" ) ) { - elem = elem.content || elem; - } - - return jQuery.merge( [], elem.childNodes ); - } -}, function( name, fn ) { - jQuery.fn[ name ] = function( until, selector ) { - var matched = jQuery.map( this, fn, until ); - - if ( name.slice( -5 ) !== "Until" ) { - selector = until; - } - - if ( selector && typeof selector === "string" ) { - matched = jQuery.filter( selector, matched ); - } - - if ( this.length > 1 ) { - - // Remove duplicates - if ( !guaranteedUnique[ name ] ) { - jQuery.uniqueSort( matched ); - } - - // Reverse order for parents* and prev-derivatives - if ( rparentsprev.test( name ) ) { - matched.reverse(); - } - } - - return this.pushStack( matched ); - }; -} ); -var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); - - - -// Convert String-formatted options into Object-formatted ones -function createOptions( options ) { - var object = {}; - jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { - object[ flag ] = true; - } ); - return object; -} - -/* - * Create a callback list using the following parameters: - * - * options: an optional list of space-separated options that will change how - * the callback list behaves or a more traditional option object - * - * By default a callback list will act like an event callback list and can be - * "fired" multiple times. - * - * Possible options: - * - * once: will ensure the callback list can only be fired once (like a Deferred) - * - * memory: will keep track of previous values and will call any callback added - * after the list has been fired right away with the latest "memorized" - * values (like a Deferred) - * - * unique: will ensure a callback can only be added once (no duplicate in the list) - * - * stopOnFalse: interrupt callings when a callback returns false - * - */ -jQuery.Callbacks = function( options ) { - - // Convert options from String-formatted to Object-formatted if needed - // (we check in cache first) - options = typeof options === "string" ? - createOptions( options ) : - jQuery.extend( {}, options ); - - var // Flag to know if list is currently firing - firing, - - // Last fire value for non-forgettable lists - memory, - - // Flag to know if list was already fired - fired, - - // Flag to prevent firing - locked, - - // Actual callback list - list = [], - - // Queue of execution data for repeatable lists - queue = [], - - // Index of currently firing callback (modified by add/remove as needed) - firingIndex = -1, - - // Fire callbacks - fire = function() { - - // Enforce single-firing - locked = locked || options.once; - - // Execute callbacks for all pending executions, - // respecting firingIndex overrides and runtime changes - fired = firing = true; - for ( ; queue.length; firingIndex = -1 ) { - memory = queue.shift(); - while ( ++firingIndex < list.length ) { - - // Run callback and check for early termination - if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && - options.stopOnFalse ) { - - // Jump to end and forget the data so .add doesn't re-fire - firingIndex = list.length; - memory = false; - } - } - } - - // Forget the data if we're done with it - if ( !options.memory ) { - memory = false; - } - - firing = false; - - // Clean up if we're done firing for good - if ( locked ) { - - // Keep an empty list if we have data for future add calls - if ( memory ) { - list = []; - - // Otherwise, this object is spent - } else { - list = ""; - } - } - }, - - // Actual Callbacks object - self = { - - // Add a callback or a collection of callbacks to the list - add: function() { - if ( list ) { - - // If we have memory from a past run, we should fire after adding - if ( memory && !firing ) { - firingIndex = list.length - 1; - queue.push( memory ); - } - - ( function add( args ) { - jQuery.each( args, function( _, arg ) { - if ( isFunction( arg ) ) { - if ( !options.unique || !self.has( arg ) ) { - list.push( arg ); - } - } else if ( arg && arg.length && toType( arg ) !== "string" ) { - - // Inspect recursively - add( arg ); - } - } ); - } )( arguments ); - - if ( memory && !firing ) { - fire(); - } - } - return this; - }, - - // Remove a callback from the list - remove: function() { - jQuery.each( arguments, function( _, arg ) { - var index; - while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { - list.splice( index, 1 ); - - // Handle firing indexes - if ( index <= firingIndex ) { - firingIndex--; - } - } - } ); - return this; - }, - - // Check if a given callback is in the list. - // If no argument is given, return whether or not list has callbacks attached. - has: function( fn ) { - return fn ? - jQuery.inArray( fn, list ) > -1 : - list.length > 0; - }, - - // Remove all callbacks from the list - empty: function() { - if ( list ) { - list = []; - } - return this; - }, - - // Disable .fire and .add - // Abort any current/pending executions - // Clear all callbacks and values - disable: function() { - locked = queue = []; - list = memory = ""; - return this; - }, - disabled: function() { - return !list; - }, - - // Disable .fire - // Also disable .add unless we have memory (since it would have no effect) - // Abort any pending executions - lock: function() { - locked = queue = []; - if ( !memory && !firing ) { - list = memory = ""; - } - return this; - }, - locked: function() { - return !!locked; - }, - - // Call all callbacks with the given context and arguments - fireWith: function( context, args ) { - if ( !locked ) { - args = args || []; - args = [ context, args.slice ? args.slice() : args ]; - queue.push( args ); - if ( !firing ) { - fire(); - } - } - return this; - }, - - // Call all the callbacks with the given arguments - fire: function() { - self.fireWith( this, arguments ); - return this; - }, - - // To know if the callbacks have already been called at least once - fired: function() { - return !!fired; - } - }; - - return self; -}; - - -function Identity( v ) { - return v; -} -function Thrower( ex ) { - throw ex; -} - -function adoptValue( value, resolve, reject, noValue ) { - var method; - - try { - - // Check for promise aspect first to privilege synchronous behavior - if ( value && isFunction( ( method = value.promise ) ) ) { - method.call( value ).done( resolve ).fail( reject ); - - // Other thenables - } else if ( value && isFunction( ( method = value.then ) ) ) { - method.call( value, resolve, reject ); - - // Other non-thenables - } else { - - // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: - // * false: [ value ].slice( 0 ) => resolve( value ) - // * true: [ value ].slice( 1 ) => resolve() - resolve.apply( undefined, [ value ].slice( noValue ) ); - } - - // For Promises/A+, convert exceptions into rejections - // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in - // Deferred#then to conditionally suppress rejection. - } catch ( value ) { - - // Support: Android 4.0 only - // Strict mode functions invoked without .call/.apply get global-object context - reject.apply( undefined, [ value ] ); - } -} - -jQuery.extend( { - - Deferred: function( func ) { - var tuples = [ - - // action, add listener, callbacks, - // ... .then handlers, argument index, [final state] - [ "notify", "progress", jQuery.Callbacks( "memory" ), - jQuery.Callbacks( "memory" ), 2 ], - [ "resolve", "done", jQuery.Callbacks( "once memory" ), - jQuery.Callbacks( "once memory" ), 0, "resolved" ], - [ "reject", "fail", jQuery.Callbacks( "once memory" ), - jQuery.Callbacks( "once memory" ), 1, "rejected" ] - ], - state = "pending", - promise = { - state: function() { - return state; - }, - always: function() { - deferred.done( arguments ).fail( arguments ); - return this; - }, - "catch": function( fn ) { - return promise.then( null, fn ); - }, - - // Keep pipe for back-compat - pipe: function( /* fnDone, fnFail, fnProgress */ ) { - var fns = arguments; - - return jQuery.Deferred( function( newDefer ) { - jQuery.each( tuples, function( _i, tuple ) { - - // Map tuples (progress, done, fail) to arguments (done, fail, progress) - var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; - - // deferred.progress(function() { bind to newDefer or newDefer.notify }) - // deferred.done(function() { bind to newDefer or newDefer.resolve }) - // deferred.fail(function() { bind to newDefer or newDefer.reject }) - deferred[ tuple[ 1 ] ]( function() { - var returned = fn && fn.apply( this, arguments ); - if ( returned && isFunction( returned.promise ) ) { - returned.promise() - .progress( newDefer.notify ) - .done( newDefer.resolve ) - .fail( newDefer.reject ); - } else { - newDefer[ tuple[ 0 ] + "With" ]( - this, - fn ? [ returned ] : arguments - ); - } - } ); - } ); - fns = null; - } ).promise(); - }, - then: function( onFulfilled, onRejected, onProgress ) { - var maxDepth = 0; - function resolve( depth, deferred, handler, special ) { - return function() { - var that = this, - args = arguments, - mightThrow = function() { - var returned, then; - - // Support: Promises/A+ section 2.3.3.3.3 - // https://promisesaplus.com/#point-59 - // Ignore double-resolution attempts - if ( depth < maxDepth ) { - return; - } - - returned = handler.apply( that, args ); - - // Support: Promises/A+ section 2.3.1 - // https://promisesaplus.com/#point-48 - if ( returned === deferred.promise() ) { - throw new TypeError( "Thenable self-resolution" ); - } - - // Support: Promises/A+ sections 2.3.3.1, 3.5 - // https://promisesaplus.com/#point-54 - // https://promisesaplus.com/#point-75 - // Retrieve `then` only once - then = returned && - - // Support: Promises/A+ section 2.3.4 - // https://promisesaplus.com/#point-64 - // Only check objects and functions for thenability - ( typeof returned === "object" || - typeof returned === "function" ) && - returned.then; - - // Handle a returned thenable - if ( isFunction( then ) ) { - - // Special processors (notify) just wait for resolution - if ( special ) { - then.call( - returned, - resolve( maxDepth, deferred, Identity, special ), - resolve( maxDepth, deferred, Thrower, special ) - ); - - // Normal processors (resolve) also hook into progress - } else { - - // ...and disregard older resolution values - maxDepth++; - - then.call( - returned, - resolve( maxDepth, deferred, Identity, special ), - resolve( maxDepth, deferred, Thrower, special ), - resolve( maxDepth, deferred, Identity, - deferred.notifyWith ) - ); - } - - // Handle all other returned values - } else { - - // Only substitute handlers pass on context - // and multiple values (non-spec behavior) - if ( handler !== Identity ) { - that = undefined; - args = [ returned ]; - } - - // Process the value(s) - // Default process is resolve - ( special || deferred.resolveWith )( that, args ); - } - }, - - // Only normal processors (resolve) catch and reject exceptions - process = special ? - mightThrow : - function() { - try { - mightThrow(); - } catch ( e ) { - - if ( jQuery.Deferred.exceptionHook ) { - jQuery.Deferred.exceptionHook( e, - process.error ); - } - - // Support: Promises/A+ section 2.3.3.3.4.1 - // https://promisesaplus.com/#point-61 - // Ignore post-resolution exceptions - if ( depth + 1 >= maxDepth ) { - - // Only substitute handlers pass on context - // and multiple values (non-spec behavior) - if ( handler !== Thrower ) { - that = undefined; - args = [ e ]; - } - - deferred.rejectWith( that, args ); - } - } - }; - - // Support: Promises/A+ section 2.3.3.3.1 - // https://promisesaplus.com/#point-57 - // Re-resolve promises immediately to dodge false rejection from - // subsequent errors - if ( depth ) { - process(); - } else { - - // Call an optional hook to record the error, in case of exception - // since it's otherwise lost when execution goes async - if ( jQuery.Deferred.getErrorHook ) { - process.error = jQuery.Deferred.getErrorHook(); - - // The deprecated alias of the above. While the name suggests - // returning the stack, not an error instance, jQuery just passes - // it directly to `console.warn` so both will work; an instance - // just better cooperates with source maps. - } else if ( jQuery.Deferred.getStackHook ) { - process.error = jQuery.Deferred.getStackHook(); - } - window.setTimeout( process ); - } - }; - } - - return jQuery.Deferred( function( newDefer ) { - - // progress_handlers.add( ... ) - tuples[ 0 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onProgress ) ? - onProgress : - Identity, - newDefer.notifyWith - ) - ); - - // fulfilled_handlers.add( ... ) - tuples[ 1 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onFulfilled ) ? - onFulfilled : - Identity - ) - ); - - // rejected_handlers.add( ... ) - tuples[ 2 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onRejected ) ? - onRejected : - Thrower - ) - ); - } ).promise(); - }, - - // Get a promise for this deferred - // If obj is provided, the promise aspect is added to the object - promise: function( obj ) { - return obj != null ? jQuery.extend( obj, promise ) : promise; - } - }, - deferred = {}; - - // Add list-specific methods - jQuery.each( tuples, function( i, tuple ) { - var list = tuple[ 2 ], - stateString = tuple[ 5 ]; - - // promise.progress = list.add - // promise.done = list.add - // promise.fail = list.add - promise[ tuple[ 1 ] ] = list.add; - - // Handle state - if ( stateString ) { - list.add( - function() { - - // state = "resolved" (i.e., fulfilled) - // state = "rejected" - state = stateString; - }, - - // rejected_callbacks.disable - // fulfilled_callbacks.disable - tuples[ 3 - i ][ 2 ].disable, - - // rejected_handlers.disable - // fulfilled_handlers.disable - tuples[ 3 - i ][ 3 ].disable, - - // progress_callbacks.lock - tuples[ 0 ][ 2 ].lock, - - // progress_handlers.lock - tuples[ 0 ][ 3 ].lock - ); - } - - // progress_handlers.fire - // fulfilled_handlers.fire - // rejected_handlers.fire - list.add( tuple[ 3 ].fire ); - - // deferred.notify = function() { deferred.notifyWith(...) } - // deferred.resolve = function() { deferred.resolveWith(...) } - // deferred.reject = function() { deferred.rejectWith(...) } - deferred[ tuple[ 0 ] ] = function() { - deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); - return this; - }; - - // deferred.notifyWith = list.fireWith - // deferred.resolveWith = list.fireWith - // deferred.rejectWith = list.fireWith - deferred[ tuple[ 0 ] + "With" ] = list.fireWith; - } ); - - // Make the deferred a promise - promise.promise( deferred ); - - // Call given func if any - if ( func ) { - func.call( deferred, deferred ); - } - - // All done! - return deferred; - }, - - // Deferred helper - when: function( singleValue ) { - var - - // count of uncompleted subordinates - remaining = arguments.length, - - // count of unprocessed arguments - i = remaining, - - // subordinate fulfillment data - resolveContexts = Array( i ), - resolveValues = slice.call( arguments ), - - // the primary Deferred - primary = jQuery.Deferred(), - - // subordinate callback factory - updateFunc = function( i ) { - return function( value ) { - resolveContexts[ i ] = this; - resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; - if ( !( --remaining ) ) { - primary.resolveWith( resolveContexts, resolveValues ); - } - }; - }; - - // Single- and empty arguments are adopted like Promise.resolve - if ( remaining <= 1 ) { - adoptValue( singleValue, primary.done( updateFunc( i ) ).resolve, primary.reject, - !remaining ); - - // Use .then() to unwrap secondary thenables (cf. gh-3000) - if ( primary.state() === "pending" || - isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { - - return primary.then(); - } - } - - // Multiple arguments are aggregated like Promise.all array elements - while ( i-- ) { - adoptValue( resolveValues[ i ], updateFunc( i ), primary.reject ); - } - - return primary.promise(); - } -} ); - - -// These usually indicate a programmer mistake during development, -// warn about them ASAP rather than swallowing them by default. -var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; - -// If `jQuery.Deferred.getErrorHook` is defined, `asyncError` is an error -// captured before the async barrier to get the original error cause -// which may otherwise be hidden. -jQuery.Deferred.exceptionHook = function( error, asyncError ) { - - // Support: IE 8 - 9 only - // Console exists when dev tools are open, which can happen at any time - if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { - window.console.warn( "jQuery.Deferred exception: " + error.message, - error.stack, asyncError ); - } -}; - - - - -jQuery.readyException = function( error ) { - window.setTimeout( function() { - throw error; - } ); -}; - - - - -// The deferred used on DOM ready -var readyList = jQuery.Deferred(); - -jQuery.fn.ready = function( fn ) { - - readyList - .then( fn ) - - // Wrap jQuery.readyException in a function so that the lookup - // happens at the time of error handling instead of callback - // registration. - .catch( function( error ) { - jQuery.readyException( error ); - } ); - - return this; -}; - -jQuery.extend( { - - // Is the DOM ready to be used? Set to true once it occurs. - isReady: false, - - // A counter to track how many items to wait for before - // the ready event fires. See trac-6781 - readyWait: 1, - - // Handle when the DOM is ready - ready: function( wait ) { - - // Abort if there are pending holds or we're already ready - if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { - return; - } - - // Remember that the DOM is ready - jQuery.isReady = true; - - // If a normal DOM Ready event fired, decrement, and wait if need be - if ( wait !== true && --jQuery.readyWait > 0 ) { - return; - } - - // If there are functions bound, to execute - readyList.resolveWith( document, [ jQuery ] ); - } -} ); - -jQuery.ready.then = readyList.then; - -// The ready event handler and self cleanup method -function completed() { - document.removeEventListener( "DOMContentLoaded", completed ); - window.removeEventListener( "load", completed ); - jQuery.ready(); -} - -// Catch cases where $(document).ready() is called -// after the browser event has already occurred. -// Support: IE <=9 - 10 only -// Older IE sometimes signals "interactive" too soon -if ( document.readyState === "complete" || - ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { - - // Handle it asynchronously to allow scripts the opportunity to delay ready - window.setTimeout( jQuery.ready ); - -} else { - - // Use the handy event callback - document.addEventListener( "DOMContentLoaded", completed ); - - // A fallback to window.onload, that will always work - window.addEventListener( "load", completed ); -} - - - - -// Multifunctional method to get and set values of a collection -// The value/s can optionally be executed if it's a function -var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { - var i = 0, - len = elems.length, - bulk = key == null; - - // Sets many values - if ( toType( key ) === "object" ) { - chainable = true; - for ( i in key ) { - access( elems, fn, i, key[ i ], true, emptyGet, raw ); - } - - // Sets one value - } else if ( value !== undefined ) { - chainable = true; - - if ( !isFunction( value ) ) { - raw = true; - } - - if ( bulk ) { - - // Bulk operations run against the entire set - if ( raw ) { - fn.call( elems, value ); - fn = null; - - // ...except when executing function values - } else { - bulk = fn; - fn = function( elem, _key, value ) { - return bulk.call( jQuery( elem ), value ); - }; - } - } - - if ( fn ) { - for ( ; i < len; i++ ) { - fn( - elems[ i ], key, raw ? - value : - value.call( elems[ i ], i, fn( elems[ i ], key ) ) - ); - } - } - } - - if ( chainable ) { - return elems; - } - - // Gets - if ( bulk ) { - return fn.call( elems ); - } - - return len ? fn( elems[ 0 ], key ) : emptyGet; -}; - - -// Matches dashed string for camelizing -var rmsPrefix = /^-ms-/, - rdashAlpha = /-([a-z])/g; - -// Used by camelCase as callback to replace() -function fcamelCase( _all, letter ) { - return letter.toUpperCase(); -} - -// Convert dashed to camelCase; used by the css and data modules -// Support: IE <=9 - 11, Edge 12 - 15 -// Microsoft forgot to hump their vendor prefix (trac-9572) -function camelCase( string ) { - return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); -} -var acceptData = function( owner ) { - - // Accepts only: - // - Node - // - Node.ELEMENT_NODE - // - Node.DOCUMENT_NODE - // - Object - // - Any - return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); -}; - - - - -function Data() { - this.expando = jQuery.expando + Data.uid++; -} - -Data.uid = 1; - -Data.prototype = { - - cache: function( owner ) { - - // Check if the owner object already has a cache - var value = owner[ this.expando ]; - - // If not, create one - if ( !value ) { - value = {}; - - // We can accept data for non-element nodes in modern browsers, - // but we should not, see trac-8335. - // Always return an empty object. - if ( acceptData( owner ) ) { - - // If it is a node unlikely to be stringify-ed or looped over - // use plain assignment - if ( owner.nodeType ) { - owner[ this.expando ] = value; - - // Otherwise secure it in a non-enumerable property - // configurable must be true to allow the property to be - // deleted when data is removed - } else { - Object.defineProperty( owner, this.expando, { - value: value, - configurable: true - } ); - } - } - } - - return value; - }, - set: function( owner, data, value ) { - var prop, - cache = this.cache( owner ); - - // Handle: [ owner, key, value ] args - // Always use camelCase key (gh-2257) - if ( typeof data === "string" ) { - cache[ camelCase( data ) ] = value; - - // Handle: [ owner, { properties } ] args - } else { - - // Copy the properties one-by-one to the cache object - for ( prop in data ) { - cache[ camelCase( prop ) ] = data[ prop ]; - } - } - return cache; - }, - get: function( owner, key ) { - return key === undefined ? - this.cache( owner ) : - - // Always use camelCase key (gh-2257) - owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; - }, - access: function( owner, key, value ) { - - // In cases where either: - // - // 1. No key was specified - // 2. A string key was specified, but no value provided - // - // Take the "read" path and allow the get method to determine - // which value to return, respectively either: - // - // 1. The entire cache object - // 2. The data stored at the key - // - if ( key === undefined || - ( ( key && typeof key === "string" ) && value === undefined ) ) { - - return this.get( owner, key ); - } - - // When the key is not a string, or both a key and value - // are specified, set or extend (existing objects) with either: - // - // 1. An object of properties - // 2. A key and value - // - this.set( owner, key, value ); - - // Since the "set" path can have two possible entry points - // return the expected data based on which path was taken[*] - return value !== undefined ? value : key; - }, - remove: function( owner, key ) { - var i, - cache = owner[ this.expando ]; - - if ( cache === undefined ) { - return; - } - - if ( key !== undefined ) { - - // Support array or space separated string of keys - if ( Array.isArray( key ) ) { - - // If key is an array of keys... - // We always set camelCase keys, so remove that. - key = key.map( camelCase ); - } else { - key = camelCase( key ); - - // If a key with the spaces exists, use it. - // Otherwise, create an array by matching non-whitespace - key = key in cache ? - [ key ] : - ( key.match( rnothtmlwhite ) || [] ); - } - - i = key.length; - - while ( i-- ) { - delete cache[ key[ i ] ]; - } - } - - // Remove the expando if there's no more data - if ( key === undefined || jQuery.isEmptyObject( cache ) ) { - - // Support: Chrome <=35 - 45 - // Webkit & Blink performance suffers when deleting properties - // from DOM nodes, so set to undefined instead - // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) - if ( owner.nodeType ) { - owner[ this.expando ] = undefined; - } else { - delete owner[ this.expando ]; - } - } - }, - hasData: function( owner ) { - var cache = owner[ this.expando ]; - return cache !== undefined && !jQuery.isEmptyObject( cache ); - } -}; -var dataPriv = new Data(); - -var dataUser = new Data(); - - - -// Implementation Summary -// -// 1. Enforce API surface and semantic compatibility with 1.9.x branch -// 2. Improve the module's maintainability by reducing the storage -// paths to a single mechanism. -// 3. Use the same single mechanism to support "private" and "user" data. -// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) -// 5. Avoid exposing implementation details on user objects (eg. expando properties) -// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 - -var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, - rmultiDash = /[A-Z]/g; - -function getData( data ) { - if ( data === "true" ) { - return true; - } - - if ( data === "false" ) { - return false; - } - - if ( data === "null" ) { - return null; - } - - // Only convert to a number if it doesn't change the string - if ( data === +data + "" ) { - return +data; - } - - if ( rbrace.test( data ) ) { - return JSON.parse( data ); - } - - return data; -} - -function dataAttr( elem, key, data ) { - var name; - - // If nothing was found internally, try to fetch any - // data from the HTML5 data-* attribute - if ( data === undefined && elem.nodeType === 1 ) { - name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); - data = elem.getAttribute( name ); - - if ( typeof data === "string" ) { - try { - data = getData( data ); - } catch ( e ) {} - - // Make sure we set the data so it isn't changed later - dataUser.set( elem, key, data ); - } else { - data = undefined; - } - } - return data; -} - -jQuery.extend( { - hasData: function( elem ) { - return dataUser.hasData( elem ) || dataPriv.hasData( elem ); - }, - - data: function( elem, name, data ) { - return dataUser.access( elem, name, data ); - }, - - removeData: function( elem, name ) { - dataUser.remove( elem, name ); - }, - - // TODO: Now that all calls to _data and _removeData have been replaced - // with direct calls to dataPriv methods, these can be deprecated. - _data: function( elem, name, data ) { - return dataPriv.access( elem, name, data ); - }, - - _removeData: function( elem, name ) { - dataPriv.remove( elem, name ); - } -} ); - -jQuery.fn.extend( { - data: function( key, value ) { - var i, name, data, - elem = this[ 0 ], - attrs = elem && elem.attributes; - - // Gets all values - if ( key === undefined ) { - if ( this.length ) { - data = dataUser.get( elem ); - - if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { - i = attrs.length; - while ( i-- ) { - - // Support: IE 11 only - // The attrs elements can be null (trac-14894) - if ( attrs[ i ] ) { - name = attrs[ i ].name; - if ( name.indexOf( "data-" ) === 0 ) { - name = camelCase( name.slice( 5 ) ); - dataAttr( elem, name, data[ name ] ); - } - } - } - dataPriv.set( elem, "hasDataAttrs", true ); - } - } - - return data; - } - - // Sets multiple values - if ( typeof key === "object" ) { - return this.each( function() { - dataUser.set( this, key ); - } ); - } - - return access( this, function( value ) { - var data; - - // The calling jQuery object (element matches) is not empty - // (and therefore has an element appears at this[ 0 ]) and the - // `value` parameter was not undefined. An empty jQuery object - // will result in `undefined` for elem = this[ 0 ] which will - // throw an exception if an attempt to read a data cache is made. - if ( elem && value === undefined ) { - - // Attempt to get data from the cache - // The key will always be camelCased in Data - data = dataUser.get( elem, key ); - if ( data !== undefined ) { - return data; - } - - // Attempt to "discover" the data in - // HTML5 custom data-* attrs - data = dataAttr( elem, key ); - if ( data !== undefined ) { - return data; - } - - // We tried really hard, but the data doesn't exist. - return; - } - - // Set the data... - this.each( function() { - - // We always store the camelCased key - dataUser.set( this, key, value ); - } ); - }, null, value, arguments.length > 1, null, true ); - }, - - removeData: function( key ) { - return this.each( function() { - dataUser.remove( this, key ); - } ); - } -} ); - - -jQuery.extend( { - queue: function( elem, type, data ) { - var queue; - - if ( elem ) { - type = ( type || "fx" ) + "queue"; - queue = dataPriv.get( elem, type ); - - // Speed up dequeue by getting out quickly if this is just a lookup - if ( data ) { - if ( !queue || Array.isArray( data ) ) { - queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); - } else { - queue.push( data ); - } - } - return queue || []; - } - }, - - dequeue: function( elem, type ) { - type = type || "fx"; - - var queue = jQuery.queue( elem, type ), - startLength = queue.length, - fn = queue.shift(), - hooks = jQuery._queueHooks( elem, type ), - next = function() { - jQuery.dequeue( elem, type ); - }; - - // If the fx queue is dequeued, always remove the progress sentinel - if ( fn === "inprogress" ) { - fn = queue.shift(); - startLength--; - } - - if ( fn ) { - - // Add a progress sentinel to prevent the fx queue from being - // automatically dequeued - if ( type === "fx" ) { - queue.unshift( "inprogress" ); - } - - // Clear up the last queue stop function - delete hooks.stop; - fn.call( elem, next, hooks ); - } - - if ( !startLength && hooks ) { - hooks.empty.fire(); - } - }, - - // Not public - generate a queueHooks object, or return the current one - _queueHooks: function( elem, type ) { - var key = type + "queueHooks"; - return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { - empty: jQuery.Callbacks( "once memory" ).add( function() { - dataPriv.remove( elem, [ type + "queue", key ] ); - } ) - } ); - } -} ); - -jQuery.fn.extend( { - queue: function( type, data ) { - var setter = 2; - - if ( typeof type !== "string" ) { - data = type; - type = "fx"; - setter--; - } - - if ( arguments.length < setter ) { - return jQuery.queue( this[ 0 ], type ); - } - - return data === undefined ? - this : - this.each( function() { - var queue = jQuery.queue( this, type, data ); - - // Ensure a hooks for this queue - jQuery._queueHooks( this, type ); - - if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { - jQuery.dequeue( this, type ); - } - } ); - }, - dequeue: function( type ) { - return this.each( function() { - jQuery.dequeue( this, type ); - } ); - }, - clearQueue: function( type ) { - return this.queue( type || "fx", [] ); - }, - - // Get a promise resolved when queues of a certain type - // are emptied (fx is the type by default) - promise: function( type, obj ) { - var tmp, - count = 1, - defer = jQuery.Deferred(), - elements = this, - i = this.length, - resolve = function() { - if ( !( --count ) ) { - defer.resolveWith( elements, [ elements ] ); - } - }; - - if ( typeof type !== "string" ) { - obj = type; - type = undefined; - } - type = type || "fx"; - - while ( i-- ) { - tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); - if ( tmp && tmp.empty ) { - count++; - tmp.empty.add( resolve ); - } - } - resolve(); - return defer.promise( obj ); - } -} ); -var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; - -var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); - - -var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; - -var documentElement = document.documentElement; - - - - var isAttached = function( elem ) { - return jQuery.contains( elem.ownerDocument, elem ); - }, - composed = { composed: true }; - - // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only - // Check attachment across shadow DOM boundaries when possible (gh-3504) - // Support: iOS 10.0-10.2 only - // Early iOS 10 versions support `attachShadow` but not `getRootNode`, - // leading to errors. We need to check for `getRootNode`. - if ( documentElement.getRootNode ) { - isAttached = function( elem ) { - return jQuery.contains( elem.ownerDocument, elem ) || - elem.getRootNode( composed ) === elem.ownerDocument; - }; - } -var isHiddenWithinTree = function( elem, el ) { - - // isHiddenWithinTree might be called from jQuery#filter function; - // in that case, element will be second argument - elem = el || elem; - - // Inline style trumps all - return elem.style.display === "none" || - elem.style.display === "" && - - // Otherwise, check computed style - // Support: Firefox <=43 - 45 - // Disconnected elements can have computed display: none, so first confirm that elem is - // in the document. - isAttached( elem ) && - - jQuery.css( elem, "display" ) === "none"; - }; - - - -function adjustCSS( elem, prop, valueParts, tween ) { - var adjusted, scale, - maxIterations = 20, - currentValue = tween ? - function() { - return tween.cur(); - } : - function() { - return jQuery.css( elem, prop, "" ); - }, - initial = currentValue(), - unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), - - // Starting value computation is required for potential unit mismatches - initialInUnit = elem.nodeType && - ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && - rcssNum.exec( jQuery.css( elem, prop ) ); - - if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { - - // Support: Firefox <=54 - // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) - initial = initial / 2; - - // Trust units reported by jQuery.css - unit = unit || initialInUnit[ 3 ]; - - // Iteratively approximate from a nonzero starting point - initialInUnit = +initial || 1; - - while ( maxIterations-- ) { - - // Evaluate and update our best guess (doubling guesses that zero out). - // Finish if the scale equals or crosses 1 (making the old*new product non-positive). - jQuery.style( elem, prop, initialInUnit + unit ); - if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { - maxIterations = 0; - } - initialInUnit = initialInUnit / scale; - - } - - initialInUnit = initialInUnit * 2; - jQuery.style( elem, prop, initialInUnit + unit ); - - // Make sure we update the tween properties later on - valueParts = valueParts || []; - } - - if ( valueParts ) { - initialInUnit = +initialInUnit || +initial || 0; - - // Apply relative offset (+=/-=) if specified - adjusted = valueParts[ 1 ] ? - initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : - +valueParts[ 2 ]; - if ( tween ) { - tween.unit = unit; - tween.start = initialInUnit; - tween.end = adjusted; - } - } - return adjusted; -} - - -var defaultDisplayMap = {}; - -function getDefaultDisplay( elem ) { - var temp, - doc = elem.ownerDocument, - nodeName = elem.nodeName, - display = defaultDisplayMap[ nodeName ]; - - if ( display ) { - return display; - } - - temp = doc.body.appendChild( doc.createElement( nodeName ) ); - display = jQuery.css( temp, "display" ); - - temp.parentNode.removeChild( temp ); - - if ( display === "none" ) { - display = "block"; - } - defaultDisplayMap[ nodeName ] = display; - - return display; -} - -function showHide( elements, show ) { - var display, elem, - values = [], - index = 0, - length = elements.length; - - // Determine new display value for elements that need to change - for ( ; index < length; index++ ) { - elem = elements[ index ]; - if ( !elem.style ) { - continue; - } - - display = elem.style.display; - if ( show ) { - - // Since we force visibility upon cascade-hidden elements, an immediate (and slow) - // check is required in this first loop unless we have a nonempty display value (either - // inline or about-to-be-restored) - if ( display === "none" ) { - values[ index ] = dataPriv.get( elem, "display" ) || null; - if ( !values[ index ] ) { - elem.style.display = ""; - } - } - if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { - values[ index ] = getDefaultDisplay( elem ); - } - } else { - if ( display !== "none" ) { - values[ index ] = "none"; - - // Remember what we're overwriting - dataPriv.set( elem, "display", display ); - } - } - } - - // Set the display of the elements in a second loop to avoid constant reflow - for ( index = 0; index < length; index++ ) { - if ( values[ index ] != null ) { - elements[ index ].style.display = values[ index ]; - } - } - - return elements; -} - -jQuery.fn.extend( { - show: function() { - return showHide( this, true ); - }, - hide: function() { - return showHide( this ); - }, - toggle: function( state ) { - if ( typeof state === "boolean" ) { - return state ? this.show() : this.hide(); - } - - return this.each( function() { - if ( isHiddenWithinTree( this ) ) { - jQuery( this ).show(); - } else { - jQuery( this ).hide(); - } - } ); - } -} ); -var rcheckableType = ( /^(?:checkbox|radio)$/i ); - -var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i ); - -var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); - - - -( function() { - var fragment = document.createDocumentFragment(), - div = fragment.appendChild( document.createElement( "div" ) ), - input = document.createElement( "input" ); - - // Support: Android 4.0 - 4.3 only - // Check state lost if the name is set (trac-11217) - // Support: Windows Web Apps (WWA) - // `name` and `type` must use .setAttribute for WWA (trac-14901) - input.setAttribute( "type", "radio" ); - input.setAttribute( "checked", "checked" ); - input.setAttribute( "name", "t" ); - - div.appendChild( input ); - - // Support: Android <=4.1 only - // Older WebKit doesn't clone checked state correctly in fragments - support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; - - // Support: IE <=11 only - // Make sure textarea (and checkbox) defaultValue is properly cloned - div.innerHTML = ""; - support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; - - // Support: IE <=9 only - // IE <=9 replaces "; - support.option = !!div.lastChild; -} )(); - - -// We have to close these tags to support XHTML (trac-13200) -var wrapMap = { - - // XHTML parsers do not magically insert elements in the - // same way that tag soup parsers do. So we cannot shorten - // this by omitting or other required elements. - thead: [ 1, "", "
" ], - col: [ 2, "", "
" ], - tr: [ 2, "", "
" ], - td: [ 3, "", "
" ], - - _default: [ 0, "", "" ] -}; - -wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; -wrapMap.th = wrapMap.td; - -// Support: IE <=9 only -if ( !support.option ) { - wrapMap.optgroup = wrapMap.option = [ 1, "" ]; -} - - -function getAll( context, tag ) { - - // Support: IE <=9 - 11 only - // Use typeof to avoid zero-argument method invocation on host objects (trac-15151) - var ret; - - if ( typeof context.getElementsByTagName !== "undefined" ) { - ret = context.getElementsByTagName( tag || "*" ); - - } else if ( typeof context.querySelectorAll !== "undefined" ) { - ret = context.querySelectorAll( tag || "*" ); - - } else { - ret = []; - } - - if ( tag === undefined || tag && nodeName( context, tag ) ) { - return jQuery.merge( [ context ], ret ); - } - - return ret; -} - - -// Mark scripts as having already been evaluated -function setGlobalEval( elems, refElements ) { - var i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - dataPriv.set( - elems[ i ], - "globalEval", - !refElements || dataPriv.get( refElements[ i ], "globalEval" ) - ); - } -} - - -var rhtml = /<|&#?\w+;/; - -function buildFragment( elems, context, scripts, selection, ignored ) { - var elem, tmp, tag, wrap, attached, j, - fragment = context.createDocumentFragment(), - nodes = [], - i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - elem = elems[ i ]; - - if ( elem || elem === 0 ) { - - // Add nodes directly - if ( toType( elem ) === "object" ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); - - // Convert non-html into a text node - } else if ( !rhtml.test( elem ) ) { - nodes.push( context.createTextNode( elem ) ); - - // Convert html into DOM nodes - } else { - tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); - - // Deserialize a standard representation - tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); - wrap = wrapMap[ tag ] || wrapMap._default; - tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; - - // Descend through wrappers to the right content - j = wrap[ 0 ]; - while ( j-- ) { - tmp = tmp.lastChild; - } - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, tmp.childNodes ); - - // Remember the top-level container - tmp = fragment.firstChild; - - // Ensure the created nodes are orphaned (trac-12392) - tmp.textContent = ""; - } - } - } - - // Remove wrapper from fragment - fragment.textContent = ""; - - i = 0; - while ( ( elem = nodes[ i++ ] ) ) { - - // Skip elements already in the context collection (trac-4087) - if ( selection && jQuery.inArray( elem, selection ) > -1 ) { - if ( ignored ) { - ignored.push( elem ); - } - continue; - } - - attached = isAttached( elem ); - - // Append to fragment - tmp = getAll( fragment.appendChild( elem ), "script" ); - - // Preserve script evaluation history - if ( attached ) { - setGlobalEval( tmp ); - } - - // Capture executables - if ( scripts ) { - j = 0; - while ( ( elem = tmp[ j++ ] ) ) { - if ( rscriptType.test( elem.type || "" ) ) { - scripts.push( elem ); - } - } - } - } - - return fragment; -} - - -var rtypenamespace = /^([^.]*)(?:\.(.+)|)/; - -function returnTrue() { - return true; -} - -function returnFalse() { - return false; -} - -function on( elem, types, selector, data, fn, one ) { - var origFn, type; - - // Types can be a map of types/handlers - if ( typeof types === "object" ) { - - // ( types-Object, selector, data ) - if ( typeof selector !== "string" ) { - - // ( types-Object, data ) - data = data || selector; - selector = undefined; - } - for ( type in types ) { - on( elem, type, selector, data, types[ type ], one ); - } - return elem; - } - - if ( data == null && fn == null ) { - - // ( types, fn ) - fn = selector; - data = selector = undefined; - } else if ( fn == null ) { - if ( typeof selector === "string" ) { - - // ( types, selector, fn ) - fn = data; - data = undefined; - } else { - - // ( types, data, fn ) - fn = data; - data = selector; - selector = undefined; - } - } - if ( fn === false ) { - fn = returnFalse; - } else if ( !fn ) { - return elem; - } - - if ( one === 1 ) { - origFn = fn; - fn = function( event ) { - - // Can use an empty set, since event contains the info - jQuery().off( event ); - return origFn.apply( this, arguments ); - }; - - // Use same guid so caller can remove using origFn - fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); - } - return elem.each( function() { - jQuery.event.add( this, types, fn, data, selector ); - } ); -} - -/* - * Helper functions for managing events -- not part of the public interface. - * Props to Dean Edwards' addEvent library for many of the ideas. - */ -jQuery.event = { - - global: {}, - - add: function( elem, types, handler, data, selector ) { - - var handleObjIn, eventHandle, tmp, - events, t, handleObj, - special, handlers, type, namespaces, origType, - elemData = dataPriv.get( elem ); - - // Only attach events to objects that accept data - if ( !acceptData( elem ) ) { - return; - } - - // Caller can pass in an object of custom data in lieu of the handler - if ( handler.handler ) { - handleObjIn = handler; - handler = handleObjIn.handler; - selector = handleObjIn.selector; - } - - // Ensure that invalid selectors throw exceptions at attach time - // Evaluate against documentElement in case elem is a non-element node (e.g., document) - if ( selector ) { - jQuery.find.matchesSelector( documentElement, selector ); - } - - // Make sure that the handler has a unique ID, used to find/remove it later - if ( !handler.guid ) { - handler.guid = jQuery.guid++; - } - - // Init the element's event structure and main handler, if this is the first - if ( !( events = elemData.events ) ) { - events = elemData.events = Object.create( null ); - } - if ( !( eventHandle = elemData.handle ) ) { - eventHandle = elemData.handle = function( e ) { - - // Discard the second event of a jQuery.event.trigger() and - // when an event is called after a page has unloaded - return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? - jQuery.event.dispatch.apply( elem, arguments ) : undefined; - }; - } - - // Handle multiple events separated by a space - types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); - - // There *must* be a type, no attaching namespace-only handlers - if ( !type ) { - continue; - } - - // If event changes its type, use the special event handlers for the changed type - special = jQuery.event.special[ type ] || {}; - - // If selector defined, determine special event api type, otherwise given type - type = ( selector ? special.delegateType : special.bindType ) || type; - - // Update special based on newly reset type - special = jQuery.event.special[ type ] || {}; - - // handleObj is passed to all event handlers - handleObj = jQuery.extend( { - type: type, - origType: origType, - data: data, - handler: handler, - guid: handler.guid, - selector: selector, - needsContext: selector && jQuery.expr.match.needsContext.test( selector ), - namespace: namespaces.join( "." ) - }, handleObjIn ); - - // Init the event handler queue if we're the first - if ( !( handlers = events[ type ] ) ) { - handlers = events[ type ] = []; - handlers.delegateCount = 0; - - // Only use addEventListener if the special events handler returns false - if ( !special.setup || - special.setup.call( elem, data, namespaces, eventHandle ) === false ) { - - if ( elem.addEventListener ) { - elem.addEventListener( type, eventHandle ); - } - } - } - - if ( special.add ) { - special.add.call( elem, handleObj ); - - if ( !handleObj.handler.guid ) { - handleObj.handler.guid = handler.guid; - } - } - - // Add to the element's handler list, delegates in front - if ( selector ) { - handlers.splice( handlers.delegateCount++, 0, handleObj ); - } else { - handlers.push( handleObj ); - } - - // Keep track of which events have ever been used, for event optimization - jQuery.event.global[ type ] = true; - } - - }, - - // Detach an event or set of events from an element - remove: function( elem, types, handler, selector, mappedTypes ) { - - var j, origCount, tmp, - events, t, handleObj, - special, handlers, type, namespaces, origType, - elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); - - if ( !elemData || !( events = elemData.events ) ) { - return; - } - - // Once for each type.namespace in types; type may be omitted - types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); - - // Unbind all events (on this namespace, if provided) for the element - if ( !type ) { - for ( type in events ) { - jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); - } - continue; - } - - special = jQuery.event.special[ type ] || {}; - type = ( selector ? special.delegateType : special.bindType ) || type; - handlers = events[ type ] || []; - tmp = tmp[ 2 ] && - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); - - // Remove matching events - origCount = j = handlers.length; - while ( j-- ) { - handleObj = handlers[ j ]; - - if ( ( mappedTypes || origType === handleObj.origType ) && - ( !handler || handler.guid === handleObj.guid ) && - ( !tmp || tmp.test( handleObj.namespace ) ) && - ( !selector || selector === handleObj.selector || - selector === "**" && handleObj.selector ) ) { - handlers.splice( j, 1 ); - - if ( handleObj.selector ) { - handlers.delegateCount--; - } - if ( special.remove ) { - special.remove.call( elem, handleObj ); - } - } - } - - // Remove generic event handler if we removed something and no more handlers exist - // (avoids potential for endless recursion during removal of special event handlers) - if ( origCount && !handlers.length ) { - if ( !special.teardown || - special.teardown.call( elem, namespaces, elemData.handle ) === false ) { - - jQuery.removeEvent( elem, type, elemData.handle ); - } - - delete events[ type ]; - } - } - - // Remove data and the expando if it's no longer used - if ( jQuery.isEmptyObject( events ) ) { - dataPriv.remove( elem, "handle events" ); - } - }, - - dispatch: function( nativeEvent ) { - - var i, j, ret, matched, handleObj, handlerQueue, - args = new Array( arguments.length ), - - // Make a writable jQuery.Event from the native event object - event = jQuery.event.fix( nativeEvent ), - - handlers = ( - dataPriv.get( this, "events" ) || Object.create( null ) - )[ event.type ] || [], - special = jQuery.event.special[ event.type ] || {}; - - // Use the fix-ed jQuery.Event rather than the (read-only) native event - args[ 0 ] = event; - - for ( i = 1; i < arguments.length; i++ ) { - args[ i ] = arguments[ i ]; - } - - event.delegateTarget = this; - - // Call the preDispatch hook for the mapped type, and let it bail if desired - if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { - return; - } - - // Determine handlers - handlerQueue = jQuery.event.handlers.call( this, event, handlers ); - - // Run delegates first; they may want to stop propagation beneath us - i = 0; - while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { - event.currentTarget = matched.elem; - - j = 0; - while ( ( handleObj = matched.handlers[ j++ ] ) && - !event.isImmediatePropagationStopped() ) { - - // If the event is namespaced, then each handler is only invoked if it is - // specially universal or its namespaces are a superset of the event's. - if ( !event.rnamespace || handleObj.namespace === false || - event.rnamespace.test( handleObj.namespace ) ) { - - event.handleObj = handleObj; - event.data = handleObj.data; - - ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || - handleObj.handler ).apply( matched.elem, args ); - - if ( ret !== undefined ) { - if ( ( event.result = ret ) === false ) { - event.preventDefault(); - event.stopPropagation(); - } - } - } - } - } - - // Call the postDispatch hook for the mapped type - if ( special.postDispatch ) { - special.postDispatch.call( this, event ); - } - - return event.result; - }, - - handlers: function( event, handlers ) { - var i, handleObj, sel, matchedHandlers, matchedSelectors, - handlerQueue = [], - delegateCount = handlers.delegateCount, - cur = event.target; - - // Find delegate handlers - if ( delegateCount && - - // Support: IE <=9 - // Black-hole SVG instance trees (trac-13180) - cur.nodeType && - - // Support: Firefox <=42 - // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) - // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click - // Support: IE 11 only - // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) - !( event.type === "click" && event.button >= 1 ) ) { - - for ( ; cur !== this; cur = cur.parentNode || this ) { - - // Don't check non-elements (trac-13208) - // Don't process clicks on disabled elements (trac-6911, trac-8165, trac-11382, trac-11764) - if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { - matchedHandlers = []; - matchedSelectors = {}; - for ( i = 0; i < delegateCount; i++ ) { - handleObj = handlers[ i ]; - - // Don't conflict with Object.prototype properties (trac-13203) - sel = handleObj.selector + " "; - - if ( matchedSelectors[ sel ] === undefined ) { - matchedSelectors[ sel ] = handleObj.needsContext ? - jQuery( sel, this ).index( cur ) > -1 : - jQuery.find( sel, this, null, [ cur ] ).length; - } - if ( matchedSelectors[ sel ] ) { - matchedHandlers.push( handleObj ); - } - } - if ( matchedHandlers.length ) { - handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); - } - } - } - } - - // Add the remaining (directly-bound) handlers - cur = this; - if ( delegateCount < handlers.length ) { - handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); - } - - return handlerQueue; - }, - - addProp: function( name, hook ) { - Object.defineProperty( jQuery.Event.prototype, name, { - enumerable: true, - configurable: true, - - get: isFunction( hook ) ? - function() { - if ( this.originalEvent ) { - return hook( this.originalEvent ); - } - } : - function() { - if ( this.originalEvent ) { - return this.originalEvent[ name ]; - } - }, - - set: function( value ) { - Object.defineProperty( this, name, { - enumerable: true, - configurable: true, - writable: true, - value: value - } ); - } - } ); - }, - - fix: function( originalEvent ) { - return originalEvent[ jQuery.expando ] ? - originalEvent : - new jQuery.Event( originalEvent ); - }, - - special: { - load: { - - // Prevent triggered image.load events from bubbling to window.load - noBubble: true - }, - click: { - - // Utilize native event to ensure correct state for checkable inputs - setup: function( data ) { - - // For mutual compressibility with _default, replace `this` access with a local var. - // `|| data` is dead code meant only to preserve the variable through minification. - var el = this || data; - - // Claim the first handler - if ( rcheckableType.test( el.type ) && - el.click && nodeName( el, "input" ) ) { - - // dataPriv.set( el, "click", ... ) - leverageNative( el, "click", true ); - } - - // Return false to allow normal processing in the caller - return false; - }, - trigger: function( data ) { - - // For mutual compressibility with _default, replace `this` access with a local var. - // `|| data` is dead code meant only to preserve the variable through minification. - var el = this || data; - - // Force setup before triggering a click - if ( rcheckableType.test( el.type ) && - el.click && nodeName( el, "input" ) ) { - - leverageNative( el, "click" ); - } - - // Return non-false to allow normal event-path propagation - return true; - }, - - // For cross-browser consistency, suppress native .click() on links - // Also prevent it if we're currently inside a leveraged native-event stack - _default: function( event ) { - var target = event.target; - return rcheckableType.test( target.type ) && - target.click && nodeName( target, "input" ) && - dataPriv.get( target, "click" ) || - nodeName( target, "a" ); - } - }, - - beforeunload: { - postDispatch: function( event ) { - - // Support: Firefox 20+ - // Firefox doesn't alert if the returnValue field is not set. - if ( event.result !== undefined && event.originalEvent ) { - event.originalEvent.returnValue = event.result; - } - } - } - } -}; - -// Ensure the presence of an event listener that handles manually-triggered -// synthetic events by interrupting progress until reinvoked in response to -// *native* events that it fires directly, ensuring that state changes have -// already occurred before other listeners are invoked. -function leverageNative( el, type, isSetup ) { - - // Missing `isSetup` indicates a trigger call, which must force setup through jQuery.event.add - if ( !isSetup ) { - if ( dataPriv.get( el, type ) === undefined ) { - jQuery.event.add( el, type, returnTrue ); - } - return; - } - - // Register the controller as a special universal handler for all event namespaces - dataPriv.set( el, type, false ); - jQuery.event.add( el, type, { - namespace: false, - handler: function( event ) { - var result, - saved = dataPriv.get( this, type ); - - if ( ( event.isTrigger & 1 ) && this[ type ] ) { - - // Interrupt processing of the outer synthetic .trigger()ed event - if ( !saved ) { - - // Store arguments for use when handling the inner native event - // There will always be at least one argument (an event object), so this array - // will not be confused with a leftover capture object. - saved = slice.call( arguments ); - dataPriv.set( this, type, saved ); - - // Trigger the native event and capture its result - this[ type ](); - result = dataPriv.get( this, type ); - dataPriv.set( this, type, false ); - - if ( saved !== result ) { - - // Cancel the outer synthetic event - event.stopImmediatePropagation(); - event.preventDefault(); - - return result; - } - - // If this is an inner synthetic event for an event with a bubbling surrogate - // (focus or blur), assume that the surrogate already propagated from triggering - // the native event and prevent that from happening again here. - // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the - // bubbling surrogate propagates *after* the non-bubbling base), but that seems - // less bad than duplication. - } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { - event.stopPropagation(); - } - - // If this is a native event triggered above, everything is now in order - // Fire an inner synthetic event with the original arguments - } else if ( saved ) { - - // ...and capture the result - dataPriv.set( this, type, jQuery.event.trigger( - saved[ 0 ], - saved.slice( 1 ), - this - ) ); - - // Abort handling of the native event by all jQuery handlers while allowing - // native handlers on the same element to run. On target, this is achieved - // by stopping immediate propagation just on the jQuery event. However, - // the native event is re-wrapped by a jQuery one on each level of the - // propagation so the only way to stop it for jQuery is to stop it for - // everyone via native `stopPropagation()`. This is not a problem for - // focus/blur which don't bubble, but it does also stop click on checkboxes - // and radios. We accept this limitation. - event.stopPropagation(); - event.isImmediatePropagationStopped = returnTrue; - } - } - } ); -} - -jQuery.removeEvent = function( elem, type, handle ) { - - // This "if" is needed for plain objects - if ( elem.removeEventListener ) { - elem.removeEventListener( type, handle ); - } -}; - -jQuery.Event = function( src, props ) { - - // Allow instantiation without the 'new' keyword - if ( !( this instanceof jQuery.Event ) ) { - return new jQuery.Event( src, props ); - } - - // Event object - if ( src && src.type ) { - this.originalEvent = src; - this.type = src.type; - - // Events bubbling up the document may have been marked as prevented - // by a handler lower down the tree; reflect the correct value. - this.isDefaultPrevented = src.defaultPrevented || - src.defaultPrevented === undefined && - - // Support: Android <=2.3 only - src.returnValue === false ? - returnTrue : - returnFalse; - - // Create target properties - // Support: Safari <=6 - 7 only - // Target should not be a text node (trac-504, trac-13143) - this.target = ( src.target && src.target.nodeType === 3 ) ? - src.target.parentNode : - src.target; - - this.currentTarget = src.currentTarget; - this.relatedTarget = src.relatedTarget; - - // Event type - } else { - this.type = src; - } - - // Put explicitly provided properties onto the event object - if ( props ) { - jQuery.extend( this, props ); - } - - // Create a timestamp if incoming event doesn't have one - this.timeStamp = src && src.timeStamp || Date.now(); - - // Mark it as fixed - this[ jQuery.expando ] = true; -}; - -// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding -// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html -jQuery.Event.prototype = { - constructor: jQuery.Event, - isDefaultPrevented: returnFalse, - isPropagationStopped: returnFalse, - isImmediatePropagationStopped: returnFalse, - isSimulated: false, - - preventDefault: function() { - var e = this.originalEvent; - - this.isDefaultPrevented = returnTrue; - - if ( e && !this.isSimulated ) { - e.preventDefault(); - } - }, - stopPropagation: function() { - var e = this.originalEvent; - - this.isPropagationStopped = returnTrue; - - if ( e && !this.isSimulated ) { - e.stopPropagation(); - } - }, - stopImmediatePropagation: function() { - var e = this.originalEvent; - - this.isImmediatePropagationStopped = returnTrue; - - if ( e && !this.isSimulated ) { - e.stopImmediatePropagation(); - } - - this.stopPropagation(); - } -}; - -// Includes all common event props including KeyEvent and MouseEvent specific props -jQuery.each( { - altKey: true, - bubbles: true, - cancelable: true, - changedTouches: true, - ctrlKey: true, - detail: true, - eventPhase: true, - metaKey: true, - pageX: true, - pageY: true, - shiftKey: true, - view: true, - "char": true, - code: true, - charCode: true, - key: true, - keyCode: true, - button: true, - buttons: true, - clientX: true, - clientY: true, - offsetX: true, - offsetY: true, - pointerId: true, - pointerType: true, - screenX: true, - screenY: true, - targetTouches: true, - toElement: true, - touches: true, - which: true -}, jQuery.event.addProp ); - -jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { - - function focusMappedHandler( nativeEvent ) { - if ( document.documentMode ) { - - // Support: IE 11+ - // Attach a single focusin/focusout handler on the document while someone wants - // focus/blur. This is because the former are synchronous in IE while the latter - // are async. In other browsers, all those handlers are invoked synchronously. - - // `handle` from private data would already wrap the event, but we need - // to change the `type` here. - var handle = dataPriv.get( this, "handle" ), - event = jQuery.event.fix( nativeEvent ); - event.type = nativeEvent.type === "focusin" ? "focus" : "blur"; - event.isSimulated = true; - - // First, handle focusin/focusout - handle( nativeEvent ); - - // ...then, handle focus/blur - // - // focus/blur don't bubble while focusin/focusout do; simulate the former by only - // invoking the handler at the lower level. - if ( event.target === event.currentTarget ) { - - // The setup part calls `leverageNative`, which, in turn, calls - // `jQuery.event.add`, so event handle will already have been set - // by this point. - handle( event ); - } - } else { - - // For non-IE browsers, attach a single capturing handler on the document - // while someone wants focusin/focusout. - jQuery.event.simulate( delegateType, nativeEvent.target, - jQuery.event.fix( nativeEvent ) ); - } - } - - jQuery.event.special[ type ] = { - - // Utilize native event if possible so blur/focus sequence is correct - setup: function() { - - var attaches; - - // Claim the first handler - // dataPriv.set( this, "focus", ... ) - // dataPriv.set( this, "blur", ... ) - leverageNative( this, type, true ); - - if ( document.documentMode ) { - - // Support: IE 9 - 11+ - // We use the same native handler for focusin & focus (and focusout & blur) - // so we need to coordinate setup & teardown parts between those events. - // Use `delegateType` as the key as `type` is already used by `leverageNative`. - attaches = dataPriv.get( this, delegateType ); - if ( !attaches ) { - this.addEventListener( delegateType, focusMappedHandler ); - } - dataPriv.set( this, delegateType, ( attaches || 0 ) + 1 ); - } else { - - // Return false to allow normal processing in the caller - return false; - } - }, - trigger: function() { - - // Force setup before trigger - leverageNative( this, type ); - - // Return non-false to allow normal event-path propagation - return true; - }, - - teardown: function() { - var attaches; - - if ( document.documentMode ) { - attaches = dataPriv.get( this, delegateType ) - 1; - if ( !attaches ) { - this.removeEventListener( delegateType, focusMappedHandler ); - dataPriv.remove( this, delegateType ); - } else { - dataPriv.set( this, delegateType, attaches ); - } - } else { - - // Return false to indicate standard teardown should be applied - return false; - } - }, - - // Suppress native focus or blur if we're currently inside - // a leveraged native-event stack - _default: function( event ) { - return dataPriv.get( event.target, type ); - }, - - delegateType: delegateType - }; - - // Support: Firefox <=44 - // Firefox doesn't have focus(in | out) events - // Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 - // - // Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 - // focus(in | out) events fire after focus & blur events, - // which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order - // Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 - // - // Support: IE 9 - 11+ - // To preserve relative focusin/focus & focusout/blur event order guaranteed on the 3.x branch, - // attach a single handler for both events in IE. - jQuery.event.special[ delegateType ] = { - setup: function() { - - // Handle: regular nodes (via `this.ownerDocument`), window - // (via `this.document`) & document (via `this`). - var doc = this.ownerDocument || this.document || this, - dataHolder = document.documentMode ? this : doc, - attaches = dataPriv.get( dataHolder, delegateType ); - - // Support: IE 9 - 11+ - // We use the same native handler for focusin & focus (and focusout & blur) - // so we need to coordinate setup & teardown parts between those events. - // Use `delegateType` as the key as `type` is already used by `leverageNative`. - if ( !attaches ) { - if ( document.documentMode ) { - this.addEventListener( delegateType, focusMappedHandler ); - } else { - doc.addEventListener( type, focusMappedHandler, true ); - } - } - dataPriv.set( dataHolder, delegateType, ( attaches || 0 ) + 1 ); - }, - teardown: function() { - var doc = this.ownerDocument || this.document || this, - dataHolder = document.documentMode ? this : doc, - attaches = dataPriv.get( dataHolder, delegateType ) - 1; - - if ( !attaches ) { - if ( document.documentMode ) { - this.removeEventListener( delegateType, focusMappedHandler ); - } else { - doc.removeEventListener( type, focusMappedHandler, true ); - } - dataPriv.remove( dataHolder, delegateType ); - } else { - dataPriv.set( dataHolder, delegateType, attaches ); - } - } - }; -} ); - -// Create mouseenter/leave events using mouseover/out and event-time checks -// so that event delegation works in jQuery. -// Do the same for pointerenter/pointerleave and pointerover/pointerout -// -// Support: Safari 7 only -// Safari sends mouseenter too often; see: -// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 -// for the description of the bug (it existed in older Chrome versions as well). -jQuery.each( { - mouseenter: "mouseover", - mouseleave: "mouseout", - pointerenter: "pointerover", - pointerleave: "pointerout" -}, function( orig, fix ) { - jQuery.event.special[ orig ] = { - delegateType: fix, - bindType: fix, - - handle: function( event ) { - var ret, - target = this, - related = event.relatedTarget, - handleObj = event.handleObj; - - // For mouseenter/leave call the handler if related is outside the target. - // NB: No relatedTarget if the mouse left/entered the browser window - if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { - event.type = handleObj.origType; - ret = handleObj.handler.apply( this, arguments ); - event.type = fix; - } - return ret; - } - }; -} ); - -jQuery.fn.extend( { - - on: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn ); - }, - one: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn, 1 ); - }, - off: function( types, selector, fn ) { - var handleObj, type; - if ( types && types.preventDefault && types.handleObj ) { - - // ( event ) dispatched jQuery.Event - handleObj = types.handleObj; - jQuery( types.delegateTarget ).off( - handleObj.namespace ? - handleObj.origType + "." + handleObj.namespace : - handleObj.origType, - handleObj.selector, - handleObj.handler - ); - return this; - } - if ( typeof types === "object" ) { - - // ( types-object [, selector] ) - for ( type in types ) { - this.off( type, selector, types[ type ] ); - } - return this; - } - if ( selector === false || typeof selector === "function" ) { - - // ( types [, fn] ) - fn = selector; - selector = undefined; - } - if ( fn === false ) { - fn = returnFalse; - } - return this.each( function() { - jQuery.event.remove( this, types, fn, selector ); - } ); - } -} ); - - -var - - // Support: IE <=10 - 11, Edge 12 - 13 only - // In IE/Edge using regex groups here causes severe slowdowns. - // See https://connect.microsoft.com/IE/feedback/details/1736512/ - rnoInnerhtml = /\s*$/g; - -// Prefer a tbody over its parent table for containing new rows -function manipulationTarget( elem, content ) { - if ( nodeName( elem, "table" ) && - nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { - - return jQuery( elem ).children( "tbody" )[ 0 ] || elem; - } - - return elem; -} - -// Replace/restore the type attribute of script elements for safe DOM manipulation -function disableScript( elem ) { - elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; - return elem; -} -function restoreScript( elem ) { - if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { - elem.type = elem.type.slice( 5 ); - } else { - elem.removeAttribute( "type" ); - } - - return elem; -} - -function cloneCopyEvent( src, dest ) { - var i, l, type, pdataOld, udataOld, udataCur, events; - - if ( dest.nodeType !== 1 ) { - return; - } - - // 1. Copy private data: events, handlers, etc. - if ( dataPriv.hasData( src ) ) { - pdataOld = dataPriv.get( src ); - events = pdataOld.events; - - if ( events ) { - dataPriv.remove( dest, "handle events" ); - - for ( type in events ) { - for ( i = 0, l = events[ type ].length; i < l; i++ ) { - jQuery.event.add( dest, type, events[ type ][ i ] ); - } - } - } - } - - // 2. Copy user data - if ( dataUser.hasData( src ) ) { - udataOld = dataUser.access( src ); - udataCur = jQuery.extend( {}, udataOld ); - - dataUser.set( dest, udataCur ); - } -} - -// Fix IE bugs, see support tests -function fixInput( src, dest ) { - var nodeName = dest.nodeName.toLowerCase(); - - // Fails to persist the checked state of a cloned checkbox or radio button. - if ( nodeName === "input" && rcheckableType.test( src.type ) ) { - dest.checked = src.checked; - - // Fails to return the selected option to the default selected state when cloning options - } else if ( nodeName === "input" || nodeName === "textarea" ) { - dest.defaultValue = src.defaultValue; - } -} - -function domManip( collection, args, callback, ignored ) { - - // Flatten any nested arrays - args = flat( args ); - - var fragment, first, scripts, hasScripts, node, doc, - i = 0, - l = collection.length, - iNoClone = l - 1, - value = args[ 0 ], - valueIsFunction = isFunction( value ); - - // We can't cloneNode fragments that contain checked, in WebKit - if ( valueIsFunction || - ( l > 1 && typeof value === "string" && - !support.checkClone && rchecked.test( value ) ) ) { - return collection.each( function( index ) { - var self = collection.eq( index ); - if ( valueIsFunction ) { - args[ 0 ] = value.call( this, index, self.html() ); - } - domManip( self, args, callback, ignored ); - } ); - } - - if ( l ) { - fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); - first = fragment.firstChild; - - if ( fragment.childNodes.length === 1 ) { - fragment = first; - } - - // Require either new content or an interest in ignored elements to invoke the callback - if ( first || ignored ) { - scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); - hasScripts = scripts.length; - - // Use the original fragment for the last item - // instead of the first because it can end up - // being emptied incorrectly in certain situations (trac-8070). - for ( ; i < l; i++ ) { - node = fragment; - - if ( i !== iNoClone ) { - node = jQuery.clone( node, true, true ); - - // Keep references to cloned scripts for later restoration - if ( hasScripts ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( scripts, getAll( node, "script" ) ); - } - } - - callback.call( collection[ i ], node, i ); - } - - if ( hasScripts ) { - doc = scripts[ scripts.length - 1 ].ownerDocument; - - // Re-enable scripts - jQuery.map( scripts, restoreScript ); - - // Evaluate executable scripts on first document insertion - for ( i = 0; i < hasScripts; i++ ) { - node = scripts[ i ]; - if ( rscriptType.test( node.type || "" ) && - !dataPriv.access( node, "globalEval" ) && - jQuery.contains( doc, node ) ) { - - if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { - - // Optional AJAX dependency, but won't run scripts if not present - if ( jQuery._evalUrl && !node.noModule ) { - jQuery._evalUrl( node.src, { - nonce: node.nonce || node.getAttribute( "nonce" ) - }, doc ); - } - } else { - - // Unwrap a CDATA section containing script contents. This shouldn't be - // needed as in XML documents they're already not visible when - // inspecting element contents and in HTML documents they have no - // meaning but we're preserving that logic for backwards compatibility. - // This will be removed completely in 4.0. See gh-4904. - DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); - } - } - } - } - } - } - - return collection; -} - -function remove( elem, selector, keepData ) { - var node, - nodes = selector ? jQuery.filter( selector, elem ) : elem, - i = 0; - - for ( ; ( node = nodes[ i ] ) != null; i++ ) { - if ( !keepData && node.nodeType === 1 ) { - jQuery.cleanData( getAll( node ) ); - } - - if ( node.parentNode ) { - if ( keepData && isAttached( node ) ) { - setGlobalEval( getAll( node, "script" ) ); - } - node.parentNode.removeChild( node ); - } - } - - return elem; -} - -jQuery.extend( { - htmlPrefilter: function( html ) { - return html; - }, - - clone: function( elem, dataAndEvents, deepDataAndEvents ) { - var i, l, srcElements, destElements, - clone = elem.cloneNode( true ), - inPage = isAttached( elem ); - - // Fix IE cloning issues - if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && - !jQuery.isXMLDoc( elem ) ) { - - // We eschew jQuery#find here for performance reasons: - // https://jsperf.com/getall-vs-sizzle/2 - destElements = getAll( clone ); - srcElements = getAll( elem ); - - for ( i = 0, l = srcElements.length; i < l; i++ ) { - fixInput( srcElements[ i ], destElements[ i ] ); - } - } - - // Copy the events from the original to the clone - if ( dataAndEvents ) { - if ( deepDataAndEvents ) { - srcElements = srcElements || getAll( elem ); - destElements = destElements || getAll( clone ); - - for ( i = 0, l = srcElements.length; i < l; i++ ) { - cloneCopyEvent( srcElements[ i ], destElements[ i ] ); - } - } else { - cloneCopyEvent( elem, clone ); - } - } - - // Preserve script evaluation history - destElements = getAll( clone, "script" ); - if ( destElements.length > 0 ) { - setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); - } - - // Return the cloned set - return clone; - }, - - cleanData: function( elems ) { - var data, elem, type, - special = jQuery.event.special, - i = 0; - - for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { - if ( acceptData( elem ) ) { - if ( ( data = elem[ dataPriv.expando ] ) ) { - if ( data.events ) { - for ( type in data.events ) { - if ( special[ type ] ) { - jQuery.event.remove( elem, type ); - - // This is a shortcut to avoid jQuery.event.remove's overhead - } else { - jQuery.removeEvent( elem, type, data.handle ); - } - } - } - - // Support: Chrome <=35 - 45+ - // Assign undefined instead of using delete, see Data#remove - elem[ dataPriv.expando ] = undefined; - } - if ( elem[ dataUser.expando ] ) { - - // Support: Chrome <=35 - 45+ - // Assign undefined instead of using delete, see Data#remove - elem[ dataUser.expando ] = undefined; - } - } - } - } -} ); - -jQuery.fn.extend( { - detach: function( selector ) { - return remove( this, selector, true ); - }, - - remove: function( selector ) { - return remove( this, selector ); - }, - - text: function( value ) { - return access( this, function( value ) { - return value === undefined ? - jQuery.text( this ) : - this.empty().each( function() { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - this.textContent = value; - } - } ); - }, null, value, arguments.length ); - }, - - append: function() { - return domManip( this, arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.appendChild( elem ); - } - } ); - }, - - prepend: function() { - return domManip( this, arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.insertBefore( elem, target.firstChild ); - } - } ); - }, - - before: function() { - return domManip( this, arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this ); - } - } ); - }, - - after: function() { - return domManip( this, arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this.nextSibling ); - } - } ); - }, - - empty: function() { - var elem, - i = 0; - - for ( ; ( elem = this[ i ] ) != null; i++ ) { - if ( elem.nodeType === 1 ) { - - // Prevent memory leaks - jQuery.cleanData( getAll( elem, false ) ); - - // Remove any remaining nodes - elem.textContent = ""; - } - } - - return this; - }, - - clone: function( dataAndEvents, deepDataAndEvents ) { - dataAndEvents = dataAndEvents == null ? false : dataAndEvents; - deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; - - return this.map( function() { - return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); - } ); - }, - - html: function( value ) { - return access( this, function( value ) { - var elem = this[ 0 ] || {}, - i = 0, - l = this.length; - - if ( value === undefined && elem.nodeType === 1 ) { - return elem.innerHTML; - } - - // See if we can take a shortcut and just use innerHTML - if ( typeof value === "string" && !rnoInnerhtml.test( value ) && - !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { - - value = jQuery.htmlPrefilter( value ); - - try { - for ( ; i < l; i++ ) { - elem = this[ i ] || {}; - - // Remove element nodes and prevent memory leaks - if ( elem.nodeType === 1 ) { - jQuery.cleanData( getAll( elem, false ) ); - elem.innerHTML = value; - } - } - - elem = 0; - - // If using innerHTML throws an exception, use the fallback method - } catch ( e ) {} - } - - if ( elem ) { - this.empty().append( value ); - } - }, null, value, arguments.length ); - }, - - replaceWith: function() { - var ignored = []; - - // Make the changes, replacing each non-ignored context element with the new content - return domManip( this, arguments, function( elem ) { - var parent = this.parentNode; - - if ( jQuery.inArray( this, ignored ) < 0 ) { - jQuery.cleanData( getAll( this ) ); - if ( parent ) { - parent.replaceChild( elem, this ); - } - } - - // Force callback invocation - }, ignored ); - } -} ); - -jQuery.each( { - appendTo: "append", - prependTo: "prepend", - insertBefore: "before", - insertAfter: "after", - replaceAll: "replaceWith" -}, function( name, original ) { - jQuery.fn[ name ] = function( selector ) { - var elems, - ret = [], - insert = jQuery( selector ), - last = insert.length - 1, - i = 0; - - for ( ; i <= last; i++ ) { - elems = i === last ? this : this.clone( true ); - jQuery( insert[ i ] )[ original ]( elems ); - - // Support: Android <=4.0 only, PhantomJS 1 only - // .get() because push.apply(_, arraylike) throws on ancient WebKit - push.apply( ret, elems.get() ); - } - - return this.pushStack( ret ); - }; -} ); -var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); - -var rcustomProp = /^--/; - - -var getStyles = function( elem ) { - - // Support: IE <=11 only, Firefox <=30 (trac-15098, trac-14150) - // IE throws on elements created in popups - // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" - var view = elem.ownerDocument.defaultView; - - if ( !view || !view.opener ) { - view = window; - } - - return view.getComputedStyle( elem ); - }; - -var swap = function( elem, options, callback ) { - var ret, name, - old = {}; - - // Remember the old values, and insert the new ones - for ( name in options ) { - old[ name ] = elem.style[ name ]; - elem.style[ name ] = options[ name ]; - } - - ret = callback.call( elem ); - - // Revert the old values - for ( name in options ) { - elem.style[ name ] = old[ name ]; - } - - return ret; -}; - - -var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); - - - -( function() { - - // Executing both pixelPosition & boxSizingReliable tests require only one layout - // so they're executed at the same time to save the second computation. - function computeStyleTests() { - - // This is a singleton, we need to execute it only once - if ( !div ) { - return; - } - - container.style.cssText = "position:absolute;left:-11111px;width:60px;" + - "margin-top:1px;padding:0;border:0"; - div.style.cssText = - "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + - "margin:auto;border:1px;padding:1px;" + - "width:60%;top:1%"; - documentElement.appendChild( container ).appendChild( div ); - - var divStyle = window.getComputedStyle( div ); - pixelPositionVal = divStyle.top !== "1%"; - - // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 - reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; - - // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 - // Some styles come back with percentage values, even though they shouldn't - div.style.right = "60%"; - pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; - - // Support: IE 9 - 11 only - // Detect misreporting of content dimensions for box-sizing:border-box elements - boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; - - // Support: IE 9 only - // Detect overflow:scroll screwiness (gh-3699) - // Support: Chrome <=64 - // Don't get tricked when zoom affects offsetWidth (gh-4029) - div.style.position = "absolute"; - scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12; - - documentElement.removeChild( container ); - - // Nullify the div so it wouldn't be stored in the memory and - // it will also be a sign that checks already performed - div = null; - } - - function roundPixelMeasures( measure ) { - return Math.round( parseFloat( measure ) ); - } - - var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, - reliableTrDimensionsVal, reliableMarginLeftVal, - container = document.createElement( "div" ), - div = document.createElement( "div" ); - - // Finish early in limited (non-browser) environments - if ( !div.style ) { - return; - } - - // Support: IE <=9 - 11 only - // Style of cloned element affects source element cloned (trac-8908) - div.style.backgroundClip = "content-box"; - div.cloneNode( true ).style.backgroundClip = ""; - support.clearCloneStyle = div.style.backgroundClip === "content-box"; - - jQuery.extend( support, { - boxSizingReliable: function() { - computeStyleTests(); - return boxSizingReliableVal; - }, - pixelBoxStyles: function() { - computeStyleTests(); - return pixelBoxStylesVal; - }, - pixelPosition: function() { - computeStyleTests(); - return pixelPositionVal; - }, - reliableMarginLeft: function() { - computeStyleTests(); - return reliableMarginLeftVal; - }, - scrollboxSize: function() { - computeStyleTests(); - return scrollboxSizeVal; - }, - - // Support: IE 9 - 11+, Edge 15 - 18+ - // IE/Edge misreport `getComputedStyle` of table rows with width/height - // set in CSS while `offset*` properties report correct values. - // Behavior in IE 9 is more subtle than in newer versions & it passes - // some versions of this test; make sure not to make it pass there! - // - // Support: Firefox 70+ - // Only Firefox includes border widths - // in computed dimensions. (gh-4529) - reliableTrDimensions: function() { - var table, tr, trChild, trStyle; - if ( reliableTrDimensionsVal == null ) { - table = document.createElement( "table" ); - tr = document.createElement( "tr" ); - trChild = document.createElement( "div" ); - - table.style.cssText = "position:absolute;left:-11111px;border-collapse:separate"; - tr.style.cssText = "box-sizing:content-box;border:1px solid"; - - // Support: Chrome 86+ - // Height set through cssText does not get applied. - // Computed height then comes back as 0. - tr.style.height = "1px"; - trChild.style.height = "9px"; - - // Support: Android 8 Chrome 86+ - // In our bodyBackground.html iframe, - // display for all div elements is set to "inline", - // which causes a problem only in Android 8 Chrome 86. - // Ensuring the div is `display: block` - // gets around this issue. - trChild.style.display = "block"; - - documentElement - .appendChild( table ) - .appendChild( tr ) - .appendChild( trChild ); - - trStyle = window.getComputedStyle( tr ); - reliableTrDimensionsVal = ( parseInt( trStyle.height, 10 ) + - parseInt( trStyle.borderTopWidth, 10 ) + - parseInt( trStyle.borderBottomWidth, 10 ) ) === tr.offsetHeight; - - documentElement.removeChild( table ); - } - return reliableTrDimensionsVal; - } - } ); -} )(); - - -function curCSS( elem, name, computed ) { - var width, minWidth, maxWidth, ret, - isCustomProp = rcustomProp.test( name ), - - // Support: Firefox 51+ - // Retrieving style before computed somehow - // fixes an issue with getting wrong values - // on detached elements - style = elem.style; - - computed = computed || getStyles( elem ); - - // getPropertyValue is needed for: - // .css('filter') (IE 9 only, trac-12537) - // .css('--customProperty) (gh-3144) - if ( computed ) { - - // Support: IE <=9 - 11+ - // IE only supports `"float"` in `getPropertyValue`; in computed styles - // it's only available as `"cssFloat"`. We no longer modify properties - // sent to `.css()` apart from camelCasing, so we need to check both. - // Normally, this would create difference in behavior: if - // `getPropertyValue` returns an empty string, the value returned - // by `.css()` would be `undefined`. This is usually the case for - // disconnected elements. However, in IE even disconnected elements - // with no styles return `"none"` for `getPropertyValue( "float" )` - ret = computed.getPropertyValue( name ) || computed[ name ]; - - if ( isCustomProp && ret ) { - - // Support: Firefox 105+, Chrome <=105+ - // Spec requires trimming whitespace for custom properties (gh-4926). - // Firefox only trims leading whitespace. Chrome just collapses - // both leading & trailing whitespace to a single space. - // - // Fall back to `undefined` if empty string returned. - // This collapses a missing definition with property defined - // and set to an empty string but there's no standard API - // allowing us to differentiate them without a performance penalty - // and returning `undefined` aligns with older jQuery. - // - // rtrimCSS treats U+000D CARRIAGE RETURN and U+000C FORM FEED - // as whitespace while CSS does not, but this is not a problem - // because CSS preprocessing replaces them with U+000A LINE FEED - // (which *is* CSS whitespace) - // https://www.w3.org/TR/css-syntax-3/#input-preprocessing - ret = ret.replace( rtrimCSS, "$1" ) || undefined; - } - - if ( ret === "" && !isAttached( elem ) ) { - ret = jQuery.style( elem, name ); - } - - // A tribute to the "awesome hack by Dean Edwards" - // Android Browser returns percentage for some values, - // but width seems to be reliably pixels. - // This is against the CSSOM draft spec: - // https://drafts.csswg.org/cssom/#resolved-values - if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { - - // Remember the original values - width = style.width; - minWidth = style.minWidth; - maxWidth = style.maxWidth; - - // Put in the new values to get a computed value out - style.minWidth = style.maxWidth = style.width = ret; - ret = computed.width; - - // Revert the changed values - style.width = width; - style.minWidth = minWidth; - style.maxWidth = maxWidth; - } - } - - return ret !== undefined ? - - // Support: IE <=9 - 11 only - // IE returns zIndex value as an integer. - ret + "" : - ret; -} - - -function addGetHookIf( conditionFn, hookFn ) { - - // Define the hook, we'll check on the first run if it's really needed. - return { - get: function() { - if ( conditionFn() ) { - - // Hook not needed (or it's not possible to use it due - // to missing dependency), remove it. - delete this.get; - return; - } - - // Hook needed; redefine it so that the support test is not executed again. - return ( this.get = hookFn ).apply( this, arguments ); - } - }; -} - - -var cssPrefixes = [ "Webkit", "Moz", "ms" ], - emptyStyle = document.createElement( "div" ).style, - vendorProps = {}; - -// Return a vendor-prefixed property or undefined -function vendorPropName( name ) { - - // Check for vendor prefixed names - var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), - i = cssPrefixes.length; - - while ( i-- ) { - name = cssPrefixes[ i ] + capName; - if ( name in emptyStyle ) { - return name; - } - } -} - -// Return a potentially-mapped jQuery.cssProps or vendor prefixed property -function finalPropName( name ) { - var final = jQuery.cssProps[ name ] || vendorProps[ name ]; - - if ( final ) { - return final; - } - if ( name in emptyStyle ) { - return name; - } - return vendorProps[ name ] = vendorPropName( name ) || name; -} - - -var - - // Swappable if display is none or starts with table - // except "table", "table-cell", or "table-caption" - // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display - rdisplayswap = /^(none|table(?!-c[ea]).+)/, - cssShow = { position: "absolute", visibility: "hidden", display: "block" }, - cssNormalTransform = { - letterSpacing: "0", - fontWeight: "400" - }; - -function setPositiveNumber( _elem, value, subtract ) { - - // Any relative (+/-) values have already been - // normalized at this point - var matches = rcssNum.exec( value ); - return matches ? - - // Guard against undefined "subtract", e.g., when used as in cssHooks - Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : - value; -} - -function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { - var i = dimension === "width" ? 1 : 0, - extra = 0, - delta = 0, - marginDelta = 0; - - // Adjustment may not be necessary - if ( box === ( isBorderBox ? "border" : "content" ) ) { - return 0; - } - - for ( ; i < 4; i += 2 ) { - - // Both box models exclude margin - // Count margin delta separately to only add it after scroll gutter adjustment. - // This is needed to make negative margins work with `outerHeight( true )` (gh-3982). - if ( box === "margin" ) { - marginDelta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); - } - - // If we get here with a content-box, we're seeking "padding" or "border" or "margin" - if ( !isBorderBox ) { - - // Add padding - delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - - // For "border" or "margin", add border - if ( box !== "padding" ) { - delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - - // But still keep track of it otherwise - } else { - extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - - // If we get here with a border-box (content + padding + border), we're seeking "content" or - // "padding" or "margin" - } else { - - // For "content", subtract padding - if ( box === "content" ) { - delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - } - - // For "content" or "padding", subtract border - if ( box !== "margin" ) { - delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - } - } - - // Account for positive content-box scroll gutter when requested by providing computedVal - if ( !isBorderBox && computedVal >= 0 ) { - - // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border - // Assuming integer scroll gutter, subtract the rest and round down - delta += Math.max( 0, Math.ceil( - elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - - computedVal - - delta - - extra - - 0.5 - - // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter - // Use an explicit zero to avoid NaN (gh-3964) - ) ) || 0; - } - - return delta + marginDelta; -} - -function getWidthOrHeight( elem, dimension, extra ) { - - // Start with computed style - var styles = getStyles( elem ), - - // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). - // Fake content-box until we know it's needed to know the true value. - boxSizingNeeded = !support.boxSizingReliable() || extra, - isBorderBox = boxSizingNeeded && - jQuery.css( elem, "boxSizing", false, styles ) === "border-box", - valueIsBorderBox = isBorderBox, - - val = curCSS( elem, dimension, styles ), - offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); - - // Support: Firefox <=54 - // Return a confounding non-pixel value or feign ignorance, as appropriate. - if ( rnumnonpx.test( val ) ) { - if ( !extra ) { - return val; - } - val = "auto"; - } - - - // Support: IE 9 - 11 only - // Use offsetWidth/offsetHeight for when box sizing is unreliable. - // In those cases, the computed value can be trusted to be border-box. - if ( ( !support.boxSizingReliable() && isBorderBox || - - // Support: IE 10 - 11+, Edge 15 - 18+ - // IE/Edge misreport `getComputedStyle` of table rows with width/height - // set in CSS while `offset*` properties report correct values. - // Interestingly, in some cases IE 9 doesn't suffer from this issue. - !support.reliableTrDimensions() && nodeName( elem, "tr" ) || - - // Fall back to offsetWidth/offsetHeight when value is "auto" - // This happens for inline elements with no explicit setting (gh-3571) - val === "auto" || - - // Support: Android <=4.1 - 4.3 only - // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) - !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && - - // Make sure the element is visible & connected - elem.getClientRects().length ) { - - isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; - - // Where available, offsetWidth/offsetHeight approximate border box dimensions. - // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the - // retrieved value as a content box dimension. - valueIsBorderBox = offsetProp in elem; - if ( valueIsBorderBox ) { - val = elem[ offsetProp ]; - } - } - - // Normalize "" and auto - val = parseFloat( val ) || 0; - - // Adjust for the element's box model - return ( val + - boxModelAdjustment( - elem, - dimension, - extra || ( isBorderBox ? "border" : "content" ), - valueIsBorderBox, - styles, - - // Provide the current computed size to request scroll gutter calculation (gh-3589) - val - ) - ) + "px"; -} - -jQuery.extend( { - - // Add in style property hooks for overriding the default - // behavior of getting and setting a style property - cssHooks: { - opacity: { - get: function( elem, computed ) { - if ( computed ) { - - // We should always get a number back from opacity - var ret = curCSS( elem, "opacity" ); - return ret === "" ? "1" : ret; - } - } - } - }, - - // Don't automatically add "px" to these possibly-unitless properties - cssNumber: { - animationIterationCount: true, - aspectRatio: true, - borderImageSlice: true, - columnCount: true, - flexGrow: true, - flexShrink: true, - fontWeight: true, - gridArea: true, - gridColumn: true, - gridColumnEnd: true, - gridColumnStart: true, - gridRow: true, - gridRowEnd: true, - gridRowStart: true, - lineHeight: true, - opacity: true, - order: true, - orphans: true, - scale: true, - widows: true, - zIndex: true, - zoom: true, - - // SVG-related - fillOpacity: true, - floodOpacity: true, - stopOpacity: true, - strokeMiterlimit: true, - strokeOpacity: true - }, - - // Add in properties whose names you wish to fix before - // setting or getting the value - cssProps: {}, - - // Get and set the style property on a DOM Node - style: function( elem, name, value, extra ) { - - // Don't set styles on text and comment nodes - if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { - return; - } - - // Make sure that we're working with the right name - var ret, type, hooks, - origName = camelCase( name ), - isCustomProp = rcustomProp.test( name ), - style = elem.style; - - // Make sure that we're working with the right name. We don't - // want to query the value if it is a CSS custom property - // since they are user-defined. - if ( !isCustomProp ) { - name = finalPropName( origName ); - } - - // Gets hook for the prefixed version, then unprefixed version - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // Check if we're setting a value - if ( value !== undefined ) { - type = typeof value; - - // Convert "+=" or "-=" to relative numbers (trac-7345) - if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { - value = adjustCSS( elem, name, ret ); - - // Fixes bug trac-9237 - type = "number"; - } - - // Make sure that null and NaN values aren't set (trac-7116) - if ( value == null || value !== value ) { - return; - } - - // If a number was passed in, add the unit (except for certain CSS properties) - // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append - // "px" to a few hardcoded values. - if ( type === "number" && !isCustomProp ) { - value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); - } - - // background-* props affect original clone's values - if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { - style[ name ] = "inherit"; - } - - // If a hook was provided, use that value, otherwise just set the specified value - if ( !hooks || !( "set" in hooks ) || - ( value = hooks.set( elem, value, extra ) ) !== undefined ) { - - if ( isCustomProp ) { - style.setProperty( name, value ); - } else { - style[ name ] = value; - } - } - - } else { - - // If a hook was provided get the non-computed value from there - if ( hooks && "get" in hooks && - ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { - - return ret; - } - - // Otherwise just get the value from the style object - return style[ name ]; - } - }, - - css: function( elem, name, extra, styles ) { - var val, num, hooks, - origName = camelCase( name ), - isCustomProp = rcustomProp.test( name ); - - // Make sure that we're working with the right name. We don't - // want to modify the value if it is a CSS custom property - // since they are user-defined. - if ( !isCustomProp ) { - name = finalPropName( origName ); - } - - // Try prefixed name followed by the unprefixed name - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // If a hook was provided get the computed value from there - if ( hooks && "get" in hooks ) { - val = hooks.get( elem, true, extra ); - } - - // Otherwise, if a way to get the computed value exists, use that - if ( val === undefined ) { - val = curCSS( elem, name, styles ); - } - - // Convert "normal" to computed value - if ( val === "normal" && name in cssNormalTransform ) { - val = cssNormalTransform[ name ]; - } - - // Make numeric if forced or a qualifier was provided and val looks numeric - if ( extra === "" || extra ) { - num = parseFloat( val ); - return extra === true || isFinite( num ) ? num || 0 : val; - } - - return val; - } -} ); - -jQuery.each( [ "height", "width" ], function( _i, dimension ) { - jQuery.cssHooks[ dimension ] = { - get: function( elem, computed, extra ) { - if ( computed ) { - - // Certain elements can have dimension info if we invisibly show them - // but it must have a current display style that would benefit - return rdisplayswap.test( jQuery.css( elem, "display" ) ) && - - // Support: Safari 8+ - // Table columns in Safari have non-zero offsetWidth & zero - // getBoundingClientRect().width unless display is changed. - // Support: IE <=11 only - // Running getBoundingClientRect on a disconnected node - // in IE throws an error. - ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? - swap( elem, cssShow, function() { - return getWidthOrHeight( elem, dimension, extra ); - } ) : - getWidthOrHeight( elem, dimension, extra ); - } - }, - - set: function( elem, value, extra ) { - var matches, - styles = getStyles( elem ), - - // Only read styles.position if the test has a chance to fail - // to avoid forcing a reflow. - scrollboxSizeBuggy = !support.scrollboxSize() && - styles.position === "absolute", - - // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) - boxSizingNeeded = scrollboxSizeBuggy || extra, - isBorderBox = boxSizingNeeded && - jQuery.css( elem, "boxSizing", false, styles ) === "border-box", - subtract = extra ? - boxModelAdjustment( - elem, - dimension, - extra, - isBorderBox, - styles - ) : - 0; - - // Account for unreliable border-box dimensions by comparing offset* to computed and - // faking a content-box to get border and padding (gh-3699) - if ( isBorderBox && scrollboxSizeBuggy ) { - subtract -= Math.ceil( - elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - - parseFloat( styles[ dimension ] ) - - boxModelAdjustment( elem, dimension, "border", false, styles ) - - 0.5 - ); - } - - // Convert to pixels if value adjustment is needed - if ( subtract && ( matches = rcssNum.exec( value ) ) && - ( matches[ 3 ] || "px" ) !== "px" ) { - - elem.style[ dimension ] = value; - value = jQuery.css( elem, dimension ); - } - - return setPositiveNumber( elem, value, subtract ); - } - }; -} ); - -jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, - function( elem, computed ) { - if ( computed ) { - return ( parseFloat( curCSS( elem, "marginLeft" ) ) || - elem.getBoundingClientRect().left - - swap( elem, { marginLeft: 0 }, function() { - return elem.getBoundingClientRect().left; - } ) - ) + "px"; - } - } -); - -// These hooks are used by animate to expand properties -jQuery.each( { - margin: "", - padding: "", - border: "Width" -}, function( prefix, suffix ) { - jQuery.cssHooks[ prefix + suffix ] = { - expand: function( value ) { - var i = 0, - expanded = {}, - - // Assumes a single number if not a string - parts = typeof value === "string" ? value.split( " " ) : [ value ]; - - for ( ; i < 4; i++ ) { - expanded[ prefix + cssExpand[ i ] + suffix ] = - parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; - } - - return expanded; - } - }; - - if ( prefix !== "margin" ) { - jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; - } -} ); - -jQuery.fn.extend( { - css: function( name, value ) { - return access( this, function( elem, name, value ) { - var styles, len, - map = {}, - i = 0; - - if ( Array.isArray( name ) ) { - styles = getStyles( elem ); - len = name.length; - - for ( ; i < len; i++ ) { - map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); - } - - return map; - } - - return value !== undefined ? - jQuery.style( elem, name, value ) : - jQuery.css( elem, name ); - }, name, value, arguments.length > 1 ); - } -} ); - - -function Tween( elem, options, prop, end, easing ) { - return new Tween.prototype.init( elem, options, prop, end, easing ); -} -jQuery.Tween = Tween; - -Tween.prototype = { - constructor: Tween, - init: function( elem, options, prop, end, easing, unit ) { - this.elem = elem; - this.prop = prop; - this.easing = easing || jQuery.easing._default; - this.options = options; - this.start = this.now = this.cur(); - this.end = end; - this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); - }, - cur: function() { - var hooks = Tween.propHooks[ this.prop ]; - - return hooks && hooks.get ? - hooks.get( this ) : - Tween.propHooks._default.get( this ); - }, - run: function( percent ) { - var eased, - hooks = Tween.propHooks[ this.prop ]; - - if ( this.options.duration ) { - this.pos = eased = jQuery.easing[ this.easing ]( - percent, this.options.duration * percent, 0, 1, this.options.duration - ); - } else { - this.pos = eased = percent; - } - this.now = ( this.end - this.start ) * eased + this.start; - - if ( this.options.step ) { - this.options.step.call( this.elem, this.now, this ); - } - - if ( hooks && hooks.set ) { - hooks.set( this ); - } else { - Tween.propHooks._default.set( this ); - } - return this; - } -}; - -Tween.prototype.init.prototype = Tween.prototype; - -Tween.propHooks = { - _default: { - get: function( tween ) { - var result; - - // Use a property on the element directly when it is not a DOM element, - // or when there is no matching style property that exists. - if ( tween.elem.nodeType !== 1 || - tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { - return tween.elem[ tween.prop ]; - } - - // Passing an empty string as a 3rd parameter to .css will automatically - // attempt a parseFloat and fallback to a string if the parse fails. - // Simple values such as "10px" are parsed to Float; - // complex values such as "rotate(1rad)" are returned as-is. - result = jQuery.css( tween.elem, tween.prop, "" ); - - // Empty strings, null, undefined and "auto" are converted to 0. - return !result || result === "auto" ? 0 : result; - }, - set: function( tween ) { - - // Use step hook for back compat. - // Use cssHook if its there. - // Use .style if available and use plain properties where available. - if ( jQuery.fx.step[ tween.prop ] ) { - jQuery.fx.step[ tween.prop ]( tween ); - } else if ( tween.elem.nodeType === 1 && ( - jQuery.cssHooks[ tween.prop ] || - tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { - jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); - } else { - tween.elem[ tween.prop ] = tween.now; - } - } - } -}; - -// Support: IE <=9 only -// Panic based approach to setting things on disconnected nodes -Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { - set: function( tween ) { - if ( tween.elem.nodeType && tween.elem.parentNode ) { - tween.elem[ tween.prop ] = tween.now; - } - } -}; - -jQuery.easing = { - linear: function( p ) { - return p; - }, - swing: function( p ) { - return 0.5 - Math.cos( p * Math.PI ) / 2; - }, - _default: "swing" -}; - -jQuery.fx = Tween.prototype.init; - -// Back compat <1.8 extension point -jQuery.fx.step = {}; - - - - -var - fxNow, inProgress, - rfxtypes = /^(?:toggle|show|hide)$/, - rrun = /queueHooks$/; - -function schedule() { - if ( inProgress ) { - if ( document.hidden === false && window.requestAnimationFrame ) { - window.requestAnimationFrame( schedule ); - } else { - window.setTimeout( schedule, jQuery.fx.interval ); - } - - jQuery.fx.tick(); - } -} - -// Animations created synchronously will run synchronously -function createFxNow() { - window.setTimeout( function() { - fxNow = undefined; - } ); - return ( fxNow = Date.now() ); -} - -// Generate parameters to create a standard animation -function genFx( type, includeWidth ) { - var which, - i = 0, - attrs = { height: type }; - - // If we include width, step value is 1 to do all cssExpand values, - // otherwise step value is 2 to skip over Left and Right - includeWidth = includeWidth ? 1 : 0; - for ( ; i < 4; i += 2 - includeWidth ) { - which = cssExpand[ i ]; - attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; - } - - if ( includeWidth ) { - attrs.opacity = attrs.width = type; - } - - return attrs; -} - -function createTween( value, prop, animation ) { - var tween, - collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), - index = 0, - length = collection.length; - for ( ; index < length; index++ ) { - if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { - - // We're done with this property - return tween; - } - } -} - -function defaultPrefilter( elem, props, opts ) { - var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, - isBox = "width" in props || "height" in props, - anim = this, - orig = {}, - style = elem.style, - hidden = elem.nodeType && isHiddenWithinTree( elem ), - dataShow = dataPriv.get( elem, "fxshow" ); - - // Queue-skipping animations hijack the fx hooks - if ( !opts.queue ) { - hooks = jQuery._queueHooks( elem, "fx" ); - if ( hooks.unqueued == null ) { - hooks.unqueued = 0; - oldfire = hooks.empty.fire; - hooks.empty.fire = function() { - if ( !hooks.unqueued ) { - oldfire(); - } - }; - } - hooks.unqueued++; - - anim.always( function() { - - // Ensure the complete handler is called before this completes - anim.always( function() { - hooks.unqueued--; - if ( !jQuery.queue( elem, "fx" ).length ) { - hooks.empty.fire(); - } - } ); - } ); - } - - // Detect show/hide animations - for ( prop in props ) { - value = props[ prop ]; - if ( rfxtypes.test( value ) ) { - delete props[ prop ]; - toggle = toggle || value === "toggle"; - if ( value === ( hidden ? "hide" : "show" ) ) { - - // Pretend to be hidden if this is a "show" and - // there is still data from a stopped show/hide - if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { - hidden = true; - - // Ignore all other no-op show/hide data - } else { - continue; - } - } - orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); - } - } - - // Bail out if this is a no-op like .hide().hide() - propTween = !jQuery.isEmptyObject( props ); - if ( !propTween && jQuery.isEmptyObject( orig ) ) { - return; - } - - // Restrict "overflow" and "display" styles during box animations - if ( isBox && elem.nodeType === 1 ) { - - // Support: IE <=9 - 11, Edge 12 - 15 - // Record all 3 overflow attributes because IE does not infer the shorthand - // from identically-valued overflowX and overflowY and Edge just mirrors - // the overflowX value there. - opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; - - // Identify a display type, preferring old show/hide data over the CSS cascade - restoreDisplay = dataShow && dataShow.display; - if ( restoreDisplay == null ) { - restoreDisplay = dataPriv.get( elem, "display" ); - } - display = jQuery.css( elem, "display" ); - if ( display === "none" ) { - if ( restoreDisplay ) { - display = restoreDisplay; - } else { - - // Get nonempty value(s) by temporarily forcing visibility - showHide( [ elem ], true ); - restoreDisplay = elem.style.display || restoreDisplay; - display = jQuery.css( elem, "display" ); - showHide( [ elem ] ); - } - } - - // Animate inline elements as inline-block - if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { - if ( jQuery.css( elem, "float" ) === "none" ) { - - // Restore the original display value at the end of pure show/hide animations - if ( !propTween ) { - anim.done( function() { - style.display = restoreDisplay; - } ); - if ( restoreDisplay == null ) { - display = style.display; - restoreDisplay = display === "none" ? "" : display; - } - } - style.display = "inline-block"; - } - } - } - - if ( opts.overflow ) { - style.overflow = "hidden"; - anim.always( function() { - style.overflow = opts.overflow[ 0 ]; - style.overflowX = opts.overflow[ 1 ]; - style.overflowY = opts.overflow[ 2 ]; - } ); - } - - // Implement show/hide animations - propTween = false; - for ( prop in orig ) { - - // General show/hide setup for this element animation - if ( !propTween ) { - if ( dataShow ) { - if ( "hidden" in dataShow ) { - hidden = dataShow.hidden; - } - } else { - dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); - } - - // Store hidden/visible for toggle so `.stop().toggle()` "reverses" - if ( toggle ) { - dataShow.hidden = !hidden; - } - - // Show elements before animating them - if ( hidden ) { - showHide( [ elem ], true ); - } - - /* eslint-disable no-loop-func */ - - anim.done( function() { - - /* eslint-enable no-loop-func */ - - // The final step of a "hide" animation is actually hiding the element - if ( !hidden ) { - showHide( [ elem ] ); - } - dataPriv.remove( elem, "fxshow" ); - for ( prop in orig ) { - jQuery.style( elem, prop, orig[ prop ] ); - } - } ); - } - - // Per-property setup - propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); - if ( !( prop in dataShow ) ) { - dataShow[ prop ] = propTween.start; - if ( hidden ) { - propTween.end = propTween.start; - propTween.start = 0; - } - } - } -} - -function propFilter( props, specialEasing ) { - var index, name, easing, value, hooks; - - // camelCase, specialEasing and expand cssHook pass - for ( index in props ) { - name = camelCase( index ); - easing = specialEasing[ name ]; - value = props[ index ]; - if ( Array.isArray( value ) ) { - easing = value[ 1 ]; - value = props[ index ] = value[ 0 ]; - } - - if ( index !== name ) { - props[ name ] = value; - delete props[ index ]; - } - - hooks = jQuery.cssHooks[ name ]; - if ( hooks && "expand" in hooks ) { - value = hooks.expand( value ); - delete props[ name ]; - - // Not quite $.extend, this won't overwrite existing keys. - // Reusing 'index' because we have the correct "name" - for ( index in value ) { - if ( !( index in props ) ) { - props[ index ] = value[ index ]; - specialEasing[ index ] = easing; - } - } - } else { - specialEasing[ name ] = easing; - } - } -} - -function Animation( elem, properties, options ) { - var result, - stopped, - index = 0, - length = Animation.prefilters.length, - deferred = jQuery.Deferred().always( function() { - - // Don't match elem in the :animated selector - delete tick.elem; - } ), - tick = function() { - if ( stopped ) { - return false; - } - var currentTime = fxNow || createFxNow(), - remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), - - // Support: Android 2.3 only - // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (trac-12497) - temp = remaining / animation.duration || 0, - percent = 1 - temp, - index = 0, - length = animation.tweens.length; - - for ( ; index < length; index++ ) { - animation.tweens[ index ].run( percent ); - } - - deferred.notifyWith( elem, [ animation, percent, remaining ] ); - - // If there's more to do, yield - if ( percent < 1 && length ) { - return remaining; - } - - // If this was an empty animation, synthesize a final progress notification - if ( !length ) { - deferred.notifyWith( elem, [ animation, 1, 0 ] ); - } - - // Resolve the animation and report its conclusion - deferred.resolveWith( elem, [ animation ] ); - return false; - }, - animation = deferred.promise( { - elem: elem, - props: jQuery.extend( {}, properties ), - opts: jQuery.extend( true, { - specialEasing: {}, - easing: jQuery.easing._default - }, options ), - originalProperties: properties, - originalOptions: options, - startTime: fxNow || createFxNow(), - duration: options.duration, - tweens: [], - createTween: function( prop, end ) { - var tween = jQuery.Tween( elem, animation.opts, prop, end, - animation.opts.specialEasing[ prop ] || animation.opts.easing ); - animation.tweens.push( tween ); - return tween; - }, - stop: function( gotoEnd ) { - var index = 0, - - // If we are going to the end, we want to run all the tweens - // otherwise we skip this part - length = gotoEnd ? animation.tweens.length : 0; - if ( stopped ) { - return this; - } - stopped = true; - for ( ; index < length; index++ ) { - animation.tweens[ index ].run( 1 ); - } - - // Resolve when we played the last frame; otherwise, reject - if ( gotoEnd ) { - deferred.notifyWith( elem, [ animation, 1, 0 ] ); - deferred.resolveWith( elem, [ animation, gotoEnd ] ); - } else { - deferred.rejectWith( elem, [ animation, gotoEnd ] ); - } - return this; - } - } ), - props = animation.props; - - propFilter( props, animation.opts.specialEasing ); - - for ( ; index < length; index++ ) { - result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); - if ( result ) { - if ( isFunction( result.stop ) ) { - jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = - result.stop.bind( result ); - } - return result; - } - } - - jQuery.map( props, createTween, animation ); - - if ( isFunction( animation.opts.start ) ) { - animation.opts.start.call( elem, animation ); - } - - // Attach callbacks from options - animation - .progress( animation.opts.progress ) - .done( animation.opts.done, animation.opts.complete ) - .fail( animation.opts.fail ) - .always( animation.opts.always ); - - jQuery.fx.timer( - jQuery.extend( tick, { - elem: elem, - anim: animation, - queue: animation.opts.queue - } ) - ); - - return animation; -} - -jQuery.Animation = jQuery.extend( Animation, { - - tweeners: { - "*": [ function( prop, value ) { - var tween = this.createTween( prop, value ); - adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); - return tween; - } ] - }, - - tweener: function( props, callback ) { - if ( isFunction( props ) ) { - callback = props; - props = [ "*" ]; - } else { - props = props.match( rnothtmlwhite ); - } - - var prop, - index = 0, - length = props.length; - - for ( ; index < length; index++ ) { - prop = props[ index ]; - Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; - Animation.tweeners[ prop ].unshift( callback ); - } - }, - - prefilters: [ defaultPrefilter ], - - prefilter: function( callback, prepend ) { - if ( prepend ) { - Animation.prefilters.unshift( callback ); - } else { - Animation.prefilters.push( callback ); - } - } -} ); - -jQuery.speed = function( speed, easing, fn ) { - var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { - complete: fn || !fn && easing || - isFunction( speed ) && speed, - duration: speed, - easing: fn && easing || easing && !isFunction( easing ) && easing - }; - - // Go to the end state if fx are off - if ( jQuery.fx.off ) { - opt.duration = 0; - - } else { - if ( typeof opt.duration !== "number" ) { - if ( opt.duration in jQuery.fx.speeds ) { - opt.duration = jQuery.fx.speeds[ opt.duration ]; - - } else { - opt.duration = jQuery.fx.speeds._default; - } - } - } - - // Normalize opt.queue - true/undefined/null -> "fx" - if ( opt.queue == null || opt.queue === true ) { - opt.queue = "fx"; - } - - // Queueing - opt.old = opt.complete; - - opt.complete = function() { - if ( isFunction( opt.old ) ) { - opt.old.call( this ); - } - - if ( opt.queue ) { - jQuery.dequeue( this, opt.queue ); - } - }; - - return opt; -}; - -jQuery.fn.extend( { - fadeTo: function( speed, to, easing, callback ) { - - // Show any hidden elements after setting opacity to 0 - return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() - - // Animate to the value specified - .end().animate( { opacity: to }, speed, easing, callback ); - }, - animate: function( prop, speed, easing, callback ) { - var empty = jQuery.isEmptyObject( prop ), - optall = jQuery.speed( speed, easing, callback ), - doAnimation = function() { - - // Operate on a copy of prop so per-property easing won't be lost - var anim = Animation( this, jQuery.extend( {}, prop ), optall ); - - // Empty animations, or finishing resolves immediately - if ( empty || dataPriv.get( this, "finish" ) ) { - anim.stop( true ); - } - }; - - doAnimation.finish = doAnimation; - - return empty || optall.queue === false ? - this.each( doAnimation ) : - this.queue( optall.queue, doAnimation ); - }, - stop: function( type, clearQueue, gotoEnd ) { - var stopQueue = function( hooks ) { - var stop = hooks.stop; - delete hooks.stop; - stop( gotoEnd ); - }; - - if ( typeof type !== "string" ) { - gotoEnd = clearQueue; - clearQueue = type; - type = undefined; - } - if ( clearQueue ) { - this.queue( type || "fx", [] ); - } - - return this.each( function() { - var dequeue = true, - index = type != null && type + "queueHooks", - timers = jQuery.timers, - data = dataPriv.get( this ); - - if ( index ) { - if ( data[ index ] && data[ index ].stop ) { - stopQueue( data[ index ] ); - } - } else { - for ( index in data ) { - if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { - stopQueue( data[ index ] ); - } - } - } - - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && - ( type == null || timers[ index ].queue === type ) ) { - - timers[ index ].anim.stop( gotoEnd ); - dequeue = false; - timers.splice( index, 1 ); - } - } - - // Start the next in the queue if the last step wasn't forced. - // Timers currently will call their complete callbacks, which - // will dequeue but only if they were gotoEnd. - if ( dequeue || !gotoEnd ) { - jQuery.dequeue( this, type ); - } - } ); - }, - finish: function( type ) { - if ( type !== false ) { - type = type || "fx"; - } - return this.each( function() { - var index, - data = dataPriv.get( this ), - queue = data[ type + "queue" ], - hooks = data[ type + "queueHooks" ], - timers = jQuery.timers, - length = queue ? queue.length : 0; - - // Enable finishing flag on private data - data.finish = true; - - // Empty the queue first - jQuery.queue( this, type, [] ); - - if ( hooks && hooks.stop ) { - hooks.stop.call( this, true ); - } - - // Look for any active animations, and finish them - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && timers[ index ].queue === type ) { - timers[ index ].anim.stop( true ); - timers.splice( index, 1 ); - } - } - - // Look for any animations in the old queue and finish them - for ( index = 0; index < length; index++ ) { - if ( queue[ index ] && queue[ index ].finish ) { - queue[ index ].finish.call( this ); - } - } - - // Turn off finishing flag - delete data.finish; - } ); - } -} ); - -jQuery.each( [ "toggle", "show", "hide" ], function( _i, name ) { - var cssFn = jQuery.fn[ name ]; - jQuery.fn[ name ] = function( speed, easing, callback ) { - return speed == null || typeof speed === "boolean" ? - cssFn.apply( this, arguments ) : - this.animate( genFx( name, true ), speed, easing, callback ); - }; -} ); - -// Generate shortcuts for custom animations -jQuery.each( { - slideDown: genFx( "show" ), - slideUp: genFx( "hide" ), - slideToggle: genFx( "toggle" ), - fadeIn: { opacity: "show" }, - fadeOut: { opacity: "hide" }, - fadeToggle: { opacity: "toggle" } -}, function( name, props ) { - jQuery.fn[ name ] = function( speed, easing, callback ) { - return this.animate( props, speed, easing, callback ); - }; -} ); - -jQuery.timers = []; -jQuery.fx.tick = function() { - var timer, - i = 0, - timers = jQuery.timers; - - fxNow = Date.now(); - - for ( ; i < timers.length; i++ ) { - timer = timers[ i ]; - - // Run the timer and safely remove it when done (allowing for external removal) - if ( !timer() && timers[ i ] === timer ) { - timers.splice( i--, 1 ); - } - } - - if ( !timers.length ) { - jQuery.fx.stop(); - } - fxNow = undefined; -}; - -jQuery.fx.timer = function( timer ) { - jQuery.timers.push( timer ); - jQuery.fx.start(); -}; - -jQuery.fx.interval = 13; -jQuery.fx.start = function() { - if ( inProgress ) { - return; - } - - inProgress = true; - schedule(); -}; - -jQuery.fx.stop = function() { - inProgress = null; -}; - -jQuery.fx.speeds = { - slow: 600, - fast: 200, - - // Default speed - _default: 400 -}; - - -// Based off of the plugin by Clint Helfers, with permission. -jQuery.fn.delay = function( time, type ) { - time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; - type = type || "fx"; - - return this.queue( type, function( next, hooks ) { - var timeout = window.setTimeout( next, time ); - hooks.stop = function() { - window.clearTimeout( timeout ); - }; - } ); -}; - - -( function() { - var input = document.createElement( "input" ), - select = document.createElement( "select" ), - opt = select.appendChild( document.createElement( "option" ) ); - - input.type = "checkbox"; - - // Support: Android <=4.3 only - // Default value for a checkbox should be "on" - support.checkOn = input.value !== ""; - - // Support: IE <=11 only - // Must access selectedIndex to make default options select - support.optSelected = opt.selected; - - // Support: IE <=11 only - // An input loses its value after becoming a radio - input = document.createElement( "input" ); - input.value = "t"; - input.type = "radio"; - support.radioValue = input.value === "t"; -} )(); - - -var boolHook, - attrHandle = jQuery.expr.attrHandle; - -jQuery.fn.extend( { - attr: function( name, value ) { - return access( this, jQuery.attr, name, value, arguments.length > 1 ); - }, - - removeAttr: function( name ) { - return this.each( function() { - jQuery.removeAttr( this, name ); - } ); - } -} ); - -jQuery.extend( { - attr: function( elem, name, value ) { - var ret, hooks, - nType = elem.nodeType; - - // Don't get/set attributes on text, comment and attribute nodes - if ( nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - // Fallback to prop when attributes are not supported - if ( typeof elem.getAttribute === "undefined" ) { - return jQuery.prop( elem, name, value ); - } - - // Attribute hooks are determined by the lowercase version - // Grab necessary hook if one is defined - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - hooks = jQuery.attrHooks[ name.toLowerCase() ] || - ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); - } - - if ( value !== undefined ) { - if ( value === null ) { - jQuery.removeAttr( elem, name ); - return; - } - - if ( hooks && "set" in hooks && - ( ret = hooks.set( elem, value, name ) ) !== undefined ) { - return ret; - } - - elem.setAttribute( name, value + "" ); - return value; - } - - if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { - return ret; - } - - ret = jQuery.find.attr( elem, name ); - - // Non-existent attributes return null, we normalize to undefined - return ret == null ? undefined : ret; - }, - - attrHooks: { - type: { - set: function( elem, value ) { - if ( !support.radioValue && value === "radio" && - nodeName( elem, "input" ) ) { - var val = elem.value; - elem.setAttribute( "type", value ); - if ( val ) { - elem.value = val; - } - return value; - } - } - } - }, - - removeAttr: function( elem, value ) { - var name, - i = 0, - - // Attribute names can contain non-HTML whitespace characters - // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 - attrNames = value && value.match( rnothtmlwhite ); - - if ( attrNames && elem.nodeType === 1 ) { - while ( ( name = attrNames[ i++ ] ) ) { - elem.removeAttribute( name ); - } - } - } -} ); - -// Hooks for boolean attributes -boolHook = { - set: function( elem, value, name ) { - if ( value === false ) { - - // Remove boolean attributes when set to false - jQuery.removeAttr( elem, name ); - } else { - elem.setAttribute( name, name ); - } - return name; - } -}; - -jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( _i, name ) { - var getter = attrHandle[ name ] || jQuery.find.attr; - - attrHandle[ name ] = function( elem, name, isXML ) { - var ret, handle, - lowercaseName = name.toLowerCase(); - - if ( !isXML ) { - - // Avoid an infinite loop by temporarily removing this function from the getter - handle = attrHandle[ lowercaseName ]; - attrHandle[ lowercaseName ] = ret; - ret = getter( elem, name, isXML ) != null ? - lowercaseName : - null; - attrHandle[ lowercaseName ] = handle; - } - return ret; - }; -} ); - - - - -var rfocusable = /^(?:input|select|textarea|button)$/i, - rclickable = /^(?:a|area)$/i; - -jQuery.fn.extend( { - prop: function( name, value ) { - return access( this, jQuery.prop, name, value, arguments.length > 1 ); - }, - - removeProp: function( name ) { - return this.each( function() { - delete this[ jQuery.propFix[ name ] || name ]; - } ); - } -} ); - -jQuery.extend( { - prop: function( elem, name, value ) { - var ret, hooks, - nType = elem.nodeType; - - // Don't get/set properties on text, comment and attribute nodes - if ( nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - - // Fix name and attach hooks - name = jQuery.propFix[ name ] || name; - hooks = jQuery.propHooks[ name ]; - } - - if ( value !== undefined ) { - if ( hooks && "set" in hooks && - ( ret = hooks.set( elem, value, name ) ) !== undefined ) { - return ret; - } - - return ( elem[ name ] = value ); - } - - if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { - return ret; - } - - return elem[ name ]; - }, - - propHooks: { - tabIndex: { - get: function( elem ) { - - // Support: IE <=9 - 11 only - // elem.tabIndex doesn't always return the - // correct value when it hasn't been explicitly set - // Use proper attribute retrieval (trac-12072) - var tabindex = jQuery.find.attr( elem, "tabindex" ); - - if ( tabindex ) { - return parseInt( tabindex, 10 ); - } - - if ( - rfocusable.test( elem.nodeName ) || - rclickable.test( elem.nodeName ) && - elem.href - ) { - return 0; - } - - return -1; - } - } - }, - - propFix: { - "for": "htmlFor", - "class": "className" - } -} ); - -// Support: IE <=11 only -// Accessing the selectedIndex property -// forces the browser to respect setting selected -// on the option -// The getter ensures a default option is selected -// when in an optgroup -// eslint rule "no-unused-expressions" is disabled for this code -// since it considers such accessions noop -if ( !support.optSelected ) { - jQuery.propHooks.selected = { - get: function( elem ) { - - /* eslint no-unused-expressions: "off" */ - - var parent = elem.parentNode; - if ( parent && parent.parentNode ) { - parent.parentNode.selectedIndex; - } - return null; - }, - set: function( elem ) { - - /* eslint no-unused-expressions: "off" */ - - var parent = elem.parentNode; - if ( parent ) { - parent.selectedIndex; - - if ( parent.parentNode ) { - parent.parentNode.selectedIndex; - } - } - } - }; -} - -jQuery.each( [ - "tabIndex", - "readOnly", - "maxLength", - "cellSpacing", - "cellPadding", - "rowSpan", - "colSpan", - "useMap", - "frameBorder", - "contentEditable" -], function() { - jQuery.propFix[ this.toLowerCase() ] = this; -} ); - - - - - // Strip and collapse whitespace according to HTML spec - // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace - function stripAndCollapse( value ) { - var tokens = value.match( rnothtmlwhite ) || []; - return tokens.join( " " ); - } - - -function getClass( elem ) { - return elem.getAttribute && elem.getAttribute( "class" ) || ""; -} - -function classesToArray( value ) { - if ( Array.isArray( value ) ) { - return value; - } - if ( typeof value === "string" ) { - return value.match( rnothtmlwhite ) || []; - } - return []; -} - -jQuery.fn.extend( { - addClass: function( value ) { - var classNames, cur, curValue, className, i, finalValue; - - if ( isFunction( value ) ) { - return this.each( function( j ) { - jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); - } ); - } - - classNames = classesToArray( value ); - - if ( classNames.length ) { - return this.each( function() { - curValue = getClass( this ); - cur = this.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); - - if ( cur ) { - for ( i = 0; i < classNames.length; i++ ) { - className = classNames[ i ]; - if ( cur.indexOf( " " + className + " " ) < 0 ) { - cur += className + " "; - } - } - - // Only assign if different to avoid unneeded rendering. - finalValue = stripAndCollapse( cur ); - if ( curValue !== finalValue ) { - this.setAttribute( "class", finalValue ); - } - } - } ); - } - - return this; - }, - - removeClass: function( value ) { - var classNames, cur, curValue, className, i, finalValue; - - if ( isFunction( value ) ) { - return this.each( function( j ) { - jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); - } ); - } - - if ( !arguments.length ) { - return this.attr( "class", "" ); - } - - classNames = classesToArray( value ); - - if ( classNames.length ) { - return this.each( function() { - curValue = getClass( this ); - - // This expression is here for better compressibility (see addClass) - cur = this.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); - - if ( cur ) { - for ( i = 0; i < classNames.length; i++ ) { - className = classNames[ i ]; - - // Remove *all* instances - while ( cur.indexOf( " " + className + " " ) > -1 ) { - cur = cur.replace( " " + className + " ", " " ); - } - } - - // Only assign if different to avoid unneeded rendering. - finalValue = stripAndCollapse( cur ); - if ( curValue !== finalValue ) { - this.setAttribute( "class", finalValue ); - } - } - } ); - } - - return this; - }, - - toggleClass: function( value, stateVal ) { - var classNames, className, i, self, - type = typeof value, - isValidValue = type === "string" || Array.isArray( value ); - - if ( isFunction( value ) ) { - return this.each( function( i ) { - jQuery( this ).toggleClass( - value.call( this, i, getClass( this ), stateVal ), - stateVal - ); - } ); - } - - if ( typeof stateVal === "boolean" && isValidValue ) { - return stateVal ? this.addClass( value ) : this.removeClass( value ); - } - - classNames = classesToArray( value ); - - return this.each( function() { - if ( isValidValue ) { - - // Toggle individual class names - self = jQuery( this ); - - for ( i = 0; i < classNames.length; i++ ) { - className = classNames[ i ]; - - // Check each className given, space separated list - if ( self.hasClass( className ) ) { - self.removeClass( className ); - } else { - self.addClass( className ); - } - } - - // Toggle whole class name - } else if ( value === undefined || type === "boolean" ) { - className = getClass( this ); - if ( className ) { - - // Store className if set - dataPriv.set( this, "__className__", className ); - } - - // If the element has a class name or if we're passed `false`, - // then remove the whole classname (if there was one, the above saved it). - // Otherwise bring back whatever was previously saved (if anything), - // falling back to the empty string if nothing was stored. - if ( this.setAttribute ) { - this.setAttribute( "class", - className || value === false ? - "" : - dataPriv.get( this, "__className__" ) || "" - ); - } - } - } ); - }, - - hasClass: function( selector ) { - var className, elem, - i = 0; - - className = " " + selector + " "; - while ( ( elem = this[ i++ ] ) ) { - if ( elem.nodeType === 1 && - ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { - return true; - } - } - - return false; - } -} ); - - - - -var rreturn = /\r/g; - -jQuery.fn.extend( { - val: function( value ) { - var hooks, ret, valueIsFunction, - elem = this[ 0 ]; - - if ( !arguments.length ) { - if ( elem ) { - hooks = jQuery.valHooks[ elem.type ] || - jQuery.valHooks[ elem.nodeName.toLowerCase() ]; - - if ( hooks && - "get" in hooks && - ( ret = hooks.get( elem, "value" ) ) !== undefined - ) { - return ret; - } - - ret = elem.value; - - // Handle most common string cases - if ( typeof ret === "string" ) { - return ret.replace( rreturn, "" ); - } - - // Handle cases where value is null/undef or number - return ret == null ? "" : ret; - } - - return; - } - - valueIsFunction = isFunction( value ); - - return this.each( function( i ) { - var val; - - if ( this.nodeType !== 1 ) { - return; - } - - if ( valueIsFunction ) { - val = value.call( this, i, jQuery( this ).val() ); - } else { - val = value; - } - - // Treat null/undefined as ""; convert numbers to string - if ( val == null ) { - val = ""; - - } else if ( typeof val === "number" ) { - val += ""; - - } else if ( Array.isArray( val ) ) { - val = jQuery.map( val, function( value ) { - return value == null ? "" : value + ""; - } ); - } - - hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; - - // If set returns undefined, fall back to normal setting - if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { - this.value = val; - } - } ); - } -} ); - -jQuery.extend( { - valHooks: { - option: { - get: function( elem ) { - - var val = jQuery.find.attr( elem, "value" ); - return val != null ? - val : - - // Support: IE <=10 - 11 only - // option.text throws exceptions (trac-14686, trac-14858) - // Strip and collapse whitespace - // https://html.spec.whatwg.org/#strip-and-collapse-whitespace - stripAndCollapse( jQuery.text( elem ) ); - } - }, - select: { - get: function( elem ) { - var value, option, i, - options = elem.options, - index = elem.selectedIndex, - one = elem.type === "select-one", - values = one ? null : [], - max = one ? index + 1 : options.length; - - if ( index < 0 ) { - i = max; - - } else { - i = one ? index : 0; - } - - // Loop through all the selected options - for ( ; i < max; i++ ) { - option = options[ i ]; - - // Support: IE <=9 only - // IE8-9 doesn't update selected after form reset (trac-2551) - if ( ( option.selected || i === index ) && - - // Don't return options that are disabled or in a disabled optgroup - !option.disabled && - ( !option.parentNode.disabled || - !nodeName( option.parentNode, "optgroup" ) ) ) { - - // Get the specific value for the option - value = jQuery( option ).val(); - - // We don't need an array for one selects - if ( one ) { - return value; - } - - // Multi-Selects return an array - values.push( value ); - } - } - - return values; - }, - - set: function( elem, value ) { - var optionSet, option, - options = elem.options, - values = jQuery.makeArray( value ), - i = options.length; - - while ( i-- ) { - option = options[ i ]; - - /* eslint-disable no-cond-assign */ - - if ( option.selected = - jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 - ) { - optionSet = true; - } - - /* eslint-enable no-cond-assign */ - } - - // Force browsers to behave consistently when non-matching value is set - if ( !optionSet ) { - elem.selectedIndex = -1; - } - return values; - } - } - } -} ); - -// Radios and checkboxes getter/setter -jQuery.each( [ "radio", "checkbox" ], function() { - jQuery.valHooks[ this ] = { - set: function( elem, value ) { - if ( Array.isArray( value ) ) { - return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); - } - } - }; - if ( !support.checkOn ) { - jQuery.valHooks[ this ].get = function( elem ) { - return elem.getAttribute( "value" ) === null ? "on" : elem.value; - }; - } -} ); - - - - -// Return jQuery for attributes-only inclusion -var location = window.location; - -var nonce = { guid: Date.now() }; - -var rquery = ( /\?/ ); - - - -// Cross-browser xml parsing -jQuery.parseXML = function( data ) { - var xml, parserErrorElem; - if ( !data || typeof data !== "string" ) { - return null; - } - - // Support: IE 9 - 11 only - // IE throws on parseFromString with invalid input. - try { - xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); - } catch ( e ) {} - - parserErrorElem = xml && xml.getElementsByTagName( "parsererror" )[ 0 ]; - if ( !xml || parserErrorElem ) { - jQuery.error( "Invalid XML: " + ( - parserErrorElem ? - jQuery.map( parserErrorElem.childNodes, function( el ) { - return el.textContent; - } ).join( "\n" ) : - data - ) ); - } - return xml; -}; - - -var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, - stopPropagationCallback = function( e ) { - e.stopPropagation(); - }; - -jQuery.extend( jQuery.event, { - - trigger: function( event, data, elem, onlyHandlers ) { - - var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, - eventPath = [ elem || document ], - type = hasOwn.call( event, "type" ) ? event.type : event, - namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; - - cur = lastElement = tmp = elem = elem || document; - - // Don't do events on text and comment nodes - if ( elem.nodeType === 3 || elem.nodeType === 8 ) { - return; - } - - // focus/blur morphs to focusin/out; ensure we're not firing them right now - if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { - return; - } - - if ( type.indexOf( "." ) > -1 ) { - - // Namespaced trigger; create a regexp to match event type in handle() - namespaces = type.split( "." ); - type = namespaces.shift(); - namespaces.sort(); - } - ontype = type.indexOf( ":" ) < 0 && "on" + type; - - // Caller can pass in a jQuery.Event object, Object, or just an event type string - event = event[ jQuery.expando ] ? - event : - new jQuery.Event( type, typeof event === "object" && event ); - - // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) - event.isTrigger = onlyHandlers ? 2 : 3; - event.namespace = namespaces.join( "." ); - event.rnamespace = event.namespace ? - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : - null; - - // Clean up the event in case it is being reused - event.result = undefined; - if ( !event.target ) { - event.target = elem; - } - - // Clone any incoming data and prepend the event, creating the handler arg list - data = data == null ? - [ event ] : - jQuery.makeArray( data, [ event ] ); - - // Allow special events to draw outside the lines - special = jQuery.event.special[ type ] || {}; - if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { - return; - } - - // Determine event propagation path in advance, per W3C events spec (trac-9951) - // Bubble up to document, then to window; watch for a global ownerDocument var (trac-9724) - if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { - - bubbleType = special.delegateType || type; - if ( !rfocusMorph.test( bubbleType + type ) ) { - cur = cur.parentNode; - } - for ( ; cur; cur = cur.parentNode ) { - eventPath.push( cur ); - tmp = cur; - } - - // Only add window if we got to document (e.g., not plain obj or detached DOM) - if ( tmp === ( elem.ownerDocument || document ) ) { - eventPath.push( tmp.defaultView || tmp.parentWindow || window ); - } - } - - // Fire handlers on the event path - i = 0; - while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { - lastElement = cur; - event.type = i > 1 ? - bubbleType : - special.bindType || type; - - // jQuery handler - handle = ( dataPriv.get( cur, "events" ) || Object.create( null ) )[ event.type ] && - dataPriv.get( cur, "handle" ); - if ( handle ) { - handle.apply( cur, data ); - } - - // Native handler - handle = ontype && cur[ ontype ]; - if ( handle && handle.apply && acceptData( cur ) ) { - event.result = handle.apply( cur, data ); - if ( event.result === false ) { - event.preventDefault(); - } - } - } - event.type = type; - - // If nobody prevented the default action, do it now - if ( !onlyHandlers && !event.isDefaultPrevented() ) { - - if ( ( !special._default || - special._default.apply( eventPath.pop(), data ) === false ) && - acceptData( elem ) ) { - - // Call a native DOM method on the target with the same name as the event. - // Don't do default actions on window, that's where global variables be (trac-6170) - if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { - - // Don't re-trigger an onFOO event when we call its FOO() method - tmp = elem[ ontype ]; - - if ( tmp ) { - elem[ ontype ] = null; - } - - // Prevent re-triggering of the same event, since we already bubbled it above - jQuery.event.triggered = type; - - if ( event.isPropagationStopped() ) { - lastElement.addEventListener( type, stopPropagationCallback ); - } - - elem[ type ](); - - if ( event.isPropagationStopped() ) { - lastElement.removeEventListener( type, stopPropagationCallback ); - } - - jQuery.event.triggered = undefined; - - if ( tmp ) { - elem[ ontype ] = tmp; - } - } - } - } - - return event.result; - }, - - // Piggyback on a donor event to simulate a different one - // Used only for `focus(in | out)` events - simulate: function( type, elem, event ) { - var e = jQuery.extend( - new jQuery.Event(), - event, - { - type: type, - isSimulated: true - } - ); - - jQuery.event.trigger( e, null, elem ); - } - -} ); - -jQuery.fn.extend( { - - trigger: function( type, data ) { - return this.each( function() { - jQuery.event.trigger( type, data, this ); - } ); - }, - triggerHandler: function( type, data ) { - var elem = this[ 0 ]; - if ( elem ) { - return jQuery.event.trigger( type, data, elem, true ); - } - } -} ); - - -var - rbracket = /\[\]$/, - rCRLF = /\r?\n/g, - rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, - rsubmittable = /^(?:input|select|textarea|keygen)/i; - -function buildParams( prefix, obj, traditional, add ) { - var name; - - if ( Array.isArray( obj ) ) { - - // Serialize array item. - jQuery.each( obj, function( i, v ) { - if ( traditional || rbracket.test( prefix ) ) { - - // Treat each array item as a scalar. - add( prefix, v ); - - } else { - - // Item is non-scalar (array or object), encode its numeric index. - buildParams( - prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", - v, - traditional, - add - ); - } - } ); - - } else if ( !traditional && toType( obj ) === "object" ) { - - // Serialize object item. - for ( name in obj ) { - buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); - } - - } else { - - // Serialize scalar item. - add( prefix, obj ); - } -} - -// Serialize an array of form elements or a set of -// key/values into a query string -jQuery.param = function( a, traditional ) { - var prefix, - s = [], - add = function( key, valueOrFunction ) { - - // If value is a function, invoke it and use its return value - var value = isFunction( valueOrFunction ) ? - valueOrFunction() : - valueOrFunction; - - s[ s.length ] = encodeURIComponent( key ) + "=" + - encodeURIComponent( value == null ? "" : value ); - }; - - if ( a == null ) { - return ""; - } - - // If an array was passed in, assume that it is an array of form elements. - if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { - - // Serialize the form elements - jQuery.each( a, function() { - add( this.name, this.value ); - } ); - - } else { - - // If traditional, encode the "old" way (the way 1.3.2 or older - // did it), otherwise encode params recursively. - for ( prefix in a ) { - buildParams( prefix, a[ prefix ], traditional, add ); - } - } - - // Return the resulting serialization - return s.join( "&" ); -}; - -jQuery.fn.extend( { - serialize: function() { - return jQuery.param( this.serializeArray() ); - }, - serializeArray: function() { - return this.map( function() { - - // Can add propHook for "elements" to filter or add form elements - var elements = jQuery.prop( this, "elements" ); - return elements ? jQuery.makeArray( elements ) : this; - } ).filter( function() { - var type = this.type; - - // Use .is( ":disabled" ) so that fieldset[disabled] works - return this.name && !jQuery( this ).is( ":disabled" ) && - rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && - ( this.checked || !rcheckableType.test( type ) ); - } ).map( function( _i, elem ) { - var val = jQuery( this ).val(); - - if ( val == null ) { - return null; - } - - if ( Array.isArray( val ) ) { - return jQuery.map( val, function( val ) { - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - } ); - } - - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - } ).get(); - } -} ); - - -var - r20 = /%20/g, - rhash = /#.*$/, - rantiCache = /([?&])_=[^&]*/, - rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, - - // trac-7653, trac-8125, trac-8152: local protocol detection - rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, - rnoContent = /^(?:GET|HEAD)$/, - rprotocol = /^\/\//, - - /* Prefilters - * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) - * 2) These are called: - * - BEFORE asking for a transport - * - AFTER param serialization (s.data is a string if s.processData is true) - * 3) key is the dataType - * 4) the catchall symbol "*" can be used - * 5) execution will start with transport dataType and THEN continue down to "*" if needed - */ - prefilters = {}, - - /* Transports bindings - * 1) key is the dataType - * 2) the catchall symbol "*" can be used - * 3) selection will start with transport dataType and THEN go to "*" if needed - */ - transports = {}, - - // Avoid comment-prolog char sequence (trac-10098); must appease lint and evade compression - allTypes = "*/".concat( "*" ), - - // Anchor tag for parsing the document origin - originAnchor = document.createElement( "a" ); - -originAnchor.href = location.href; - -// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport -function addToPrefiltersOrTransports( structure ) { - - // dataTypeExpression is optional and defaults to "*" - return function( dataTypeExpression, func ) { - - if ( typeof dataTypeExpression !== "string" ) { - func = dataTypeExpression; - dataTypeExpression = "*"; - } - - var dataType, - i = 0, - dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; - - if ( isFunction( func ) ) { - - // For each dataType in the dataTypeExpression - while ( ( dataType = dataTypes[ i++ ] ) ) { - - // Prepend if requested - if ( dataType[ 0 ] === "+" ) { - dataType = dataType.slice( 1 ) || "*"; - ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); - - // Otherwise append - } else { - ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); - } - } - } - }; -} - -// Base inspection function for prefilters and transports -function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { - - var inspected = {}, - seekingTransport = ( structure === transports ); - - function inspect( dataType ) { - var selected; - inspected[ dataType ] = true; - jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { - var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); - if ( typeof dataTypeOrTransport === "string" && - !seekingTransport && !inspected[ dataTypeOrTransport ] ) { - - options.dataTypes.unshift( dataTypeOrTransport ); - inspect( dataTypeOrTransport ); - return false; - } else if ( seekingTransport ) { - return !( selected = dataTypeOrTransport ); - } - } ); - return selected; - } - - return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); -} - -// A special extend for ajax options -// that takes "flat" options (not to be deep extended) -// Fixes trac-9887 -function ajaxExtend( target, src ) { - var key, deep, - flatOptions = jQuery.ajaxSettings.flatOptions || {}; - - for ( key in src ) { - if ( src[ key ] !== undefined ) { - ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; - } - } - if ( deep ) { - jQuery.extend( true, target, deep ); - } - - return target; -} - -/* Handles responses to an ajax request: - * - finds the right dataType (mediates between content-type and expected dataType) - * - returns the corresponding response - */ -function ajaxHandleResponses( s, jqXHR, responses ) { - - var ct, type, finalDataType, firstDataType, - contents = s.contents, - dataTypes = s.dataTypes; - - // Remove auto dataType and get content-type in the process - while ( dataTypes[ 0 ] === "*" ) { - dataTypes.shift(); - if ( ct === undefined ) { - ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); - } - } - - // Check if we're dealing with a known content-type - if ( ct ) { - for ( type in contents ) { - if ( contents[ type ] && contents[ type ].test( ct ) ) { - dataTypes.unshift( type ); - break; - } - } - } - - // Check to see if we have a response for the expected dataType - if ( dataTypes[ 0 ] in responses ) { - finalDataType = dataTypes[ 0 ]; - } else { - - // Try convertible dataTypes - for ( type in responses ) { - if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { - finalDataType = type; - break; - } - if ( !firstDataType ) { - firstDataType = type; - } - } - - // Or just use first one - finalDataType = finalDataType || firstDataType; - } - - // If we found a dataType - // We add the dataType to the list if needed - // and return the corresponding response - if ( finalDataType ) { - if ( finalDataType !== dataTypes[ 0 ] ) { - dataTypes.unshift( finalDataType ); - } - return responses[ finalDataType ]; - } -} - -/* Chain conversions given the request and the original response - * Also sets the responseXXX fields on the jqXHR instance - */ -function ajaxConvert( s, response, jqXHR, isSuccess ) { - var conv2, current, conv, tmp, prev, - converters = {}, - - // Work with a copy of dataTypes in case we need to modify it for conversion - dataTypes = s.dataTypes.slice(); - - // Create converters map with lowercased keys - if ( dataTypes[ 1 ] ) { - for ( conv in s.converters ) { - converters[ conv.toLowerCase() ] = s.converters[ conv ]; - } - } - - current = dataTypes.shift(); - - // Convert to each sequential dataType - while ( current ) { - - if ( s.responseFields[ current ] ) { - jqXHR[ s.responseFields[ current ] ] = response; - } - - // Apply the dataFilter if provided - if ( !prev && isSuccess && s.dataFilter ) { - response = s.dataFilter( response, s.dataType ); - } - - prev = current; - current = dataTypes.shift(); - - if ( current ) { - - // There's only work to do if current dataType is non-auto - if ( current === "*" ) { - - current = prev; - - // Convert response if prev dataType is non-auto and differs from current - } else if ( prev !== "*" && prev !== current ) { - - // Seek a direct converter - conv = converters[ prev + " " + current ] || converters[ "* " + current ]; - - // If none found, seek a pair - if ( !conv ) { - for ( conv2 in converters ) { - - // If conv2 outputs current - tmp = conv2.split( " " ); - if ( tmp[ 1 ] === current ) { - - // If prev can be converted to accepted input - conv = converters[ prev + " " + tmp[ 0 ] ] || - converters[ "* " + tmp[ 0 ] ]; - if ( conv ) { - - // Condense equivalence converters - if ( conv === true ) { - conv = converters[ conv2 ]; - - // Otherwise, insert the intermediate dataType - } else if ( converters[ conv2 ] !== true ) { - current = tmp[ 0 ]; - dataTypes.unshift( tmp[ 1 ] ); - } - break; - } - } - } - } - - // Apply converter (if not an equivalence) - if ( conv !== true ) { - - // Unless errors are allowed to bubble, catch and return them - if ( conv && s.throws ) { - response = conv( response ); - } else { - try { - response = conv( response ); - } catch ( e ) { - return { - state: "parsererror", - error: conv ? e : "No conversion from " + prev + " to " + current - }; - } - } - } - } - } - } - - return { state: "success", data: response }; -} - -jQuery.extend( { - - // Counter for holding the number of active queries - active: 0, - - // Last-Modified header cache for next request - lastModified: {}, - etag: {}, - - ajaxSettings: { - url: location.href, - type: "GET", - isLocal: rlocalProtocol.test( location.protocol ), - global: true, - processData: true, - async: true, - contentType: "application/x-www-form-urlencoded; charset=UTF-8", - - /* - timeout: 0, - data: null, - dataType: null, - username: null, - password: null, - cache: null, - throws: false, - traditional: false, - headers: {}, - */ - - accepts: { - "*": allTypes, - text: "text/plain", - html: "text/html", - xml: "application/xml, text/xml", - json: "application/json, text/javascript" - }, - - contents: { - xml: /\bxml\b/, - html: /\bhtml/, - json: /\bjson\b/ - }, - - responseFields: { - xml: "responseXML", - text: "responseText", - json: "responseJSON" - }, - - // Data converters - // Keys separate source (or catchall "*") and destination types with a single space - converters: { - - // Convert anything to text - "* text": String, - - // Text to html (true = no transformation) - "text html": true, - - // Evaluate text as a json expression - "text json": JSON.parse, - - // Parse text as xml - "text xml": jQuery.parseXML - }, - - // For options that shouldn't be deep extended: - // you can add your own custom options here if - // and when you create one that shouldn't be - // deep extended (see ajaxExtend) - flatOptions: { - url: true, - context: true - } - }, - - // Creates a full fledged settings object into target - // with both ajaxSettings and settings fields. - // If target is omitted, writes into ajaxSettings. - ajaxSetup: function( target, settings ) { - return settings ? - - // Building a settings object - ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : - - // Extending ajaxSettings - ajaxExtend( jQuery.ajaxSettings, target ); - }, - - ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), - ajaxTransport: addToPrefiltersOrTransports( transports ), - - // Main method - ajax: function( url, options ) { - - // If url is an object, simulate pre-1.5 signature - if ( typeof url === "object" ) { - options = url; - url = undefined; - } - - // Force options to be an object - options = options || {}; - - var transport, - - // URL without anti-cache param - cacheURL, - - // Response headers - responseHeadersString, - responseHeaders, - - // timeout handle - timeoutTimer, - - // Url cleanup var - urlAnchor, - - // Request state (becomes false upon send and true upon completion) - completed, - - // To know if global events are to be dispatched - fireGlobals, - - // Loop variable - i, - - // uncached part of the url - uncached, - - // Create the final options object - s = jQuery.ajaxSetup( {}, options ), - - // Callbacks context - callbackContext = s.context || s, - - // Context for global events is callbackContext if it is a DOM node or jQuery collection - globalEventContext = s.context && - ( callbackContext.nodeType || callbackContext.jquery ) ? - jQuery( callbackContext ) : - jQuery.event, - - // Deferreds - deferred = jQuery.Deferred(), - completeDeferred = jQuery.Callbacks( "once memory" ), - - // Status-dependent callbacks - statusCode = s.statusCode || {}, - - // Headers (they are sent all at once) - requestHeaders = {}, - requestHeadersNames = {}, - - // Default abort message - strAbort = "canceled", - - // Fake xhr - jqXHR = { - readyState: 0, - - // Builds headers hashtable if needed - getResponseHeader: function( key ) { - var match; - if ( completed ) { - if ( !responseHeaders ) { - responseHeaders = {}; - while ( ( match = rheaders.exec( responseHeadersString ) ) ) { - responseHeaders[ match[ 1 ].toLowerCase() + " " ] = - ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) - .concat( match[ 2 ] ); - } - } - match = responseHeaders[ key.toLowerCase() + " " ]; - } - return match == null ? null : match.join( ", " ); - }, - - // Raw string - getAllResponseHeaders: function() { - return completed ? responseHeadersString : null; - }, - - // Caches the header - setRequestHeader: function( name, value ) { - if ( completed == null ) { - name = requestHeadersNames[ name.toLowerCase() ] = - requestHeadersNames[ name.toLowerCase() ] || name; - requestHeaders[ name ] = value; - } - return this; - }, - - // Overrides response content-type header - overrideMimeType: function( type ) { - if ( completed == null ) { - s.mimeType = type; - } - return this; - }, - - // Status-dependent callbacks - statusCode: function( map ) { - var code; - if ( map ) { - if ( completed ) { - - // Execute the appropriate callbacks - jqXHR.always( map[ jqXHR.status ] ); - } else { - - // Lazy-add the new callbacks in a way that preserves old ones - for ( code in map ) { - statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; - } - } - } - return this; - }, - - // Cancel the request - abort: function( statusText ) { - var finalText = statusText || strAbort; - if ( transport ) { - transport.abort( finalText ); - } - done( 0, finalText ); - return this; - } - }; - - // Attach deferreds - deferred.promise( jqXHR ); - - // Add protocol if not provided (prefilters might expect it) - // Handle falsy url in the settings object (trac-10093: consistency with old signature) - // We also use the url parameter if available - s.url = ( ( url || s.url || location.href ) + "" ) - .replace( rprotocol, location.protocol + "//" ); - - // Alias method option to type as per ticket trac-12004 - s.type = options.method || options.type || s.method || s.type; - - // Extract dataTypes list - s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; - - // A cross-domain request is in order when the origin doesn't match the current origin. - if ( s.crossDomain == null ) { - urlAnchor = document.createElement( "a" ); - - // Support: IE <=8 - 11, Edge 12 - 15 - // IE throws exception on accessing the href property if url is malformed, - // e.g. http://example.com:80x/ - try { - urlAnchor.href = s.url; - - // Support: IE <=8 - 11 only - // Anchor's host property isn't correctly set when s.url is relative - urlAnchor.href = urlAnchor.href; - s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== - urlAnchor.protocol + "//" + urlAnchor.host; - } catch ( e ) { - - // If there is an error parsing the URL, assume it is crossDomain, - // it can be rejected by the transport if it is invalid - s.crossDomain = true; - } - } - - // Convert data if not already a string - if ( s.data && s.processData && typeof s.data !== "string" ) { - s.data = jQuery.param( s.data, s.traditional ); - } - - // Apply prefilters - inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); - - // If request was aborted inside a prefilter, stop there - if ( completed ) { - return jqXHR; - } - - // We can fire global events as of now if asked to - // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (trac-15118) - fireGlobals = jQuery.event && s.global; - - // Watch for a new set of requests - if ( fireGlobals && jQuery.active++ === 0 ) { - jQuery.event.trigger( "ajaxStart" ); - } - - // Uppercase the type - s.type = s.type.toUpperCase(); - - // Determine if request has content - s.hasContent = !rnoContent.test( s.type ); - - // Save the URL in case we're toying with the If-Modified-Since - // and/or If-None-Match header later on - // Remove hash to simplify url manipulation - cacheURL = s.url.replace( rhash, "" ); - - // More options handling for requests with no content - if ( !s.hasContent ) { - - // Remember the hash so we can put it back - uncached = s.url.slice( cacheURL.length ); - - // If data is available and should be processed, append data to url - if ( s.data && ( s.processData || typeof s.data === "string" ) ) { - cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; - - // trac-9682: remove data so that it's not used in an eventual retry - delete s.data; - } - - // Add or update anti-cache param if needed - if ( s.cache === false ) { - cacheURL = cacheURL.replace( rantiCache, "$1" ); - uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce.guid++ ) + - uncached; - } - - // Put hash and anti-cache on the URL that will be requested (gh-1732) - s.url = cacheURL + uncached; - - // Change '%20' to '+' if this is encoded form body content (gh-2658) - } else if ( s.data && s.processData && - ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { - s.data = s.data.replace( r20, "+" ); - } - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - if ( jQuery.lastModified[ cacheURL ] ) { - jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); - } - if ( jQuery.etag[ cacheURL ] ) { - jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); - } - } - - // Set the correct header, if data is being sent - if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { - jqXHR.setRequestHeader( "Content-Type", s.contentType ); - } - - // Set the Accepts header for the server, depending on the dataType - jqXHR.setRequestHeader( - "Accept", - s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? - s.accepts[ s.dataTypes[ 0 ] ] + - ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : - s.accepts[ "*" ] - ); - - // Check for headers option - for ( i in s.headers ) { - jqXHR.setRequestHeader( i, s.headers[ i ] ); - } - - // Allow custom headers/mimetypes and early abort - if ( s.beforeSend && - ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { - - // Abort if not done already and return - return jqXHR.abort(); - } - - // Aborting is no longer a cancellation - strAbort = "abort"; - - // Install callbacks on deferreds - completeDeferred.add( s.complete ); - jqXHR.done( s.success ); - jqXHR.fail( s.error ); - - // Get transport - transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); - - // If no transport, we auto-abort - if ( !transport ) { - done( -1, "No Transport" ); - } else { - jqXHR.readyState = 1; - - // Send global event - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); - } - - // If request was aborted inside ajaxSend, stop there - if ( completed ) { - return jqXHR; - } - - // Timeout - if ( s.async && s.timeout > 0 ) { - timeoutTimer = window.setTimeout( function() { - jqXHR.abort( "timeout" ); - }, s.timeout ); - } - - try { - completed = false; - transport.send( requestHeaders, done ); - } catch ( e ) { - - // Rethrow post-completion exceptions - if ( completed ) { - throw e; - } - - // Propagate others as results - done( -1, e ); - } - } - - // Callback for when everything is done - function done( status, nativeStatusText, responses, headers ) { - var isSuccess, success, error, response, modified, - statusText = nativeStatusText; - - // Ignore repeat invocations - if ( completed ) { - return; - } - - completed = true; - - // Clear timeout if it exists - if ( timeoutTimer ) { - window.clearTimeout( timeoutTimer ); - } - - // Dereference transport for early garbage collection - // (no matter how long the jqXHR object will be used) - transport = undefined; - - // Cache response headers - responseHeadersString = headers || ""; - - // Set readyState - jqXHR.readyState = status > 0 ? 4 : 0; - - // Determine if successful - isSuccess = status >= 200 && status < 300 || status === 304; - - // Get response data - if ( responses ) { - response = ajaxHandleResponses( s, jqXHR, responses ); - } - - // Use a noop converter for missing script but not if jsonp - if ( !isSuccess && - jQuery.inArray( "script", s.dataTypes ) > -1 && - jQuery.inArray( "json", s.dataTypes ) < 0 ) { - s.converters[ "text script" ] = function() {}; - } - - // Convert no matter what (that way responseXXX fields are always set) - response = ajaxConvert( s, response, jqXHR, isSuccess ); - - // If successful, handle type chaining - if ( isSuccess ) { - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - modified = jqXHR.getResponseHeader( "Last-Modified" ); - if ( modified ) { - jQuery.lastModified[ cacheURL ] = modified; - } - modified = jqXHR.getResponseHeader( "etag" ); - if ( modified ) { - jQuery.etag[ cacheURL ] = modified; - } - } - - // if no content - if ( status === 204 || s.type === "HEAD" ) { - statusText = "nocontent"; - - // if not modified - } else if ( status === 304 ) { - statusText = "notmodified"; - - // If we have data, let's convert it - } else { - statusText = response.state; - success = response.data; - error = response.error; - isSuccess = !error; - } - } else { - - // Extract error from statusText and normalize for non-aborts - error = statusText; - if ( status || !statusText ) { - statusText = "error"; - if ( status < 0 ) { - status = 0; - } - } - } - - // Set data for the fake xhr object - jqXHR.status = status; - jqXHR.statusText = ( nativeStatusText || statusText ) + ""; - - // Success/Error - if ( isSuccess ) { - deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); - } else { - deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); - } - - // Status-dependent callbacks - jqXHR.statusCode( statusCode ); - statusCode = undefined; - - if ( fireGlobals ) { - globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", - [ jqXHR, s, isSuccess ? success : error ] ); - } - - // Complete - completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); - - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); - - // Handle the global AJAX counter - if ( !( --jQuery.active ) ) { - jQuery.event.trigger( "ajaxStop" ); - } - } - } - - return jqXHR; - }, - - getJSON: function( url, data, callback ) { - return jQuery.get( url, data, callback, "json" ); - }, - - getScript: function( url, callback ) { - return jQuery.get( url, undefined, callback, "script" ); - } -} ); - -jQuery.each( [ "get", "post" ], function( _i, method ) { - jQuery[ method ] = function( url, data, callback, type ) { - - // Shift arguments if data argument was omitted - if ( isFunction( data ) ) { - type = type || callback; - callback = data; - data = undefined; - } - - // The url can be an options object (which then must have .url) - return jQuery.ajax( jQuery.extend( { - url: url, - type: method, - dataType: type, - data: data, - success: callback - }, jQuery.isPlainObject( url ) && url ) ); - }; -} ); - -jQuery.ajaxPrefilter( function( s ) { - var i; - for ( i in s.headers ) { - if ( i.toLowerCase() === "content-type" ) { - s.contentType = s.headers[ i ] || ""; - } - } -} ); - - -jQuery._evalUrl = function( url, options, doc ) { - return jQuery.ajax( { - url: url, - - // Make this explicit, since user can override this through ajaxSetup (trac-11264) - type: "GET", - dataType: "script", - cache: true, - async: false, - global: false, - - // Only evaluate the response if it is successful (gh-4126) - // dataFilter is not invoked for failure responses, so using it instead - // of the default converter is kludgy but it works. - converters: { - "text script": function() {} - }, - dataFilter: function( response ) { - jQuery.globalEval( response, options, doc ); - } - } ); -}; - - -jQuery.fn.extend( { - wrapAll: function( html ) { - var wrap; - - if ( this[ 0 ] ) { - if ( isFunction( html ) ) { - html = html.call( this[ 0 ] ); - } - - // The elements to wrap the target around - wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); - - if ( this[ 0 ].parentNode ) { - wrap.insertBefore( this[ 0 ] ); - } - - wrap.map( function() { - var elem = this; - - while ( elem.firstElementChild ) { - elem = elem.firstElementChild; - } - - return elem; - } ).append( this ); - } - - return this; - }, - - wrapInner: function( html ) { - if ( isFunction( html ) ) { - return this.each( function( i ) { - jQuery( this ).wrapInner( html.call( this, i ) ); - } ); - } - - return this.each( function() { - var self = jQuery( this ), - contents = self.contents(); - - if ( contents.length ) { - contents.wrapAll( html ); - - } else { - self.append( html ); - } - } ); - }, - - wrap: function( html ) { - var htmlIsFunction = isFunction( html ); - - return this.each( function( i ) { - jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); - } ); - }, - - unwrap: function( selector ) { - this.parent( selector ).not( "body" ).each( function() { - jQuery( this ).replaceWith( this.childNodes ); - } ); - return this; - } -} ); - - -jQuery.expr.pseudos.hidden = function( elem ) { - return !jQuery.expr.pseudos.visible( elem ); -}; -jQuery.expr.pseudos.visible = function( elem ) { - return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); -}; - - - - -jQuery.ajaxSettings.xhr = function() { - try { - return new window.XMLHttpRequest(); - } catch ( e ) {} -}; - -var xhrSuccessStatus = { - - // File protocol always yields status code 0, assume 200 - 0: 200, - - // Support: IE <=9 only - // trac-1450: sometimes IE returns 1223 when it should be 204 - 1223: 204 - }, - xhrSupported = jQuery.ajaxSettings.xhr(); - -support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); -support.ajax = xhrSupported = !!xhrSupported; - -jQuery.ajaxTransport( function( options ) { - var callback, errorCallback; - - // Cross domain only allowed if supported through XMLHttpRequest - if ( support.cors || xhrSupported && !options.crossDomain ) { - return { - send: function( headers, complete ) { - var i, - xhr = options.xhr(); - - xhr.open( - options.type, - options.url, - options.async, - options.username, - options.password - ); - - // Apply custom fields if provided - if ( options.xhrFields ) { - for ( i in options.xhrFields ) { - xhr[ i ] = options.xhrFields[ i ]; - } - } - - // Override mime type if needed - if ( options.mimeType && xhr.overrideMimeType ) { - xhr.overrideMimeType( options.mimeType ); - } - - // X-Requested-With header - // For cross-domain requests, seeing as conditions for a preflight are - // akin to a jigsaw puzzle, we simply never set it to be sure. - // (it can always be set on a per-request basis or even using ajaxSetup) - // For same-domain requests, won't change header if already provided. - if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { - headers[ "X-Requested-With" ] = "XMLHttpRequest"; - } - - // Set headers - for ( i in headers ) { - xhr.setRequestHeader( i, headers[ i ] ); - } - - // Callback - callback = function( type ) { - return function() { - if ( callback ) { - callback = errorCallback = xhr.onload = - xhr.onerror = xhr.onabort = xhr.ontimeout = - xhr.onreadystatechange = null; - - if ( type === "abort" ) { - xhr.abort(); - } else if ( type === "error" ) { - - // Support: IE <=9 only - // On a manual native abort, IE9 throws - // errors on any property access that is not readyState - if ( typeof xhr.status !== "number" ) { - complete( 0, "error" ); - } else { - complete( - - // File: protocol always yields status 0; see trac-8605, trac-14207 - xhr.status, - xhr.statusText - ); - } - } else { - complete( - xhrSuccessStatus[ xhr.status ] || xhr.status, - xhr.statusText, - - // Support: IE <=9 only - // IE9 has no XHR2 but throws on binary (trac-11426) - // For XHR2 non-text, let the caller handle it (gh-2498) - ( xhr.responseType || "text" ) !== "text" || - typeof xhr.responseText !== "string" ? - { binary: xhr.response } : - { text: xhr.responseText }, - xhr.getAllResponseHeaders() - ); - } - } - }; - }; - - // Listen to events - xhr.onload = callback(); - errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); - - // Support: IE 9 only - // Use onreadystatechange to replace onabort - // to handle uncaught aborts - if ( xhr.onabort !== undefined ) { - xhr.onabort = errorCallback; - } else { - xhr.onreadystatechange = function() { - - // Check readyState before timeout as it changes - if ( xhr.readyState === 4 ) { - - // Allow onerror to be called first, - // but that will not handle a native abort - // Also, save errorCallback to a variable - // as xhr.onerror cannot be accessed - window.setTimeout( function() { - if ( callback ) { - errorCallback(); - } - } ); - } - }; - } - - // Create the abort callback - callback = callback( "abort" ); - - try { - - // Do send the request (this may raise an exception) - xhr.send( options.hasContent && options.data || null ); - } catch ( e ) { - - // trac-14683: Only rethrow if this hasn't been notified as an error yet - if ( callback ) { - throw e; - } - } - }, - - abort: function() { - if ( callback ) { - callback(); - } - } - }; - } -} ); - - - - -// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) -jQuery.ajaxPrefilter( function( s ) { - if ( s.crossDomain ) { - s.contents.script = false; - } -} ); - -// Install script dataType -jQuery.ajaxSetup( { - accepts: { - script: "text/javascript, application/javascript, " + - "application/ecmascript, application/x-ecmascript" - }, - contents: { - script: /\b(?:java|ecma)script\b/ - }, - converters: { - "text script": function( text ) { - jQuery.globalEval( text ); - return text; - } - } -} ); - -// Handle cache's special case and crossDomain -jQuery.ajaxPrefilter( "script", function( s ) { - if ( s.cache === undefined ) { - s.cache = false; - } - if ( s.crossDomain ) { - s.type = "GET"; - } -} ); - -// Bind script tag hack transport -jQuery.ajaxTransport( "script", function( s ) { - - // This transport only deals with cross domain or forced-by-attrs requests - if ( s.crossDomain || s.scriptAttrs ) { - var script, callback; - return { - send: function( _, complete ) { - script = jQuery( "