diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index d3c3b416..762750f9 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: Setup dotnet uses: actions/setup-dotnet@v1 - name: Build Departure Board with dotnet @@ -15,12 +15,33 @@ jobs: - name: Run Departure Board Unit Tests run: dotnet test + cypress-run: + name: Cypress Tests + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + # Install NPM dependencies, cache them correctly + # and run all Cypress tests + - name: Cypress run + uses: cypress-io/github-action@v4 + with: + build: npm run ngcc + start: npm start + wait-on: 'http://localhost:4200' + browser: chrome + record: true + working-directory: ./DepartureBoardWeb/ClientApp + env: + CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + Build_Docker_Image: name: Build Docker Image runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v1 + uses: actions/checkout@v2 with: fetch-depth: 1 @@ -53,7 +74,7 @@ jobs: if: github.ref == 'refs/heads/master' steps: - name: Checkout - uses: actions/checkout@v1 + uses: actions/checkout@v2 - name: Create Lambda Zip run: | diff --git a/BusDataAPI/BusDataAPI.csproj b/BusDataAPI/BusDataAPI.csproj index dc443ae8..c016ea3c 100644 --- a/BusDataAPI/BusDataAPI.csproj +++ b/BusDataAPI/BusDataAPI.csproj @@ -5,9 +5,9 @@ - - - + + + diff --git a/DepartureBoardCore/ConfigService.cs b/DepartureBoardCore/ConfigService.cs index 79f7219c..844089e1 100644 --- a/DepartureBoardCore/ConfigService.cs +++ b/DepartureBoardCore/ConfigService.cs @@ -124,17 +124,7 @@ public static string TflApiToken return _tflApiToken; } } - - public static string MoesifApplicationId - { - get - { - if(string.IsNullOrEmpty(_moesifApplicationId)) - LoadConfig(); - return _moesifApplicationId; - } - } - + #endregion private static string _realTimeTrainsToken; @@ -149,7 +139,6 @@ public static string MoesifApplicationId private static string _deutscheBahnToken; private static int? _prometheusPort; private static string _tflApiToken; - private static string _moesifApplicationId; private static void LoadConfig() { @@ -171,7 +160,6 @@ private static void LoadConfig() _transportApi_app_key = rootElement.Element("TransportAPI")?.Element("app_key")?.Value; _deutscheBahnToken = rootElement.Element("DeutscheBahnToken")?.Value; _tflApiToken = rootElement.Element("TflApiToken")?.Value; - _moesifApplicationId = rootElement.Element("MoesifApplicationId")?.Value; if (!string.IsNullOrEmpty(rootElement.Element("PrometheusPort")?.Value) && int.TryParse(rootElement.Element("PrometheusPort")?.Value, out int port)) _prometheusPort = port; if (_realTimeTrainsToken == "[INSERT_REALTIMETRAINS_TOKEN_HERE]"){ @@ -219,9 +207,6 @@ private static void CheckEnviornmentVariableConfig() if (!string.IsNullOrEmpty(Environment.GetEnvironmentVariable("TflApiToken"))) _tflApiToken = Environment.GetEnvironmentVariable("TflApiToken"); - if (!string.IsNullOrEmpty(Environment.GetEnvironmentVariable("MoesifApplicationId"))) - _moesifApplicationId = Environment.GetEnvironmentVariable("MoesifApplicationId"); - if (!string.IsNullOrEmpty(Environment.GetEnvironmentVariable("PrometheusPort")) && int.TryParse(Environment.GetEnvironmentVariable("PrometheusPort"), out int port)) _prometheusPort = port; } diff --git a/DepartureBoardWeb/ClientApp/.browserslistrc b/DepartureBoardWeb/ClientApp/.browserslistrc index 16e22ae7..a3eeac52 100644 --- a/DepartureBoardWeb/ClientApp/.browserslistrc +++ b/DepartureBoardWeb/ClientApp/.browserslistrc @@ -6,3 +6,4 @@ last 2 versions Firefox ESR not dead +not IE 11 diff --git a/DepartureBoardWeb/ClientApp/angular.json b/DepartureBoardWeb/ClientApp/angular.json index 045fafc4..d14b11c7 100644 --- a/DepartureBoardWeb/ClientApp/angular.json +++ b/DepartureBoardWeb/ClientApp/angular.json @@ -13,7 +13,8 @@ "build": { "builder": "@angular-devkit/build-angular:browser", "options": { - "progress": false, + "progress": true, + "aot": true, "outputPath": "dist", "index": "src/index.html", "main": "src/main.ts", @@ -31,8 +32,6 @@ } ], "styles": [ - "node_modules/@taiga-ui/core/styles/taiga-ui-global.less", - "node_modules/@taiga-ui/core/styles/taiga-ui-theme.less", "src/default.theme.scss", "node_modules/bootstrap/dist/css/bootstrap.min.css", "src/styles.css", @@ -45,7 +44,11 @@ "./node_modules/angular-notifier/styles/types/type-success.css", "./node_modules/angular-notifier/styles/types/type-warning.css" ], - "scripts": [], + "scripts": [ + "./node_modules/@popperjs/core/dist/umd/popper-lite.js", + "./node_modules/jquery/dist/jquery.min.js", + "./node_modules/bootstrap/dist/js/bootstrap.min.js" + ], "vendorChunk": true, "extractLicenses": false, "buildOptimizer": false, diff --git a/DepartureBoardWeb/ClientApp/cypress.config.ts b/DepartureBoardWeb/ClientApp/cypress.config.ts new file mode 100644 index 00000000..1edef8ce --- /dev/null +++ b/DepartureBoardWeb/ClientApp/cypress.config.ts @@ -0,0 +1,11 @@ +import { defineConfig } from "cypress"; + +export default defineConfig({ + projectId: 'soessr', + e2e: { + baseUrl: "http://localhost:4200", + viewportHeight: 1080, + viewportWidth: 1920, + scrollBehavior: "center", + }, +}); diff --git a/DepartureBoardWeb/ClientApp/cypress/.gitignore b/DepartureBoardWeb/ClientApp/cypress/.gitignore new file mode 100644 index 00000000..d3ca5be4 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/cypress/.gitignore @@ -0,0 +1,2 @@ +videos/ +downloads/ diff --git a/DepartureBoardWeb/ClientApp/cypress/e2e/home.cy.js b/DepartureBoardWeb/ClientApp/cypress/e2e/home.cy.js new file mode 100644 index 00000000..a4cc34c3 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/cypress/e2e/home.cy.js @@ -0,0 +1,31 @@ +describe('Home Page Tests', () => { + beforeEach(() => cy.visit('/')) + + it('Visits the Home Page', () => { + cy.get('h1').should('have.text', " Led Departure Board ") + }) + + it('Clicks Find your station', () => { + cy.get("#find-your-station").click({scrollBehavior: "center"}) + cy.url().should('eq', Cypress.config().baseUrl + '/#search') + }) + + it('How to User button has correct link', () => { + cy.get('#how-to-use-button') + }) + + it('Search and Navigate to EUS. Should hide navbar after 3 seconds', () => { + cy.get('[data-placeholder="Station Name"]') + .focus() + .type("Euston") + + + cy.get('mat-option').contains(" London Euston - (EUS) - [GB] ").click() + cy.get('#btnSearch').click() + + cy.url().should('contain', '/EUS') + cy.get('#nav-menu-title').should('exist') + cy.wait(3000) + cy.get('#nav-menu-title').should('not.exist') + }) +}) diff --git a/DepartureBoardWeb/ClientApp/cypress/fixtures/example.json b/DepartureBoardWeb/ClientApp/cypress/fixtures/example.json new file mode 100644 index 00000000..02e42543 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/cypress/fixtures/example.json @@ -0,0 +1,5 @@ +{ + "name": "Using fixtures to represent data", + "email": "hello@cypress.io", + "body": "Fixtures are a great way to mock data for responses to routes" +} diff --git a/DepartureBoardWeb/ClientApp/cypress/support/commands.ts b/DepartureBoardWeb/ClientApp/cypress/support/commands.ts new file mode 100644 index 00000000..698b01a4 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/cypress/support/commands.ts @@ -0,0 +1,37 @@ +/// +// *********************************************** +// This example commands.ts shows you how to +// create various custom commands and overwrite +// existing commands. +// +// For more comprehensive examples of custom +// commands please read more here: +// https://on.cypress.io/custom-commands +// *********************************************** +// +// +// -- This is a parent command -- +// Cypress.Commands.add('login', (email, password) => { ... }) +// +// +// -- This is a child command -- +// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... }) +// +// +// -- This is a dual command -- +// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... }) +// +// +// -- This will overwrite an existing command -- +// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... }) +// +// declare global { +// namespace Cypress { +// interface Chainable { +// login(email: string, password: string): Chainable +// drag(subject: string, options?: Partial): Chainable +// dismiss(subject: string, options?: Partial): Chainable +// visit(originalFn: CommandOriginalFn, url: string, options: Partial): Chainable +// } +// } +// } \ No newline at end of file diff --git a/DepartureBoardWeb/ClientApp/cypress/support/e2e.ts b/DepartureBoardWeb/ClientApp/cypress/support/e2e.ts new file mode 100644 index 00000000..ea73a3a2 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/cypress/support/e2e.ts @@ -0,0 +1,24 @@ +// *********************************************************** +// This example support/e2e.ts is processed and +// loaded automatically before your test files. +// +// This is a great place to put global configuration and +// behavior that modifies Cypress. +// +// You can change the location of this file or turn off +// automatically serving support files with the +// 'supportFile' configuration option. +// +// You can read more here: +// https://on.cypress.io/configuration +// *********************************************************** + +// Import commands.js using ES2015 syntax: +import './commands' + +// Alternatively you can use CommonJS syntax: +// require('./commands') +beforeEach(() => { + cy.setCookie("CookieScriptConsent", "{\"action\":\"reject\",\"categories\":\"[]\"}") +}) + diff --git a/DepartureBoardWeb/ClientApp/package-lock.json b/DepartureBoardWeb/ClientApp/package-lock.json index a225d168..e850c3e2 100644 --- a/DepartureBoardWeb/ClientApp/package-lock.json +++ b/DepartureBoardWeb/ClientApp/package-lock.json @@ -754,18 +754,11 @@ } }, "@angular/flex-layout": { - "version": "11.0.0-beta.33", - "resolved": "https://registry.npmjs.org/@angular/flex-layout/-/flex-layout-11.0.0-beta.33.tgz", - "integrity": "sha512-unfhw3abZuKtdwQicRStHCYGbANPTHYg4WNRQk/RC5Mxq+4WOp4Q8HI7GqRHCGUYDCGUP7w1sU/oDt8f09nM8w==", + "version": "12.0.0-beta.35", + "resolved": "https://registry.npmjs.org/@angular/flex-layout/-/flex-layout-12.0.0-beta.35.tgz", + "integrity": "sha512-nPi2MGDFuCacwWHqxF/G7lUJd2X99HbLjjUvKXnyLwyCIVgH1sfS52su2wYbVYWJRqAVAB2/VMlrtW8Khr8hDA==", "requires": { - "tslib": "^2.0.0" - }, - "dependencies": { - "tslib": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", - "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" - } + "tslib": "^2.1.0" } }, "@angular/forms": { @@ -2090,20 +2083,12 @@ "to-fast-properties": "^2.0.0" } }, - "@benfl3713/angular-components": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/@benfl3713/angular-components/-/angular-components-0.0.2.tgz", - "integrity": "sha512-EK5AYTTHHwj7Hqc/KLmnNk/H5rkM9DzuqXPxtVEgliUwc8L0EPf+E0oc+1KID/SrujdWYqm5iZxCKWvjDF+6LA==", - "requires": { - "tslib": "^2.0.0" - }, - "dependencies": { - "tslib": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", - "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==" - } - } + "@colors/colors": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", + "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", + "dev": true, + "optional": true }, "@csstools/convert-colors": { "version": "1.4.0", @@ -2111,6 +2096,89 @@ "integrity": "sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==", "dev": true }, + "@cypress/request": { + "version": "2.88.10", + "resolved": "https://registry.npmjs.org/@cypress/request/-/request-2.88.10.tgz", + "integrity": "sha512-Zp7F+R93N0yZyG34GutyTNr+okam7s/Fzc1+i3kcqOP8vk6OuajuE9qZJ6Rs+10/1JFtXFYMdyarnU1rZuJesg==", + "dev": true, + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "http-signature": "~1.3.6", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^8.3.2" + }, + "dependencies": { + "http-signature": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.3.6.tgz", + "integrity": "sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==", + "dev": true, + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^2.0.2", + "sshpk": "^1.14.1" + } + }, + "json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", + "dev": true + }, + "jsprim": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-2.0.2.tgz", + "integrity": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==", + "dev": true, + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" + } + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dev": true, + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true + } + } + }, + "@cypress/xvfb": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@cypress/xvfb/-/xvfb-1.2.4.tgz", + "integrity": "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==", + "dev": true, + "requires": { + "debug": "^3.1.0", + "lodash.once": "^4.1.1" + } + }, "@discoveryjs/json-ext": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.2.tgz", @@ -2478,6 +2546,21 @@ "protobufjs": "^6.8.6" } }, + "@hapi/hoek": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", + "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==", + "dev": true + }, + "@hapi/topo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", + "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", + "dev": true, + "requires": { + "@hapi/hoek": "^9.0.0" + } + }, "@istanbuljs/schema": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", @@ -2497,67 +2580,6 @@ "schema-utils": "^2.7.0" } }, - "@ng-web-apis/common": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@ng-web-apis/common/-/common-1.9.0.tgz", - "integrity": "sha512-Q0ZRhCEuiOwCfZv88B1xudVuSPdr3ujMcuc/JON9X/7Fu245yDRNJZD0p+uHiHfjkG+/6H2VpIY/K4ziJiQ6yg==", - "requires": { - "network-information-types": "^0.1.0", - "tslib": "^1.9.0" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - } - }, - "@ng-web-apis/intersection-observer": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@ng-web-apis/intersection-observer/-/intersection-observer-2.0.1.tgz", - "integrity": "sha512-HKWOnfPOZziAKeOjLGZHntCl/M9FCJmnIUfzhZWTLIDdvheghcIQ0qMvfXcpGJpwkbm+MiIEOwEqb/c3FtBBYg==", - "requires": { - "tslib": "^1.9.0" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - } - }, - "@ng-web-apis/mutation-observer": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@ng-web-apis/mutation-observer/-/mutation-observer-1.1.0.tgz", - "integrity": "sha512-ThcsCaGCXf07xvIAFdP967MVxE74rH6dfZtoKky6RR69aMhdPz0AQuevVKIpcX4mU2P3ROpZhqP8MGhWD7DnOg==", - "requires": { - "tslib": "^1.9.0" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - } - }, - "@ng-web-apis/resize-observer": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@ng-web-apis/resize-observer/-/resize-observer-1.0.3.tgz", - "integrity": "sha512-ddmhxlca4knmN7BicgPTBScYXNTEKKF3z2WXPgmhOTxhVOyg/HHRDtq5nDljJt1eEaut2gcnhgDm4/6eGfedWw==", - "requires": { - "tslib": "^1.9.0" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - } - }, "@ngtools/webpack": { "version": "12.0.3", "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-12.0.3.tgz", @@ -2724,11 +2746,6 @@ "yallist": "^4.0.0" } }, - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" - }, "node-gyp": { "version": "7.1.2", "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-7.1.2.tgz", @@ -2829,10 +2846,15 @@ } } }, + "@popperjs/core": { + "version": "2.11.6", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.6.tgz", + "integrity": "sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==" + }, "@protobufjs/aspromise": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", - "integrity": "sha1-m4sMxmPWaafY9vXQiToU00jzD78=" + "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==" }, "@protobufjs/base64": { "version": "1.1.2", @@ -2847,12 +2869,12 @@ "@protobufjs/eventemitter": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", - "integrity": "sha1-NVy8mLr61ZePntCV85diHx0Ga3A=" + "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==" }, "@protobufjs/fetch": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", - "integrity": "sha1-upn7WYYUr2VwDBYZ/wbUVLDYTEU=", + "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==", "requires": { "@protobufjs/aspromise": "^1.1.1", "@protobufjs/inquire": "^1.1.0" @@ -2861,27 +2883,27 @@ "@protobufjs/float": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", - "integrity": "sha1-Xp4avctz/Ap8uLKR33jIy9l7h9E=" + "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==" }, "@protobufjs/inquire": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", - "integrity": "sha1-/yAOPnzyQp4tyvwRQIKOjMY48Ik=" + "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==" }, "@protobufjs/path": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", - "integrity": "sha1-bMKyDFya1q0NzP0hynZz2Nf79o0=" + "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==" }, "@protobufjs/pool": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", - "integrity": "sha1-Cf0V8tbTq/qbZbw2ZQbWrXhG/1Q=" + "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==" }, "@protobufjs/utf8": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", - "integrity": "sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA=" + "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==" }, "@schematics/angular": { "version": "12.0.3", @@ -2894,104 +2916,26 @@ "jsonc-parser": "3.0.0" } }, - "@taiga-ui/cdk": { - "version": "2.11.2", - "resolved": "https://registry.npmjs.org/@taiga-ui/cdk/-/cdk-2.11.2.tgz", - "integrity": "sha512-Rux5bw81eV3EBqlc7FmHFcB1z7Uw4olBCaHVnt81GV3iOaAnAQ80wZEG85CXSjgvkyawyBE9PyU22Kv9uSMI0Q==", - "requires": { - "@ng-web-apis/common": "1.9.0", - "@ng-web-apis/mutation-observer": "1.1.0", - "@ng-web-apis/resize-observer": "1.0.3", - "@tinkoff/ng-event-plugins": "2.1.3", - "@tinkoff/ng-polymorpheus": "3.1.8", - "@types/resize-observer-browser": "0.1.5", - "tslib": "^1.10.0" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - } - }, - "@taiga-ui/core": { - "version": "2.11.2", - "resolved": "https://registry.npmjs.org/@taiga-ui/core/-/core-2.11.2.tgz", - "integrity": "sha512-RFGW5N/OZVvoyu4fUEvx8Bd7ZkA7eV83x4SMZNUJ/0I1qnFe3JZCP5OGH/L+qfv5k8bauER+JnrpHznJhvSXdg==", - "requires": { - "@taiga-ui/i18n": "2.11.2", - "tslib": "^1.10.0" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - } - }, - "@taiga-ui/i18n": { - "version": "2.11.2", - "resolved": "https://registry.npmjs.org/@taiga-ui/i18n/-/i18n-2.11.2.tgz", - "integrity": "sha512-xfEpTqAwlF3VDv/ZD5dFs6Q2tR2LceTO+IInBfUdZ6DFuvcfadEK8OqQPvH7umIlJeBhWAja27/eNI90AGEwgw==", - "requires": { - "tslib": "^1.10.0" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - } - }, - "@taiga-ui/kit": { - "version": "2.11.2", - "resolved": "https://registry.npmjs.org/@taiga-ui/kit/-/kit-2.11.2.tgz", - "integrity": "sha512-VPS4x1qtJC8d8P0GGPRlTQ8KqK0YAxTdjDJpaIF3avVD+D3hdeg5LHlYXa2lGSi+co5vsSJwT0niT58xIIFrBQ==", + "@sideway/address": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz", + "integrity": "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==", + "dev": true, "requires": { - "@ng-web-apis/intersection-observer": "2.0.1", - "angular2-text-mask": "9.0.0", - "tslib": "^1.10.0" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } + "@hapi/hoek": "^9.0.0" } }, - "@tinkoff/ng-event-plugins": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/@tinkoff/ng-event-plugins/-/ng-event-plugins-2.1.3.tgz", - "integrity": "sha512-+n7+4tUIDa1dFxou8u/gCmoNE+/RKOp83BF8sffC1qrctNVohgws4fOr9Qpe2dGZhEoTQlYK9/4rJ3R8XiZ0dg==", - "requires": { - "tslib": "^1.10.0" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - } + "@sideway/formula": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.0.tgz", + "integrity": "sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==", + "dev": true }, - "@tinkoff/ng-polymorpheus": { - "version": "3.1.8", - "resolved": "https://registry.npmjs.org/@tinkoff/ng-polymorpheus/-/ng-polymorpheus-3.1.8.tgz", - "integrity": "sha512-Uedg+nOlf6KmPBYMth/KB+ocNFwYf52QI8jLYxswm1aRQEhI7yH6QLyLplVCxWYcIcke/6PwLY02ce7wknz/fQ==", - "requires": { - "tslib": "^1.10.0" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - } + "@sideway/pinpoint": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", + "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==", + "dev": true }, "@tootallnate/once": { "version": "1.1.2", @@ -3109,17 +3053,24 @@ "integrity": "sha1-vShOV8hPEyXacCur/IKlMoGQwMU=", "optional": true }, - "@types/resize-observer-browser": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@types/resize-observer-browser/-/resize-observer-browser-0.1.5.tgz", - "integrity": "sha512-8k/67Z95Goa6Lznuykxkfhq9YU3l1Qe6LNZmwde1u7802a3x8v44oq0j91DICclxatTr0rNnhXx7+VTIetSrSQ==" - }, "@types/selenium-webdriver": { "version": "3.0.17", "resolved": "https://registry.npmjs.org/@types/selenium-webdriver/-/selenium-webdriver-3.0.17.tgz", "integrity": "sha512-tGomyEuzSC1H28y2zlW6XPCaDaXFaD6soTdb4GNdmte2qfHtrKqhy0ZFs4r/1hpazCfEZqeTSRLvSasmEx89uw==", "optional": true }, + "@types/sinonjs__fake-timers": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.1.tgz", + "integrity": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==", + "dev": true + }, + "@types/sizzle": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.3.tgz", + "integrity": "sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==", + "dev": true + }, "@types/source-list-map": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz", @@ -3145,6 +3096,16 @@ } } }, + "@types/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==", + "dev": true, + "optional": true, + "requires": { + "@types/node": "*" + } + }, "@webassemblyjs/ast": { "version": "1.11.0", "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.0.tgz", @@ -3461,28 +3422,20 @@ "dev": true }, "angular-notifier": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/angular-notifier/-/angular-notifier-6.0.2.tgz", - "integrity": "sha512-l7augyJwwAgkIa66wPsh9axT2tb6GMFEj1osDUo2wQZZzdxs8oxef+20B1xkCFikVaM8NPIyG2YjrlHjJZguNg==", + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/angular-notifier/-/angular-notifier-10.0.0.tgz", + "integrity": "sha512-hVzFd41ZCT0O6EBlwN1cygl3qjXU4C41DVcaDrHK3CK5Y0JFbpFrJVuIAczKPjaul13rzJ/L7qzwobQHaTUwLw==", "requires": { - "tslib": "^1.9.0" + "tslib": "2.3.x" }, "dependencies": { "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" } } }, - "angular2-text-mask": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/angular2-text-mask/-/angular2-text-mask-9.0.0.tgz", - "integrity": "sha512-iALcnhJPS1zvX48d86rgUgDe/crX6XfhZrXC4Gdlo2/YwZW7u7KJZY6/b3ieSCIWVq/E6p+wDCzeo3E6leRjDA==", - "requires": { - "text-mask-core": "^5.0.0" - } - }, "ansi-colors": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", @@ -3501,7 +3454,7 @@ "ansi-html": { "version": "0.0.7", "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", - "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=", + "integrity": "sha512-JoAxEa1DfP9m2xfB/y2r/aKcwXNlltr4+0QSBC4TrLfcxyvepX2Pv0t/xpgGV5bGsDzCYV8SzjWgyCW0T9yYbA==", "dev": true }, "ansi-regex": { @@ -3537,6 +3490,12 @@ "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", "dev": true }, + "arch": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", + "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", + "dev": true + }, "are-we-there-yet": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", @@ -3575,7 +3534,7 @@ "arr-diff": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", "dev": true }, "arr-flatten": { @@ -3587,7 +3546,7 @@ "arr-union": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", "dev": true }, "array-flatten": { @@ -3612,7 +3571,7 @@ "array-unique": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", "dev": true }, "arrify": { @@ -3645,7 +3604,7 @@ "assign-symbols": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", "dev": true }, "ast-types-flow": { @@ -3654,6 +3613,12 @@ "integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=", "dev": true }, + "astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "dev": true + }, "async": { "version": "2.6.3", "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", @@ -3680,6 +3645,12 @@ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" }, + "at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "dev": true + }, "atob": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", @@ -3770,6 +3741,15 @@ "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz", "integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==" }, + "axios": { + "version": "0.21.4", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", + "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", + "dev": true, + "requires": { + "follow-redirects": "^1.14.0" + } + }, "axobject-query": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.0.2.tgz", @@ -3898,7 +3878,7 @@ "define-property": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", "dev": true, "requires": { "is-descriptor": "^1.0.0" @@ -3955,7 +3935,7 @@ "batch": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", "dev": true }, "bcrypt-pbkdf": { @@ -3978,6 +3958,16 @@ "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", "dev": true }, + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "optional": true, + "requires": { + "file-uri-to-path": "1.0.0" + } + }, "bl": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", @@ -4002,6 +3992,12 @@ } } }, + "blob-util": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/blob-util/-/blob-util-2.0.2.tgz", + "integrity": "sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==", + "dev": true + }, "blocking-proxy": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/blocking-proxy/-/blocking-proxy-1.0.1.tgz", @@ -4011,6 +4007,12 @@ "minimist": "^1.2.0" } }, + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true + }, "body-parser": { "version": "1.19.0", "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", @@ -4061,7 +4063,7 @@ "bonjour": { "version": "3.5.0", "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", - "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "integrity": "sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==", "dev": true, "requires": { "array-flatten": "^2.1.0", @@ -4075,7 +4077,7 @@ "boolbase": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", "dev": true }, "bootstrap": { @@ -4133,6 +4135,12 @@ "ieee754": "^1.1.13" } }, + "buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "dev": true + }, "buffer-from": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", @@ -4159,7 +4167,7 @@ "bytes": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", "dev": true }, "cacache": { @@ -4236,6 +4244,12 @@ "unset-value": "^1.0.0" } }, + "cachedir": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.3.0.tgz", + "integrity": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==", + "dev": true + }, "call-bind": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", @@ -4300,6 +4314,12 @@ "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", "dev": true }, + "check-more-types": { + "version": "2.24.0", + "resolved": "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz", + "integrity": "sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==", + "dev": true + }, "chokidar": { "version": "3.5.1", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz", @@ -4328,6 +4348,12 @@ "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", "dev": true }, + "ci-info": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.5.0.tgz", + "integrity": "sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw==", + "dev": true + }, "circular-dependency-plugin": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/circular-dependency-plugin/-/circular-dependency-plugin-5.2.2.tgz", @@ -4349,7 +4375,7 @@ "define-property": { "version": "0.2.5", "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", "dev": true, "requires": { "is-descriptor": "^0.1.0" @@ -4378,8 +4404,96 @@ "integrity": "sha512-t+4/y50K/+4xcCRosKkA7W4gTr1MySvLV0q+PxmG7FJ5g+66ChKurYjxBCjHggHH3HA5Hh9cy+lcUGWDqVH+4Q==", "dev": true }, - "cli-width": { - "version": "3.0.0", + "cli-table3": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz", + "integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==", + "dev": true, + "requires": { + "@colors/colors": "1.5.0", + "string-width": "^4.2.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + } + } + }, + "cli-truncate": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", + "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", + "dev": true, + "requires": { + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + } + } + }, + "cli-width": { + "version": "3.0.0", "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", "dev": true @@ -4470,7 +4584,7 @@ "collection-visit": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", "dev": true, "requires": { "map-visit": "^1.0.0", @@ -4521,10 +4635,16 @@ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" }, + "common-tags": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "dev": true + }, "commondir": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", "dev": true }, "component-emitter": { @@ -4577,7 +4697,7 @@ "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true } } @@ -4611,7 +4731,7 @@ "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true } } @@ -4661,7 +4781,7 @@ "cookie-signature": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", "dev": true }, "copy-anything": { @@ -4676,7 +4796,7 @@ "copy-descriptor": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", "dev": true }, "copy-webpack-plugin": { @@ -4883,6 +5003,49 @@ } } }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "dependencies": { + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, "crypto-js": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-3.3.0.tgz", @@ -5208,7 +5371,7 @@ "css-parse": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/css-parse/-/css-parse-2.0.0.tgz", - "integrity": "sha1-pGjuZnwW2BzPBcWMONKpfHgNv9Q=", + "integrity": "sha512-UNIFik2RgSbiTwIW1IsFwXWn6vs+bYdq83LKTSOsx7NJR7WII9dxewkHLltfTLVppoUApHV0118a4RZRI9FLwA==", "dev": true, "requires": { "css": "^2.0.0" @@ -5449,9 +5612,222 @@ "custom-event": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/custom-event/-/custom-event-1.0.1.tgz", - "integrity": "sha1-XQKkaFCt8bSjF5RqOSj8y1v9BCU=", + "integrity": "sha512-GAj5FOq0Hd+RsCGVJxZuKaIDXDf3h6GQoNEjFgbLLI/trgtavwUbSnZ5pVfg27DVCaWjIohryS0JFwIJyT2cMg==", "dev": true }, + "cypress": { + "version": "10.10.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-10.10.0.tgz", + "integrity": "sha512-bU8r44x1NIYAUNNXt3CwJpLOVth7HUv2hUhYCxZmgZ1IugowDvuHNpevnoZRQx1KKOEisLvIJW+Xen5Pjn41pg==", + "dev": true, + "requires": { + "@cypress/request": "^2.88.10", + "@cypress/xvfb": "^1.2.4", + "@types/node": "^14.14.31", + "@types/sinonjs__fake-timers": "8.1.1", + "@types/sizzle": "^2.3.2", + "arch": "^2.2.0", + "blob-util": "^2.0.2", + "bluebird": "^3.7.2", + "buffer": "^5.6.0", + "cachedir": "^2.3.0", + "chalk": "^4.1.0", + "check-more-types": "^2.24.0", + "cli-cursor": "^3.1.0", + "cli-table3": "~0.6.1", + "commander": "^5.1.0", + "common-tags": "^1.8.0", + "dayjs": "^1.10.4", + "debug": "^4.3.2", + "enquirer": "^2.3.6", + "eventemitter2": "6.4.7", + "execa": "4.1.0", + "executable": "^4.1.1", + "extract-zip": "2.0.1", + "figures": "^3.2.0", + "fs-extra": "^9.1.0", + "getos": "^3.2.1", + "is-ci": "^3.0.0", + "is-installed-globally": "~0.4.0", + "lazy-ass": "^1.6.0", + "listr2": "^3.8.3", + "lodash": "^4.17.21", + "log-symbols": "^4.0.0", + "minimist": "^1.2.6", + "ospath": "^1.2.2", + "pretty-bytes": "^5.6.0", + "proxy-from-env": "1.0.0", + "request-progress": "^3.0.0", + "semver": "^7.3.2", + "supports-color": "^8.1.1", + "tmp": "~0.2.1", + "untildify": "^4.0.0", + "yauzl": "^2.10.0" + }, + "dependencies": { + "@types/node": { + "version": "14.18.32", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.32.tgz", + "integrity": "sha512-Y6S38pFr04yb13qqHf8uk1nHE3lXgQ30WZbv1mLliV9pt0NjvqdWttLcrOYLnXbOafknVYRHZGoMSpR9UwfYow==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "commander": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", + "dev": true + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "execa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + } + }, + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true + }, + "minimist": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", + "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==", + "dev": true + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "requires": { + "path-key": "^3.0.0" + } + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "tmp": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", + "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", + "dev": true, + "requires": { + "rimraf": "^3.0.0" + } + } + } + }, "damerau-levenshtein": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.7.tgz", @@ -5472,6 +5848,12 @@ "integrity": "sha512-eyTcpKOcamdhWJXj56DpQMo1ylSQpcGtGKXcU0Tb97+K56/CF5amAqqqNj0+KvA0iw2ynxtHWFsPDSClCxe48w==", "dev": true }, + "dayjs": { + "version": "1.11.5", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.5.tgz", + "integrity": "sha512-CAdX5Q3YW3Gclyo5Vpqkgpj8fSdLQcRuzfX6mC6Phy0nfJ0eGYOeS7m4mt2plDWLAtA4TqTakvbboHvUxfe4iA==", + "dev": true + }, "debug": { "version": "3.2.6", "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", @@ -5488,7 +5870,7 @@ "decode-uri-component": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "integrity": "sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==", "dev": true }, "deep-equal": { @@ -5633,7 +6015,7 @@ "di": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/di/-/di-0.0.1.tgz", - "integrity": "sha1-gGZJMmzqp8qjMG112YXqJ0i6kTw=", + "integrity": "sha512-uJaamHkagcZtHPqCIHZxnFrXlunQXgBOsZSUOWwFw31QJCAbyTBoHMW75YOTur5ZNx8pIeAKgf6GWIgaqqiLhA==", "dev": true }, "diff": { @@ -5662,7 +6044,7 @@ "dns-equal": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", - "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", "dev": true }, "dns-packet": { @@ -5678,7 +6060,7 @@ "dns-txt": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", - "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "integrity": "sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==", "dev": true, "requires": { "buffer-indexof": "^1.0.0" @@ -5687,7 +6069,7 @@ "dom-serialize": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/dom-serialize/-/dom-serialize-2.2.1.tgz", - "integrity": "sha1-ViromZ9Evl6jB29UGdzVnrQ6yVs=", + "integrity": "sha512-Yra4DbvoW7/Z6LBN560ZwXMjoNOSAN2wRsKFGc4iBeso+mpIA6qj1vfdf9HpMaKAqG6wXTy+1SYEzmNpKXOSsQ==", "dev": true, "requires": { "custom-event": "~1.0.0", @@ -5758,6 +6140,12 @@ "domhandler": "^4.2.0" } }, + "duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", + "dev": true + }, "dynamic-marquee": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/dynamic-marquee/-/dynamic-marquee-1.2.2.tgz", @@ -5775,7 +6163,7 @@ "ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", "dev": true }, "electron-to-chromium": { @@ -5799,7 +6187,7 @@ "encodeurl": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", "dev": true }, "encoding": { @@ -5884,10 +6272,19 @@ } } }, + "enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "dev": true, + "requires": { + "ansi-colors": "^4.1.1" + } + }, "ent": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/ent/-/ent-2.2.0.tgz", - "integrity": "sha1-6WQhkyWiHQX0RGai9obtbOX13R0=", + "integrity": "sha512-GHrMyVZQWvTIdDtpiEXdHZnFQKzeO09apj8Cbl4pKWy4i0Oprcq17usfDt5aO63swf0JOeMWjWQE/LzgSRuWpA==", "dev": true }, "entities": { @@ -5956,7 +6353,7 @@ "escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", "dev": true }, "escape-string-regexp": { @@ -6012,7 +6409,28 @@ "etag": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "dev": true + }, + "event-stream": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz", + "integrity": "sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==", + "dev": true, + "requires": { + "duplexer": "~0.1.1", + "from": "~0", + "map-stream": "~0.1.0", + "pause-stream": "0.0.11", + "split": "0.3", + "stream-combiner": "~0.0.4", + "through": "~2.3.1" + } + }, + "eventemitter2": { + "version": "6.4.7", + "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-6.4.7.tgz", + "integrity": "sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==", "dev": true }, "eventemitter3": { @@ -6028,9 +6446,9 @@ "dev": true }, "eventsource": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.1.0.tgz", - "integrity": "sha512-VSJjT5oCNrFvCS6igjzPAt5hBzQ2qPBFIbJ03zLI9SE0mxwZpMw6BfJrbFHm1a141AavMEB8JHmBhWAd66PfCg==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.1.1.tgz", + "integrity": "sha512-qV5ZC0h7jYIAOhArFJgSfdyz6rALJyb270714o7ZtNnw2WSJ+eexhKtE0O8LYPRsHZHf2osHKZBxGPvm3kPkCA==", "dev": true, "requires": { "original": "^1.0.0" @@ -6066,6 +6484,15 @@ } } }, + "executable": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", + "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", + "dev": true, + "requires": { + "pify": "^2.2.0" + } + }, "exit": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", @@ -6075,7 +6502,7 @@ "expand-brackets": { "version": "2.1.4", "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", "dev": true, "requires": { "debug": "^2.3.3", @@ -6099,7 +6526,7 @@ "define-property": { "version": "0.2.5", "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", "dev": true, "requires": { "is-descriptor": "^0.1.0" @@ -6108,7 +6535,7 @@ "extend-shallow": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, "requires": { "is-extendable": "^0.1.0" @@ -6117,7 +6544,7 @@ "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true } } @@ -6197,7 +6624,7 @@ "extend-shallow": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", "dev": true, "requires": { "assign-symbols": "^1.0.0", @@ -6256,7 +6683,7 @@ "define-property": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", "dev": true, "requires": { "is-descriptor": "^1.0.0" @@ -6265,7 +6692,7 @@ "extend-shallow": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, "requires": { "is-extendable": "^0.1.0" @@ -6302,6 +6729,38 @@ } } }, + "extract-zip": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", + "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", + "dev": true, + "requires": { + "@types/yauzl": "^2.9.1", + "debug": "^4.1.1", + "get-stream": "^5.1.0", + "yauzl": "^2.10.0" + }, + "dependencies": { + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + } + } + }, "extsprintf": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", @@ -6355,6 +6814,15 @@ "websocket-driver": ">=0.5.1" } }, + "fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "dev": true, + "requires": { + "pend": "~1.2.0" + } + }, "figures": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", @@ -6364,6 +6832,13 @@ "escape-string-regexp": "^1.0.5" } }, + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true, + "optional": true + }, "fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", @@ -6475,7 +6950,7 @@ "for-in": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", "dev": true }, "forever-agent": { @@ -6502,7 +6977,7 @@ "fragment-cache": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", "dev": true, "requires": { "map-cache": "^0.2.2" @@ -6511,9 +6986,45 @@ "fresh": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", "dev": true }, + "from": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/from/-/from-0.1.7.tgz", + "integrity": "sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==", + "dev": true + }, + "fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "dependencies": { + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true + } + } + }, "fs-minipass": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", @@ -6600,9 +7111,26 @@ "get-value": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", "dev": true }, + "getos": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/getos/-/getos-3.2.1.tgz", + "integrity": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==", + "dev": true, + "requires": { + "async": "^3.2.0" + }, + "dependencies": { + "async": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", + "dev": true + } + } + }, "getpass": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", @@ -6639,6 +7167,23 @@ "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", "dev": true }, + "global-dirs": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.0.tgz", + "integrity": "sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==", + "dev": true, + "requires": { + "ini": "2.0.0" + }, + "dependencies": { + "ini": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", + "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", + "dev": true + } + } + }, "globals": { "version": "11.12.0", "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", @@ -6723,7 +7268,7 @@ "has-value": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", "dev": true, "requires": { "get-value": "^2.0.6", @@ -6734,7 +7279,7 @@ "has-values": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", "dev": true, "requires": { "is-number": "^3.0.0", @@ -6744,7 +7289,7 @@ "is-number": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", "dev": true, "requires": { "kind-of": "^3.0.2" @@ -6753,7 +7298,7 @@ "kind-of": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, "requires": { "is-buffer": "^1.1.5" @@ -6764,7 +7309,7 @@ "kind-of": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", "dev": true, "requires": { "is-buffer": "^1.1.5" @@ -6781,7 +7326,7 @@ "hpack.js": { "version": "2.1.6", "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", - "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", "dev": true, "requires": { "inherits": "^2.0.1", @@ -6823,7 +7368,7 @@ "http-deceiver": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", - "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", "dev": true }, "http-errors": { @@ -6927,7 +7472,7 @@ "extend-shallow": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, "requires": { "is-extendable": "^0.1.0" @@ -6938,7 +7483,7 @@ "fill-range": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", "dev": true, "requires": { "extend-shallow": "^2.0.1", @@ -6950,7 +7495,7 @@ "extend-shallow": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, "requires": { "is-extendable": "^0.1.0" @@ -6961,7 +7506,7 @@ "is-number": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", "dev": true, "requires": { "kind-of": "^3.0.2" @@ -6970,7 +7515,7 @@ "kind-of": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, "requires": { "is-buffer": "^1.1.5" @@ -7002,7 +7547,7 @@ "to-regex-range": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", "dev": true, "requires": { "is-number": "^3.0.0", @@ -7031,6 +7576,12 @@ "debug": "^3.1.0" } }, + "human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", + "dev": true + }, "humanize-ms": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", @@ -7083,7 +7634,7 @@ "image-size": { "version": "0.5.5", "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", - "integrity": "sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=", + "integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==", "dev": true, "optional": true }, @@ -7144,7 +7695,7 @@ "path-exists": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", "dev": true }, "pkg-dir": { @@ -7167,7 +7718,7 @@ "indexes-of": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", - "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=", + "integrity": "sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA==", "dev": true }, "infer-owner": { @@ -7334,7 +7885,7 @@ "ip-regex": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", - "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=", + "integrity": "sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==", "dev": true }, "ipaddr.js": { @@ -7351,7 +7902,7 @@ "is-accessor-descriptor": { "version": "0.1.6", "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", "dev": true, "requires": { "kind-of": "^3.0.2" @@ -7360,7 +7911,7 @@ "kind-of": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, "requires": { "is-buffer": "^1.1.5" @@ -7380,7 +7931,7 @@ "is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", "dev": true }, "is-binary-path": { @@ -7398,6 +7949,15 @@ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", "dev": true }, + "is-ci": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", + "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", + "dev": true, + "requires": { + "ci-info": "^3.2.0" + } + }, "is-color-stop": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", @@ -7432,7 +7992,7 @@ "is-data-descriptor": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", "dev": true, "requires": { "kind-of": "^3.0.2" @@ -7441,7 +8001,7 @@ "kind-of": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, "requires": { "is-buffer": "^1.1.5" @@ -7483,7 +8043,7 @@ "is-extendable": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", "dev": true }, "is-extglob": { @@ -7510,6 +8070,24 @@ "is-extglob": "^2.1.1" } }, + "is-installed-globally": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", + "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", + "dev": true, + "requires": { + "global-dirs": "^3.0.0", + "is-path-inside": "^3.0.2" + }, + "dependencies": { + "is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true + } + } + }, "is-interactive": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", @@ -7642,7 +8220,7 @@ "isobject": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", "dev": true }, "isomorphic-fetch": { @@ -7842,10 +8420,23 @@ } } }, + "joi": { + "version": "17.6.3", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.6.3.tgz", + "integrity": "sha512-YlQsIaS9MHYekzf1Qe11LjTkNzx9qhYluK3172z38RxYoAUf82XMX1p1DG1H4Wtk2ED/vPdSn9OggqtDu+aTow==", + "dev": true, + "requires": { + "@hapi/hoek": "^9.0.0", + "@hapi/topo": "^5.0.0", + "@sideway/address": "^4.1.3", + "@sideway/formula": "^3.0.0", + "@sideway/pinpoint": "^2.0.0" + } + }, "jquery": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.5.0.tgz", - "integrity": "sha512-Xb7SVYMvygPxbFMpTFQiHh1J7HClEaThguL15N/Gg37Lri/qKyhRGZYzHRyLH8Stq3Aow0LsHO2O2ci86fCrNQ==" + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.1.tgz", + "integrity": "sha512-opJeO4nCucVnsjiXOE+/PcCgYw9Gwpvs/a6B1LL/lQhwWwpbVEVYDZ1FokFr8PRc7ghYlrFPuyHuiiDNTQxmcw==" }, "js-tokens": { "version": "4.0.0", @@ -7932,7 +8523,7 @@ "jsonfile": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", "dev": true, "requires": { "graceful-fs": "^4.1.6" @@ -7956,15 +8547,15 @@ } }, "jszip": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.6.0.tgz", - "integrity": "sha512-jgnQoG9LKnWO3mnVNBnfhkh0QknICd1FGSrXcgrl67zioyJ4wgx25o9ZqwNtrROSflGBCGYnJfjrIyRIby1OoQ==", + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz", + "integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==", "optional": true, "requires": { "lie": "~3.3.0", "pako": "~1.0.2", "readable-stream": "~2.3.6", - "set-immediate-shim": "~1.0.1" + "setimmediate": "^1.0.5" } }, "karma": { @@ -8251,6 +8842,12 @@ "integrity": "sha512-ZRbnvdg/NxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY/uwIA==", "dev": true }, + "lazy-ass": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz", + "integrity": "sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==", + "dev": true + }, "less": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/less/-/less-4.1.1.tgz", @@ -8318,6 +8915,39 @@ "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=", "dev": true }, + "listr2": { + "version": "3.14.0", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-3.14.0.tgz", + "integrity": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==", + "dev": true, + "requires": { + "cli-truncate": "^2.1.0", + "colorette": "^2.0.16", + "log-update": "^4.0.0", + "p-map": "^4.0.0", + "rfdc": "^1.3.0", + "rxjs": "^7.5.1", + "through": "^2.3.8", + "wrap-ansi": "^7.0.0" + }, + "dependencies": { + "colorette": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", + "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", + "dev": true + }, + "rxjs": { + "version": "7.5.7", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.7.tgz", + "integrity": "sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==", + "dev": true, + "requires": { + "tslib": "^2.1.0" + } + } + } + }, "loader-runner": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz", @@ -8353,24 +8983,30 @@ "lodash.camelcase": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=" + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" }, "lodash.debounce": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", "dev": true }, "lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "lodash.once": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", + "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==", "dev": true }, "lodash.uniq": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", "dev": true }, "log-symbols": { @@ -8408,28 +9044,120 @@ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "requires": { - "color-name": "~1.1.4" + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "log-update": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", + "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", + "dev": true, + "requires": { + "ansi-escapes": "^4.3.0", + "cli-cursor": "^3.1.0", + "slice-ansi": "^4.0.0", + "wrap-ansi": "^6.2.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + } + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" } }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", "dev": true, "requires": { - "has-flag": "^4.0.0" + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" } } } @@ -8474,6 +9202,15 @@ "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==" }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, "magic-string": { "version": "0.25.7", "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz", @@ -8587,13 +9324,19 @@ "map-cache": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "dev": true + }, + "map-stream": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz", + "integrity": "sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==", "dev": true }, "map-visit": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", "dev": true, "requires": { "object-visit": "^1.0.0" @@ -8608,7 +9351,7 @@ "media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", "dev": true }, "mem": { @@ -8641,7 +9384,7 @@ "memory-fs": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", - "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "integrity": "sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==", "dev": true, "requires": { "errno": "^0.1.3", @@ -8651,7 +9394,7 @@ "merge-descriptors": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", "dev": true }, "merge-source-map": { @@ -8686,7 +9429,7 @@ "methods": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", "dev": true }, "micromatch": { @@ -8928,7 +9671,7 @@ "multicast-dns-service-types": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", - "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=", + "integrity": "sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==", "dev": true }, "mute-stream": { @@ -8993,11 +9736,6 @@ "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", "dev": true }, - "network-information-types": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/network-information-types/-/network-information-types-0.1.0.tgz", - "integrity": "sha512-cRUCYZoRHTMjYcgk5MbwqM0h0Za34panRxAJKY8n+mQ+NLMuRIw7aKzmaZqkC/cte7bnRcdfTwFA27GgN62EtQ==" - }, "ngx-cookie-service": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/ngx-cookie-service/-/ngx-cookie-service-3.0.4.tgz", @@ -9018,6 +9756,22 @@ } } }, + "ngx-skeleton-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/ngx-skeleton-loader/-/ngx-skeleton-loader-4.0.0.tgz", + "integrity": "sha512-fbCWZrBVJF1jVVK056z3zPcAk0EXUtImdRkrjbc4xiWNkmhGskGfNh6UxKrkheMS9iOJoaLLo8KscLeUa9yggQ==", + "requires": { + "perf-marks": "^1.13.4", + "tslib": "^1.10.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, "nice-try": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", @@ -9054,7 +9808,7 @@ "normalize-range": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", "dev": true }, "normalize-url": { @@ -9260,7 +10014,7 @@ "npm-run-path": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", "dev": true, "requires": { "path-key": "^2.0.0" @@ -9290,7 +10044,7 @@ "num2fraction": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", - "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=", + "integrity": "sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==", "dev": true }, "number-is-nan": { @@ -9312,7 +10066,7 @@ "object-copy": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", "dev": true, "requires": { "copy-descriptor": "^0.1.0", @@ -9323,7 +10077,7 @@ "define-property": { "version": "0.2.5", "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", "dev": true, "requires": { "is-descriptor": "^0.1.0" @@ -9332,7 +10086,7 @@ "kind-of": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, "requires": { "is-buffer": "^1.1.5" @@ -9359,7 +10113,7 @@ "object-visit": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", "dev": true, "requires": { "isobject": "^3.0.0" @@ -9380,7 +10134,7 @@ "object.pick": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", "dev": true, "requires": { "isobject": "^3.0.1" @@ -9465,7 +10219,7 @@ "is-wsl": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", - "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", "dev": true } } @@ -9567,16 +10321,22 @@ "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=" }, + "ospath": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/ospath/-/ospath-1.2.2.tgz", + "integrity": "sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==", + "dev": true + }, "p-defer": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", - "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=", + "integrity": "sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==", "dev": true }, "p-finally": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", "dev": true }, "p-limit": { @@ -9660,11 +10420,6 @@ "requires": { "glob": "^7.1.3" } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" } } }, @@ -9732,13 +10487,13 @@ "pascalcase": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", "dev": true }, "path-dirname": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", + "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", "dev": true }, "path-is-absolute": { @@ -9754,7 +10509,7 @@ "path-key": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", "dev": true }, "path-parse": { @@ -9765,9 +10520,32 @@ "path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "dev": true + }, + "pause-stream": { + "version": "0.0.11", + "resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz", + "integrity": "sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==", + "dev": true, + "requires": { + "through": "~2.3" + } + }, + "pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", "dev": true }, + "perf-marks": { + "version": "1.14.2", + "resolved": "https://registry.npmjs.org/perf-marks/-/perf-marks-1.14.2.tgz", + "integrity": "sha512-N0/bQcuTlETpgox/DsXS1voGjqaoamMoiyhncgeW3rSHy/qw8URVgmPRYfFDQns/+C6yFUHDbeSBGL7ixT6Y4A==", + "requires": { + "tslib": "^2.1.0" + } + }, "performance-now": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", @@ -9824,11 +10602,6 @@ } } }, - "popper.js": { - "version": "1.16.1", - "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz", - "integrity": "sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==" - }, "portfinder": { "version": "1.0.28", "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", @@ -9860,7 +10633,7 @@ "posix-character-classes": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", "dev": true }, "postcss": { @@ -12686,12 +13459,27 @@ "ipaddr.js": "1.9.1" } }, + "proxy-from-env": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.0.0.tgz", + "integrity": "sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==", + "dev": true + }, "prr": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", "dev": true }, + "ps-tree": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/ps-tree/-/ps-tree-1.2.0.tgz", + "integrity": "sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==", + "dev": true, + "requires": { + "event-stream": "=3.3.4" + } + }, "psl": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/psl/-/psl-1.4.0.tgz", @@ -12732,7 +13520,7 @@ "querystring": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", + "integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==", "dev": true }, "querystringify": { @@ -12820,7 +13608,7 @@ "read-cache": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", - "integrity": "sha1-5mTvMRYRZsl1HNvo28+GtftY93Q=", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", "dev": true, "requires": { "pify": "^2.3.0" @@ -12961,7 +13749,7 @@ "remove-trailing-separator": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", "dev": true }, "repeat-element": { @@ -12973,7 +13761,7 @@ "repeat-string": { "version": "1.6.1", "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", "dev": true }, "request": { @@ -13004,6 +13792,15 @@ "uuid": "^3.3.2" } }, + "request-progress": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-3.0.0.tgz", + "integrity": "sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==", + "dev": true, + "requires": { + "throttleit": "^1.0.0" + } + }, "require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -13018,7 +13815,7 @@ "requires-port": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", "dev": true }, "resolve": { @@ -13032,7 +13829,7 @@ "resolve-cwd": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", - "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "integrity": "sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==", "dev": true, "requires": { "resolve-from": "^3.0.0" @@ -13041,7 +13838,7 @@ "resolve-from": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", "dev": true } } @@ -13055,7 +13852,7 @@ "resolve-url": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", "dev": true }, "resolve-url-loader": { @@ -13222,7 +14019,7 @@ "safe-regex": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", "dev": true, "requires": { "ret": "~0.1.10" @@ -13294,7 +14091,7 @@ "select-hose": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", - "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", "dev": true }, "selenium-webdriver": { @@ -13390,7 +14187,7 @@ "serve-index": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", "dev": true, "requires": { "accepts": "~1.3.4", @@ -13414,7 +14211,7 @@ "http-errors": { "version": "1.6.3", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", "dev": true, "requires": { "depd": "~1.1.2", @@ -13426,13 +14223,13 @@ "inherits": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", "dev": true }, "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, "setprototypeof": { @@ -13460,12 +14257,6 @@ "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" }, - "set-immediate-shim": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz", - "integrity": "sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E=", - "optional": true - }, "set-value": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", @@ -13481,7 +14272,7 @@ "extend-shallow": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, "requires": { "is-extendable": "^0.1.0" @@ -13489,6 +14280,12 @@ } } }, + "setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "optional": true + }, "setprototypeof": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", @@ -13507,7 +14304,7 @@ "shebang-command": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", "dev": true, "requires": { "shebang-regex": "^1.0.0" @@ -13516,7 +14313,7 @@ "shebang-regex": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", "dev": true }, "signal-exit": { @@ -13531,6 +14328,49 @@ "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true }, + "slice-ansi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", + "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + } + } + }, "smart-buffer": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.1.0.tgz", @@ -13565,7 +14405,7 @@ "define-property": { "version": "0.2.5", "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", "dev": true, "requires": { "is-descriptor": "^0.1.0" @@ -13574,7 +14414,7 @@ "extend-shallow": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, "requires": { "is-extendable": "^0.1.0" @@ -13583,13 +14423,13 @@ "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, "source-map": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", "dev": true }, "source-map-resolve": { @@ -13621,7 +14461,7 @@ "define-property": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", "dev": true, "requires": { "is-descriptor": "^1.0.0" @@ -13670,7 +14510,7 @@ "kind-of": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, "requires": { "is-buffer": "^1.1.5" @@ -13958,6 +14798,15 @@ } } }, + "split": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/split/-/split-0.3.3.tgz", + "integrity": "sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==", + "dev": true, + "requires": { + "through": "2" + } + }, "split-string": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", @@ -14004,10 +14853,92 @@ "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", "dev": true }, + "start-server-and-test": { + "version": "1.14.0", + "resolved": "https://registry.npmjs.org/start-server-and-test/-/start-server-and-test-1.14.0.tgz", + "integrity": "sha512-on5ELuxO2K0t8EmNj9MtVlFqwBMxfWOhu4U7uZD1xccVpFlOQKR93CSe0u98iQzfNxRyaNTb/CdadbNllplTsw==", + "dev": true, + "requires": { + "bluebird": "3.7.2", + "check-more-types": "2.24.0", + "debug": "4.3.2", + "execa": "5.1.1", + "lazy-ass": "1.6.0", + "ps-tree": "1.2.0", + "wait-on": "6.0.0" + }, + "dependencies": { + "debug": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", + "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + } + }, + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true + }, + "human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true + }, + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "requires": { + "path-key": "^3.0.0" + } + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + } + } + }, "static-extend": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", "dev": true, "requires": { "define-property": "^0.2.5", @@ -14017,7 +14948,7 @@ "define-property": { "version": "0.2.5", "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", "dev": true, "requires": { "is-descriptor": "^0.1.0" @@ -14031,6 +14962,15 @@ "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", "dev": true }, + "stream-combiner": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz", + "integrity": "sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==", + "dev": true, + "requires": { + "duplexer": "~0.1.1" + } + }, "streamroller": { "version": "2.2.4", "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-2.2.4.tgz", @@ -14100,7 +15040,13 @@ "strip-eof": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", + "dev": true + }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", "dev": true }, "style-loader": { @@ -14196,7 +15142,7 @@ "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, "semver": { @@ -14427,15 +15373,16 @@ } } }, - "text-mask-core": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/text-mask-core/-/text-mask-core-5.1.2.tgz", - "integrity": "sha1-gN1evgSCV1fkZhnmkUB6n4s8G28=" - }, "text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "throttleit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz", + "integrity": "sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==", "dev": true }, "through": { @@ -14474,7 +15421,7 @@ "to-object-path": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", "dev": true, "requires": { "kind-of": "^3.0.2" @@ -14483,7 +15430,7 @@ "kind-of": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, "requires": { "is-buffer": "^1.1.5" @@ -14752,7 +15699,7 @@ "uniq": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", - "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=", + "integrity": "sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==", "dev": true }, "uniqs": { @@ -14788,13 +15735,13 @@ "unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", "dev": true }, "unset-value": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", "dev": true, "requires": { "has-value": "^0.3.1", @@ -14804,7 +15751,7 @@ "has-value": { "version": "0.3.1", "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", "dev": true, "requires": { "get-value": "^2.0.3", @@ -14815,7 +15762,7 @@ "isobject": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", "dev": true, "requires": { "isarray": "1.0.0" @@ -14826,11 +15773,17 @@ "has-values": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", "dev": true } } }, + "untildify": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", + "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", + "dev": true + }, "upath": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", @@ -14848,13 +15801,13 @@ "urix": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", "dev": true }, "url": { "version": "0.11.0", "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "integrity": "sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==", "dev": true, "requires": { "punycode": "1.3.2", @@ -14864,7 +15817,7 @@ "punycode": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", + "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==", "dev": true } } @@ -14893,7 +15846,7 @@ "utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", "dev": true }, "uuid": { @@ -14913,7 +15866,7 @@ "vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", "dev": true }, "vendors": { @@ -14935,9 +15888,39 @@ "void-elements": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz", - "integrity": "sha1-wGavtYK7HLQSjWDqkjkulNXp2+w=", + "integrity": "sha512-qZKX4RnBzH2ugr8Lxa7x+0V6XD9Sb/ouARtiasEQCHB1EVU4NXtmHsDDrx1dO4ne5fc3J6EW05BP1Dl0z0iung==", "dev": true }, + "wait-on": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-6.0.0.tgz", + "integrity": "sha512-tnUJr9p5r+bEYXPUdRseolmz5XqJTTj98JgOsfBn7Oz2dxfE2g3zw1jE+Mo8lopM3j3et/Mq1yW7kKX6qw7RVw==", + "dev": true, + "requires": { + "axios": "^0.21.1", + "joi": "^17.4.0", + "lodash": "^4.17.21", + "minimist": "^1.2.5", + "rxjs": "^7.1.0" + }, + "dependencies": { + "minimist": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", + "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==", + "dev": true + }, + "rxjs": { + "version": "7.5.7", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.7.tgz", + "integrity": "sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==", + "dev": true, + "requires": { + "tslib": "^2.1.0" + } + } + } + }, "watchpack": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.2.0.tgz", @@ -15202,7 +16185,7 @@ "normalize-path": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", "dev": true, "requires": { "remove-trailing-separator": "^1.0.1" @@ -15237,7 +16220,7 @@ "extend-shallow": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, "requires": { "is-extendable": "^0.1.0" @@ -15326,7 +16309,7 @@ "fill-range": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", "dev": true, "requires": { "extend-shallow": "^2.0.1", @@ -15338,7 +16321,7 @@ "extend-shallow": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, "requires": { "is-extendable": "^0.1.0" @@ -15362,6 +16345,7 @@ "dev": true, "optional": true, "requires": { + "bindings": "^1.5.0", "nan": "^2.12.1" } }, @@ -15374,7 +16358,7 @@ "glob-parent": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", "dev": true, "requires": { "is-glob": "^3.1.0", @@ -15384,7 +16368,7 @@ "is-glob": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", "dev": true, "requires": { "is-extglob": "^2.1.0" @@ -15395,7 +16379,7 @@ "globby": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", - "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", + "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==", "dev": true, "requires": { "array-union": "^1.0.1", @@ -15408,7 +16392,7 @@ "pify": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", "dev": true } } @@ -15422,7 +16406,7 @@ "is-binary-path": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", "dev": true, "requires": { "binary-extensions": "^1.0.0" @@ -15437,7 +16421,7 @@ "is-number": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", "dev": true, "requires": { "kind-of": "^3.0.2" @@ -15446,7 +16430,7 @@ "kind-of": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, "requires": { "is-buffer": "^1.1.5" @@ -15610,7 +16594,7 @@ "to-regex-range": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", "dev": true, "requires": { "is-number": "^3.0.0", @@ -15793,6 +16777,75 @@ "integrity": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==", "dev": true }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + } + } + }, "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", @@ -15831,7 +16884,7 @@ "xmlhttprequest": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz", - "integrity": "sha1-Z/4HXFwk/vOfnWX197f+dRcZaPw=" + "integrity": "sha512-58Im/U0mlVBLM38NdZjHyhuMtCqa61469k2YP/AaPbvCoV9aQGUpbJBj1QRm2ytRiVQBD/fsw7L2bJGDVQswBA==" }, "yallist": { "version": "4.0.0", @@ -15845,6 +16898,16 @@ "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", "dev": true }, + "yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "dev": true, + "requires": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, "yn": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", diff --git a/DepartureBoardWeb/ClientApp/package.json b/DepartureBoardWeb/ClientApp/package.json index 93e63651..dd851f58 100644 --- a/DepartureBoardWeb/ClientApp/package.json +++ b/DepartureBoardWeb/ClientApp/package.json @@ -3,7 +3,8 @@ "version": "0.0.0", "scripts": { "ng": "ng", - "start": "echo Starting... && ng serve --verbose", + "ngcc": "ngcc", + "start": "echo Starting... && ng serve", "build": "ng build", "build:ssr": "ng run DepartureBoardWeb:server:dev", "build:prod": "ng build --configuration production", @@ -11,7 +12,10 @@ "test": "ng test", "lint": "ng lint", "e2e": "ng e2e", - "dev": "ng serve --port 5005" + "dev": "ng serve --port 5005", + "cypress:open": "cypress open", + "cy:run": "cypress run", + "cypress:test": "start-server-and-test start http://localhost:4200 cy:run" }, "private": true, "dependencies": { @@ -21,7 +25,7 @@ "@angular/compiler": "12.0.3", "@angular/core": "^12.0.3", "@angular/fire": "^6.1.5", - "@angular/flex-layout": "^11.0.0-beta.33", + "@angular/flex-layout": "^12.0.0-beta.35", "@angular/forms": "12.0.3", "@angular/material": "^12.0.3", "@angular/platform-browser": "12.0.3", @@ -29,23 +33,20 @@ "@angular/platform-server": "12.0.3", "@angular/router": "12.0.3", "@angular/service-worker": "^12.0.3", - "@benfl3713/angular-components": "0.0.2", - "@taiga-ui/cdk": "^2.11.2", - "@taiga-ui/core": "^2.11.2", - "@taiga-ui/kit": "^2.11.2", + "@popperjs/core": "^2.11.6", "ajv": "^6.12.2", - "angular-notifier": "^6.0.2", + "angular-notifier": "^10.0.0", "aspnet-prerendering": "^3.0.1", "bootstrap": "^4.4.1", "core-js": "^3.6.5", "dynamic-marquee": "^1.2.2", "firebase": "^7.14.3", - "jquery": "3.5.0", + "jquery": "^3.6.1", "logrocket": "^1.0.7", "ngx-cookie-service": "^3.0.4", "ngx-device-detector": "^1.4.2", + "ngx-skeleton-loader": "^4.0.0", "oidc-client": "^1.10.1", - "popper.js": "^1.16.1", "rxjs": "^6.5.5", "tslib": "^2.0.0", "zone.js": "~0.11.4" @@ -59,6 +60,7 @@ "@types/jasminewd2": "~2.0.8", "@types/node": "^12.11.1", "codelyzer": "^6.0.0", + "cypress": "^10.10.0", "jasmine-core": "~3.6.0", "jasmine-spec-reporter": "~5.0.0", "karma": "~6.3.3", @@ -66,6 +68,7 @@ "karma-coverage-istanbul-reporter": "~3.0.2", "karma-jasmine": "~4.0.0", "karma-jasmine-html-reporter": "^1.5.0", + "start-server-and-test": "^1.14.0", "typescript": "4.2.4" }, "optionalDependencies": { diff --git a/DepartureBoardWeb/ClientApp/src/app/Components/black-card-style2/black-card-style2.component.css b/DepartureBoardWeb/ClientApp/src/app/Components/black-card-style2/black-card-style2.component.css new file mode 100644 index 00000000..e69de29b diff --git a/DepartureBoardWeb/ClientApp/src/app/Components/black-card-style2/black-card-style2.component.html b/DepartureBoardWeb/ClientApp/src/app/Components/black-card-style2/black-card-style2.component.html new file mode 100644 index 00000000..28d0df4d --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/app/Components/black-card-style2/black-card-style2.component.html @@ -0,0 +1,7 @@ +
+
+ +
+ + +
diff --git a/DepartureBoardWeb/ClientApp/src/app/Components/black-card-style2/black-card-style2.component.spec.ts b/DepartureBoardWeb/ClientApp/src/app/Components/black-card-style2/black-card-style2.component.spec.ts new file mode 100644 index 00000000..1e0d8614 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/app/Components/black-card-style2/black-card-style2.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { BlackCardStyle2Component } from './black-card-style2.component'; + +describe('BlackCardStyle2Component', () => { + let component: BlackCardStyle2Component; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ BlackCardStyle2Component ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(BlackCardStyle2Component); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/DepartureBoardWeb/ClientApp/src/app/Components/black-card-style2/black-card-style2.component.ts b/DepartureBoardWeb/ClientApp/src/app/Components/black-card-style2/black-card-style2.component.ts new file mode 100644 index 00000000..aa94e4c8 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/app/Components/black-card-style2/black-card-style2.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-black-card-style2', + templateUrl: './black-card-style2.component.html', + styleUrls: ['./black-card-style2.component.css'] +}) +export class BlackCardStyle2Component implements OnInit { + + constructor() { } + + ngOnInit(): void { + } + +} diff --git a/DepartureBoardWeb/ClientApp/src/app/Components/black-section-title/black-section-title.component.css b/DepartureBoardWeb/ClientApp/src/app/Components/black-section-title/black-section-title.component.css new file mode 100644 index 00000000..fed6dd70 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/app/Components/black-section-title/black-section-title.component.css @@ -0,0 +1,3 @@ +.noMarginBottom { + margin-bottom: 0; +} diff --git a/DepartureBoardWeb/ClientApp/src/app/Components/black-section-title/black-section-title.component.html b/DepartureBoardWeb/ClientApp/src/app/Components/black-section-title/black-section-title.component.html new file mode 100644 index 00000000..1a3f7bd7 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/app/Components/black-section-title/black-section-title.component.html @@ -0,0 +1,9 @@ +
+
+ {{ title }} +
+

+ + {{ subtitle }} +

+
diff --git a/DepartureBoardWeb/ClientApp/src/app/Components/black-section-title/black-section-title.component.spec.ts b/DepartureBoardWeb/ClientApp/src/app/Components/black-section-title/black-section-title.component.spec.ts new file mode 100644 index 00000000..7d5739e3 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/app/Components/black-section-title/black-section-title.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { BlackSectionTitleComponent } from './black-section-title.component'; + +describe('BlackSectionTitleComponent', () => { + let component: BlackSectionTitleComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ BlackSectionTitleComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(BlackSectionTitleComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/DepartureBoardWeb/ClientApp/src/app/Components/black-section-title/black-section-title.component.ts b/DepartureBoardWeb/ClientApp/src/app/Components/black-section-title/black-section-title.component.ts new file mode 100644 index 00000000..8a2d69ce --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/app/Components/black-section-title/black-section-title.component.ts @@ -0,0 +1,21 @@ +import {Component, Input, OnInit} from '@angular/core'; + +@Component({ + selector: 'app-black-section-title', + templateUrl: './black-section-title.component.html', + styleUrls: ['./black-section-title.component.css'] +}) +export class BlackSectionTitleComponent implements OnInit { + + @Input() title: any; + @Input() subtitle: any; + @Input() icon: string; + constructor() { } + + ngOnInit() { + } + + getAnchorUrl():string { + return "#" + this.title.toLowerCase().replace(/ /g, '-'); + } +} diff --git a/DepartureBoardWeb/ClientApp/src/app/Components/board-skeleton/board-skeleton.component.css b/DepartureBoardWeb/ClientApp/src/app/Components/board-skeleton/board-skeleton.component.css new file mode 100644 index 00000000..4e4939de --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/app/Components/board-skeleton/board-skeleton.component.css @@ -0,0 +1,102 @@ +.board { + width: 300px; + padding: 10px; + height: 450px !important; + padding-left: 5px; + border: 0; + margin: 0; +} + +.stop { + height: 25px; + font-size: 20px; +} + +div .bottom { + position: absolute; + bottom: 0px; + font-size: 18px; +} + +.destination { + font-size: 20px; + display: block; + margin: 0; + width: 300px; +} + +.no-wrap { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} + +.stopname { + width: 200px; + white-space: nowrap; + display: inline-block; + overflow: hidden; + text-overflow: ellipsis; + font-size: 20px; +} + +.operator { + overflow: hidden; + white-space: nowrap; + display: inline-block; + width: 250px; + text-overflow: ellipsis; +} + +@media only screen and (min-width: 960px) { + .board { + margin-right: 18px; + } +} + +@media only screen and (min-width: 1080px) { + .board { + margin-right: 20px; + } +} + +/* Fill full screen with each board when in portrait mode */ +@media screen and (orientation:portrait) { + .board { + width: 100vw !important; + height: 100vh !important; + } + + .stops { + width: 100%; + } + + .stop, .stopname, .destination, .operator { + font-size: 4vh !important; + height: auto; + width: auto; + } + + .stop-time { + width: 20% + } + + .bottom, h5 { + font-size: 4vh !important; + } + + .stop-time { + white-space: nowrap; + } + + .stopname-cell { + white-space: nowrap; + text-overflow:ellipsis; + overflow: hidden; + width: 80%; + } + + .destination { + width: 100%; + } +} diff --git a/DepartureBoardWeb/ClientApp/src/app/Components/board-skeleton/board-skeleton.component.html b/DepartureBoardWeb/ClientApp/src/app/Components/board-skeleton/board-skeleton.component.html new file mode 100644 index 00000000..5b3c2d47 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/app/Components/board-skeleton/board-skeleton.component.html @@ -0,0 +1,40 @@ +
+
+
+
+ +
+
+
+
+ +
+
+ + + + + + + + +
+ + + +
+
+
+ +
+
+ +
+
+
+ diff --git a/DepartureBoardWeb/ClientApp/src/app/Components/board-skeleton/board-skeleton.component.spec.ts b/DepartureBoardWeb/ClientApp/src/app/Components/board-skeleton/board-skeleton.component.spec.ts new file mode 100644 index 00000000..26e04345 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/app/Components/board-skeleton/board-skeleton.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { BoardSkeletonComponent } from './board-skeleton.component'; + +describe('BoardSkeletonComponent', () => { + let component: BoardSkeletonComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ BoardSkeletonComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(BoardSkeletonComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/DepartureBoardWeb/ClientApp/src/app/Components/board-skeleton/board-skeleton.component.ts b/DepartureBoardWeb/ClientApp/src/app/Components/board-skeleton/board-skeleton.component.ts new file mode 100644 index 00000000..88ba90e3 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/app/Components/board-skeleton/board-skeleton.component.ts @@ -0,0 +1,16 @@ +import { Component, OnInit, ChangeDetectionStrategy } from '@angular/core'; + +@Component({ + selector: 'app-board-skeleton', + templateUrl: './board-skeleton.component.html', + styleUrls: ['./board-skeleton.component.css'], + changeDetection: ChangeDetectionStrategy.OnPush +}) +export class BoardSkeletonComponent implements OnInit { + + constructor() { } + + ngOnInit(): void { + } + +} diff --git a/DepartureBoardWeb/ClientApp/src/app/Components/cards/black-card-style1/black-card-style1.component.css b/DepartureBoardWeb/ClientApp/src/app/Components/cards/black-card-style1/black-card-style1.component.css new file mode 100644 index 00000000..e69de29b diff --git a/DepartureBoardWeb/ClientApp/src/app/Components/cards/black-card-style1/black-card-style1.component.html b/DepartureBoardWeb/ClientApp/src/app/Components/cards/black-card-style1/black-card-style1.component.html new file mode 100644 index 00000000..e89b1e71 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/app/Components/cards/black-card-style1/black-card-style1.component.html @@ -0,0 +1,9 @@ +
+
+ +
+
+ +
+ +
diff --git a/DepartureBoardWeb/ClientApp/src/app/Components/cards/black-card-style1/black-card-style1.component.spec.ts b/DepartureBoardWeb/ClientApp/src/app/Components/cards/black-card-style1/black-card-style1.component.spec.ts new file mode 100644 index 00000000..950c6d7b --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/app/Components/cards/black-card-style1/black-card-style1.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { BlackCardStyle1Component } from './black-card-style1.component'; + +describe('BlackCardStyle1Component', () => { + let component: BlackCardStyle1Component; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ BlackCardStyle1Component ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(BlackCardStyle1Component); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/DepartureBoardWeb/ClientApp/src/app/Components/cards/black-card-style1/black-card-style1.component.ts b/DepartureBoardWeb/ClientApp/src/app/Components/cards/black-card-style1/black-card-style1.component.ts new file mode 100644 index 00000000..320afa7d --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/app/Components/cards/black-card-style1/black-card-style1.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-black-card-style1', + templateUrl: './black-card-style1.component.html', + styleUrls: ['./black-card-style1.component.css'] +}) +export class BlackCardStyle1Component implements OnInit { + + constructor() { } + + ngOnInit() { + } + +} diff --git a/DepartureBoardWeb/ClientApp/src/app/Components/contact-us/contact-us.component.css b/DepartureBoardWeb/ClientApp/src/app/Components/contact-us/contact-us.component.css new file mode 100644 index 00000000..def04598 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/app/Components/contact-us/contact-us.component.css @@ -0,0 +1,3 @@ +a { + color: lightskyblue; +} diff --git a/DepartureBoardWeb/ClientApp/src/app/Components/contact-us/contact-us.component.html b/DepartureBoardWeb/ClientApp/src/app/Components/contact-us/contact-us.component.html new file mode 100644 index 00000000..e2a794ac --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/app/Components/contact-us/contact-us.component.html @@ -0,0 +1,30 @@ +
+ +
+ + +
+
+
diff --git a/DepartureBoardWeb/ClientApp/src/app/Components/contact-us/contact-us.component.spec.ts b/DepartureBoardWeb/ClientApp/src/app/Components/contact-us/contact-us.component.spec.ts new file mode 100644 index 00000000..8ec24fb5 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/app/Components/contact-us/contact-us.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { ContactUsComponent } from './contact-us.component'; + +describe('ContactUsComponent', () => { + let component: ContactUsComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ ContactUsComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(ContactUsComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/DepartureBoardWeb/ClientApp/src/app/Components/contact-us/contact-us.component.ts b/DepartureBoardWeb/ClientApp/src/app/Components/contact-us/contact-us.component.ts new file mode 100644 index 00000000..e82d33bb --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/app/Components/contact-us/contact-us.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-contact-us', + templateUrl: './contact-us.component.html', + styleUrls: ['./contact-us.component.css'] +}) +export class ContactUsComponent implements OnInit { + + constructor() { } + + ngOnInit(): void { + } + +} diff --git a/DepartureBoardWeb/ClientApp/src/app/Pages/boards/board/board.css b/DepartureBoardWeb/ClientApp/src/app/Pages/boards/board/board.css index 67e540a6..f56acaa7 100644 --- a/DepartureBoardWeb/ClientApp/src/app/Pages/boards/board/board.css +++ b/DepartureBoardWeb/ClientApp/src/app/Pages/boards/board/board.css @@ -2,7 +2,8 @@ width: 300px; padding: 10px; height: 450px; - padding-top: 0; + padding: 0; + padding-left: 5px; } .stop { diff --git a/DepartureBoardWeb/ClientApp/src/app/Pages/boards/board/board.html b/DepartureBoardWeb/ClientApp/src/app/Pages/boards/board/board.html index 2dc2785d..47abb333 100644 --- a/DepartureBoardWeb/ClientApp/src/app/Pages/boards/board/board.html +++ b/DepartureBoardWeb/ClientApp/src/app/Pages/boards/board/board.html @@ -1,8 +1,8 @@
-
{{DepartureTime | date: 'HH:mm'}}
+
{{DepartureTime | date: 'HH:mm'}}
diff --git a/DepartureBoardWeb/ClientApp/src/app/Pages/boards/boards.component.html b/DepartureBoardWeb/ClientApp/src/app/Pages/boards/boards.component.html index ddfa31d9..00fba1ae 100644 --- a/DepartureBoardWeb/ClientApp/src/app/Pages/boards/boards.component.html +++ b/DepartureBoardWeb/ClientApp/src/app/Pages/boards/boards.component.html @@ -4,6 +4,15 @@

{{ stationName }}

+ + + +
+ +
+ +
+

No Departures Found for {{ stationName || stationCode }}

diff --git a/DepartureBoardWeb/ClientApp/src/app/Pages/boards/boards.component.ts b/DepartureBoardWeb/ClientApp/src/app/Pages/boards/boards.component.ts index 8cdae221..98f36b03 100644 --- a/DepartureBoardWeb/ClientApp/src/app/Pages/boards/boards.component.ts +++ b/DepartureBoardWeb/ClientApp/src/app/Pages/boards/boards.component.ts @@ -46,6 +46,7 @@ export class BoardsComponent implements OnInit, OnDestroy { @ViewChild("Boards", { read: ViewContainerRef, static: true }) Boards: ViewContainerRef; subscriptions: Subscription[] = []; + isLoading = false; constructor( private route: ActivatedRoute, @@ -107,7 +108,7 @@ export class BoardsComponent implements OnInit, OnDestroy { this.displays = Number(this.route.snapshot.paramMap.get("displays")); } else { this.displays = Number( - localStorage.getItem("settings_mainboard_count") || 6 + localStorage.getItem("settings_mainboard_count") || this.displays ); } @@ -142,6 +143,7 @@ export class BoardsComponent implements OnInit, OnDestroy { }); } ToggleConfig.LoadingBar.next(true); + this.isLoading = true if (!this.isCustomData) { this.GetDepartures(); @@ -168,9 +170,13 @@ export class BoardsComponent implements OnInit, OnDestroy { .subscribe( (response) => { ToggleConfig.LoadingBar.next(false); + this.isLoading = false; this.ProcessDepartures(response); }, - () => ToggleConfig.LoadingBar.next(false) + () => { + ToggleConfig.LoadingBar.next(false); + this.isLoading = false; + } ); } @@ -221,6 +227,7 @@ export class BoardsComponent implements OnInit, OnDestroy { .subscribe( (departureData: any) => { ToggleConfig.LoadingBar.next(false); + this.isLoading = false; console.debug(departureData); const data = departureData.jsonData; this.noBoardsDisplay = !data; @@ -266,6 +273,7 @@ export class BoardsComponent implements OnInit, OnDestroy { }, (error) => { ToggleConfig.LoadingBar.next(false); + this.isLoading = false; console.log(error); } ) diff --git a/DepartureBoardWeb/ClientApp/src/app/Pages/examples/examples.component.css b/DepartureBoardWeb/ClientApp/src/app/Pages/examples/examples.component.css index f9182325..ec918ca3 100644 --- a/DepartureBoardWeb/ClientApp/src/app/Pages/examples/examples.component.css +++ b/DepartureBoardWeb/ClientApp/src/app/Pages/examples/examples.component.css @@ -12,3 +12,7 @@ img { max-width: 100%; height: auto; } + +p { + color: #fff; +} diff --git a/DepartureBoardWeb/ClientApp/src/app/Pages/examples/examples.component.html b/DepartureBoardWeb/ClientApp/src/app/Pages/examples/examples.component.html index e243d9d0..81e761f3 100644 --- a/DepartureBoardWeb/ClientApp/src/app/Pages/examples/examples.component.html +++ b/DepartureBoardWeb/ClientApp/src/app/Pages/examples/examples.component.html @@ -1,5 +1,9 @@

Examples

+

Raspberry Pi

+

Turn your raspberry pi into a departure board by using an existing screen or by buying a custom screen for the pi

+ Raspberry Pi Example +

Home Display

Turn you spare screen or tv into a always live departure board. So at a quick glance you can see the next train to where you want to go.
Or watch the trains come and go from the comfort of your own home

diff --git a/DepartureBoardWeb/ClientApp/src/app/Pages/home/home.component.css b/DepartureBoardWeb/ClientApp/src/app/Pages/home/home.component.css index a5dbf132..9bf1de48 100644 --- a/DepartureBoardWeb/ClientApp/src/app/Pages/home/home.component.css +++ b/DepartureBoardWeb/ClientApp/src/app/Pages/home/home.component.css @@ -1,7 +1,11 @@ +.home { + background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("/assets/sofbox-sass-black/saas-bg.png"); +} + .header { width: 100%; - height: 320px; - margin-bottom: 40px; + height: 600px; + margin-top: 0; } .header-background { @@ -10,7 +14,7 @@ right: 0; z-index: 1; display: block; - background: url(/assets/departure_background.png) no-repeat center; + background: url(/assets/departure_background.png); -webkit-filter: blur(5px); -moz-filter: blur(5px); -o-filter: blur(5px); @@ -24,37 +28,30 @@ position: absolute; left: 0; right: 0; - z-index: 9999; + z-index: 2; margin-left: 20px; margin-right: 20px; } -.header-title { - font-size: 48px; - text-align: center; - color: white; - margin-top: 102px; -} - .header-search { text-align: center; - width: 300px; + width: 400px; } .search-spinner { margin:auto; position: absolute; - left: 0; - right: 0; - margin-left: auto; - margin-right: auto; + left: 0; + right: 0; + margin-left: auto; + margin-right: auto; } .search-container { display: flex; flex-direction: row; - margin: auto; - width: 356px; + + width: 456px; --tui-link: #ff9729; } @@ -68,23 +65,30 @@ border-bottom-right-radius: 0; } -section { - margin-bottom: 80px; +.board-example { + background-color: black; + border-radius: 20px; + width: 300px; + /* border: 2px solid #ff9729; */ + box-shadow: 0 0 20px #ff9729; + box-shadow: 0 0 5px #ff9729 inset; } -.autofit-container { - margin-left: auto; - margin-right: auto; - width: fit-content; +.board { + padding: 10px; } -.howToUse-container > p { - margin-bottom: 30px; +a { + color: lightskyblue; } -.howToUse-container { - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; +.button { + color: #fff; +} + +#how-to-use { + background:linear-gradient(135deg, #ff9729 0%,#da4606 100%); + border-radius: 50px; + max-width: 1500px; + margin: auto; } diff --git a/DepartureBoardWeb/ClientApp/src/app/Pages/home/home.component.html b/DepartureBoardWeb/ClientApp/src/app/Pages/home/home.component.html index 4f5766e6..c826693c 100644 --- a/DepartureBoardWeb/ClientApp/src/app/Pages/home/home.component.html +++ b/DepartureBoardWeb/ClientApp/src/app/Pages/home/home.component.html @@ -1,171 +1,246 @@ - -
-
-
-
-

Led Departure Board

- -
- +
+
+
+
+
+
+

+ Led Departure Board +

+

+ A webapp designed to re-create the platform led signs you get at + British and German train stations.
+ The data is collected live from multiple datasource's and displayed + in multiple custom built panels. +

+
+ Find your Station - Search a Station - - - - - - - - - - +
+
+
+

+ Example: Euston +

+
+
+
+ +
+ +
+
+
+
-
-

About

-
-

- Led Departure Board is a webapp designed to re-create the platform signs - you get at British and German train stations.
- The data is collected live from multiple datasource's and displayed in different - custom panels. -

-
+ -
-

News

-
+
+
+
+
+ +
+
-
- -
-

How to Use

-

Learn how to use all the custom features on our document website.

- Learn More -
- -
-

Features

-
- -
- -
-

Data Sources

-
    -
  • -
    Real Time Trains
    -
    - UK Live Departure Data is provided by the - Realtime Trains API. This api then talks to network rail to get the data back. This - means we receive the most up to date data from network rail. -
    -
  • -
  • -
    National Rail
    -
    -
      -
    • - The search functionality is powered by the national rail data - feed (NRE). For more information visit, - https://www.nationalrail.co.uk/100296.aspx -
    • -
    • - Departure Data can also be fetched from national rail (Including - train car length for certain services) by changing the data - source in settings. This is fetched using the darwin api -
    • -
    -
    -
  • -
  • -
    DeutscheBahn API
    -
    - Search and Live Departures for Germany are provided by the - DeutscheBahn API. Note they only supply data relating to there trains. -
    -
  • -
  • -
    TfL Open Data
    -
    - Search and Live Departures for London buses are Powered by - TfL Open Data. This also Contains OS data © Crown copyright and database rights 2016' and Geomni UK Map data © and database rights [2019] -
    -
  • -
-
+
+ -
-

Project Info

-
-

- This is an open source project so is free to used under the Apache-2.0 - Liscense.
- For more info or for the source code of the project then visit the +

+
+
+
+ +
+
+
+

+ Visit our documention website
+ to learn, all the way from the basics to the advanced features of this + website!

+

github pageHow to Use -

-
+
+
+ -
-

Contact Me

-
-

- To contact me for more information feel free to send an email to - info@leddepartureboard.com
Or start an issue/discussion on - github -

-
- + + +
+
+
+
+ +
+
+
+
+ +
+ images +
+
Real Time Trains
+

+ UK Live Departure Data is provided by the + Realtime Trains API. This api then talks to network rail to get the data back. This + means we receive the most up to date data from network rail. +

+
+
+
+ +
+ images +
+
National Rail
+
+
    +
  • + The search functionality is powered by the national rail data + feed (NRE). For more information visit, + https://www.nationalrail.co.uk/100296.aspx +
  • +
  • + Departure Data can also be fetched from national rail + (Including train car length for certain services) by changing + the data source in settings. This is fetched using the darwin + api +
  • +
+
+
+
+
+ +
+ images +
+
DeutscheBahn API
+

+ Search and Live Departures for Germany are provided by the + DeutscheBahn API. + Note they only supply data relating to there trains. +

+
+
+
+ +
+ images +
+
TfL Open Data
+

+ Search and Live Departures for London buses are Powered by + TfL Open Data. This also + Contains OS data © Crown copyright and database rights 2016' and + Geomni UK Map data © and database rights [2019] +

+
+
+
+
+
+ +
+ +
+

+ This is an open source project so is free to used under the Apache-2.0 + Liscense.
+ For more info or for the source code of the project then visit the + github page +

+
- +
diff --git a/DepartureBoardWeb/ClientApp/src/app/Pages/home/home.component.ts b/DepartureBoardWeb/ClientApp/src/app/Pages/home/home.component.ts index 95ad4ecc..21360f30 100644 --- a/DepartureBoardWeb/ClientApp/src/app/Pages/home/home.component.ts +++ b/DepartureBoardWeb/ClientApp/src/app/Pages/home/home.component.ts @@ -1,108 +1,78 @@ import { BreakpointObserver, Breakpoints } from "@angular/cdk/layout"; -import { Component } from "@angular/core"; +import { + AfterViewInit, + Component, + ComponentFactoryResolver, + ElementRef, + ViewChild, + ViewContainerRef, +} from "@angular/core"; import { FormControl } from "@angular/forms"; -import { Router } from "@angular/router"; -import { tuiReplayedValueChangesFrom } from "@taiga-ui/cdk"; import { Observable } from "rxjs"; -import { catchError, debounceTime, map, shareReplay, switchMap, tap } from "rxjs/operators"; -import { Station } from "src/app/models/station.model"; -import { StationLookupService } from "src/app/Services/station-lookup.service"; -import { ToggleConfig } from "src/app/ToggleConfig"; +import { + map, + shareReplay, + switchMap, +} from "rxjs/operators"; +import { Departure } from "src/app/models/departure.model"; +import { DepartureService } from "src/app/Services/departure.service"; +import { Board } from "../boards/board/board"; @Component({ selector: "app-home", templateUrl: "./home.component.html", styleUrls: ["./home.component.css"], }) -export class HomeComponent { - constructor(private stationLookupService: StationLookupService, private router: Router, private breakpointObserver: BreakpointObserver) {} +export class HomeComponent implements AfterViewInit { + constructor( + private breakpointObserver: BreakpointObserver, + private resolver: ComponentFactoryResolver, + private departureService: DepartureService + ) {} searchForm = new FormControl(); isLoadingStations = false; + hasLoadedExampleBoard = false; - async Search() { - const value: string = this.searchForm.value; - let station = null; - if(value.split('-').length >= 2) { - let code = value.trim().split('-').slice(-1)[0]?.trim(); - console.debug("Found Code", code); - code = code.replace(/\(|\)/g, ''); - station = await this.attemptCalculate(code) - } - - if (!station) { - station = await this.attemptCalculate(value); - } - - if (!station) { - alert("Invalid Station"); - return; - } - - let prefixUrl = ""; - - if (station.country == "DE") { - prefixUrl = "germany/"; - } - - this.router.navigate([prefixUrl, station.code]); - } - - async attemptCalculate(value): Promise { - const stations = await this.stationLookupService - .Search(value) - .toPromise(); - - const codeMatchedStations = stations.filter( - (s) => s.code.toUpperCase() === value.toUpperCase() - ); - if (codeMatchedStations.length > 0) { - return codeMatchedStations[0]; - } + @ViewChild("board", { read: ViewContainerRef, static: true }) + board: ViewContainerRef; - const nameMatchedStations = stations.filter( - (s) => s.name.toLowerCase() === value.toLowerCase() - ); - if (nameMatchedStations.length > 0) { - return nameMatchedStations[0]; - } + @ViewChild('searchView') searchView: ElementRef; - return null; + ngAfterViewInit(): void { + this.startExampleBoard(); } - readonly stationLookup$ = tuiReplayedValueChangesFrom( - this.searchForm - ).pipe( - debounceTime(200), - switchMap((value: string) => { - ToggleConfig.LoadingBar.next(true); - this.isLoadingStations = true; - - return this.stationLookupService - .Search(value) - .pipe(map((s) => s.splice(0, 10))) - .pipe(tap(() => { - ToggleConfig.LoadingBar.next(false); - this.isLoadingStations = false; - })) - .pipe(catchError((error) => { - ToggleConfig.LoadingBar.next(false); - this.isLoadingStations = false; - throw error; - })) - }) - ); - - getCountryLogo(station: Station): string{ - if(station.country == "GB"){ - return "assets/images/flags/united-kingdom.svg"; - } - - if(station.country == "DE") { - return "assets/images/flags/germany.webp"; - } - - return null; + startExampleBoard() { + this.isHandset$ + .pipe( + switchMap((isHandset) => { + return !isHandset + ? this.departureService.GetDepartures( + "EUS", + 1, + false, + null, + "REALTIMETRAINS" + ) + : new Observable(obs => obs.complete()); + }) + ) + ?.subscribe( + (data) => { + this.hasLoadedExampleBoard = true; + if (!data && data.length == 0) { + return; + } + + this.board.clear(); + const factory = this.resolver.resolveComponentFactory(Board); + const componentRef = this.board.createComponent(factory); + componentRef.instance.Initilize(data[0]); + }, + null, + () => (this.hasLoadedExampleBoard = true) + ); } isHandset$: Observable = this.breakpointObserver @@ -111,4 +81,11 @@ export class HomeComponent { map((result) => result.matches), shareReplay() ); + + scrollToSearch() { + const elementRect = this.searchView.nativeElement.getBoundingClientRect(); + const absoluteElementTop = elementRect.top + window.pageYOffset; + const middle = absoluteElementTop - (elementRect.height / 2); + window.scrollTo(0, middle); // have a window object reference in your component + } } diff --git a/DepartureBoardWeb/ClientApp/src/app/Pages/home/home.old.component.html b/DepartureBoardWeb/ClientApp/src/app/Pages/home/home.old.component.html deleted file mode 100644 index 32037e89..00000000 --- a/DepartureBoardWeb/ClientApp/src/app/Pages/home/home.old.component.html +++ /dev/null @@ -1,193 +0,0 @@ -

Led Departure Board

-
-
- -
- -
-
-
-
-

Welcome

-

- Led Departure Board is a webapp designed to re-create the platform signs - you get at uk and German train stations. The data is collected live from - network rail and displayed in a custom panel. -

-

- The main use case for this app is to set it up on a permanent screen which - constantly shows the next trains at a specific station.
- The boards refresh every 16 seconds with the most up to - date data, so there is no need to manually refresh. -

-

How to Use

-
    -
  1. - To change the station just modify the url. E.g - www.leddepartureboard.com/EUS will show - euston station times -
  2. -
  3. - To change the amount of boards on the screen just add a number to the - end. E.g - www.leddepartureboard.com/EUS/12 -
  4. -
  5. - To view a single platform style board just modify the url with a prefix - of 'singleboard'. E.g - www.leddepartureboard.com/singleboard/EUS -
  6. -
  7. - To specify a specific platform just add the platform parameter. E.g - www.leddepartureboard.com/EUS?platform=5 - will show euston station times on platform 5 only
    (You can also - click on the platform number on the display to filter to that platform - only) -
  8. -
-

- If you do not know the station code of your station then just use the - helpful search feature or go directly to - www.leddepartureboard.com/search -

-

Arrivals

- -

Tips

-
    -
  1. - When on the departure board page if you click on any of the destinations - or stops along the way, it will change the board to that station. -
  2. -
  3. - If you click the platform number is will filter the board to only show - departures from that platform -
  4. -
  5. If you click the clock it will take you back to the home page
  6. -
  7. - If you want to add multiple query parameters to the url use the - & imbetween each one. e.g - www.leddepartureboard.com/EUS?hideClock=true&platform=5 -
  8. -
-

Data Sources

-
    -
  • - Departure Data is provided by the - Realtime Trains API. This api then talks to network rail to get the data back. This means - we receive the most up to date data from network rail. -
  • -
  • - The search functionality is powered by the national rail data feed - (NRE). For more information visit, - https://www.nationalrail.co.uk/100296.aspx -
  • -
  • - Departure Data can also be fetched from national rail (Including train - car length for certain services) by changing the data source in - settings. This is fetched using the darwin api -
  • -
- -

Project Info

-

- This is an open source project so is free to used under the Apache-2.0 - Liscense. For more info or for the source code of the project then visit - the - github page -

- -
Contact Me
-

- To contact me for more information feel free to send an email to - info@leddepartureboard.com -

-
-
- -
-
- -

- We'd appreciate any donation for the work we have put into this project. -

- -
-
-
-

Requests

-

- If you have found a bug or want to request a new feature then please - submit them on - github -

-
-
-
- - diff --git a/DepartureBoardWeb/ClientApp/src/app/Pages/singleboard/singleboard.styling.css b/DepartureBoardWeb/ClientApp/src/app/Pages/singleboard/singleboard.styling.css index 6595c997..548acfb2 100644 --- a/DepartureBoardWeb/ClientApp/src/app/Pages/singleboard/singleboard.styling.css +++ b/DepartureBoardWeb/ClientApp/src/app/Pages/singleboard/singleboard.styling.css @@ -5,7 +5,7 @@ } .singleboard-absolute { - position: absolute; + position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); diff --git a/DepartureBoardWeb/ClientApp/src/app/app.component.html b/DepartureBoardWeb/ClientApp/src/app/app.component.html index 164d0791..9785a927 100644 --- a/DepartureBoardWeb/ClientApp/src/app/app.component.html +++ b/DepartureBoardWeb/ClientApp/src/app/app.component.html @@ -1,4 +1,3 @@ - -
+ -
+ diff --git a/DepartureBoardWeb/ClientApp/src/app/app.component.ts b/DepartureBoardWeb/ClientApp/src/app/app.component.ts index bae51c09..54a15343 100644 --- a/DepartureBoardWeb/ClientApp/src/app/app.component.ts +++ b/DepartureBoardWeb/ClientApp/src/app/app.component.ts @@ -68,6 +68,17 @@ export class AppComponent implements AfterViewChecked { 90 ); window.location.reload(); + } else if ( + params.acceptCookies == "false" && + !cookieService.check("CookieScriptConsent") + ) { + console.log("Auto Rejected Cookie Policy"); + this.setCookie( + "CookieScriptConsent", + `{"action":"reject","categories":"[]"}`, + 90 + ); + window.location.reload(); } if (params.token) { @@ -154,6 +165,7 @@ export class AppComponent implements AfterViewChecked { "/buses", "/settings", "/search", + "/contact", ]; this.showSplashScreen = splashUrls.includes(location.pathname); diff --git a/DepartureBoardWeb/ClientApp/src/app/app.module.ts b/DepartureBoardWeb/ClientApp/src/app/app.module.ts index 0682850f..49f35b30 100644 --- a/DepartureBoardWeb/ClientApp/src/app/app.module.ts +++ b/DepartureBoardWeb/ClientApp/src/app/app.module.ts @@ -14,6 +14,7 @@ import { AngularFireStorageModule } from "@angular/fire/storage"; import { AngularFireAuthModule } from "@angular/fire/auth"; import { FlexLayoutModule } from "@angular/flex-layout"; import { NotifierModule } from "angular-notifier"; +import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader'; import { AppComponent } from "./app.component"; import { NavMenuComponent } from "./nav-menu/nav-menu.component"; @@ -50,9 +51,14 @@ import { EditCustomDepartureComponent, } from "./Components/edit-custom-departure/edit-custom-departure.component"; import { SplashScreenComponent } from "./Components/splash-screen/splash-screen.component"; -import { TuiModule } from "./external/tui.module"; import { FeaturesComponent } from './widgets/features/features.component'; import { ROUTES } from "./routes"; +import { BoardSkeletonComponent } from './Components/board-skeleton/board-skeleton.component'; +import { BlackCardStyle1Component } from "./Components/cards/black-card-style1/black-card-style1.component"; +import { BlackSectionTitleComponent } from "./Components/black-section-title/black-section-title.component"; +import { BlackCardStyle2Component } from './Components/black-card-style2/black-card-style2.component'; +import { NavMenuMobileComponent } from './nav-menu/nav-menu-mobile/nav-menu-mobile.component'; +import { ContactUsComponent } from './Components/contact-us/contact-us.component'; const firebaseConfig = { apiKey: "AIzaSyBCYNEHPUwXR2UnqhJMdR5goqbq0fy1vdo", @@ -88,6 +94,12 @@ const firebaseConfig = { DepartureStopDialog, SplashScreenComponent, FeaturesComponent, + BoardSkeletonComponent, + BlackCardStyle1Component, + BlackSectionTitleComponent, + BlackCardStyle2Component, + NavMenuMobileComponent, + ContactUsComponent ], imports: [ BrowserModule.withServerTransition({ appId: "ng-cli-universal" }), @@ -100,8 +112,8 @@ const firebaseConfig = { AngularFireAuthModule, AngularFireStorageModule, FlexLayoutModule, - TuiModule, SettingsModule, + NgxSkeletonLoaderModule, NotifierModule.withConfig({ position: { horizontal: { @@ -116,7 +128,7 @@ const firebaseConfig = { autoHide: 3500, }, }), - RouterModule.forRoot(ROUTES, { relativeLinkResolution: 'legacy' }), + RouterModule.forRoot(ROUTES, { relativeLinkResolution: 'legacy', anchorScrolling: 'enabled', scrollPositionRestoration: 'enabled' }), BrowserAnimationsModule, DeviceDetectorModule.forRoot(), ServiceWorkerModule.register("ngsw-worker.js", { diff --git a/DepartureBoardWeb/ClientApp/src/app/app.server.module.ts b/DepartureBoardWeb/ClientApp/src/app/app.server.module.ts deleted file mode 100644 index cfb0e021..00000000 --- a/DepartureBoardWeb/ClientApp/src/app/app.server.module.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { NgModule } from '@angular/core'; -import { ServerModule } from '@angular/platform-server'; -import { ModuleMapLoaderModule } from '@nguniversal/module-map-ngfactory-loader'; -import { AppComponent } from './app.component'; -import { AppModule } from './app.module'; - -@NgModule({ - imports: [AppModule, ServerModule, ModuleMapLoaderModule], - bootstrap: [AppComponent] -}) -export class AppServerModule { } diff --git a/DepartureBoardWeb/ClientApp/src/app/external/tui.module.ts b/DepartureBoardWeb/ClientApp/src/app/external/tui.module.ts deleted file mode 100644 index b58e6d2f..00000000 --- a/DepartureBoardWeb/ClientApp/src/app/external/tui.module.ts +++ /dev/null @@ -1,29 +0,0 @@ -import { NgModule } from '@angular/core'; -import { TuiRootModule, TuiThemeNightModule, TuiModeModule, TuiButtonModule, TuiDataListModule, TuiLoaderModule } from '@taiga-ui/core'; -import { TuiIslandModule, TuiInputModule, TuiAvatarModule } from '@taiga-ui/kit'; -import {TuiLetModule} from '@taiga-ui/cdk'; - - - - - -@NgModule({ - exports: [ - TuiRootModule, - TuiIslandModule, - TuiThemeNightModule, - TuiInputModule, - TuiModeModule, - TuiButtonModule, - TuiLetModule, - TuiDataListModule, - TuiAvatarModule, - TuiLoaderModule - ] -}) -export class TuiModule { } - - -/** Copyright 2019 Google LLC. All Rights Reserved. - Use of this source code is governed by an MIT-style license that - can be found in the LICENSE file at http://angular.io/license */ diff --git a/DepartureBoardWeb/ClientApp/src/app/footer/footer.component.html b/DepartureBoardWeb/ClientApp/src/app/footer/footer.component.html index a44f1e8e..e3372459 100644 --- a/DepartureBoardWeb/ClientApp/src/app/footer/footer.component.html +++ b/DepartureBoardWeb/ClientApp/src/app/footer/footer.component.html @@ -4,7 +4,7 @@
  • Home
  • Search
  • - Examples + Contact Us
  • Status diff --git a/DepartureBoardWeb/ClientApp/src/app/nav-menu/menu-items.ts b/DepartureBoardWeb/ClientApp/src/app/nav-menu/menu-items.ts new file mode 100644 index 00000000..1afc4f3b --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/app/nav-menu/menu-items.ts @@ -0,0 +1,20 @@ +export const navItemList: any = [ + { + href: '/', title: 'Home', + routerLinkActiveOptions: { exact: true }, + is_link: true, + icon: "fas fa-home" + }, + { href: '/search', title: 'Search', is_link: true, icon: "fas fa-search" }, + { href: '/examples', title: 'Examples', is_link: true, icon: "far fa-lightbulb" }, + { href: '', title: 'Boards', is_link: false, children: true, icon: "fas fa-chalkboard", child: [ + { href: '/custom-departures', title: 'Custom Departures', is_link: true, icon: "fas fa-chalkboard" }, + { href: '/buses', title: 'Buses', is_link: true, icon: "fas fa-bus", isBeta: true }, + ] }, + { href: '', title: 'Learn', is_link: false, children: true, icon: "fas fa-graduation-cap", child: [ + { href: '/about', title: 'About', is_link: true, icon: "fas fa-info" }, + { href: 'https://docs.leddepartureboard.com', title: 'Docs', is_link: true, use_href: true, icon: "far fa-file" }, + ] }, + { href: '/settings', title: 'Settings', is_link: true, icon: "fas fa-cogs" }, + { href: 'https://admin.leddepartureboard.com', title: 'Admin', is_link: true, use_href: true, icon: "fas fa-external-link-alt" }, +]; diff --git a/DepartureBoardWeb/ClientApp/src/app/nav-menu/nav-menu-mobile/nav-menu-mobile.component.css b/DepartureBoardWeb/ClientApp/src/app/nav-menu/nav-menu-mobile/nav-menu-mobile.component.css new file mode 100644 index 00000000..afc94b4d --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/app/nav-menu/nav-menu-mobile/nav-menu-mobile.component.css @@ -0,0 +1,18 @@ +.sidenav { + z-index: 999999; + width: 300px; + border: 0; +} + +/*Pads Icons*/ +.sidenav .fa, +.sidenav .fas, +.sidenav .far { + padding-right: 10px; +} + +.bottom-nav-items { + position: absolute; + bottom: 0px; + width: 100%; +} diff --git a/DepartureBoardWeb/ClientApp/src/app/nav-menu/nav-menu-mobile/nav-menu-mobile.component.html b/DepartureBoardWeb/ClientApp/src/app/nav-menu/nav-menu-mobile/nav-menu-mobile.component.html new file mode 100644 index 00000000..ec8109d6 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/app/nav-menu/nav-menu-mobile/nav-menu-mobile.component.html @@ -0,0 +1,84 @@ + + Led Departure Board + + + + + + +
    +
    Login + + Log Out + +
    +
    diff --git a/DepartureBoardWeb/ClientApp/src/app/nav-menu/nav-menu-mobile/nav-menu-mobile.component.spec.ts b/DepartureBoardWeb/ClientApp/src/app/nav-menu/nav-menu-mobile/nav-menu-mobile.component.spec.ts new file mode 100644 index 00000000..5effbcc1 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/app/nav-menu/nav-menu-mobile/nav-menu-mobile.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { NavMenuMobileComponent } from './nav-menu-mobile.component'; + +describe('NavMenuMobileComponent', () => { + let component: NavMenuMobileComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ NavMenuMobileComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(NavMenuMobileComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/DepartureBoardWeb/ClientApp/src/app/nav-menu/nav-menu-mobile/nav-menu-mobile.component.ts b/DepartureBoardWeb/ClientApp/src/app/nav-menu/nav-menu-mobile/nav-menu-mobile.component.ts new file mode 100644 index 00000000..94fb4980 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/app/nav-menu/nav-menu-mobile/nav-menu-mobile.component.ts @@ -0,0 +1,25 @@ +import { Component, OnInit, Output, EventEmitter } from '@angular/core'; +import { AuthService } from 'src/app/Services/auth.service'; +import {navItemList} from "../menu-items" + +@Component({ + selector: 'app-nav-menu-mobile', + templateUrl: './nav-menu-mobile.component.html', + styleUrls: ['./nav-menu-mobile.component.css'] +}) +export class NavMenuMobileComponent implements OnInit { + + menuItems = navItemList; + + @Output() pageClicked = new EventEmitter(); + + constructor(public auth: AuthService) { } + + ngOnInit(): void { + } + + PageChanged() { + this.pageClicked.emit(); + } + +} diff --git a/DepartureBoardWeb/ClientApp/src/app/nav-menu/nav-menu.component.css b/DepartureBoardWeb/ClientApp/src/app/nav-menu/nav-menu.component.css index 1e0ac76e..c1a52638 100644 --- a/DepartureBoardWeb/ClientApp/src/app/nav-menu/nav-menu.component.css +++ b/DepartureBoardWeb/ClientApp/src/app/nav-menu/nav-menu.component.css @@ -1,71 +1,22 @@ -html { - font-size: 14px; -} -@media (min-width: 768px) { - html { - font-size: 16px; - } -} - -.nav-link { - color: var(--mainColour) !important; -} - -.sidenav-container { - margin-top: 5px; -} - -.sidenav { - width: 300px; - border: 0; -} - -/*Pads Icons*/ -.sidenav .fa, -.sidenav .fas, -.sidenav .far { - padding-right: 10px; -} - -.logo { - height: 20px; - margin-right: 10px; -} - -.navbar { - height: 35px; -} - -.page-selected { - font-weight: bold; +.navbar-brand { + display: inline-flex; } -.dropdown-toggle { - background-color: black; - color: var(--mainColour); - border: 0; +#header { + position: fixed; + top: 0; + left: 0; + z-index: 99; + background-color: rgba(0, 0, 0, 0.8); } -.bottom-nav-items { - position: absolute; - bottom: 0px; - width: 100%; +.main { + margin-top: 110px; } -.container-fluid { - padding-right: 0; - padding-left: 10px; - background-color: var(--backgroundColour); +.navbar-toggler { + background-color: rgba(0, 0, 0, 0.8) !important; + border: 0 !important; + color: #fff !important } -.mat-drawer-container { - background-color: var(--backgroundColour); -} - -#nav-hamburger-button { - z-index: 20; -} - -.scrollbar { - width: 0 !important; -} diff --git a/DepartureBoardWeb/ClientApp/src/app/nav-menu/nav-menu.component.html b/DepartureBoardWeb/ClientApp/src/app/nav-menu/nav-menu.component.html index d43bd65e..ab57c1b2 100644 --- a/DepartureBoardWeb/ClientApp/src/app/nav-menu/nav-menu.component.html +++ b/DepartureBoardWeb/ClientApp/src/app/nav-menu/nav-menu.component.html @@ -1,228 +1,139 @@ -
    - - - - - Led Departure Board - - Home - Search - Examples - Custom Departures - Buses - About - Docs - - - - Admin - Settings - -
    -
    Login + + +
    + +
    diff --git a/DepartureBoardWeb/ClientApp/src/app/nav-menu/nav-menu.component.ts b/DepartureBoardWeb/ClientApp/src/app/nav-menu/nav-menu.component.ts index 452637a9..36716814 100644 --- a/DepartureBoardWeb/ClientApp/src/app/nav-menu/nav-menu.component.ts +++ b/DepartureBoardWeb/ClientApp/src/app/nav-menu/nav-menu.component.ts @@ -14,6 +14,7 @@ import { MatSidenav } from "@angular/material/sidenav"; import { BreakpointObserver, Breakpoints } from "@angular/cdk/layout"; import { map, shareReplay } from "rxjs/operators"; import { Observable } from "rxjs"; +import {navItemList} from "./menu-items" @Component({ selector: "app-nav-menu", @@ -22,13 +23,21 @@ import { Observable } from "rxjs"; }) export class NavMenuComponent { showHome: boolean = true; + navItemList = navItemList; isBetaEnabled = localStorage.getItem("settings_general_betaFeatures") === "true"; + showMobileMenu: boolean = false; timer; fixedMenuPages: Array = [ "/", "/search", "/examples", + "/contact", "/settings", + "/settings/general", + "/settings/mainboard", + "/settings/singleboard", + "/settings/departureadmin", + "/settings/buses", "/custom-departures", "/custom-departures/add", "/custom-departures/edit", @@ -37,7 +46,6 @@ export class NavMenuComponent { "/about/departureboard-admin", "/buses", ]; - @ViewChild(MatSidenav, { static: true }) public sidenav: MatSidenav; constructor( private router: Router, @@ -52,17 +60,18 @@ export class NavMenuComponent { clearTimeout(this.timer); this.timer = null; this.showHome = true; + document.documentElement.style.overflow = ''; //hides menu if parameter is supplied if ( event.urlAfterRedirects.split("?").length > 1 && event.urlAfterRedirects.split("?")[1].includes("hideMenu=true") ) { this.showHome = false; + document.documentElement.style.overflow = 'hidden'; return; } if ( - !this.fixedMenuPages.includes(event.urlAfterRedirects) && - !this.deviceService.isMobile() + !this.fixedMenuPages.includes(event.urlAfterRedirects.split("#")[0]) ) { this.SetTimer(); } @@ -79,11 +88,10 @@ export class NavMenuComponent { } SetTimer(): void { - this.timer = setTimeout(() => (this.showHome = false), 3000); - } - - PageChanged() { - this.sidenav.close(); + this.timer = setTimeout(() => { + this.showHome = false; + document.documentElement.style.overflow = 'hidden'; + }, 3000); } @HostListener("document:mousemove", ["$event"]) @@ -91,6 +99,7 @@ export class NavMenuComponent { ResetTimer(e) { if (this.timer && this.timer != null) { this.showHome = true; + if (document.documentElement.style.overflow == 'hidden') document.documentElement.style.overflow = ''; clearTimeout(this.timer); this.SetTimer(); } @@ -102,4 +111,8 @@ export class NavMenuComponent { map((result) => result.matches), shareReplay() ); + + toggleMobileMenu(){ + this.showMobileMenu = !this.showMobileMenu; + } } diff --git a/DepartureBoardWeb/ClientApp/src/app/routes.ts b/DepartureBoardWeb/ClientApp/src/app/routes.ts index 1e6f1b3b..6317464d 100644 --- a/DepartureBoardWeb/ClientApp/src/app/routes.ts +++ b/DepartureBoardWeb/ClientApp/src/app/routes.ts @@ -1,4 +1,5 @@ import { Route } from "@angular/router"; +import { ContactUsComponent } from "./Components/contact-us/contact-us.component"; import { AboutDepartureboardAdminComponent } from "./Pages/about/about-departureboard-admin/about-departureboard-admin.component"; import { AboutComponent } from "./Pages/about/about.component"; import { BoardsComponent } from "./Pages/boards/boards.component"; @@ -14,40 +15,45 @@ import { SettingsComponent } from "./settings/settings.component"; export const ROUTES: Route[] = [ { path: "", component: HomeComponent, pathMatch: "full" }, { path: "search", component: SearchComponent, pathMatch: "full" }, + { path: "contact", component: ContactUsComponent, pathMatch: "full" }, { path: "examples", component: ExamplesComponent, pathMatch: "full" }, - { path: "settings", component: SettingsComponent, pathMatch: "full" }, { - path: "custom-departures", - component: CustomDepartureBoardComponent, - pathMatch: "full", + path: "settings", + component: SettingsComponent, + children: [{ path: ":type", component: SettingsComponent }], }, { - path: "custom-departures/add", - component: AddCustomDepartureComponent, - pathMatch: "full", + path: "custom-departures", + component: CustomDepartureBoardComponent, + pathMatch: "full", }, { - path: "custom-departures/edit/:id", - component: AddCustomDepartureComponent, - pathMatch: "full", + path: "custom-departures/add", + component: AddCustomDepartureComponent, + pathMatch: "full", }, - //About { - path: "about", - component: AboutComponent, - pathMatch: "full", + path: "custom-departures/edit/:id", + component: AddCustomDepartureComponent, + pathMatch: "full", }, + // About { - path: "about/custom-departures", - component: AboutCustomDepartureComponent, - pathMatch: "full", + path: "about", + component: AboutComponent, + pathMatch: "full", }, { - path: "about/departureboard-admin", - component: AboutDepartureboardAdminComponent, - pathMatch: "full", + path: "about/custom-departures", + component: AboutCustomDepartureComponent, + pathMatch: "full", }, - //Boards + { + path: "about/departureboard-admin", + component: AboutDepartureboardAdminComponent, + pathMatch: "full", + }, + // Boards { path: "arrivals/:station/to/:toCrsCode/:displays", component: BoardsComponent, @@ -89,22 +95,24 @@ export const ROUTES: Route[] = [ pathMatch: "full", }, { - path: "custom-departures/:station", - component: BoardsComponent, - pathMatch: "full", + path: "custom-departures/:station", + component: BoardsComponent, + pathMatch: "full", }, { - path: "custom-departures/:station/:displays", - component: BoardsComponent, - pathMatch: "full", + path: "custom-departures/:station/:displays", + component: BoardsComponent, + pathMatch: "full", }, { - path: "buses", - loadChildren: () => import("./Pages/buses/buses/buses.module").then((m) => m.BusesModule), + path: "buses", + loadChildren: () => + import("./Pages/buses/buses/buses.module").then((m) => m.BusesModule), }, { - path: "germany", - loadChildren: () => import("./Pages/germany/germany.module").then((m) => m.GermanyModule), + path: "germany", + loadChildren: () => + import("./Pages/germany/germany.module").then((m) => m.GermanyModule), }, { path: ":station", component: BoardsComponent, pathMatch: "full" }, { @@ -123,8 +131,9 @@ export const ROUTES: Route[] = [ pathMatch: "full", }, { - path: "germany", - loadChildren: () => import("./Pages/germany/germany.module").then((m) => m.GermanyModule), + path: "germany", + loadChildren: () => + import("./Pages/germany/germany.module").then((m) => m.GermanyModule), }, { path: "**", redirectTo: "" }, ]; diff --git a/DepartureBoardWeb/ClientApp/src/app/settings/settings.component.html b/DepartureBoardWeb/ClientApp/src/app/settings/settings.component.html index 45da210d..581fb852 100644 --- a/DepartureBoardWeb/ClientApp/src/app/settings/settings.component.html +++ b/DepartureBoardWeb/ClientApp/src/app/settings/settings.component.html @@ -3,19 +3,19 @@

    Settings

    - - - - - diff --git a/DepartureBoardWeb/ClientApp/src/app/settings/settings.component.ts b/DepartureBoardWeb/ClientApp/src/app/settings/settings.component.ts index 8732f106..26b84dca 100644 --- a/DepartureBoardWeb/ClientApp/src/app/settings/settings.component.ts +++ b/DepartureBoardWeb/ClientApp/src/app/settings/settings.component.ts @@ -1,9 +1,12 @@ +import { switchMap } from 'rxjs/operators'; import { Component, OnInit } from "@angular/core"; import { FormGroup, FormControl } from "@angular/forms"; import { ThemeService } from "../Services/ThemeService"; import { GoogleAnalyticsEventsService } from "../Services/google.analytics"; import { NotifierService } from "angular-notifier"; import { GlobalEvents } from "../GlobalEvents"; +import { ActivatedRoute } from "@angular/router"; +import { of } from 'rxjs'; @Component({ selector: "app-component-settings", @@ -16,12 +19,14 @@ export class SettingsComponent implements OnInit { constructor( public googleAnalyticsEventsService: GoogleAnalyticsEventsService, - private notifierService: NotifierService + private notifierService: NotifierService, + private route: ActivatedRoute ) { document.title = "Settings - Departure Board"; } ngOnInit(): void { this.Load(); + this.CheckUrlRoute(); } settingsForm = new FormGroup({ @@ -94,4 +99,29 @@ export class SettingsComponent implements OnInit { this.Load(); this.googleAnalyticsEventsService.emitEvent("Settings", "ResetAll"); } + + CheckUrlRoute(){ + this.route.url.pipe(switchMap(() => this.route.firstChild?.paramMap ?? of(null))).subscribe(u => { + if (!u || !u.has("type")) return; + + + switch (u.get("type")) { + case "general": + this.settingsType = "general"; + break; + case "mainboard": + this.settingsType = "mainboard"; + break; + case "singleboard": + this.settingsType = "singleboard"; + break; + case "departureadmin": + this.settingsType = "departureadmin"; + break; + case "buses": + this.settingsType = "buses"; + break; + } + }); + } } diff --git a/DepartureBoardWeb/ClientApp/src/app/widgets/news/news.component.html b/DepartureBoardWeb/ClientApp/src/app/widgets/news/news.component.html index 07a0b4d7..d4b1cd29 100644 --- a/DepartureBoardWeb/ClientApp/src/app/widgets/news/news.component.html +++ b/DepartureBoardWeb/ClientApp/src/app/widgets/news/news.component.html @@ -1,4 +1,4 @@ -
    {{ news.title }}

    +
    --> + + +
    +
    +
    + +
    {{i + 1 | number: '2.0'}}
    +
    + +

    {{news.title}}

    +

    +
    +
    + +
    +
    +
    +
    diff --git a/DepartureBoardWeb/ClientApp/src/app/widgets/news/news.items.ts b/DepartureBoardWeb/ClientApp/src/app/widgets/news/news.items.ts index be62b1c5..112839f3 100644 --- a/DepartureBoardWeb/ClientApp/src/app/widgets/news/news.items.ts +++ b/DepartureBoardWeb/ClientApp/src/app/widgets/news/news.items.ts @@ -4,11 +4,6 @@ export const NewsItems: NewsItem[] = [ content: "Brand new redesigned UI being introduced into the application. Starting with this home page" }, - { - title: "Serverless Design", - content: - "The production website has been moved to a new serverless deployment. Please let me know if you have any issues", - }, { title: "New Documentation Website", content: @@ -16,6 +11,11 @@ export const NewsItems: NewsItem[] = [ isHighlighted: false, titleLink: 'https://docs.leddepartureboard.com' }, + { + title: "Serverless Design", + content: + "The production website has been moved to a new serverless deployment. Please let me know if you have any issues", + }, ]; interface NewsItem { diff --git a/DepartureBoardWeb/ClientApp/src/assets/Ideas/ideas_home_tv.jpg b/DepartureBoardWeb/ClientApp/src/assets/Ideas/ideas_home_tv.jpg index 910d2f61..e2449173 100644 Binary files a/DepartureBoardWeb/ClientApp/src/assets/Ideas/ideas_home_tv.jpg and b/DepartureBoardWeb/ClientApp/src/assets/Ideas/ideas_home_tv.jpg differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/Ideas/raspberry-pi-example.jpg b/DepartureBoardWeb/ClientApp/src/assets/Ideas/raspberry-pi-example.jpg new file mode 100644 index 00000000..f95d80ed Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/Ideas/raspberry-pi-example.jpg differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/css/color/color.scss b/DepartureBoardWeb/ClientApp/src/assets/css/color/color.scss new file mode 100644 index 00000000..b3098f01 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/css/color/color.scss @@ -0,0 +1,70 @@ +/* + +Template: Sofbox - Responsive Software Landing Page +Author: iqonicthemes.in +Version: 3.0 +Design and Developed by: iqonicthemes.in + +NOTE: This is main stylesheet of template, This file contains the styling for the actual Template. Please do not change anything here! write in a custom.css file if required! + +*/ + + +*::-moz-selection { background: var(--primary-theme-color); color: var(--white-theme-color); text-shadow: none; } +::-moz-selection { background: var(--primary-theme-color); color: var(--white-theme-color); text-shadow: none; } +::selection { background: var(--primary-theme-color); color: var(--white-theme-color); text-shadow: none; } + +header.menu-sticky.header-white { background: var(--white-theme-color); } + +.button-blue-shadow, .button-line-shadow { -webkit-box-shadow: 0px 20px 70px -16px rgba(var(--primary-rgb-theme-color), 1); -moz-box-shadow: 0px 20px 70px -16px rgba(var(--primary-rgb-theme-color), 1); box-shadow: 0px 20px 70px -16px rgba(var(--primary-rgb-theme-color), 1); } + +/*--------------------------------------------------------------------- + Text Color +-----------------------------------------------------------------------*/ +.iq-banner .iq-video, .iq-works-box .step, .iq-banner-04 .iq-video, .iq-border-block .step, .iq-footer .iq-contact .contact-block i, .iq-footer .post-blog, a:hover, .iq-footer .footer-menu li a:hover, .iq-footer .iq-copyright a:hover, .iq-font-blue, .iq-amazing-tab .nav.nav-tabs li a.active i, .iq-amazing-tab .nav.nav-tabs li a.active:hover i, .iq-amazing-tab .nav.nav-tabs li a.active:focus i, .iq-amazing-tab .nav.nav-tabs li a:hover, .iq-amazing-tab .nav.nav-tabs li a:hover i, .iq-fancy-box .iq-icon, .counter-info .iq-video, .iq-progress-bar-text, .iq-blog-detail a:hover, .iq-blog-detail .blog-title a:hover h5, .iq-footer-box .iq-icon i, .footer-copyright a, .iq-breadcrumb .breadcrumb li.active, .iq-breadcrumb .breadcrumb li a:hover, .pagination .page-link, .iq-sidebar-widget .iq-widget-search i, .iq-widget-menu ul li a span:hover, .iq-widget-menu ul ul li a span:hover, .iq-sidebar-widget .iq-recent-post .media-body>a:hover, .iq-tags li a:hover, .iq-widget-archives li a:hover, .iq-comment-list .iq-comment-metadata i, header.header-fancy .navbar .navbar-nav .nav-item a:hover, header.header-fancy .navbar .navbar-nav .nav-item a:focus, header.header-fancy .navbar .navbar-nav .nav-item a.active, header.header-fancy .navbar .navbar-nav .nav-item a.active:focus, header.header-fancy .navbar .navbar-nav .nav-item a.active:hover, header.header-white .navbar .navbar-nav .nav-item a:hover, header.header-white .navbar .navbar-nav .nav-item a:focus, header.header-white .navbar .navbar-nav .nav-item a.active, header.header-white .navbar .navbar-nav .nav-item a.active:focus, header.header-white .navbar .navbar-nav .nav-item a.active:hover, .iq-works-box.round-icon .icon-bg i, .terms-of-service .btn.btn-link, .iq-amazing-tab .nav.nav-tabs li a.active1 i, .iq-amazing-tab .nav.nav-tabs li a.active1:hover i, .iq-banner-03 .iq-video, .iq-fancy-box-1 .iq-icon, .our-pricing-1 .iq-icon, .pricing-price, .iq-fancy-box-1 .iq-icon, .our-pricing-1 .iq-icon, .pricing-price, .iq-fancy-box-1 .iq-icon, .our-pricing-1 .iq-icon, .pricing-price, .iq-fancy-box-1 .iq-icon, .our-pricing-1 .iq-icon, .pricing-price, header.dark .navbar .navbar-nav .nav-item a:hover, header.dark .navbar .navbar-nav .nav-item a:focus, header.dark .navbar .navbar-nav .nav-item a.active, header.dark .navbar .navbar-nav .nav-item a.active:focus, header.dark .navbar .navbar-nav .nav-item a.active:hover, .button-line, .button-line-shadow, .iq-works-box a, .iq-team-1 .iq-star i, .iq-footer3 .iq-contact i, .iq-footer3 .menu li a:hover, .iq-footer3 .link li a:hover, .iq-footer3 .iq-copyright a, .heading-title-2 i, .heading-title-2.text-left i, .iq-feature-01:hover .icon-box, .iq-banner-09 i, .iq-footer3 .support li a:hover, .iq-footer3 .build li a:hover, .iq-footer3 .about li a:hover, .iq-footer3 .contact li a:hover,header.new-header .navbar .navbar-nav .nav-item a.active,.iq-footerr .iq-contact i,.iq-footerr .iq-copyright a,.media.service-box i,header.new-header .navbar .navbar-nav .nav-item a:hover, header.new-header .navbar .navbar-nav .nav-item a:focus, header.new-header .navbar .navbar-nav .nav-item a.active, header.new-header .navbar .navbar-nav .nav-item a.active:focus, header.new-header .navbar .navbar-nav .nav-item a.active:hover,.iq-team2 .team-social li a,.iq-feature1 .iq-blog i,.iq-shadow i,header.header-one .navbar .navbar-nav .nav-item a:hover, header.header-one .navbar .navbar-nav .nav-item a.active, header.header-one .navbar .navbar-nav .nav-item a.active:focus, header.header-one .navbar .navbar-nav .nav-item a.active:hover,header.header-one .header-top-bar ul li a:hover,.iq-footerr .office-day li a:hover,.iq-footerr .menu li a:hover,.iq-footerr .link li a:hover,.iq-feature10 .left i, .iq-works-boxes .icons i { color: var(--primary-theme-color); } + +/*--------------------------------------------------------------------- + Background Color +-----------------------------------------------------------------------*/ +.heading-title .title:before, .button, .iq-border-block:before, .iq-border-block:after, .iq-border-block > .border-box:before, .iq-border-block > .border-box:after, .iq-amazing-tab .nav.nav-tabs li a:before, .iq-amazing-tab .nav.nav-tabs li a:hover:before, .iq-amazing-tab .nav.nav-tabs li a:focus:before, .iq-fancy-box:hover .iq-icon, .iq-client:before, .owl-carousel .owl-nav i:hover, .iq-team .share ul li a:hover, .iq-accordion .accordion-title:before, .owl-carousel.owl-theme .owl-dots .owl-dot.active span, .owl-carousel.owl-theme .owl-dots .owl-dot:hover span, .owl-carousel.arrow-1 .owl-nav i:hover, .button.bt-white:hover, .button.bt-white:focus, .info-share li a:hover, .iq-error h6, .pagination .page-item.active .page-link, .blue-bg, header.header-white .navbar .navbar-nav .nav-item a::before, .iq-feature .step-number, .our-pricing-1 .iq-icon:hover, header.dark .navbar .navbar-nav .nav-item a::before, .button-line:hover, .button-line:focus, .button-blue-shadow, .button-line-shadow:hover, .button-line-shadow:focus, .iq-banner-07 .iq-video, .ani-moving-square, .ani-hamburger .hamburger-line, .iq-footer4 .iq-media-blog li a,header.new-header .navbar .navbar-nav .nav-item a::before,.animation-shap .shap-bg, .animationnew-shap .shap-bg,.iq-feature10:hover .left i, .iq-pricing.active .price-title { background: var(--primary-theme-color); } + +header.menu-sticky, #back-to-top .top:hover,.iq-fancy-boxnew.text-center .icon-bg,.iq-tab .nav-pills .nav-link.active, .iq-tab .nav-pills .show>.nav-link, .iq-tab .nav-pills .nav-link:hover { background: rgba(var(--primary-rgb-theme-color), 0.9); } +#great-screenshots .nav-link.active,#great-screenshots .nav-link:hover { background: rgba(125, 210, 243, 0.7) !important;color: #ffffff; } +#great-screenshots .nav-link.active1 { background: rgba(125, 210, 243, 0.7) !important;color: #ffffff; } + +/*--------------------------------------------------------------------- + Background Gradient +---------------------------------------------------------------------*/ +.iq-over-blue-10:before { background: rgba(var(--primary-rgb-theme-color), 0.1); } +.iq-over-blue-20:before, .iq-banner-07 .iq-waves .waves { background: rgba(var(--primary-rgb-theme-color), 0.2); } +.iq-over-blue-30:before { background: rgba(var(--primary-rgb-theme-color), 0.3); } +.iq-over-blue-40:before { background: rgba(var(--primary-rgb-theme-color), 0.4); } +.iq-over-blue-50:before { background: rgba(var(--primary-rgb-theme-color), 0.5); } +.iq-over-blue-60:before { background: rgba(var(--primary-rgb-theme-color), 0.6); } +.iq-over-blue-70:before { background: rgba(var(--primary-rgb-theme-color), 0.7); } +.iq-over-blue-80:before { background: rgba(var(--primary-rgb-theme-color), 0.8); } +.iq-over-blue-85:before { background: rgba(var(--primary-rgb-theme-color), 0.85); } +.iq-over-blue-90:before { background: rgba(var(--primary-rgb-theme-color), 0.9); } +.iq-over-blue-95:before { background: rgba(var(--primary-rgb-theme-color), 0.95); } +.iq-works-box:hover, .iq-works-box.round-icon:hover .icon-bg { -webkit-box-shadow: 8px 12px 22px 0px rgba(0,0,0,0.1); +-moz-box-shadow: 8px 12px 22px 0px rgba(0,0,0,0.1); +box-shadow: 8px 12px 22px 0px rgba(0,0,0,0.1); } +.iq-team .iq-team-img:before { background: rgba(var(--primary-rgb-theme-color), 0); background: -moz-linear-gradient(top, rgba(var(--primary-rgb-theme-color), 0) 0%, rgba(var(--primary-rgb-theme-color), 1) 100%); background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(var(--primary-rgb-theme-color), 0)), color-stop(100%, rgba(var(--primary-rgb-theme-color), 1))); background: -webkit-linear-gradient(top, rgba(var(--primary-rgb-theme-color), 0) 0%, rgba(var(--primary-rgb-theme-color), 1) 100%); background: -o-linear-gradient(top, rgba(var(--primary-rgb-theme-color), 0) 0%, rgba(var(--primary-rgb-theme-color), 1) 100%); background: -ms-linear-gradient(top, rgba(var(--primary-rgb-theme-color), 0) 0%, rgba(var(--primary-rgb-theme-color), 1) 100%); background: linear-gradient(to bottom, rgba(var(--primary-rgb-theme-color), 0) 0%, rgba(var(--primary-rgb-theme-color), 1) 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--primary-theme-color)', endColorstr='var(--primary-theme-color)', GradientType=0); } +svg #followPath { stroke: var(--primary-theme-color); } +svg #airplain { fill: var(--primary-theme-color); } +.ani-cube .cube-face.face_top, .ani-cube .cube-face.face_bottom { background: var(--primary-theme-color); } +.ani-cube .cube-face.face_front, .ani-cube .cube-face.face_back { background-color: var(--primary-theme-color); } +.ani-cube .cube-face.face_right, .ani-cube .cube-face.face_left,.iq-tab .nav-pills .nav-link.active, .iq-tab .nav-pills .show>.nav-link, .iq-tab .nav-pills .nav-link:hover { background-color: var(--primary-theme-color); } + +/* Background Gradient Black */ +.iq-over-Gradient-top { background: rgba(255, 93, 177, 0); background: -moz-linear-gradient(top, rgba(255, 93, 177, 0) 0%, rgba(255, 93, 177, 0) 0%, rgba(204, 122, 195, 0) 28%, rgba(var(--primary-rgb-theme-color), 0.8) 100%); background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 93, 177, 0)), color-stop(0%, rgba(255, 93, 177, 0)), color-stop(28%, rgba(204, 122, 195, 0)), color-stop(100%, rgba(var(--primary-rgb-theme-color), 0.8))); background: -webkit-linear-gradient(top, rgba(255, 93, 177, 0) 0%, rgba(255, 93, 177, 0) 0%, rgba(204, 122, 195, 0) 28%, rgba(var(--primary-rgb-theme-color), 0.8) 100%); background: -o-linear-gradient(top, rgba(255, 93, 177, 0) 0%, rgba(255, 93, 177, 0) 0%, rgba(204, 122, 195, 0) 28%, rgba(var(--primary-rgb-theme-color), 0.8) 100%); background: -ms-linear-gradient(top, rgba(255, 93, 177, 0) 0%, rgba(255, 93, 177, 0) 0%, rgba(204, 122, 195, 0) 28%, rgba(var(--primary-rgb-theme-color), 0.8) 100%); background: linear-gradient(to bottom, rgba(255, 93, 177, 0) 0%, rgba(255, 93, 177, 0) 0%, rgba(204, 122, 195, 0) 28%, rgba(var(--primary-rgb-theme-color), 0.8) 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5db1', endColorstr='#4ac4f3', GradientType=0); } +.ani-cube.ani-cube-3 .cube-face.face_front, .ani-cube.ani-cube-3 .cube-face.face_right, .ani-cube.ani-cube-3 .cube-face.face_left, .ani-cube.ani-cube-3 .cube-face.face_top, .ani-cube.ani-cube-3 .cube-face.face_bottom, .ani-cube.ani-cube-3 .cube-face.face_back { box-shadow: inset 0 0 0 2px var(--primary-theme-color), 0 0 0 2px var(--primary-theme-color); } + +/*--------------------------------------------------------------------- + Boder Color +---------------------------------------------------------------------*/ +.iq-objects .iq-objects-04, .iq-objects-software .iq-objects-03, .iq-objects-asked .iq-objects-03, .owl-carousel.owl-theme .owl-dots .owl-dot.active span, .owl-carousel.owl-theme .owl-dots .owl-dot:hover span, .contact-form .section-field input:focus, .contact-form .section-field.textarea textarea:focus, .info-share li a:hover, .pagination .page-item.active .page-link, .iq-sidebar-widget .iq-widget-search input:focus, .iq-tags li a:hover, .blockquote, blockquote, .iq-pricing-01:hover, .iq-pricing-01.active, .iq-pricing-01:hover, .iq-pricing-01.active, .button-line, .iq-banner-02.style-1 .banner-objects .banner-objects-02, .button-line-shadow, .iq-team-1 .team-blog, .ani-cube.ani-cube-3 .cube-face.face_front, .ani-cube.ani-cube-3 .cube-face.face_right, .ani-cube.ani-cube-3 .cube-face.face_left, .ani-cube.ani-cube-3 .cube-face.face_top, .ani-cube.ani-cube-3 .cube-face.face_bottom, .ani-cube.ani-cube-3 .cube-face.face_back, .iq-footer4 .iq-media-blog li a,.iq-pricing-5:hover, .iq-pricing-5.active,.iq-objectsnew .iq-objects-04,.iq-objects-softwarenew .iq-objects-03,.iq-feature1 .iq-blog:hover, .iq-feature1 .iq-blog.active,.iq-feature10:hover .left, .iq-feature10:hover .left i { border-color: var(--primary-theme-color); } + +@media(max-width:992px) { + .navbar-light .navbar-toggler span, header .navbar .navbar-nav .nav-item a:hover, header .navbar .navbar-nav .nav-item a:focus, header .navbar .navbar-nav .nav-item a.active, header .navbar .navbar-nav .nav-item a.active:focus, header .navbar .navbar-nav .nav-item a.active:hover { color: var(--primary-theme-color); } +} diff --git a/DepartureBoardWeb/ClientApp/src/assets/css/color/style.css b/DepartureBoardWeb/ClientApp/src/assets/css/color/style.css new file mode 100644 index 00000000..d233f0fa --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/css/color/style.css @@ -0,0 +1,9 @@ + +/* Style.css import */ +@import "../../../assets/css/style.css"; + +/* Responsive css import */ +@import "../../../assets/css/responsive.css"; + +/*Color css*/ +@import "../../../assets/css/color/color.scss"; diff --git a/DepartureBoardWeb/ClientApp/src/assets/css/color/variable.css b/DepartureBoardWeb/ClientApp/src/assets/css/color/variable.css new file mode 100644 index 00000000..e25194ed --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/css/color/variable.css @@ -0,0 +1,5 @@ +:root{ + --primary-theme-color: #4ac4f3; + --white-theme-color: #fff; + --primary-rgb-theme-color:74,196,243; +} diff --git a/DepartureBoardWeb/ClientApp/src/assets/css/custom.css b/DepartureBoardWeb/ClientApp/src/assets/css/custom.css new file mode 100644 index 00000000..7d4e7167 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/css/custom.css @@ -0,0 +1,10 @@ +/* + +Template: Sofbox - Angular 8 Software landing page +Author: iqonic.design +Version: 1.0 +Design and Developed by: iqonic.design + +NOTE: This is main stylesheet of template, This file contains the styling for the actual Template. Please do not change anything here! write in a custom.css file if required! + +*/ \ No newline at end of file diff --git a/DepartureBoardWeb/ClientApp/src/assets/css/ionicons.min.css b/DepartureBoardWeb/ClientApp/src/assets/css/ionicons.min.css new file mode 100644 index 00000000..baba9e93 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/css/ionicons.min.css @@ -0,0 +1,11 @@ +@charset "UTF-8";/*! + Ionicons, v2.0.0 + Created by Ben Sperry for the Ionic Framework, http://ionicons.com/ + https://twitter.com/benjsperry https://twitter.com/ionicframework + MIT License: https://github.com/driftyco/ionicons + + Android-style icons originally built by Google’s + Material Design Icons: https://github.com/google/material-design-icons + used under CC BY http://creativecommons.org/licenses/by/4.0/ + Modified icons to fit ionicon’s grid from original. +*/@font-face{font-family:"Ionicons";src:url("../fonts/ionicons.eot?v=2.0.0");src:url("../fonts/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"),url("../fonts/ionicons.ttf?v=2.0.0") format("truetype"),url("../fonts/ionicons.woff?v=2.0.0") format("woff"),url("../fonts/ionicons.svg?v=2.0.0#Ionicons") format("svg");font-weight:normal;font-style:normal}.ion,.ionicons,.ion-alert:before,.ion-alert-circled:before,.ion-android-add:before,.ion-android-add-circle:before,.ion-android-alarm-clock:before,.ion-android-alert:before,.ion-android-apps:before,.ion-android-archive:before,.ion-android-arrow-back:before,.ion-android-arrow-down:before,.ion-android-arrow-dropdown:before,.ion-android-arrow-dropdown-circle:before,.ion-android-arrow-dropleft:before,.ion-android-arrow-dropleft-circle:before,.ion-android-arrow-dropright:before,.ion-android-arrow-dropright-circle:before,.ion-android-arrow-dropup:before,.ion-android-arrow-dropup-circle:before,.ion-android-arrow-forward:before,.ion-android-arrow-up:before,.ion-android-attach:before,.ion-android-bar:before,.ion-android-bicycle:before,.ion-android-boat:before,.ion-android-bookmark:before,.ion-android-bulb:before,.ion-android-bus:before,.ion-android-calendar:before,.ion-android-call:before,.ion-android-camera:before,.ion-android-cancel:before,.ion-android-car:before,.ion-android-cart:before,.ion-android-chat:before,.ion-android-checkbox:before,.ion-android-checkbox-blank:before,.ion-android-checkbox-outline:before,.ion-android-checkbox-outline-blank:before,.ion-android-checkmark-circle:before,.ion-android-clipboard:before,.ion-android-close:before,.ion-android-cloud:before,.ion-android-cloud-circle:before,.ion-android-cloud-done:before,.ion-android-cloud-outline:before,.ion-android-color-palette:before,.ion-android-compass:before,.ion-android-contact:before,.ion-android-contacts:before,.ion-android-contract:before,.ion-android-create:before,.ion-android-delete:before,.ion-android-desktop:before,.ion-android-document:before,.ion-android-done:before,.ion-android-done-all:before,.ion-android-download:before,.ion-android-drafts:before,.ion-android-exit:before,.ion-android-expand:before,.ion-android-favorite:before,.ion-android-favorite-outline:before,.ion-android-film:before,.ion-android-folder:before,.ion-android-folder-open:before,.ion-android-funnel:before,.ion-android-globe:before,.ion-android-hand:before,.ion-android-hangout:before,.ion-android-happy:before,.ion-android-home:before,.ion-android-image:before,.ion-android-laptop:before,.ion-android-list:before,.ion-android-locate:before,.ion-android-lock:before,.ion-android-mail:before,.ion-android-map:before,.ion-android-menu:before,.ion-android-microphone:before,.ion-android-microphone-off:before,.ion-android-more-horizontal:before,.ion-android-more-vertical:before,.ion-android-navigate:before,.ion-android-notifications:before,.ion-android-notifications-none:before,.ion-android-notifications-off:before,.ion-android-open:before,.ion-android-options:before,.ion-android-people:before,.ion-android-person:before,.ion-android-person-add:before,.ion-android-phone-landscape:before,.ion-android-phone-portrait:before,.ion-android-pin:before,.ion-android-plane:before,.ion-android-playstore:before,.ion-android-print:before,.ion-android-radio-button-off:before,.ion-android-radio-button-on:before,.ion-android-refresh:before,.ion-android-remove:before,.ion-android-remove-circle:before,.ion-android-restaurant:before,.ion-android-sad:before,.ion-android-search:before,.ion-android-send:before,.ion-android-settings:before,.ion-android-share:before,.ion-android-share-alt:before,.ion-android-star:before,.ion-android-star-half:before,.ion-android-star-outline:before,.ion-android-stopwatch:before,.ion-android-subway:before,.ion-android-sunny:before,.ion-android-sync:before,.ion-android-textsms:before,.ion-android-time:before,.ion-android-train:before,.ion-android-unlock:before,.ion-android-upload:before,.ion-android-volume-down:before,.ion-android-volume-mute:before,.ion-android-volume-off:before,.ion-android-volume-up:before,.ion-android-walk:before,.ion-android-warning:before,.ion-android-watch:before,.ion-android-wifi:before,.ion-aperture:before,.ion-archive:before,.ion-arrow-down-a:before,.ion-arrow-down-b:before,.ion-arrow-down-c:before,.ion-arrow-expand:before,.ion-arrow-graph-down-left:before,.ion-arrow-graph-down-right:before,.ion-arrow-graph-up-left:before,.ion-arrow-graph-up-right:before,.ion-arrow-left-a:before,.ion-arrow-left-b:before,.ion-arrow-left-c:before,.ion-arrow-move:before,.ion-arrow-resize:before,.ion-arrow-return-left:before,.ion-arrow-return-right:before,.ion-arrow-right-a:before,.ion-arrow-right-b:before,.ion-arrow-right-c:before,.ion-arrow-shrink:before,.ion-arrow-swap:before,.ion-arrow-up-a:before,.ion-arrow-up-b:before,.ion-arrow-up-c:before,.ion-asterisk:before,.ion-at:before,.ion-backspace:before,.ion-backspace-outline:before,.ion-bag:before,.ion-battery-charging:before,.ion-battery-empty:before,.ion-battery-full:before,.ion-battery-half:before,.ion-battery-low:before,.ion-beaker:before,.ion-beer:before,.ion-bluetooth:before,.ion-bonfire:before,.ion-bookmark:before,.ion-bowtie:before,.ion-briefcase:before,.ion-bug:before,.ion-calculator:before,.ion-calendar:before,.ion-camera:before,.ion-card:before,.ion-cash:before,.ion-chatbox:before,.ion-chatbox-working:before,.ion-chatboxes:before,.ion-chatbubble:before,.ion-chatbubble-working:before,.ion-chatbubbles:before,.ion-checkmark:before,.ion-checkmark-circled:before,.ion-checkmark-round:before,.ion-chevron-down:before,.ion-chevron-left:before,.ion-chevron-right:before,.ion-chevron-up:before,.ion-clipboard:before,.ion-clock:before,.ion-close:before,.ion-close-circled:before,.ion-close-round:before,.ion-closed-captioning:before,.ion-cloud:before,.ion-code:before,.ion-code-download:before,.ion-code-working:before,.ion-coffee:before,.ion-compass:before,.ion-compose:before,.ion-connection-bars:before,.ion-contrast:before,.ion-crop:before,.ion-cube:before,.ion-disc:before,.ion-document:before,.ion-document-text:before,.ion-drag:before,.ion-earth:before,.ion-easel:before,.ion-edit:before,.ion-egg:before,.ion-eject:before,.ion-email:before,.ion-email-unread:before,.ion-erlenmeyer-flask:before,.ion-erlenmeyer-flask-bubbles:before,.ion-eye:before,.ion-eye-disabled:before,.ion-female:before,.ion-filing:before,.ion-film-marker:before,.ion-fireball:before,.ion-flag:before,.ion-flame:before,.ion-flash:before,.ion-flash-off:before,.ion-folder:before,.ion-fork:before,.ion-fork-repo:before,.ion-forward:before,.ion-funnel:before,.ion-gear-a:before,.ion-gear-b:before,.ion-grid:before,.ion-hammer:before,.ion-happy:before,.ion-happy-outline:before,.ion-headphone:before,.ion-heart:before,.ion-heart-broken:before,.ion-help:before,.ion-help-buoy:before,.ion-help-circled:before,.ion-home:before,.ion-icecream:before,.ion-image:before,.ion-images:before,.ion-information:before,.ion-information-circled:before,.ion-ionic:before,.ion-ios-alarm:before,.ion-ios-alarm-outline:before,.ion-ios-albums:before,.ion-ios-albums-outline:before,.ion-ios-americanfootball:before,.ion-ios-americanfootball-outline:before,.ion-ios-analytics:before,.ion-ios-analytics-outline:before,.ion-ios-arrow-back:before,.ion-ios-arrow-down:before,.ion-ios-arrow-forward:before,.ion-ios-arrow-left:before,.ion-ios-arrow-right:before,.ion-ios-arrow-thin-down:before,.ion-ios-arrow-thin-left:before,.ion-ios-arrow-thin-right:before,.ion-ios-arrow-thin-up:before,.ion-ios-arrow-up:before,.ion-ios-at:before,.ion-ios-at-outline:before,.ion-ios-barcode:before,.ion-ios-barcode-outline:before,.ion-ios-baseball:before,.ion-ios-baseball-outline:before,.ion-ios-basketball:before,.ion-ios-basketball-outline:before,.ion-ios-bell:before,.ion-ios-bell-outline:before,.ion-ios-body:before,.ion-ios-body-outline:before,.ion-ios-bolt:before,.ion-ios-bolt-outline:before,.ion-ios-book:before,.ion-ios-book-outline:before,.ion-ios-bookmarks:before,.ion-ios-bookmarks-outline:before,.ion-ios-box:before,.ion-ios-box-outline:before,.ion-ios-briefcase:before,.ion-ios-briefcase-outline:before,.ion-ios-browsers:before,.ion-ios-browsers-outline:before,.ion-ios-calculator:before,.ion-ios-calculator-outline:before,.ion-ios-calendar:before,.ion-ios-calendar-outline:before,.ion-ios-camera:before,.ion-ios-camera-outline:before,.ion-ios-cart:before,.ion-ios-cart-outline:before,.ion-ios-chatboxes:before,.ion-ios-chatboxes-outline:before,.ion-ios-chatbubble:before,.ion-ios-chatbubble-outline:before,.ion-ios-checkmark:before,.ion-ios-checkmark-empty:before,.ion-ios-checkmark-outline:before,.ion-ios-circle-filled:before,.ion-ios-circle-outline:before,.ion-ios-clock:before,.ion-ios-clock-outline:before,.ion-ios-close:before,.ion-ios-close-empty:before,.ion-ios-close-outline:before,.ion-ios-cloud:before,.ion-ios-cloud-download:before,.ion-ios-cloud-download-outline:before,.ion-ios-cloud-outline:before,.ion-ios-cloud-upload:before,.ion-ios-cloud-upload-outline:before,.ion-ios-cloudy:before,.ion-ios-cloudy-night:before,.ion-ios-cloudy-night-outline:before,.ion-ios-cloudy-outline:before,.ion-ios-cog:before,.ion-ios-cog-outline:before,.ion-ios-color-filter:before,.ion-ios-color-filter-outline:before,.ion-ios-color-wand:before,.ion-ios-color-wand-outline:before,.ion-ios-compose:before,.ion-ios-compose-outline:before,.ion-ios-contact:before,.ion-ios-contact-outline:before,.ion-ios-copy:before,.ion-ios-copy-outline:before,.ion-ios-crop:before,.ion-ios-crop-strong:before,.ion-ios-download:before,.ion-ios-download-outline:before,.ion-ios-drag:before,.ion-ios-email:before,.ion-ios-email-outline:before,.ion-ios-eye:before,.ion-ios-eye-outline:before,.ion-ios-fastforward:before,.ion-ios-fastforward-outline:before,.ion-ios-filing:before,.ion-ios-filing-outline:before,.ion-ios-film:before,.ion-ios-film-outline:before,.ion-ios-flag:before,.ion-ios-flag-outline:before,.ion-ios-flame:before,.ion-ios-flame-outline:before,.ion-ios-flask:before,.ion-ios-flask-outline:before,.ion-ios-flower:before,.ion-ios-flower-outline:before,.ion-ios-folder:before,.ion-ios-folder-outline:before,.ion-ios-football:before,.ion-ios-football-outline:before,.ion-ios-game-controller-a:before,.ion-ios-game-controller-a-outline:before,.ion-ios-game-controller-b:before,.ion-ios-game-controller-b-outline:before,.ion-ios-gear:before,.ion-ios-gear-outline:before,.ion-ios-glasses:before,.ion-ios-glasses-outline:before,.ion-ios-grid-view:before,.ion-ios-grid-view-outline:before,.ion-ios-heart:before,.ion-ios-heart-outline:before,.ion-ios-help:before,.ion-ios-help-empty:before,.ion-ios-help-outline:before,.ion-ios-home:before,.ion-ios-home-outline:before,.ion-ios-infinite:before,.ion-ios-infinite-outline:before,.ion-ios-information:before,.ion-ios-information-empty:before,.ion-ios-information-outline:before,.ion-ios-ionic-outline:before,.ion-ios-keypad:before,.ion-ios-keypad-outline:before,.ion-ios-lightbulb:before,.ion-ios-lightbulb-outline:before,.ion-ios-list:before,.ion-ios-list-outline:before,.ion-ios-location:before,.ion-ios-location-outline:before,.ion-ios-locked:before,.ion-ios-locked-outline:before,.ion-ios-loop:before,.ion-ios-loop-strong:before,.ion-ios-medical:before,.ion-ios-medical-outline:before,.ion-ios-medkit:before,.ion-ios-medkit-outline:before,.ion-ios-mic:before,.ion-ios-mic-off:before,.ion-ios-mic-outline:before,.ion-ios-minus:before,.ion-ios-minus-empty:before,.ion-ios-minus-outline:before,.ion-ios-monitor:before,.ion-ios-monitor-outline:before,.ion-ios-moon:before,.ion-ios-moon-outline:before,.ion-ios-more:before,.ion-ios-more-outline:before,.ion-ios-musical-note:before,.ion-ios-musical-notes:before,.ion-ios-navigate:before,.ion-ios-navigate-outline:before,.ion-ios-nutrition:before,.ion-ios-nutrition-outline:before,.ion-ios-paper:before,.ion-ios-paper-outline:before,.ion-ios-paperplane:before,.ion-ios-paperplane-outline:before,.ion-ios-partlysunny:before,.ion-ios-partlysunny-outline:before,.ion-ios-pause:before,.ion-ios-pause-outline:before,.ion-ios-paw:before,.ion-ios-paw-outline:before,.ion-ios-people:before,.ion-ios-people-outline:before,.ion-ios-person:before,.ion-ios-person-outline:before,.ion-ios-personadd:before,.ion-ios-personadd-outline:before,.ion-ios-photos:before,.ion-ios-photos-outline:before,.ion-ios-pie:before,.ion-ios-pie-outline:before,.ion-ios-pint:before,.ion-ios-pint-outline:before,.ion-ios-play:before,.ion-ios-play-outline:before,.ion-ios-plus:before,.ion-ios-plus-empty:before,.ion-ios-plus-outline:before,.ion-ios-pricetag:before,.ion-ios-pricetag-outline:before,.ion-ios-pricetags:before,.ion-ios-pricetags-outline:before,.ion-ios-printer:before,.ion-ios-printer-outline:before,.ion-ios-pulse:before,.ion-ios-pulse-strong:before,.ion-ios-rainy:before,.ion-ios-rainy-outline:before,.ion-ios-recording:before,.ion-ios-recording-outline:before,.ion-ios-redo:before,.ion-ios-redo-outline:before,.ion-ios-refresh:before,.ion-ios-refresh-empty:before,.ion-ios-refresh-outline:before,.ion-ios-reload:before,.ion-ios-reverse-camera:before,.ion-ios-reverse-camera-outline:before,.ion-ios-rewind:before,.ion-ios-rewind-outline:before,.ion-ios-rose:before,.ion-ios-rose-outline:before,.ion-ios-search:before,.ion-ios-search-strong:before,.ion-ios-settings:before,.ion-ios-settings-strong:before,.ion-ios-shuffle:before,.ion-ios-shuffle-strong:before,.ion-ios-skipbackward:before,.ion-ios-skipbackward-outline:before,.ion-ios-skipforward:before,.ion-ios-skipforward-outline:before,.ion-ios-snowy:before,.ion-ios-speedometer:before,.ion-ios-speedometer-outline:before,.ion-ios-star:before,.ion-ios-star-half:before,.ion-ios-star-outline:before,.ion-ios-stopwatch:before,.ion-ios-stopwatch-outline:before,.ion-ios-sunny:before,.ion-ios-sunny-outline:before,.ion-ios-telephone:before,.ion-ios-telephone-outline:before,.ion-ios-tennisball:before,.ion-ios-tennisball-outline:before,.ion-ios-thunderstorm:before,.ion-ios-thunderstorm-outline:before,.ion-ios-time:before,.ion-ios-time-outline:before,.ion-ios-timer:before,.ion-ios-timer-outline:before,.ion-ios-toggle:before,.ion-ios-toggle-outline:before,.ion-ios-trash:before,.ion-ios-trash-outline:before,.ion-ios-undo:before,.ion-ios-undo-outline:before,.ion-ios-unlocked:before,.ion-ios-unlocked-outline:before,.ion-ios-upload:before,.ion-ios-upload-outline:before,.ion-ios-videocam:before,.ion-ios-videocam-outline:before,.ion-ios-volume-high:before,.ion-ios-volume-low:before,.ion-ios-wineglass:before,.ion-ios-wineglass-outline:before,.ion-ios-world:before,.ion-ios-world-outline:before,.ion-ipad:before,.ion-iphone:before,.ion-ipod:before,.ion-jet:before,.ion-key:before,.ion-knife:before,.ion-laptop:before,.ion-leaf:before,.ion-levels:before,.ion-lightbulb:before,.ion-link:before,.ion-load-a:before,.ion-load-b:before,.ion-load-c:before,.ion-load-d:before,.ion-location:before,.ion-lock-combination:before,.ion-locked:before,.ion-log-in:before,.ion-log-out:before,.ion-loop:before,.ion-magnet:before,.ion-male:before,.ion-man:before,.ion-map:before,.ion-medkit:before,.ion-merge:before,.ion-mic-a:before,.ion-mic-b:before,.ion-mic-c:before,.ion-minus:before,.ion-minus-circled:before,.ion-minus-round:before,.ion-model-s:before,.ion-monitor:before,.ion-more:before,.ion-mouse:before,.ion-music-note:before,.ion-navicon:before,.ion-navicon-round:before,.ion-navigate:before,.ion-network:before,.ion-no-smoking:before,.ion-nuclear:before,.ion-outlet:before,.ion-paintbrush:before,.ion-paintbucket:before,.ion-paper-airplane:before,.ion-paperclip:before,.ion-pause:before,.ion-person:before,.ion-person-add:before,.ion-person-stalker:before,.ion-pie-graph:before,.ion-pin:before,.ion-pinpoint:before,.ion-pizza:before,.ion-plane:before,.ion-planet:before,.ion-play:before,.ion-playstation:before,.ion-plus:before,.ion-plus-circled:before,.ion-plus-round:before,.ion-podium:before,.ion-pound:before,.ion-power:before,.ion-pricetag:before,.ion-pricetags:before,.ion-printer:before,.ion-pull-request:before,.ion-qr-scanner:before,.ion-quote:before,.ion-radio-waves:before,.ion-record:before,.ion-refresh:before,.ion-reply:before,.ion-reply-all:before,.ion-ribbon-a:before,.ion-ribbon-b:before,.ion-sad:before,.ion-sad-outline:before,.ion-scissors:before,.ion-search:before,.ion-settings:before,.ion-share:before,.ion-shuffle:before,.ion-skip-backward:before,.ion-skip-forward:before,.ion-social-android:before,.ion-social-android-outline:before,.ion-social-angular:before,.ion-social-angular-outline:before,.ion-social-apple:before,.ion-social-apple-outline:before,.ion-social-bitcoin:before,.ion-social-bitcoin-outline:before,.ion-social-buffer:before,.ion-social-buffer-outline:before,.ion-social-chrome:before,.ion-social-chrome-outline:before,.ion-social-codepen:before,.ion-social-codepen-outline:before,.ion-social-css3:before,.ion-social-css3-outline:before,.ion-social-designernews:before,.ion-social-designernews-outline:before,.ion-social-dribbble:before,.ion-social-dribbble-outline:before,.ion-social-dropbox:before,.ion-social-dropbox-outline:before,.ion-social-euro:before,.ion-social-euro-outline:before,.ion-social-facebook:before,.ion-social-facebook-outline:before,.ion-social-foursquare:before,.ion-social-foursquare-outline:before,.ion-social-freebsd-devil:before,.ion-social-github:before,.ion-social-github-outline:before,.ion-social-google:before,.ion-social-google-outline:before,.ion-social-googleplus:before,.ion-social-googleplus-outline:before,.ion-social-hackernews:before,.ion-social-hackernews-outline:before,.ion-social-html5:before,.ion-social-html5-outline:before,.ion-social-instagram:before,.ion-social-instagram-outline:before,.ion-social-javascript:before,.ion-social-javascript-outline:before,.ion-social-linkedin:before,.ion-social-linkedin-outline:before,.ion-social-markdown:before,.ion-social-nodejs:before,.ion-social-octocat:before,.ion-social-pinterest:before,.ion-social-pinterest-outline:before,.ion-social-python:before,.ion-social-reddit:before,.ion-social-reddit-outline:before,.ion-social-rss:before,.ion-social-rss-outline:before,.ion-social-sass:before,.ion-social-skype:before,.ion-social-skype-outline:before,.ion-social-snapchat:before,.ion-social-snapchat-outline:before,.ion-social-tumblr:before,.ion-social-tumblr-outline:before,.ion-social-tux:before,.ion-social-twitch:before,.ion-social-twitch-outline:before,.ion-social-twitter:before,.ion-social-twitter-outline:before,.ion-social-usd:before,.ion-social-usd-outline:before,.ion-social-vimeo:before,.ion-social-vimeo-outline:before,.ion-social-whatsapp:before,.ion-social-whatsapp-outline:before,.ion-social-windows:before,.ion-social-windows-outline:before,.ion-social-wordpress:before,.ion-social-wordpress-outline:before,.ion-social-yahoo:before,.ion-social-yahoo-outline:before,.ion-social-yen:before,.ion-social-yen-outline:before,.ion-social-youtube:before,.ion-social-youtube-outline:before,.ion-soup-can:before,.ion-soup-can-outline:before,.ion-speakerphone:before,.ion-speedometer:before,.ion-spoon:before,.ion-star:before,.ion-stats-bars:before,.ion-steam:before,.ion-stop:before,.ion-thermometer:before,.ion-thumbsdown:before,.ion-thumbsup:before,.ion-toggle:before,.ion-toggle-filled:before,.ion-transgender:before,.ion-trash-a:before,.ion-trash-b:before,.ion-trophy:before,.ion-tshirt:before,.ion-tshirt-outline:before,.ion-umbrella:before,.ion-university:before,.ion-unlocked:before,.ion-upload:before,.ion-usb:before,.ion-videocamera:before,.ion-volume-high:before,.ion-volume-low:before,.ion-volume-medium:before,.ion-volume-mute:before,.ion-wand:before,.ion-waterdrop:before,.ion-wifi:before,.ion-wineglass:before,.ion-woman:before,.ion-wrench:before,.ion-xbox:before{display:inline-block;font-family:"Ionicons";speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;text-rendering:auto;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ion-alert:before{content:"\f101"}.ion-alert-circled:before{content:"\f100"}.ion-android-add:before{content:"\f2c7"}.ion-android-add-circle:before{content:"\f359"}.ion-android-alarm-clock:before{content:"\f35a"}.ion-android-alert:before{content:"\f35b"}.ion-android-apps:before{content:"\f35c"}.ion-android-archive:before{content:"\f2c9"}.ion-android-arrow-back:before{content:"\f2ca"}.ion-android-arrow-down:before{content:"\f35d"}.ion-android-arrow-dropdown:before{content:"\f35f"}.ion-android-arrow-dropdown-circle:before{content:"\f35e"}.ion-android-arrow-dropleft:before{content:"\f361"}.ion-android-arrow-dropleft-circle:before{content:"\f360"}.ion-android-arrow-dropright:before{content:"\f363"}.ion-android-arrow-dropright-circle:before{content:"\f362"}.ion-android-arrow-dropup:before{content:"\f365"}.ion-android-arrow-dropup-circle:before{content:"\f364"}.ion-android-arrow-forward:before{content:"\f30f"}.ion-android-arrow-up:before{content:"\f366"}.ion-android-attach:before{content:"\f367"}.ion-android-bar:before{content:"\f368"}.ion-android-bicycle:before{content:"\f369"}.ion-android-boat:before{content:"\f36a"}.ion-android-bookmark:before{content:"\f36b"}.ion-android-bulb:before{content:"\f36c"}.ion-android-bus:before{content:"\f36d"}.ion-android-calendar:before{content:"\f2d1"}.ion-android-call:before{content:"\f2d2"}.ion-android-camera:before{content:"\f2d3"}.ion-android-cancel:before{content:"\f36e"}.ion-android-car:before{content:"\f36f"}.ion-android-cart:before{content:"\f370"}.ion-android-chat:before{content:"\f2d4"}.ion-android-checkbox:before{content:"\f374"}.ion-android-checkbox-blank:before{content:"\f371"}.ion-android-checkbox-outline:before{content:"\f373"}.ion-android-checkbox-outline-blank:before{content:"\f372"}.ion-android-checkmark-circle:before{content:"\f375"}.ion-android-clipboard:before{content:"\f376"}.ion-android-close:before{content:"\f2d7"}.ion-android-cloud:before{content:"\f37a"}.ion-android-cloud-circle:before{content:"\f377"}.ion-android-cloud-done:before{content:"\f378"}.ion-android-cloud-outline:before{content:"\f379"}.ion-android-color-palette:before{content:"\f37b"}.ion-android-compass:before{content:"\f37c"}.ion-android-contact:before{content:"\f2d8"}.ion-android-contacts:before{content:"\f2d9"}.ion-android-contract:before{content:"\f37d"}.ion-android-create:before{content:"\f37e"}.ion-android-delete:before{content:"\f37f"}.ion-android-desktop:before{content:"\f380"}.ion-android-document:before{content:"\f381"}.ion-android-done:before{content:"\f383"}.ion-android-done-all:before{content:"\f382"}.ion-android-download:before{content:"\f2dd"}.ion-android-drafts:before{content:"\f384"}.ion-android-exit:before{content:"\f385"}.ion-android-expand:before{content:"\f386"}.ion-android-favorite:before{content:"\f388"}.ion-android-favorite-outline:before{content:"\f387"}.ion-android-film:before{content:"\f389"}.ion-android-folder:before{content:"\f2e0"}.ion-android-folder-open:before{content:"\f38a"}.ion-android-funnel:before{content:"\f38b"}.ion-android-globe:before{content:"\f38c"}.ion-android-hand:before{content:"\f2e3"}.ion-android-hangout:before{content:"\f38d"}.ion-android-happy:before{content:"\f38e"}.ion-android-home:before{content:"\f38f"}.ion-android-image:before{content:"\f2e4"}.ion-android-laptop:before{content:"\f390"}.ion-android-list:before{content:"\f391"}.ion-android-locate:before{content:"\f2e9"}.ion-android-lock:before{content:"\f392"}.ion-android-mail:before{content:"\f2eb"}.ion-android-map:before{content:"\f393"}.ion-android-menu:before{content:"\f394"}.ion-android-microphone:before{content:"\f2ec"}.ion-android-microphone-off:before{content:"\f395"}.ion-android-more-horizontal:before{content:"\f396"}.ion-android-more-vertical:before{content:"\f397"}.ion-android-navigate:before{content:"\f398"}.ion-android-notifications:before{content:"\f39b"}.ion-android-notifications-none:before{content:"\f399"}.ion-android-notifications-off:before{content:"\f39a"}.ion-android-open:before{content:"\f39c"}.ion-android-options:before{content:"\f39d"}.ion-android-people:before{content:"\f39e"}.ion-android-person:before{content:"\f3a0"}.ion-android-person-add:before{content:"\f39f"}.ion-android-phone-landscape:before{content:"\f3a1"}.ion-android-phone-portrait:before{content:"\f3a2"}.ion-android-pin:before{content:"\f3a3"}.ion-android-plane:before{content:"\f3a4"}.ion-android-playstore:before{content:"\f2f0"}.ion-android-print:before{content:"\f3a5"}.ion-android-radio-button-off:before{content:"\f3a6"}.ion-android-radio-button-on:before{content:"\f3a7"}.ion-android-refresh:before{content:"\f3a8"}.ion-android-remove:before{content:"\f2f4"}.ion-android-remove-circle:before{content:"\f3a9"}.ion-android-restaurant:before{content:"\f3aa"}.ion-android-sad:before{content:"\f3ab"}.ion-android-search:before{content:"\f2f5"}.ion-android-send:before{content:"\f2f6"}.ion-android-settings:before{content:"\f2f7"}.ion-android-share:before{content:"\f2f8"}.ion-android-share-alt:before{content:"\f3ac"}.ion-android-star:before{content:"\f2fc"}.ion-android-star-half:before{content:"\f3ad"}.ion-android-star-outline:before{content:"\f3ae"}.ion-android-stopwatch:before{content:"\f2fd"}.ion-android-subway:before{content:"\f3af"}.ion-android-sunny:before{content:"\f3b0"}.ion-android-sync:before{content:"\f3b1"}.ion-android-textsms:before{content:"\f3b2"}.ion-android-time:before{content:"\f3b3"}.ion-android-train:before{content:"\f3b4"}.ion-android-unlock:before{content:"\f3b5"}.ion-android-upload:before{content:"\f3b6"}.ion-android-volume-down:before{content:"\f3b7"}.ion-android-volume-mute:before{content:"\f3b8"}.ion-android-volume-off:before{content:"\f3b9"}.ion-android-volume-up:before{content:"\f3ba"}.ion-android-walk:before{content:"\f3bb"}.ion-android-warning:before{content:"\f3bc"}.ion-android-watch:before{content:"\f3bd"}.ion-android-wifi:before{content:"\f305"}.ion-aperture:before{content:"\f313"}.ion-archive:before{content:"\f102"}.ion-arrow-down-a:before{content:"\f103"}.ion-arrow-down-b:before{content:"\f104"}.ion-arrow-down-c:before{content:"\f105"}.ion-arrow-expand:before{content:"\f25e"}.ion-arrow-graph-down-left:before{content:"\f25f"}.ion-arrow-graph-down-right:before{content:"\f260"}.ion-arrow-graph-up-left:before{content:"\f261"}.ion-arrow-graph-up-right:before{content:"\f262"}.ion-arrow-left-a:before{content:"\f106"}.ion-arrow-left-b:before{content:"\f107"}.ion-arrow-left-c:before{content:"\f108"}.ion-arrow-move:before{content:"\f263"}.ion-arrow-resize:before{content:"\f264"}.ion-arrow-return-left:before{content:"\f265"}.ion-arrow-return-right:before{content:"\f266"}.ion-arrow-right-a:before{content:"\f109"}.ion-arrow-right-b:before{content:"\f10a"}.ion-arrow-right-c:before{content:"\f10b"}.ion-arrow-shrink:before{content:"\f267"}.ion-arrow-swap:before{content:"\f268"}.ion-arrow-up-a:before{content:"\f10c"}.ion-arrow-up-b:before{content:"\f10d"}.ion-arrow-up-c:before{content:"\f10e"}.ion-asterisk:before{content:"\f314"}.ion-at:before{content:"\f10f"}.ion-backspace:before{content:"\f3bf"}.ion-backspace-outline:before{content:"\f3be"}.ion-bag:before{content:"\f110"}.ion-battery-charging:before{content:"\f111"}.ion-battery-empty:before{content:"\f112"}.ion-battery-full:before{content:"\f113"}.ion-battery-half:before{content:"\f114"}.ion-battery-low:before{content:"\f115"}.ion-beaker:before{content:"\f269"}.ion-beer:before{content:"\f26a"}.ion-bluetooth:before{content:"\f116"}.ion-bonfire:before{content:"\f315"}.ion-bookmark:before{content:"\f26b"}.ion-bowtie:before{content:"\f3c0"}.ion-briefcase:before{content:"\f26c"}.ion-bug:before{content:"\f2be"}.ion-calculator:before{content:"\f26d"}.ion-calendar:before{content:"\f117"}.ion-camera:before{content:"\f118"}.ion-card:before{content:"\f119"}.ion-cash:before{content:"\f316"}.ion-chatbox:before{content:"\f11b"}.ion-chatbox-working:before{content:"\f11a"}.ion-chatboxes:before{content:"\f11c"}.ion-chatbubble:before{content:"\f11e"}.ion-chatbubble-working:before{content:"\f11d"}.ion-chatbubbles:before{content:"\f11f"}.ion-checkmark:before{content:"\f122"}.ion-checkmark-circled:before{content:"\f120"}.ion-checkmark-round:before{content:"\f121"}.ion-chevron-down:before{content:"\f123"}.ion-chevron-left:before{content:"\f124"}.ion-chevron-right:before{content:"\f125"}.ion-chevron-up:before{content:"\f126"}.ion-clipboard:before{content:"\f127"}.ion-clock:before{content:"\f26e"}.ion-close:before{content:"\f12a"}.ion-close-circled:before{content:"\f128"}.ion-close-round:before{content:"\f129"}.ion-closed-captioning:before{content:"\f317"}.ion-cloud:before{content:"\f12b"}.ion-code:before{content:"\f271"}.ion-code-download:before{content:"\f26f"}.ion-code-working:before{content:"\f270"}.ion-coffee:before{content:"\f272"}.ion-compass:before{content:"\f273"}.ion-compose:before{content:"\f12c"}.ion-connection-bars:before{content:"\f274"}.ion-contrast:before{content:"\f275"}.ion-crop:before{content:"\f3c1"}.ion-cube:before{content:"\f318"}.ion-disc:before{content:"\f12d"}.ion-document:before{content:"\f12f"}.ion-document-text:before{content:"\f12e"}.ion-drag:before{content:"\f130"}.ion-earth:before{content:"\f276"}.ion-easel:before{content:"\f3c2"}.ion-edit:before{content:"\f2bf"}.ion-egg:before{content:"\f277"}.ion-eject:before{content:"\f131"}.ion-email:before{content:"\f132"}.ion-email-unread:before{content:"\f3c3"}.ion-erlenmeyer-flask:before{content:"\f3c5"}.ion-erlenmeyer-flask-bubbles:before{content:"\f3c4"}.ion-eye:before{content:"\f133"}.ion-eye-disabled:before{content:"\f306"}.ion-female:before{content:"\f278"}.ion-filing:before{content:"\f134"}.ion-film-marker:before{content:"\f135"}.ion-fireball:before{content:"\f319"}.ion-flag:before{content:"\f279"}.ion-flame:before{content:"\f31a"}.ion-flash:before{content:"\f137"}.ion-flash-off:before{content:"\f136"}.ion-folder:before{content:"\f139"}.ion-fork:before{content:"\f27a"}.ion-fork-repo:before{content:"\f2c0"}.ion-forward:before{content:"\f13a"}.ion-funnel:before{content:"\f31b"}.ion-gear-a:before{content:"\f13d"}.ion-gear-b:before{content:"\f13e"}.ion-grid:before{content:"\f13f"}.ion-hammer:before{content:"\f27b"}.ion-happy:before{content:"\f31c"}.ion-happy-outline:before{content:"\f3c6"}.ion-headphone:before{content:"\f140"}.ion-heart:before{content:"\f141"}.ion-heart-broken:before{content:"\f31d"}.ion-help:before{content:"\f143"}.ion-help-buoy:before{content:"\f27c"}.ion-help-circled:before{content:"\f142"}.ion-home:before{content:"\f144"}.ion-icecream:before{content:"\f27d"}.ion-image:before{content:"\f147"}.ion-images:before{content:"\f148"}.ion-information:before{content:"\f14a"}.ion-information-circled:before{content:"\f149"}.ion-ionic:before{content:"\f14b"}.ion-ios-alarm:before{content:"\f3c8"}.ion-ios-alarm-outline:before{content:"\f3c7"}.ion-ios-albums:before{content:"\f3ca"}.ion-ios-albums-outline:before{content:"\f3c9"}.ion-ios-americanfootball:before{content:"\f3cc"}.ion-ios-americanfootball-outline:before{content:"\f3cb"}.ion-ios-analytics:before{content:"\f3ce"}.ion-ios-analytics-outline:before{content:"\f3cd"}.ion-ios-arrow-back:before{content:"\f3cf"}.ion-ios-arrow-down:before{content:"\f3d0"}.ion-ios-arrow-forward:before{content:"\f3d1"}.ion-ios-arrow-left:before{content:"\f3d2"}.ion-ios-arrow-right:before{content:"\f3d3"}.ion-ios-arrow-thin-down:before{content:"\f3d4"}.ion-ios-arrow-thin-left:before{content:"\f3d5"}.ion-ios-arrow-thin-right:before{content:"\f3d6"}.ion-ios-arrow-thin-up:before{content:"\f3d7"}.ion-ios-arrow-up:before{content:"\f3d8"}.ion-ios-at:before{content:"\f3da"}.ion-ios-at-outline:before{content:"\f3d9"}.ion-ios-barcode:before{content:"\f3dc"}.ion-ios-barcode-outline:before{content:"\f3db"}.ion-ios-baseball:before{content:"\f3de"}.ion-ios-baseball-outline:before{content:"\f3dd"}.ion-ios-basketball:before{content:"\f3e0"}.ion-ios-basketball-outline:before{content:"\f3df"}.ion-ios-bell:before{content:"\f3e2"}.ion-ios-bell-outline:before{content:"\f3e1"}.ion-ios-body:before{content:"\f3e4"}.ion-ios-body-outline:before{content:"\f3e3"}.ion-ios-bolt:before{content:"\f3e6"}.ion-ios-bolt-outline:before{content:"\f3e5"}.ion-ios-book:before{content:"\f3e8"}.ion-ios-book-outline:before{content:"\f3e7"}.ion-ios-bookmarks:before{content:"\f3ea"}.ion-ios-bookmarks-outline:before{content:"\f3e9"}.ion-ios-box:before{content:"\f3ec"}.ion-ios-box-outline:before{content:"\f3eb"}.ion-ios-briefcase:before{content:"\f3ee"}.ion-ios-briefcase-outline:before{content:"\f3ed"}.ion-ios-browsers:before{content:"\f3f0"}.ion-ios-browsers-outline:before{content:"\f3ef"}.ion-ios-calculator:before{content:"\f3f2"}.ion-ios-calculator-outline:before{content:"\f3f1"}.ion-ios-calendar:before{content:"\f3f4"}.ion-ios-calendar-outline:before{content:"\f3f3"}.ion-ios-camera:before{content:"\f3f6"}.ion-ios-camera-outline:before{content:"\f3f5"}.ion-ios-cart:before{content:"\f3f8"}.ion-ios-cart-outline:before{content:"\f3f7"}.ion-ios-chatboxes:before{content:"\f3fa"}.ion-ios-chatboxes-outline:before{content:"\f3f9"}.ion-ios-chatbubble:before{content:"\f3fc"}.ion-ios-chatbubble-outline:before{content:"\f3fb"}.ion-ios-checkmark:before{content:"\f3ff"}.ion-ios-checkmark-empty:before{content:"\f3fd"}.ion-ios-checkmark-outline:before{content:"\f3fe"}.ion-ios-circle-filled:before{content:"\f400"}.ion-ios-circle-outline:before{content:"\f401"}.ion-ios-clock:before{content:"\f403"}.ion-ios-clock-outline:before{content:"\f402"}.ion-ios-close:before{content:"\f406"}.ion-ios-close-empty:before{content:"\f404"}.ion-ios-close-outline:before{content:"\f405"}.ion-ios-cloud:before{content:"\f40c"}.ion-ios-cloud-download:before{content:"\f408"}.ion-ios-cloud-download-outline:before{content:"\f407"}.ion-ios-cloud-outline:before{content:"\f409"}.ion-ios-cloud-upload:before{content:"\f40b"}.ion-ios-cloud-upload-outline:before{content:"\f40a"}.ion-ios-cloudy:before{content:"\f410"}.ion-ios-cloudy-night:before{content:"\f40e"}.ion-ios-cloudy-night-outline:before{content:"\f40d"}.ion-ios-cloudy-outline:before{content:"\f40f"}.ion-ios-cog:before{content:"\f412"}.ion-ios-cog-outline:before{content:"\f411"}.ion-ios-color-filter:before{content:"\f414"}.ion-ios-color-filter-outline:before{content:"\f413"}.ion-ios-color-wand:before{content:"\f416"}.ion-ios-color-wand-outline:before{content:"\f415"}.ion-ios-compose:before{content:"\f418"}.ion-ios-compose-outline:before{content:"\f417"}.ion-ios-contact:before{content:"\f41a"}.ion-ios-contact-outline:before{content:"\f419"}.ion-ios-copy:before{content:"\f41c"}.ion-ios-copy-outline:before{content:"\f41b"}.ion-ios-crop:before{content:"\f41e"}.ion-ios-crop-strong:before{content:"\f41d"}.ion-ios-download:before{content:"\f420"}.ion-ios-download-outline:before{content:"\f41f"}.ion-ios-drag:before{content:"\f421"}.ion-ios-email:before{content:"\f423"}.ion-ios-email-outline:before{content:"\f422"}.ion-ios-eye:before{content:"\f425"}.ion-ios-eye-outline:before{content:"\f424"}.ion-ios-fastforward:before{content:"\f427"}.ion-ios-fastforward-outline:before{content:"\f426"}.ion-ios-filing:before{content:"\f429"}.ion-ios-filing-outline:before{content:"\f428"}.ion-ios-film:before{content:"\f42b"}.ion-ios-film-outline:before{content:"\f42a"}.ion-ios-flag:before{content:"\f42d"}.ion-ios-flag-outline:before{content:"\f42c"}.ion-ios-flame:before{content:"\f42f"}.ion-ios-flame-outline:before{content:"\f42e"}.ion-ios-flask:before{content:"\f431"}.ion-ios-flask-outline:before{content:"\f430"}.ion-ios-flower:before{content:"\f433"}.ion-ios-flower-outline:before{content:"\f432"}.ion-ios-folder:before{content:"\f435"}.ion-ios-folder-outline:before{content:"\f434"}.ion-ios-football:before{content:"\f437"}.ion-ios-football-outline:before{content:"\f436"}.ion-ios-game-controller-a:before{content:"\f439"}.ion-ios-game-controller-a-outline:before{content:"\f438"}.ion-ios-game-controller-b:before{content:"\f43b"}.ion-ios-game-controller-b-outline:before{content:"\f43a"}.ion-ios-gear:before{content:"\f43d"}.ion-ios-gear-outline:before{content:"\f43c"}.ion-ios-glasses:before{content:"\f43f"}.ion-ios-glasses-outline:before{content:"\f43e"}.ion-ios-grid-view:before{content:"\f441"}.ion-ios-grid-view-outline:before{content:"\f440"}.ion-ios-heart:before{content:"\f443"}.ion-ios-heart-outline:before{content:"\f442"}.ion-ios-help:before{content:"\f446"}.ion-ios-help-empty:before{content:"\f444"}.ion-ios-help-outline:before{content:"\f445"}.ion-ios-home:before{content:"\f448"}.ion-ios-home-outline:before{content:"\f447"}.ion-ios-infinite:before{content:"\f44a"}.ion-ios-infinite-outline:before{content:"\f449"}.ion-ios-information:before{content:"\f44d"}.ion-ios-information-empty:before{content:"\f44b"}.ion-ios-information-outline:before{content:"\f44c"}.ion-ios-ionic-outline:before{content:"\f44e"}.ion-ios-keypad:before{content:"\f450"}.ion-ios-keypad-outline:before{content:"\f44f"}.ion-ios-lightbulb:before{content:"\f452"}.ion-ios-lightbulb-outline:before{content:"\f451"}.ion-ios-list:before{content:"\f454"}.ion-ios-list-outline:before{content:"\f453"}.ion-ios-location:before{content:"\f456"}.ion-ios-location-outline:before{content:"\f455"}.ion-ios-locked:before{content:"\f458"}.ion-ios-locked-outline:before{content:"\f457"}.ion-ios-loop:before{content:"\f45a"}.ion-ios-loop-strong:before{content:"\f459"}.ion-ios-medical:before{content:"\f45c"}.ion-ios-medical-outline:before{content:"\f45b"}.ion-ios-medkit:before{content:"\f45e"}.ion-ios-medkit-outline:before{content:"\f45d"}.ion-ios-mic:before{content:"\f461"}.ion-ios-mic-off:before{content:"\f45f"}.ion-ios-mic-outline:before{content:"\f460"}.ion-ios-minus:before{content:"\f464"}.ion-ios-minus-empty:before{content:"\f462"}.ion-ios-minus-outline:before{content:"\f463"}.ion-ios-monitor:before{content:"\f466"}.ion-ios-monitor-outline:before{content:"\f465"}.ion-ios-moon:before{content:"\f468"}.ion-ios-moon-outline:before{content:"\f467"}.ion-ios-more:before{content:"\f46a"}.ion-ios-more-outline:before{content:"\f469"}.ion-ios-musical-note:before{content:"\f46b"}.ion-ios-musical-notes:before{content:"\f46c"}.ion-ios-navigate:before{content:"\f46e"}.ion-ios-navigate-outline:before{content:"\f46d"}.ion-ios-nutrition:before{content:"\f470"}.ion-ios-nutrition-outline:before{content:"\f46f"}.ion-ios-paper:before{content:"\f472"}.ion-ios-paper-outline:before{content:"\f471"}.ion-ios-paperplane:before{content:"\f474"}.ion-ios-paperplane-outline:before{content:"\f473"}.ion-ios-partlysunny:before{content:"\f476"}.ion-ios-partlysunny-outline:before{content:"\f475"}.ion-ios-pause:before{content:"\f478"}.ion-ios-pause-outline:before{content:"\f477"}.ion-ios-paw:before{content:"\f47a"}.ion-ios-paw-outline:before{content:"\f479"}.ion-ios-people:before{content:"\f47c"}.ion-ios-people-outline:before{content:"\f47b"}.ion-ios-person:before{content:"\f47e"}.ion-ios-person-outline:before{content:"\f47d"}.ion-ios-personadd:before{content:"\f480"}.ion-ios-personadd-outline:before{content:"\f47f"}.ion-ios-photos:before{content:"\f482"}.ion-ios-photos-outline:before{content:"\f481"}.ion-ios-pie:before{content:"\f484"}.ion-ios-pie-outline:before{content:"\f483"}.ion-ios-pint:before{content:"\f486"}.ion-ios-pint-outline:before{content:"\f485"}.ion-ios-play:before{content:"\f488"}.ion-ios-play-outline:before{content:"\f487"}.ion-ios-plus:before{content:"\f48b"}.ion-ios-plus-empty:before{content:"\f489"}.ion-ios-plus-outline:before{content:"\f48a"}.ion-ios-pricetag:before{content:"\f48d"}.ion-ios-pricetag-outline:before{content:"\f48c"}.ion-ios-pricetags:before{content:"\f48f"}.ion-ios-pricetags-outline:before{content:"\f48e"}.ion-ios-printer:before{content:"\f491"}.ion-ios-printer-outline:before{content:"\f490"}.ion-ios-pulse:before{content:"\f493"}.ion-ios-pulse-strong:before{content:"\f492"}.ion-ios-rainy:before{content:"\f495"}.ion-ios-rainy-outline:before{content:"\f494"}.ion-ios-recording:before{content:"\f497"}.ion-ios-recording-outline:before{content:"\f496"}.ion-ios-redo:before{content:"\f499"}.ion-ios-redo-outline:before{content:"\f498"}.ion-ios-refresh:before{content:"\f49c"}.ion-ios-refresh-empty:before{content:"\f49a"}.ion-ios-refresh-outline:before{content:"\f49b"}.ion-ios-reload:before{content:"\f49d"}.ion-ios-reverse-camera:before{content:"\f49f"}.ion-ios-reverse-camera-outline:before{content:"\f49e"}.ion-ios-rewind:before{content:"\f4a1"}.ion-ios-rewind-outline:before{content:"\f4a0"}.ion-ios-rose:before{content:"\f4a3"}.ion-ios-rose-outline:before{content:"\f4a2"}.ion-ios-search:before{content:"\f4a5"}.ion-ios-search-strong:before{content:"\f4a4"}.ion-ios-settings:before{content:"\f4a7"}.ion-ios-settings-strong:before{content:"\f4a6"}.ion-ios-shuffle:before{content:"\f4a9"}.ion-ios-shuffle-strong:before{content:"\f4a8"}.ion-ios-skipbackward:before{content:"\f4ab"}.ion-ios-skipbackward-outline:before{content:"\f4aa"}.ion-ios-skipforward:before{content:"\f4ad"}.ion-ios-skipforward-outline:before{content:"\f4ac"}.ion-ios-snowy:before{content:"\f4ae"}.ion-ios-speedometer:before{content:"\f4b0"}.ion-ios-speedometer-outline:before{content:"\f4af"}.ion-ios-star:before{content:"\f4b3"}.ion-ios-star-half:before{content:"\f4b1"}.ion-ios-star-outline:before{content:"\f4b2"}.ion-ios-stopwatch:before{content:"\f4b5"}.ion-ios-stopwatch-outline:before{content:"\f4b4"}.ion-ios-sunny:before{content:"\f4b7"}.ion-ios-sunny-outline:before{content:"\f4b6"}.ion-ios-telephone:before{content:"\f4b9"}.ion-ios-telephone-outline:before{content:"\f4b8"}.ion-ios-tennisball:before{content:"\f4bb"}.ion-ios-tennisball-outline:before{content:"\f4ba"}.ion-ios-thunderstorm:before{content:"\f4bd"}.ion-ios-thunderstorm-outline:before{content:"\f4bc"}.ion-ios-time:before{content:"\f4bf"}.ion-ios-time-outline:before{content:"\f4be"}.ion-ios-timer:before{content:"\f4c1"}.ion-ios-timer-outline:before{content:"\f4c0"}.ion-ios-toggle:before{content:"\f4c3"}.ion-ios-toggle-outline:before{content:"\f4c2"}.ion-ios-trash:before{content:"\f4c5"}.ion-ios-trash-outline:before{content:"\f4c4"}.ion-ios-undo:before{content:"\f4c7"}.ion-ios-undo-outline:before{content:"\f4c6"}.ion-ios-unlocked:before{content:"\f4c9"}.ion-ios-unlocked-outline:before{content:"\f4c8"}.ion-ios-upload:before{content:"\f4cb"}.ion-ios-upload-outline:before{content:"\f4ca"}.ion-ios-videocam:before{content:"\f4cd"}.ion-ios-videocam-outline:before{content:"\f4cc"}.ion-ios-volume-high:before{content:"\f4ce"}.ion-ios-volume-low:before{content:"\f4cf"}.ion-ios-wineglass:before{content:"\f4d1"}.ion-ios-wineglass-outline:before{content:"\f4d0"}.ion-ios-world:before{content:"\f4d3"}.ion-ios-world-outline:before{content:"\f4d2"}.ion-ipad:before{content:"\f1f9"}.ion-iphone:before{content:"\f1fa"}.ion-ipod:before{content:"\f1fb"}.ion-jet:before{content:"\f295"}.ion-key:before{content:"\f296"}.ion-knife:before{content:"\f297"}.ion-laptop:before{content:"\f1fc"}.ion-leaf:before{content:"\f1fd"}.ion-levels:before{content:"\f298"}.ion-lightbulb:before{content:"\f299"}.ion-link:before{content:"\f1fe"}.ion-load-a:before{content:"\f29a"}.ion-load-b:before{content:"\f29b"}.ion-load-c:before{content:"\f29c"}.ion-load-d:before{content:"\f29d"}.ion-location:before{content:"\f1ff"}.ion-lock-combination:before{content:"\f4d4"}.ion-locked:before{content:"\f200"}.ion-log-in:before{content:"\f29e"}.ion-log-out:before{content:"\f29f"}.ion-loop:before{content:"\f201"}.ion-magnet:before{content:"\f2a0"}.ion-male:before{content:"\f2a1"}.ion-man:before{content:"\f202"}.ion-map:before{content:"\f203"}.ion-medkit:before{content:"\f2a2"}.ion-merge:before{content:"\f33f"}.ion-mic-a:before{content:"\f204"}.ion-mic-b:before{content:"\f205"}.ion-mic-c:before{content:"\f206"}.ion-minus:before{content:"\f209"}.ion-minus-circled:before{content:"\f207"}.ion-minus-round:before{content:"\f208"}.ion-model-s:before{content:"\f2c1"}.ion-monitor:before{content:"\f20a"}.ion-more:before{content:"\f20b"}.ion-mouse:before{content:"\f340"}.ion-music-note:before{content:"\f20c"}.ion-navicon:before{content:"\f20e"}.ion-navicon-round:before{content:"\f20d"}.ion-navigate:before{content:"\f2a3"}.ion-network:before{content:"\f341"}.ion-no-smoking:before{content:"\f2c2"}.ion-nuclear:before{content:"\f2a4"}.ion-outlet:before{content:"\f342"}.ion-paintbrush:before{content:"\f4d5"}.ion-paintbucket:before{content:"\f4d6"}.ion-paper-airplane:before{content:"\f2c3"}.ion-paperclip:before{content:"\f20f"}.ion-pause:before{content:"\f210"}.ion-person:before{content:"\f213"}.ion-person-add:before{content:"\f211"}.ion-person-stalker:before{content:"\f212"}.ion-pie-graph:before{content:"\f2a5"}.ion-pin:before{content:"\f2a6"}.ion-pinpoint:before{content:"\f2a7"}.ion-pizza:before{content:"\f2a8"}.ion-plane:before{content:"\f214"}.ion-planet:before{content:"\f343"}.ion-play:before{content:"\f215"}.ion-playstation:before{content:"\f30a"}.ion-plus:before{content:"\f218"}.ion-plus-circled:before{content:"\f216"}.ion-plus-round:before{content:"\f217"}.ion-podium:before{content:"\f344"}.ion-pound:before{content:"\f219"}.ion-power:before{content:"\f2a9"}.ion-pricetag:before{content:"\f2aa"}.ion-pricetags:before{content:"\f2ab"}.ion-printer:before{content:"\f21a"}.ion-pull-request:before{content:"\f345"}.ion-qr-scanner:before{content:"\f346"}.ion-quote:before{content:"\f347"}.ion-radio-waves:before{content:"\f2ac"}.ion-record:before{content:"\f21b"}.ion-refresh:before{content:"\f21c"}.ion-reply:before{content:"\f21e"}.ion-reply-all:before{content:"\f21d"}.ion-ribbon-a:before{content:"\f348"}.ion-ribbon-b:before{content:"\f349"}.ion-sad:before{content:"\f34a"}.ion-sad-outline:before{content:"\f4d7"}.ion-scissors:before{content:"\f34b"}.ion-search:before{content:"\f21f"}.ion-settings:before{content:"\f2ad"}.ion-share:before{content:"\f220"}.ion-shuffle:before{content:"\f221"}.ion-skip-backward:before{content:"\f222"}.ion-skip-forward:before{content:"\f223"}.ion-social-android:before{content:"\f225"}.ion-social-android-outline:before{content:"\f224"}.ion-social-angular:before{content:"\f4d9"}.ion-social-angular-outline:before{content:"\f4d8"}.ion-social-apple:before{content:"\f227"}.ion-social-apple-outline:before{content:"\f226"}.ion-social-bitcoin:before{content:"\f2af"}.ion-social-bitcoin-outline:before{content:"\f2ae"}.ion-social-buffer:before{content:"\f229"}.ion-social-buffer-outline:before{content:"\f228"}.ion-social-chrome:before{content:"\f4db"}.ion-social-chrome-outline:before{content:"\f4da"}.ion-social-codepen:before{content:"\f4dd"}.ion-social-codepen-outline:before{content:"\f4dc"}.ion-social-css3:before{content:"\f4df"}.ion-social-css3-outline:before{content:"\f4de"}.ion-social-designernews:before{content:"\f22b"}.ion-social-designernews-outline:before{content:"\f22a"}.ion-social-dribbble:before{content:"\f22d"}.ion-social-dribbble-outline:before{content:"\f22c"}.ion-social-dropbox:before{content:"\f22f"}.ion-social-dropbox-outline:before{content:"\f22e"}.ion-social-euro:before{content:"\f4e1"}.ion-social-euro-outline:before{content:"\f4e0"}.ion-social-facebook:before{content:"\f231"}.ion-social-facebook-outline:before{content:"\f230"}.ion-social-foursquare:before{content:"\f34d"}.ion-social-foursquare-outline:before{content:"\f34c"}.ion-social-freebsd-devil:before{content:"\f2c4"}.ion-social-github:before{content:"\f233"}.ion-social-github-outline:before{content:"\f232"}.ion-social-google:before{content:"\f34f"}.ion-social-google-outline:before{content:"\f34e"}.ion-social-googleplus:before{content:"\f235"}.ion-social-googleplus-outline:before{content:"\f234"}.ion-social-hackernews:before{content:"\f237"}.ion-social-hackernews-outline:before{content:"\f236"}.ion-social-html5:before{content:"\f4e3"}.ion-social-html5-outline:before{content:"\f4e2"}.ion-social-instagram:before{content:"\f351"}.ion-social-instagram-outline:before{content:"\f350"}.ion-social-javascript:before{content:"\f4e5"}.ion-social-javascript-outline:before{content:"\f4e4"}.ion-social-linkedin:before{content:"\f239"}.ion-social-linkedin-outline:before{content:"\f238"}.ion-social-markdown:before{content:"\f4e6"}.ion-social-nodejs:before{content:"\f4e7"}.ion-social-octocat:before{content:"\f4e8"}.ion-social-pinterest:before{content:"\f2b1"}.ion-social-pinterest-outline:before{content:"\f2b0"}.ion-social-python:before{content:"\f4e9"}.ion-social-reddit:before{content:"\f23b"}.ion-social-reddit-outline:before{content:"\f23a"}.ion-social-rss:before{content:"\f23d"}.ion-social-rss-outline:before{content:"\f23c"}.ion-social-sass:before{content:"\f4ea"}.ion-social-skype:before{content:"\f23f"}.ion-social-skype-outline:before{content:"\f23e"}.ion-social-snapchat:before{content:"\f4ec"}.ion-social-snapchat-outline:before{content:"\f4eb"}.ion-social-tumblr:before{content:"\f241"}.ion-social-tumblr-outline:before{content:"\f240"}.ion-social-tux:before{content:"\f2c5"}.ion-social-twitch:before{content:"\f4ee"}.ion-social-twitch-outline:before{content:"\f4ed"}.ion-social-twitter:before{content:"\f243"}.ion-social-twitter-outline:before{content:"\f242"}.ion-social-usd:before{content:"\f353"}.ion-social-usd-outline:before{content:"\f352"}.ion-social-vimeo:before{content:"\f245"}.ion-social-vimeo-outline:before{content:"\f244"}.ion-social-whatsapp:before{content:"\f4f0"}.ion-social-whatsapp-outline:before{content:"\f4ef"}.ion-social-windows:before{content:"\f247"}.ion-social-windows-outline:before{content:"\f246"}.ion-social-wordpress:before{content:"\f249"}.ion-social-wordpress-outline:before{content:"\f248"}.ion-social-yahoo:before{content:"\f24b"}.ion-social-yahoo-outline:before{content:"\f24a"}.ion-social-yen:before{content:"\f4f2"}.ion-social-yen-outline:before{content:"\f4f1"}.ion-social-youtube:before{content:"\f24d"}.ion-social-youtube-outline:before{content:"\f24c"}.ion-soup-can:before{content:"\f4f4"}.ion-soup-can-outline:before{content:"\f4f3"}.ion-speakerphone:before{content:"\f2b2"}.ion-speedometer:before{content:"\f2b3"}.ion-spoon:before{content:"\f2b4"}.ion-star:before{content:"\f24e"}.ion-stats-bars:before{content:"\f2b5"}.ion-steam:before{content:"\f30b"}.ion-stop:before{content:"\f24f"}.ion-thermometer:before{content:"\f2b6"}.ion-thumbsdown:before{content:"\f250"}.ion-thumbsup:before{content:"\f251"}.ion-toggle:before{content:"\f355"}.ion-toggle-filled:before{content:"\f354"}.ion-transgender:before{content:"\f4f5"}.ion-trash-a:before{content:"\f252"}.ion-trash-b:before{content:"\f253"}.ion-trophy:before{content:"\f356"}.ion-tshirt:before{content:"\f4f7"}.ion-tshirt-outline:before{content:"\f4f6"}.ion-umbrella:before{content:"\f2b7"}.ion-university:before{content:"\f357"}.ion-unlocked:before{content:"\f254"}.ion-upload:before{content:"\f255"}.ion-usb:before{content:"\f2b8"}.ion-videocamera:before{content:"\f256"}.ion-volume-high:before{content:"\f257"}.ion-volume-low:before{content:"\f258"}.ion-volume-medium:before{content:"\f259"}.ion-volume-mute:before{content:"\f25a"}.ion-wand:before{content:"\f358"}.ion-waterdrop:before{content:"\f25b"}.ion-wifi:before{content:"\f25c"}.ion-wineglass:before{content:"\f2b9"}.ion-woman:before{content:"\f25d"}.ion-wrench:before{content:"\f2ba"}.ion-xbox:before{content:"\f30c"} diff --git a/DepartureBoardWeb/ClientApp/src/assets/css/magnific-popup.css b/DepartureBoardWeb/ClientApp/src/assets/css/magnific-popup.css new file mode 100644 index 00000000..8561e181 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/css/magnific-popup.css @@ -0,0 +1,351 @@ +/* Magnific Popup CSS */ +.mfp-bg { + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 1042; + overflow: hidden; + position: fixed; + background: #0b0b0b; + opacity: 0.8; } + +.mfp-wrap { + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 1043; + position: fixed; + outline: none !important; + -webkit-backface-visibility: hidden; } + +.mfp-container { + text-align: center; + position: absolute; + width: 100%; + height: 100%; + left: 0; + top: 0; + padding: 0 8px; + box-sizing: border-box; } + +.mfp-container:before { + content: ''; + display: inline-block; + height: 100%; + vertical-align: middle; } + +.mfp-align-top .mfp-container:before { + display: none; } + +.mfp-content { + position: relative; + display: inline-block; + vertical-align: middle; + margin: 0 auto; + text-align: left; + z-index: 1045; } + +.mfp-inline-holder .mfp-content, +.mfp-ajax-holder .mfp-content { + width: 100%; + cursor: auto; } + +.mfp-ajax-cur { + cursor: progress; } + +.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close { + cursor: -moz-zoom-out; + cursor: -webkit-zoom-out; + cursor: zoom-out; } + +.mfp-zoom { + cursor: pointer; + cursor: -webkit-zoom-in; + cursor: -moz-zoom-in; + cursor: zoom-in; } + +.mfp-auto-cursor .mfp-content { + cursor: auto; } + +.mfp-close, +.mfp-arrow, +.mfp-preloader, +.mfp-counter { + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; } + +.mfp-loading.mfp-figure { + display: none; } + +.mfp-hide { + display: none !important; } + +.mfp-preloader { + color: #CCC; + position: absolute; + top: 50%; + width: auto; + text-align: center; + margin-top: -0.8em; + left: 8px; + right: 8px; + z-index: 1044; } + .mfp-preloader a { + color: #CCC; } + .mfp-preloader a:hover { + color: #FFF; } + +.mfp-s-ready .mfp-preloader { + display: none; } + +.mfp-s-error .mfp-content { + display: none; } + +button.mfp-close, +button.mfp-arrow { + overflow: visible; + cursor: pointer; + background: transparent; + border: 0; + -webkit-appearance: none; + display: block; + outline: none; + padding: 0; + z-index: 1046; + box-shadow: none; + touch-action: manipulation; } + +button::-moz-focus-inner { + padding: 0; + border: 0; } + +.mfp-close { + width: 44px; + height: 44px; + line-height: 44px; + position: absolute; + right: 0; + top: 0; + text-decoration: none; + text-align: center; + opacity: 0.65; + padding: 0 0 18px 10px; + color: #FFF; + font-style: normal; + font-size: 28px; + font-family: Arial, Baskerville, monospace; } + .mfp-close:hover, + .mfp-close:focus { + opacity: 1; } + .mfp-close:active { + top: 1px; } + +.mfp-close-btn-in .mfp-close { + color: #333; } + +.mfp-image-holder .mfp-close, +.mfp-iframe-holder .mfp-close { + color: #FFF; + right: -6px; + text-align: right; + padding-right: 6px; + width: 100%; } + +.mfp-counter { + position: absolute; + top: 0; + right: 0; + color: #CCC; + font-size: 12px; + line-height: 18px; + white-space: nowrap; } + +.mfp-arrow { + position: absolute; + opacity: 0.65; + margin: 0; + top: 50%; + margin-top: -55px; + padding: 0; + width: 90px; + height: 110px; + -webkit-tap-highlight-color: transparent; } + .mfp-arrow:active { + margin-top: -54px; } + .mfp-arrow:hover, + .mfp-arrow:focus { + opacity: 1; } + .mfp-arrow:before, + .mfp-arrow:after { + content: ''; + display: block; + width: 0; + height: 0; + position: absolute; + left: 0; + top: 0; + margin-top: 35px; + margin-left: 35px; + border: medium inset transparent; } + .mfp-arrow:after { + border-top-width: 13px; + border-bottom-width: 13px; + top: 8px; } + .mfp-arrow:before { + border-top-width: 21px; + border-bottom-width: 21px; + opacity: 0.7; } + +.mfp-arrow-left { + left: 0; } + .mfp-arrow-left:after { + border-right: 17px solid #FFF; + margin-left: 31px; } + .mfp-arrow-left:before { + margin-left: 25px; + border-right: 27px solid #3F3F3F; } + +.mfp-arrow-right { + right: 0; } + .mfp-arrow-right:after { + border-left: 17px solid #FFF; + margin-left: 39px; } + .mfp-arrow-right:before { + border-left: 27px solid #3F3F3F; } + +.mfp-iframe-holder { + padding-top: 40px; + padding-bottom: 40px; } + .mfp-iframe-holder .mfp-content { + line-height: 0; + width: 100%; + max-width: 900px; } + .mfp-iframe-holder .mfp-close { + top: -40px; } + +.mfp-iframe-scaler { + width: 100%; + height: 0; + overflow: hidden; + padding-top: 56.25%; } + .mfp-iframe-scaler iframe { + position: absolute; + display: block; + top: 0; + left: 0; + width: 100%; + height: 100%; + box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); + background: #000; } + +/* Main image in popup */ +img.mfp-img { + width: auto; + max-width: 100%; + height: auto; + display: block; + line-height: 0; + box-sizing: border-box; + padding: 40px 0 40px; + margin: 0 auto; } + +/* The shadow behind the image */ +.mfp-figure { + line-height: 0; } + .mfp-figure:after { + content: ''; + position: absolute; + left: 0; + top: 40px; + bottom: 40px; + display: block; + right: 0; + width: auto; + height: auto; + z-index: -1; + box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); + background: #444; } + .mfp-figure small { + color: #BDBDBD; + display: block; + font-size: 12px; + line-height: 14px; } + .mfp-figure figure { + margin: 0; } + +.mfp-bottom-bar { + margin-top: -36px; + position: absolute; + top: 100%; + left: 0; + width: 100%; + cursor: auto; } + +.mfp-title { + text-align: left; + line-height: 18px; + color: #F3F3F3; + word-wrap: break-word; + padding-right: 36px; } + +.mfp-image-holder .mfp-content { + max-width: 100%; } + +.mfp-gallery .mfp-image-holder .mfp-figure { + cursor: pointer; } + +@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) { + /** + * Remove all paddings around the image on small screen + */ + .mfp-img-mobile .mfp-image-holder { + padding-left: 0; + padding-right: 0; } + .mfp-img-mobile img.mfp-img { + padding: 0; } + .mfp-img-mobile .mfp-figure:after { + top: 0; + bottom: 0; } + .mfp-img-mobile .mfp-figure small { + display: inline; + margin-left: 5px; } + .mfp-img-mobile .mfp-bottom-bar { + background: rgba(0, 0, 0, 0.6); + bottom: 0; + margin: 0; + top: auto; + padding: 3px 5px; + position: fixed; + box-sizing: border-box; } + .mfp-img-mobile .mfp-bottom-bar:empty { + padding: 0; } + .mfp-img-mobile .mfp-counter { + right: 5px; + top: 3px; } + .mfp-img-mobile .mfp-close { + top: 0; + right: 0; + width: 35px; + height: 35px; + line-height: 35px; + background: rgba(0, 0, 0, 0.6); + position: fixed; + text-align: center; + padding: 0; } } + +@media all and (max-width: 900px) { + .mfp-arrow { + -webkit-transform: scale(0.75); + transform: scale(0.75); } + .mfp-arrow-left { + -webkit-transform-origin: 0; + transform-origin: 0; } + .mfp-arrow-right { + -webkit-transform-origin: 100%; + transform-origin: 100%; } + .mfp-container { + padding-left: 6px; + padding-right: 6px; } } diff --git a/DepartureBoardWeb/ClientApp/src/assets/css/responsive.css b/DepartureBoardWeb/ClientApp/src/assets/css/responsive.css new file mode 100644 index 00000000..bc7d30c0 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/css/responsive.css @@ -0,0 +1,1150 @@ +/* + +Template: Sofbox - Angular 8 Software landing page +Author: iqonic.design +Version: 1.0 +Design and Developed by: iqonic.design + +NOTE: This file contains the styling for responsive Template. + +*/ + + +/***************** +================================================ + ( Media Queries ) +================================================ + *******************/ + +@media(min-width:1601px) { + .get-feature img { + width: 74%; + } + .iq-pricing .price-title:after { + bottom: -2px; + } +} + +@media(max-width:1399px) { + .iq-banner .banner-text h1 { + font-size: 56px; + } + .counter-info-img img { + width: 100%; + margin-top: 0; + } + .counter-info .waves-box { + left: 44%; + } + .iq-objects .iq-objects-04, + .iq-objects-software .iq-objects-03 { + border: 48px solid #4ac4f3; + height: 500px; + width: 500px; + } + #software-features { + margin-top: 0; + /*padding: 80px 0px;*/ + } + .iq-objects-software .iq-objects-02 { + bottom: 13%; + } + .iq-software-demo { + top: 80px; + } + .get-feature img { + width: 100%; + margin-top: -86px; + margin-left: 0; + } + .iq-breadcrumb .banner-img { + max-width: 120%; + } +} + +@media(max-width:1365px) { + .iq-banner .banner-text h1 { + font-size: 50px; + } + .owl-carousel .owl-nav .owl-prev { + left: -4%; + } + .owl-carousel .owl-nav .owl-next { + right: -4%; + } + .counter-info-img img { + width: 111%; + margin-top: 10px; + } + .counter-info .waves-box { + top: 41%; + left: 50%; + } + .soft-about .box-img3 { + right: 500px; + } + .iq-works-img { + width: 110%; + } + .animation-shap .shap-bg, + .animationnew-shap .shap-bg { + width: 400px; + height: 400px; + } + .iq-breadcrumb .banner-img { + max-width: 110%; + } +} + +@media(max-width:1199px) { + /*---------------- + Section padding + ----------------*/ + .overview-block-ptb { + padding: 80px 0; + } + .overview-block-pt { + padding: 80px 0 0; + } + .overview-block-pb { + padding: 0 0 80px; + } + .overview-block-pb.how-works { + padding: 80px 0; + } + header .navbar .navbar-nav>li { + margin: 0 20px 0 0; + } + header .container-fluid, + .iq-banner .container-fluid, + .iq-banner-04 .container-fluid { + padding: 0px 45px; + } + .iq-banner .banner-text h1 { + font-size: 44px; + } + .iq-banner .banner-text p.iq-mb-40 { + margin-bottom: 20px; + } + .iq-banner .banner-text { + margin-bottom: 40px; + } + .iq-banner .banner-img { + width: 116%; + } + .iq-banner .banner-text .banner-phone { + right: -30px; + } + .iq-objects .iq-objects-01 { + opacity: 0.2; + } + .iq-works-img { + width: 100%; + } + .counter-info-img img { + margin-top: 0; + width: 100%; + } + .iq-banner .banner-img { + width: 100%; + } + .owl-carousel .owl-nav .owl-prev { + left: 0%; + } + .owl-carousel .owl-nav .owl-next { + right: 0%; + } + .slider-container .slider-content { + width: 85%; + height: 85%; + } + .slider-container .slider-left { + right: 100%; + } + .slider-container .slider-right { + left: 100%; + } + .iq-software-demo { + top: 23%; + } + .iq-objects .iq-objects-04, + .iq-objects-software .iq-objects-03 { + border: 48px solid #4ac4f3; + height: 400px; + width: 400px; + } + .iq-objects .iq-objects-04 { + top: 13%; + } + .iq-objects-software .iq-objects-03 { + top: 15%; + } + .iq-amazing-tab .nav.nav-tabs li a { + padding: 20px; + } + .iq-objects-software .iq-objects-01 { + top: 16%; + } + .counter i { + margin-right: 15px; + } + .counter-info .waves-box { + top: 29%; + left: 43%; + } + .iq-newsletter .form-group { + width: 67%; + } + .info-share li { + margin: 0px 2px; + } + .container { + max-width: 94%; + } + .counter label { + font-size: 16px; + } + .counter span { + font-size: 36px; + } + .iq-footer-box .iq-icon i { + margin-right: 9px; + } + .iq-blog-meta ul li { + font-size: 15px; + } + .iq-banner-04 .banner-text h1 { + font-size: 46px; + } + .iq-banner-04 .banner-text p.iq-mb-40 { + margin-bottom: 20px; + } + .Product-works { + padding-bottom: 80px; + } + .iq-software-demo { + height: 75%; + top: 26%; + } + .iq-more-info .row.iq-mt-30 { + margin: 30px 0; + } + .our-pricing-1 { + padding-top: 80px; + } + .iq-feature-01 .overview-block-ptb { + padding-top: 0; + } + .our-pricing { + padding-top: 0; + } + .life-work .iq-software-demo-1 { + top: 150px; + } + .life-work-1 h2 { + margin-top: 0; + } + .iq-tool-feature { + margin-top: -45px; + } + .soft-about .box-img1 { + right: 120px; + } + .soft-about .box-img6 { + right: 120px; + } + .soft-about .box-img3 { + right: 350px; + } + .soft-about .box-img4 { + right: 500px; + top: 60px; + } + .soft-about .box-img5 { + top: -40px; + } + .box-mail img { + width: 100%; + margin-top: -112px; + } + .get-feature .iq-text-right { + padding-right: 0; + } + .get-feature img { + width: 100%; + margin-top: 0; + margin-left: 0; + } + .iq-tab .nav-item a { + font-size: 14px; + } + .animation-shap .shap-bg, + .animationnew-shap .shap-bg { + width: 300px; + height: 300px; + } + .how-works { + padding: 80px 0; + } + .overview-block-pb.how-works .container-fluid h2 { + font-size: 30px; + line-height: 30px; + } + .text-left.align-self-center h3 { + font-size: 28px; + line-height: 40px; + } + .no-gutters .iq-shadow i { + font-size: 30px; + } + .iq-objectsnew .iq-objects-04 { + border: 40px solid #4ac4f3; + width: 400px; + height: 400px; + top: 9%; + } + .iq-objects-softwarenew .iq-objects-03 { + border: 40px solid #4ac4f3; + width: 400px; + height: 400px; + } + .iq-rmt-80 { + margin-top: 80px; + } + h5 { + font-size: 20px; + } + .iq-fancy-box { + padding: 14px; + } + .iq-fancy-boxnew { + padding: 28px; + } + h3 { + font-size: 30px; + } + +} + +@media(max-width:992px) { + h2 { + font-size: 40px; + line-height: 40px; + } + header { + padding: 10px 0; + } + .container { + max-width: 74%; + } + .navbar-light .navbar-toggler { + border: 1px solid #fff; + background: #fff; + } + .iq-banner-03 .banner-text h1 { + font-size: 35px; + } + .iq-banner-03 { + padding-bottom: 30px; + } + .iq-banner-03 .banner-text p { + margin-bottom: 15px; + } + .iq-banner .banner-img { + margin-top: 30px; + } + .r-mt-30 { + margin-top: 30px; + } + .r-mt-40 { + margin-top: 40px; + } + .iq-banner-02 .banner-text h1 { + font-size: 54px; + } + .iq-works-box.no-shadow { + padding: 15px 20px; + } + .iq-banner-02 .banner-text p { + margin: 0 0 20px 0; + padding: 0; + } + .navbar-light .navbar-toggler span { + color: #4ac4f3; + } + .navbar-toggler { + padding: 0px 10px; + font-size: 38px + } + .navbar-toggler:focus, + .navbar-toggler:hover { + outline: none; + } + header .navbar .navbar-nav .nav-item a::before { + display: none; + } + header .navbar .navbar-collapse { + background: #fff; + margin-top: 10px; + } + header .navbar .navbar-nav>li { + margin: 0; + } + header .navbar .navbar-nav .nav-item a { + padding: 10px 15px !important; + color: #333; + } + header#main-header .navbar .menu>li { + padding: 0px !important; + margin-right: 0px; + } + header .navbar .navbar-nav .nav-item a:hover, + header .navbar .navbar-nav .nav-item a:focus, + header .navbar .navbar-nav .nav-item a.active, + header .navbar .navbar-nav .nav-item a.active:focus, + header .navbar .navbar-nav .nav-item a.active:hover { + color: #4ac4f3; + } + header .button, + header .button-line { + display: none; + } + #main-header li i { + float: none !important; + margin-top: 0; + } + .iq-objects .iq-objects-01 { + opacity: 1; + } + .iq-objects .iq-objects-02 { + top: 40%; + } + .life-work-1 img { + width: 100%; + } + .iq-objects .iq-objects-03 { + top: 67%; + } + .iq-objects .iq-objects-04 { + top: 48%; + right: 0; + } + /*.how-works { + padding-top: 0px; + }*/ + .iq-banner .iq-waves .waves { + width: 10rem; + height: 10rem; + } + .iq-banner .iq-waves { + left: -50px; + top: -50px; + } + .iq-software-demo { + width: 100%; + top: 0; + position: inherit; + text-align: center; + } + .iq-objects-software .iq-objects-02 { + bottom: 45%; + } + .iq-objects-software .iq-objects-03 { + top: 2%; + left: 50%; + } + .screenshots-slider { + min-height: 400px; + } + .slider-container .slider-content { + width: 66%; + height: 66%; + } + .iq-amazing-tab .nav.nav-tabs li { + width: 32%; + } + .counter-info .waves-box { + top: 40%; + left: 47%; + } + /*.counter-info-img img { margin-bottom: -87px; }*/ + .iq-objects-asked .iq-objects-02 { + left: 73%; + } + .iq-newsletter .form-group { + width: 75%; + } + .iq-asked { + overflow: hidden; + } + .heading-title p { + padding: 0; + } + .heading-title { + margin-bottom: 40px; + } + .iq-banner-03 .banner-img { + width: 100%; + } + .iq-banner-03 .waves-box { + position: absolute; + top: 23%; + left: 32%; + } + .iq-banner-04 .banner-text { + margin-top: 8%; + } + .iq-footer .footer-top { + padding-bottom: 40px; + } + .Product-works { + padding: 80px 0; + } + .iq-feature.stap-left:before { + display: none; + } + .iq-feature.stap-right:before, + .iq-banner-06 .banner-objects, + .iq-banner-02.no-before .banner-objects { + display: none; + } + .iq-pricing-5:hover, + .iq-pricing-5.active { + margin: 0 5px; + } + .iq-testimonial2 .feedback { + padding: 0; + } + .iq-asked-1 .iq-accordion { + margin: 0; + } + .iq-counter-box-1 .heading-title p { + padding: 0; + } + .life-work .iq-software-demo-1 { + width: 100%; + margin-top: 100px; + position: inherit; + text-align: center; + } + .life-work-1 h2 { + margin-top: 50px; + } + .iq-tool-feature { + margin-top: 10px; + } + .iq-tool-feature h2 { + margin-top: 0; + } + .iq-tool-feature { + padding-bottom: 300px; + } + .soft-about .box-img1 { + top: 150px; + right: 300px; + } + .soft-about .box-img6 { + top: 150px; + right: 300px; + } + .soft-about .box-img4 { + right: 700px; + top: 230px; + } + .soft-about .box-img3 { + left: 0; + } + .about-me p { + text-align: center; + } + .iq-banner-02.style-1 .banner-objects .banner-objects-01 img, + .iq-banner-02.style-1 .banner-objects .banner-objects-04 img { + width: 75%; + } + .iq-banner-02.style-1 .banner-objects .banner-objects-02 { + width: 250px; + height: 250px; + left: 0; + } + .box-mail img { + display: none + } + .get-feature img { + margin-bottom: 0; + } + .bg-full-features .container-fluid.no-padding { + padding: 0 15px !important; + } + .bg-full-features .d-inline-block.w-100.h-100.iq-parallax { + display: none !important; + } + .iq-tab.horizontal .nav-item a { + padding: 10px 6px; + } + .iq-banner-08 .banner-img { + width: 100%; + margin-top: 30px; + } + .pattern-dot .iq-about, + .iq-counter-box.pattern-dot .iq-about img { + margin-bottom: 0; + } + .iq-r-mb-15 { + margin-bottom: 15px; + } + .iq-tab.horizontal .nav-item { + width: 24%; + } + .align-self-center h3 { + font-size: 27px; + line-height: 36px; + } + .banner-text .justify-content-between .align-self-center h1 { + font-size: 36px; + } + .banner-text .justify-content-between .align-self-center h5 { + font-size: 18px; + } + .iq-banner .banner-text .watch-img { + right: 82%; + } + .iq-breadcrumb .banner-ani { + width: 30% + } + header.new-header .navbar .navbar-nav .nav-item a { + padding: 10px 15px; + } + header.new-header .navbar .navbar-nav .nav-item a.active { + color: #4ac4f3; + } + header#main-header .navbar .menu li .sub-menu { + position: relative; + top: 0 !important; + width: 100%; + box-shadow: none; + } + .iq-newsletter { + padding: 80px 0; + } + .iq-team { + margin-bottom: 30px; + } + .iq-client { + padding: 31px; + } + .iq-objects-softwarenew .iq-objects-02 { + bottom: 32%; + } + .iq-badge { + margin-top: 30px; + } + .iq-asked .center-block { + margin-bottom: 30px; + } + .iq-fancy-box { + padding: 30px; + } + .service-box { + margin-top: 15px; + } +} + +@media(max-width:979px) { + .container { + max-width: 94%; + } + .iq-objects-software .iq-objects-03 { + left: 46%; + } + .slider-container .slider-left { + right: 87%; + } + .slider-container .slider-right { + left: 87%; + } + .iq-banner-04 .banner-img { + margin-top: 30px; + } + .iq-banner-06 .banner-text p { + margin: 0; + padding: 0; + } + .soft-about .box-img1 { + top: 160px; + right: 200px; + } + .soft-about .box-img6 { + top: 160px; + right: 200px; + } + .soft-about .box-img4 { + top: 270px; + right: 600px; + } + .soft-about .box-img3 { + top: -100px; + left: -30px; + } + .about-me img { + width: 40%; + } + .iq-banner-02.style-1 .banner-objects .banner-objects-02 { + display: none; + } + .iq-tab.horizontal .nav-item { + width: 26%; + } + .iq-r-mb-15 { + margin-bottom: 15px; + } + .iq-objects-softwarenew .iq-objects-02 { + display: none; + } + .iq-breadcrumb .banner-img { + max-width: 100%; + } + .iq-breadcrumb .banner-ani { + width: 24%; + right: 14%; + } + .iq-objects-software .iq-objects-02 { + bottom: 45%; + } + .iq-objects-asked .iq-objects-01 { + display: none; + } + .iq-objects-asked .iq-objects-03 { + left: 3%; + } + .button { + padding: 10px 36px; + } + .iq-banner-12 .banner-text .banner-phone { + left: -24px; + } +} + +@media(max-width:767px) { + /*---------------- + Section padding + ----------------*/ + .overview-block-ptb { + padding: 50px 0; + } + .overview-block-pt { + padding: 50px 0 0; + } + .overview-block-pb { + padding: 0 0 50px; + } + h2 { + font-size: 34px; + line-height: 40px; + } + h3 { + font-size: 30px; + } + .iq-box-shadow { + padding: 60px 20px 0; + margin-top: 0; + } + .container { + max-width: 100%; + } + .heading-title { + margin-bottom: 40px; + } + .iq-banner .banner-text h1 { + font-size: 38px; + } + .iq-objects .iq-objects-01 { + opacity: 0.2; + } + header .container-fluid, + .iq-banner .container-fluid, + .iq-banner-04 .container-fluid { + padding: 0px 15px; + } + .iq-banner-04 .banner-text { + margin-top: 13%; + } + .iq-more-info .row.iq-mt-30 .col-sm-4 { + margin: 15px 0; + } + .iq-objects .iq-objects-04, + .iq-objects-software .iq-objects-03 { + border: 30px solid #4ac4f3; + height: 280px; + width: 280px; + } + .iq-objects-software .iq-objects-03 { + left: 39%; + } + .slider-container .slider-content { + width: 40%; + height: 40%; + } + .screenshots-slider { + min-height: 250px; + } + .iq-banner-03 .banner-img { + margin-top: 20px; + } + .iq-banner-03 .banner-text h1 { + font-size: 30px; + } + .r4-mt-30 { + margin-top: 30px; + } + .r4-mt-40 { + margin-top: 40px; + } + .slider-container .slider-left { + right: 74%; + } + .slider-container .slider-right { + left: 74%; + } + .iq-amazing-tab .nav.nav-tabs li a span { + display: none; + } + #compare-services .row .col-sm-2.align-self-center h2 { + margin: 20px 0 30px; + } + .iq-newsletter .form-group { + width: 100%; + } + .iq-newsletter .form-inline { + display: inline-block; + width: 100%; + text-align: center; + } + .iq-newsletter .form-inline .button { + margin-left: 0; + } + .footer-info .map { + height: 350px; + position: inherit; + } + .info-share { + margin: 0px 0 0; + text-align: left !important; + } + .counter-info .waves-box { + top: 46%; + left: 43%; + } + .iq-banner-02 .banner-text h1 { + font-size: 44px; + } + .accordion-details .col-sm-3 img { + width: 100%; + } + .iq-amazing-tab .nav-tabs li a i { + margin-right: 0; + } + .iq-banner-02 .banner-img { + margin-bottom: -20px; + } + .iq-banner-03.overview-block-pt { + padding-top: 80px; + } + .Product-works { + padding: 50px 0; + } + .iq-footer .info-share { + margin: 0; + } + .iq-banner-05 p { + margin: 0; + } + .soft-about, + .iq-banner-02.style-1 .banner-objects { + display: none; + } + .iq-tool-feature { + padding-bottom: 50px; + } + .footer { + text-align: center; + } + .info-share { + text-align: left; + margin-bottom: 0px; + } + .iq-banner-02 .banner-video { + width: 400px; + height: 230px; + } + .iq-banner-02.style-1 .button-blue-shadow.iq-mr-30 { + margin-right: 0; + } + .iq-banner-02.style-1 .banner-img { + margin-top: 40px; + } + .iq-footer3 .col-lg-3.col-md-6.col-sm-6.iq-mtb-20 { + margin: 10px 0; + } + .iq-footer3 .link, + .iq-footer3 .iq-copyright { + display: inline-block; + text-align: center; + width: 100%; + } + .iq-banner-08 p.iq-mb-40 { + margin-bottom: 0; + } + .dummy-from .rounded.iq-mall-20 { + margin: 0; + padding: 20px; + } + .iq-banner.wave-one .banner-text { + margin-top: 15%; + } + .iq-banner-11 .container-fluid { + padding: 20px; + } + .iq-banner-11 .banner-text h1 { + font-size: 40px; + } + .iq-banner-09 .form-group { + width: 100%; + } + .iq-banner-09 .form-inline .button { + margin-left: 0; + } + .iq-newsletter .form-group { + margin-bottom: 20px; + } + .iq-tab.horizontal .nav-item { + width: 43%; + } + .animation-shap .shap-bg, + .animationnew-shap .shap-bg { + width: 250px; + height: 250px; + } + .iq-objectsnew .iq-objects-04 { + border: 20px solid #4ac4f3; + width: 300px; + height: 300px; + right: 10%; + top: 0; + } + .iq-objects-softwarenew .iq-objects-03 { + border: 20px solid #4ac4f3; + width: 300px; + height: 300px; + } + .iq-banner-12 .banner-text { + z-index: 9; + position: relative; + margin-top: 30%; + margin-bottom: 3%; + } + .iq-banner-12 .banner-text .banner-phone { + width: 30%; + left: -9px; + bottom: -20px; + } + .iq-banner-12 .banner-objects .banner-objects-02 { + display: none; + } + .iq-banner-12 .banner-objects .banner-objects-01 { + display: none; + } + .iq-banner .banner-text .banner-phone { + right: 0px; + bottom: -37px; + } + .iq-banner .banner-text .watch-img { + right: 79%; + } + .iq-banner-13 .banner-text { + margin-top: 13%; + } + .iq-tw-9 { + font-weight: 700; + } + .iq-pricing .price-title:after { + bottom: -1px; + } + .owl-carousel .owl-nav button i { + display: none; + } + .iq-footerr .iq-copyright { + margin-left: 0; + margin-top: 15px; + } + .iq-banner-12 .banner-img { + margin-top: 30px; + } + .iq-objects-software .iq-objects-02 { + bottom: 58%; + } + .iq-objects-asked .iq-objects-03 { + top: 26%; + height: 300px; + width: 300px; + } +} + +@media(max-width:479px) { + .iq-banner .banner-text h1, + .iq-banner-07 .banner-text h1, + .iq-banner-08 .banner-text h1 { + font-size: 28px; + line-height: normal; + } + .iq-banner .banner-text { + margin-top: 50px; + } + .iq-banner .banner-img, + .iq-works-img { + margin-top: 20px; + } + .iq-objects-software .iq-objects-03 { + left: 0; + } + .slider-container .slider-content { + width: 26%; + height: 26%; + } + .iq-objects, + .iq-objects-asked { + display: none; + } + .slider-container .slider-left { + right: 63%; + } + .iq-banner-02 .banner-text h1 { + font-size: 36px; + } + .slider-container .slider-right { + left: 63%; + } + .screenshots-slider { + min-height: 180px; + } + .iq-banner-04 .banner-text h1 { + font-size: 34px; + } + .counter-info .waves-box { + top: 22%; + left: 39%; + } + .iq-banner-05 .banner-text h1 { + font-size: 35px; + } + .iq-banner-05 p { + padding: 50px 0 20px 0; + } + .iq-counter-box .iq-about img { + margin-bottom: 150px; + } + .info-share { + text-align: left; + margin-bottom: 0; + } + .iq-banner-02 .banner-video { + width: 290px; + height: 170px; + } + .button.iq-mr-20, + .button-blue-shadow.iq-mr-20 { + margin-right: 10px; + } + .rbtn { + padding: 10px 24px; + font-size: 14px; + } + .iq-tab.horizontal .nav-item a { + padding: 8px 4px; + font-size: 12px; + } + .iq-tab.horizontal .nav-item { + width: 50%; + } + .iq-objectsnew .iq-objects-04 { + border: 20px solid #4ac4f3; + width: 200px; + height: 200px; + right: 10%; + top: 0; + } + .iq-objects-softwarenew .iq-objects-03 { + border: 20px solid #4ac4f3; + width: 200px; + height: 200px; + } + .iq-objectsnew .iq-objects-02 { + display: none; + } + .iq-objectsnew .iq-objects-03 { + display: none; + } + .iq-objects-softwarenew .iq-objects-01 { + display: none; + } + .iq-objects-softwarenew .iq-objects-02 { + display: none; + } + .pr-3 { + padding-right: 10px !important; + } + .iq-rpr-10 { + padding-right: 10px; + } + .animation-shap .shap-bg, + .animationnew-shap .shap-bg { + height: 175px; + width: 175px; + } + .iq-r-mb-15 { + margin-bottom: 15px; + } + h2, + h3 { + font-size: 28px; + } + .heading-title .title { + margin-bottom: 15px; + } + .iq-banner-12 .banner-img { + width: 130%; + } + .banner-text .justify-content-between .align-self-center h1 { + font-size: 30px; + line-height: 40px; + } + .iq-footerr .iq-copyright.iq-ml-10 { + margin-top: 10px; + font-size: 12px; + } + #main-header li i { + float: none; + } + .iq-get-in .google-recaptcha iframe { + width: 230px !important; + overflow: hidden; + } + .google-recaptcha iframe .rc-anchor-normal { + width: 225px; + } + .google-recaptcha iframe .rc-anchor-normal .rc-anchor-content { + width: 135px; + } + .google-recaptcha iframe .rc-anchor-normal .rc-anchor-checkbox-label { + width: 100px; + } + .iq-shadow i { + padding: 15px; + } + .form-group { + width: 100%; + } + .iq-objects-software .iq-objects-01, + .iq-objects-software .iq-objects-02 { + display: none; + } +} diff --git a/DepartureBoardWeb/ClientApp/src/assets/css/style-customizer.css b/DepartureBoardWeb/ClientApp/src/assets/css/style-customizer.css new file mode 100644 index 00000000..339f587b --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/css/style-customizer.css @@ -0,0 +1,211 @@ +/* + + +Template: Sofbox - Angular 8 Software landing page +Author: iqonic.design +Version: 1.0 +Design and Developed by: iqonic.design + +NOTE: This is main stylesheet of template, This file contains the styling for the actual Template. Please do not change anything here! write in a custom.css file if required! + +*/ + + +/*Color Skins*/ + +.iq-customizer .color-1 { + background: #4ac4f3; +} + +.iq-customizer .color-2 { + background: #8c79f7; +} + +.iq-customizer .color-3 { + background: #3b90fd; +} + +.iq-customizer .color-4 { + background: #f46d4f; +} + +.iq-customizer .color-5 { + background: #01dabb; +} + +.iq-customizer .color-6 { + background: #7570ff; +} + +.iq-customizer .color-7 { + background: #4a2fb4; +} + +.iq-customizer .color-8 { + background: #80c02b; +} + +.iq-customizer .color-9 { + background: #04cae7; +} + +.iq-customizer .color-10 { + background: #7fc129; +} + +.iq-customizer .color-11 { + background: #ff5033; +} + +.iq-customizer .color-12 { + background: #f8a4d8; +} + +.iq-customizer .color-13 { + background: #1edae6; +} + +.iq-customizer .color-14 { + background: #1ad993; +} + +.iq-customizer { + background-color: #fff; + color: #666; + z-index: 10000; + right: -300px; + width: 300px; + height: 385px; + position: fixed; + top: 200px; + box-shadow: -3px 0 50px -2px rgba(0, 0, 0, 0.14); + bottom: 0; +} + +.iq-customizer.closed { + box-shadow: none; +} + +.iq-customizer .content-chooser { + padding: 15px 30px 30px; + position: absolute; + background-color: #ffffff; + border-top: none; +} + +.iq-customizer.opened .content-chooser { + opacity: 1; +} + +.iq-customizer h3 { + font-size: 21px; + margin-top: 0px; + font-weight: 600; +} + +.iq-customizer a.opener { + display: block; + height: 45px; + background: #fff; + width: 45px; + font-size: 24px; + line-height: 45px; + color: #000; + position: absolute; + right: 300px; + top: 90px; + text-align: center; + text-decoration: none; + -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1); + -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1); + box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1); +} + +.iq-customizer.opened a.opener { + left: -45px; + border-color: transparent; +} + +.iq-customizer ul { + list-style: none; + margin: 0; + padding: 5px 0 0 0; + font-size: 0; +} + +.iq-customizer ul li { + width: 52px; + height: 38px; + float: left; + position: relative; + display: inline-block; + cursor: pointer; + margin: 0 10px 8px 0; + -webkit-transition: all linear 0.5s; + -moz-transition: all linear 0.5s; + -o-transition: all linear 0.5s; + -ms-transition: all linear 0.5s; + transition: all linear 0.5s; +} + +.iq-customizer ul li.selected:before { + color: #fff; + content: "\f00c"; + font-size: 16px; + display: inline-block; + position: absolute; + top: 16%; + left: 50%; + text-align: center; + font-family: "Font Awesome 5 Free"; + font-weight: 900; + transform: translateY(-50%); + -webkit-transform: translateY(-50%); + -o-transform: translateY(-50%); + -ms-transform: translateY(-50%); + -moz-transform: translateY(-50%); + transform: translateX(-50%); + -webkit-transform: translateX(-50%); + -o-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -moz-transform: translateX(-50%); +} + +.iq-customizer ul.resetAll li { + width: 100%; + padding: 6px 0; + min-width: 0; + text-align: center; + margin-top: 30px; +} + +.iq-customizer select { + width: 100%; + padding: 5px; + border: 1px solid #b2bfca; +} + +.iq-customizer .button { + width: 100%; + text-align: center; + margin-top: 10px; + text-transform: capitalize; +} + +.iq-customizer ul li:nth-child(4) { + margin-right: 0px; +} + +.iq-customizer ul li:nth-child(8) { + margin-right: 0px; +} + +.iq-customizer ul li:nth-child(12) { + margin-right: 0px; +} + +@media(max-width:1023px) { + .iq-customizer { + display: none !important; + } +} \ No newline at end of file diff --git a/DepartureBoardWeb/ClientApp/src/assets/css/style.css b/DepartureBoardWeb/ClientApp/src/assets/css/style.css new file mode 100644 index 00000000..26e06b78 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/css/style.css @@ -0,0 +1,9373 @@ +/* + +Template: Sofbox - Angular 8 Software landing page +Author: iqonic.design +Version: 3.0 +Design and Developed by: iqonic.design + +*/ + + +/*================================================ +[ Table of contents ] +================================================ + +:: General +:: Back to Top +:: Loader +:: Buttons +:: Page Section Margin Padding +:: Text Weight +:: Text Color +:: Font Size +:: Background Color +:: BG Effect +:: Background Gradient +:: Section Title +:: Header +:: Banner +:: How it Works +:: Who is Sofbox ? +:: Software Features +:: Great screenshots +:: Special Features +:: More Useful Infomation +:: Sofbox Specialities +:: Counter +:: Loved By Our Customers +:: Affordable Price +:: Meet the Team +:: Compare Services +:: Frequently Asked Questions +:: Latest Blog Post +:: Our clients +:: Subscribe Our Newsletter +:: Get in Touch +:: Footer Info +:: Breadcrumb Inner Page +:: Blog Page +:: Blog - SideBar +:: 404 Error +:: Coming Soon +:: jarallax +:: TERMS OF SERVICE +:: OWL Carousel +:: Testimonial +:: Pricing Table +:: Feature +:: Extra + +====================================== +[ End table content ] +======================================*/ + + +/*--------------------------------------------------------------------- + General +-----------------------------------------------------------------------*/ + +*::-moz-selection { + background: #4ac4f3; + color: #fff; + text-shadow: none; +} + +::-moz-selection { + background: #4ac4f3; + color: #fff; + text-shadow: none; +} + +::selection { + background: #4ac4f3; + color: #fff; + text-shadow: none; +} + +body { + font-family: 'Open Sans', sans-serif; + font-weight: normal; + font-style: normal; + font-size: 16px; + line-height: 2; + color: #666666; + overflow-x: hidden; +} + +a, +.button { + transition: all 0.5s ease-in-out; + transition: all 0.5s ease-in-out; + -moz-transition: all 0.5s ease-in-out; + -ms-transition: all 0.5s ease-in-out; + -o-transition: all 0.5s ease-in-out; + -webkit-transition: all 0.5s ease-in-out; + color: #333333; +} + +a:focus { + text-decoration: none !important; +} + +a:focus, +a:hover { + color: #4ac4f3; + text-decoration: none !important; +} + +a, +.button, +input { + outline: medium none !important; + color: #4ac4f3; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + font-family: 'Raleway', sans-serif; + font-weight: normal; + color: #333333; + margin-top: 0px; + margin-bottom: 0px; + line-height: 1.2; +} + +h1 a, +h2 a, +h3 a, +h4 a, +h5 a, +h6 a { + color: inherit; +} + +h1 { + font-size: 52px; + font-style: normal; + +} + +h2 { + font-size: 40px; + font-style: normal; +} + +h3 { + font-size: 36px; + font-style: normal; +} + +h4 { + font-size: 24px; + font-style: normal; +} + +h5 { + font-size: 20px; + font-style: normal; +} + +h6 { + font-size: 18px; + font-style: normal; +} + +.lead { + font-size: 16px; + margin: 0; +} + +ul { + margin: 0px; + padding: 0px; +} + +li { + list-style: none; +} + +hr { + margin: 0; + padding: 0px; + border-bottom: 1px solid #e0e0e0; + border-top: 0px; +} + +label { + font-size: 15px; + font-weight: 400; + color: #aaaaaa; +} + +.label { + color: #fff !important; + font-size: 9px !important; +} + +.blockquote, +blockquote { + border-left: 5px solid #4ac4f3; + font-size: 16px; +} + +.no-padding { + padding: 0px !important; +} + +.no-border { + border: none !important; +} + +.container { + max-width: 1170px; +} + + +/*--------------------------------------------------------------------- + Back to Top +-----------------------------------------------------------------------*/ + +#back-to-top .top { + z-index: 999; + position: fixed; + margin: 0px; + color: #fff; + background: #333333; + position: fixed; + bottom: 25px; + right: 25px; + z-index: 999; + font-size: 26px; + width: 50px; + height: 50px; + text-align: center; + line-height: 50px; + border-radius: 90px; + -webkit-transition: all .3s ease-in-out; + -moz-transition: all .3s ease-in-out; + transition: all .3s ease-in-out; +} + +#back-to-top .top:hover { + background: #4ac4f3; + color: #fff; + -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1); + -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1); + box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1); +} + + +/*--------------------------------------------------------------------- + Loader +-----------------------------------------------------------------------*/ + +#loading { + background-color: #eee; + height: 100%; + width: 100%; + position: fixed; + margin-top: 0px; + top: 0px; + left: 0px; + bottom: 0px; + overflow: hidden !important; + right: 0px; + z-index: 999999; +} + +#loading-center { + width: 100%; + height: 100%; + position: relative; +} + +.loader { + width: 3em; + height: 3em; + margin: auto; + left: 0; + right: 0; + top: 0; + bottom: 0; + position: absolute; +} + +@-webkit-keyframes rotate { + 0% { + -webkit-transform: rotateX(-37.5deg) rotateY(45deg); + transform: rotateX(-37.5deg) rotateY(45deg); + } + 50% { + -webkit-transform: rotateX(-37.5deg) rotateY(405deg); + transform: rotateX(-37.5deg) rotateY(405deg); + } + 100% { + -webkit-transform: rotateX(-37.5deg) rotateY(405deg); + transform: rotateX(-37.5deg) rotateY(405deg); + } +} + +@keyframes rotate { + 0% { + -webkit-transform: rotateX(-37.5deg) rotateY(45deg); + transform: rotateX(-37.5deg) rotateY(45deg); + } + 50% { + -webkit-transform: rotateX(-37.5deg) rotateY(405deg); + transform: rotateX(-37.5deg) rotateY(405deg); + } + 100% { + -webkit-transform: rotateX(-37.5deg) rotateY(405deg); + transform: rotateX(-37.5deg) rotateY(405deg); + } +} + +.cube, +.cube * { + position: absolute; + width: 71px; + height: 71px; + left: 0; + right: 0; + top: 0; + bottom: 0; +} + +.sides { + -webkit-animation: rotate 3s ease infinite; + animation: rotate 3s ease infinite; + -webkit-animation-delay: .8s; + animation-delay: .8s; + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; + -webkit-transform: rotateX(-37.5deg) rotateY(45deg); + transform: rotateX(-37.5deg) rotateY(45deg); +} + +.cube .sides * { + box-sizing: border-box; + background-color: rgba(74, 196, 243, 0.8); + border: 5px solid white; +} + +.cube .sides .top { + -webkit-animation: top-animation 3s ease infinite; + animation: top-animation 3s ease infinite; + -webkit-animation-delay: 0ms; + animation-delay: 0ms; + -webkit-transform: rotateX(90deg) translateZ(90px); + transform: rotateX(90deg) translateZ(90px); + -webkit-animation-fill-mode: forwards; + animation-fill-mode: forwards; + -webkit-transform-origin: 50% 50%; + transform-origin: 50% 50%; +} + +@-webkit-keyframes top-animation { + 0% { + opacity: 1; + -webkit-transform: rotateX(90deg) translateZ(90px); + transform: rotateX(90deg) translateZ(90px); + } + 20% { + opacity: 1; + -webkit-transform: rotateX(90deg) translateZ(35px); + transform: rotateX(90deg) translateZ(35px); + } + 70% { + opacity: 1; + -webkit-transform: rotateX(90deg) translateZ(35px); + transform: rotateX(90deg) translateZ(35px); + } + 90% { + opacity: 1; + -webkit-transform: rotateX(90deg) translateZ(90px); + transform: rotateX(90deg) translateZ(90px); + } + 100% { + opacity: 1; + -webkit-transform: rotateX(90deg) translateZ(90px); + transform: rotateX(90deg) translateZ(90px); + } +} + +@keyframes top-animation { + 0% { + opacity: 1; + -webkit-transform: rotateX(90deg) translateZ(90px); + transform: rotateX(90deg) translateZ(90px); + } + 20% { + opacity: 1; + -webkit-transform: rotateX(90deg) translateZ(35px); + transform: rotateX(90deg) translateZ(35px); + } + 70% { + opacity: 1; + -webkit-transform: rotateX(90deg) translateZ(35px); + transform: rotateX(90deg) translateZ(35px); + } + 90% { + opacity: 1; + -webkit-transform: rotateX(90deg) translateZ(90px); + transform: rotateX(90deg) translateZ(90px); + } + 100% { + opacity: 1; + -webkit-transform: rotateX(90deg) translateZ(90px); + transform: rotateX(90deg) translateZ(90px); + } +} + +.cube .sides .bottom { + -webkit-animation: bottom-animation 3s ease infinite; + animation: bottom-animation 3s ease infinite; + -webkit-animation-delay: 0ms; + animation-delay: 0ms; + -webkit-transform: rotateX(-90deg) translateZ(90px); + transform: rotateX(-90deg) translateZ(90px); + -webkit-animation-fill-mode: forwards; + animation-fill-mode: forwards; + -webkit-transform-origin: 50% 50%; + transform-origin: 50% 50%; +} + +@-webkit-keyframes bottom-animation { + 0% { + opacity: 1; + -webkit-transform: rotateX(-90deg) translateZ(90px); + transform: rotateX(-90deg) translateZ(90px); + } + 20% { + opacity: 1; + -webkit-transform: rotateX(-90deg) translateZ(35px); + transform: rotateX(-90deg) translateZ(35px); + } + 70% { + opacity: 1; + -webkit-transform: rotateX(-90deg) translateZ(35px); + transform: rotateX(-90deg) translateZ(35px); + } + 90% { + opacity: 1; + -webkit-transform: rotateX(-90deg) translateZ(90px); + transform: rotateX(-90deg) translateZ(90px); + } + 100% { + opacity: 1; + -webkit-transform: rotateX(-90deg) translateZ(90px); + transform: rotateX(-90deg) translateZ(90px); + } +} + +@keyframes bottom-animation { + 0% { + opacity: 1; + -webkit-transform: rotateX(-90deg) translateZ(90px); + transform: rotateX(-90deg) translateZ(90px); + } + 20% { + opacity: 1; + -webkit-transform: rotateX(-90deg) translateZ(35px); + transform: rotateX(-90deg) translateZ(35px); + } + 70% { + opacity: 1; + -webkit-transform: rotateX(-90deg) translateZ(35px); + transform: rotateX(-90deg) translateZ(35px); + } + 90% { + opacity: 1; + -webkit-transform: rotateX(-90deg) translateZ(90px); + transform: rotateX(-90deg) translateZ(90px); + } + 100% { + opacity: 1; + -webkit-transform: rotateX(-90deg) translateZ(90px); + transform: rotateX(-90deg) translateZ(90px); + } +} + +.cube .sides .front { + -webkit-animation: front-animation 3s ease infinite; + animation: front-animation 3s ease infinite; + -webkit-animation-delay: 100ms; + animation-delay: 100ms; + -webkit-transform: rotateY(0deg) translateZ(90px); + transform: rotateY(0deg) translateZ(90px); + -webkit-animation-fill-mode: forwards; + animation-fill-mode: forwards; + -webkit-transform-origin: 50% 50%; + transform-origin: 50% 50%; +} + +@-webkit-keyframes front-animation { + 0% { + opacity: 1; + -webkit-transform: rotateY(0deg) translateZ(90px); + transform: rotateY(0deg) translateZ(90px); + } + 20% { + opacity: 1; + -webkit-transform: rotateY(0deg) translateZ(35px); + transform: rotateY(0deg) translateZ(35px); + } + 70% { + opacity: 1; + -webkit-transform: rotateY(0deg) translateZ(35px); + transform: rotateY(0deg) translateZ(35px); + } + 90% { + opacity: 1; + -webkit-transform: rotateY(0deg) translateZ(90px); + transform: rotateY(0deg) translateZ(90px); + } + 100% { + opacity: 1; + -webkit-transform: rotateY(0deg) translateZ(90px); + transform: rotateY(0deg) translateZ(90px); + } +} + +@keyframes front-animation { + 0% { + opacity: 1; + -webkit-transform: rotateY(0deg) translateZ(90px); + transform: rotateY(0deg) translateZ(90px); + } + 20% { + opacity: 1; + -webkit-transform: rotateY(0deg) translateZ(35px); + transform: rotateY(0deg) translateZ(35px); + } + 70% { + opacity: 1; + -webkit-transform: rotateY(0deg) translateZ(35px); + transform: rotateY(0deg) translateZ(35px); + } + 90% { + opacity: 1; + -webkit-transform: rotateY(0deg) translateZ(90px); + transform: rotateY(0deg) translateZ(90px); + } + 100% { + opacity: 1; + -webkit-transform: rotateY(0deg) translateZ(90px); + transform: rotateY(0deg) translateZ(90px); + } +} + +.cube .sides .back { + -webkit-animation: back-animation 3s ease infinite; + animation: back-animation 3s ease infinite; + -webkit-animation-delay: 100ms; + animation-delay: 100ms; + -webkit-transform: rotateY(-180deg) translateZ(90px); + transform: rotateY(-180deg) translateZ(90px); + -webkit-animation-fill-mode: forwards; + animation-fill-mode: forwards; + -webkit-transform-origin: 50% 50%; + transform-origin: 50% 50%; +} + +@-webkit-keyframes back-animation { + 0% { + opacity: 1; + -webkit-transform: rotateY(-180deg) translateZ(90px); + transform: rotateY(-180deg) translateZ(90px); + } + 20% { + opacity: 1; + -webkit-transform: rotateY(-180deg) translateZ(35px); + transform: rotateY(-180deg) translateZ(35px); + } + 70% { + opacity: 1; + -webkit-transform: rotateY(-180deg) translateZ(35px); + transform: rotateY(-180deg) translateZ(35px); + } + 90% { + opacity: 1; + -webkit-transform: rotateY(-180deg) translateZ(90px); + transform: rotateY(-180deg) translateZ(90px); + } + 100% { + opacity: 1; + -webkit-transform: rotateY(-180deg) translateZ(90px); + transform: rotateY(-180deg) translateZ(90px); + } +} + +@keyframes back-animation { + 0% { + opacity: 1; + -webkit-transform: rotateY(-180deg) translateZ(90px); + transform: rotateY(-180deg) translateZ(90px); + } + 20% { + opacity: 1; + -webkit-transform: rotateY(-180deg) translateZ(35px); + transform: rotateY(-180deg) translateZ(35px); + } + 70% { + opacity: 1; + -webkit-transform: rotateY(-180deg) translateZ(35px); + transform: rotateY(-180deg) translateZ(35px); + } + 90% { + opacity: 1; + -webkit-transform: rotateY(-180deg) translateZ(90px); + transform: rotateY(-180deg) translateZ(90px); + } + 100% { + opacity: 1; + -webkit-transform: rotateY(-180deg) translateZ(90px); + transform: rotateY(-180deg) translateZ(90px); + } +} + +.cube .sides .left { + -webkit-animation: left-animation 3s ease infinite; + animation: left-animation 3s ease infinite; + -webkit-animation-delay: 100ms; + animation-delay: 100ms; + -webkit-transform: rotateY(-90deg) translateZ(90px); + transform: rotateY(-90deg) translateZ(90px); + -webkit-animation-fill-mode: forwards; + animation-fill-mode: forwards; + -webkit-transform-origin: 50% 50%; + transform-origin: 50% 50%; +} + +@-webkit-keyframes left-animation { + 0% { + opacity: 1; + -webkit-transform: rotateY(-90deg) translateZ(90px); + transform: rotateY(-90deg) translateZ(90px); + } + 20% { + opacity: 1; + -webkit-transform: rotateY(-90deg) translateZ(35px); + transform: rotateY(-90deg) translateZ(35px); + } + 70% { + opacity: 1; + -webkit-transform: rotateY(-90deg) translateZ(35px); + transform: rotateY(-90deg) translateZ(35px); + } + 90% { + opacity: 1; + -webkit-transform: rotateY(-90deg) translateZ(90px); + transform: rotateY(-90deg) translateZ(90px); + } + 100% { + opacity: 1; + -webkit-transform: rotateY(-90deg) translateZ(90px); + transform: rotateY(-90deg) translateZ(90px); + } +} + +@keyframes left-animation { + 0% { + opacity: 1; + -webkit-transform: rotateY(-90deg) translateZ(90px); + transform: rotateY(-90deg) translateZ(90px); + } + 20% { + opacity: 1; + -webkit-transform: rotateY(-90deg) translateZ(35px); + transform: rotateY(-90deg) translateZ(35px); + } + 70% { + opacity: 1; + -webkit-transform: rotateY(-90deg) translateZ(35px); + transform: rotateY(-90deg) translateZ(35px); + } + 90% { + opacity: 1; + -webkit-transform: rotateY(-90deg) translateZ(90px); + transform: rotateY(-90deg) translateZ(90px); + } + 100% { + opacity: 1; + -webkit-transform: rotateY(-90deg) translateZ(90px); + transform: rotateY(-90deg) translateZ(90px); + } +} + +.cube .sides .right { + -webkit-animation: right-animation 3s ease infinite; + animation: right-animation 3s ease infinite; + -webkit-animation-delay: 100ms; + animation-delay: 100ms; + -webkit-transform: rotateY(90deg) translateZ(90px); + transform: rotateY(90deg) translateZ(90px); + -webkit-animation-fill-mode: forwards; + animation-fill-mode: forwards; + -webkit-transform-origin: 50% 50%; + transform-origin: 50% 50%; +} + +@-webkit-keyframes right-animation { + 0% { + opacity: 1; + -webkit-transform: rotateY(90deg) translateZ(90px); + transform: rotateY(90deg) translateZ(90px); + } + 20% { + opacity: 1; + -webkit-transform: rotateY(90deg) translateZ(35px); + transform: rotateY(90deg) translateZ(35px); + } + 70% { + opacity: 1; + -webkit-transform: rotateY(90deg) translateZ(35px); + transform: rotateY(90deg) translateZ(35px); + } + 90% { + opacity: 1; + -webkit-transform: rotateY(90deg) translateZ(90px); + transform: rotateY(90deg) translateZ(90px); + } + 100% { + opacity: 1; + -webkit-transform: rotateY(90deg) translateZ(90px); + transform: rotateY(90deg) translateZ(90px); + } +} + +@keyframes right-animation { + 0% { + opacity: 1; + -webkit-transform: rotateY(90deg) translateZ(90px); + transform: rotateY(90deg) translateZ(90px); + } + 20% { + opacity: 1; + -webkit-transform: rotateY(90deg) translateZ(35px); + transform: rotateY(90deg) translateZ(35px); + } + 70% { + opacity: 1; + -webkit-transform: rotateY(90deg) translateZ(35px); + transform: rotateY(90deg) translateZ(35px); + } + 90% { + opacity: 1; + -webkit-transform: rotateY(90deg) translateZ(90px); + transform: rotateY(90deg) translateZ(90px); + } + 100% { + opacity: 1; + -webkit-transform: rotateY(90deg) translateZ(90px); + transform: rotateY(90deg) translateZ(90px); + } +} + + +/*---------------------------------------------------------------------- + Buttons +-----------------------------------------------------------------------*/ + +.button { + color: #fff; + cursor: pointer; + padding: 12px 36px; + font-weight: 500; + font-size: 16px; + border: none; + position: relative; + background: #4ac4f3; + font-family: 'Raleway', sans-serif; + display: inline-block; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + +.button:hover, +.button:focus { + color: #ffffff; + background: #333333; +} + + +/* Buttons white */ + +.button.bt-white { + color: #333; + background: #fff; +} + +.button.bt-white:hover, +.button.bt-white:focus { + color: #ffffff; + background: #4ac4f3; +} + + +/* Buttons white 2 */ + +.button.bt-black { + color: #333; + background: #fff; +} + +.button.bt-black:hover, +.button.bt-black:focus { + color: #ffffff; + background: #333; +} + +.button.bt-blue { + color: #fff; + background: #4ac4f3; +} + +.button.bt-blue:hover { + background-color: #333; +} + + +/* Butten blue shadow */ + +.button-blue-shadow { + color: #fff; + cursor: pointer; + padding: 12px 36px; + font-weight: 500; + font-size: 16px; + border: none; + position: relative; + background: #4ac3f3; + font-family: 'Raleway', sans-serif; + display: inline-block; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + -webkit-box-shadow: 0px 20px 70px -16px rgba(74, 195, 243, 1); + -moz-box-shadow: 0px 20px 70px -16px rgba(74, 195, 243, 1); + box-shadow: 0px 20px 70px -16px rgba(74, 195, 243, 1); +} + +.button-blue-shadow:hover, +.button-blue-shadow:focus { + color: #ffffff; + background: #333333; +} + + +/* Butten white shadow */ + +.button-white-shadow { + color: #4ac3f3; + cursor: pointer; + padding: 12px 36px; + font-weight: 500; + font-size: 16px; + border: none; + position: relative; + background: #ffffff; + font-family: 'Raleway', sans-serif; + display: inline-block; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + -webkit-box-shadow: 0px 20px 70px -16px rgba(74, 195, 243, 1); + -moz-box-shadow: 0px 20px 70px -16px rgba(74, 195, 243, 1); + box-shadow: 0px 20px 70px -16px rgba(74, 195, 243, 1); +} + +.button-white-shadow:hover, +.button-white-shadow:focus { + color: #ffffff; + background: #333333; +} + + +/* Butten Line */ + +.button-line { + color: #4ac3f3; + cursor: pointer; + padding: 10px 36px; + font-weight: 500; + font-size: 16px; + border: 2px solid #4ac3f3; + position: relative; + background: #ffffff; + font-family: 'Raleway', sans-serif; + display: inline-block; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + +.button-line:hover, +.button-line:focus { + color: #ffffff; + background: #4ac3f3; +} + + +/* Butten Line white*/ + +.button-line-white { + color: #fff; + cursor: pointer; + padding: 12px 36px; + font-weight: 500; + font-size: 16px; + border: 2px solid #fff; + position: relative; + background: transparent; + font-family: 'Raleway', sans-serif; + display: inline-block; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + +.button-line-white:hover, +.button-line-white:focus { + color: #333; + border: 2px solid #333; +} + + +/* Butten Line shadow */ + +.button-line-shadow { + color: #4ac3f3; + cursor: pointer; + padding: 10px 36px; + font-weight: 500; + font-size: 16px; + border: 2px solid #4ac3f3; + position: relative; + background: none; + font-family: 'Raleway', sans-serif; + display: inline-block; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + -webkit-box-shadow: 0px 20px 70px -16px rgba(74, 195, 243, 1); + -moz-box-shadow: 0px 20px 70px -16px rgba(74, 195, 243, 1); + box-shadow: 0px 20px 70px -16px rgba(74, 195, 243, 1); +} + +.button-line-shadow:hover, +.button-line-shadow:focus { + color: #ffffff; + background: #4ac3f3; +} + + +/*--------------------------------------------------------------------- + Page Section Margin Padding +---------------------------------------------------------------------*/ + + +/*---------------- +Section padding +----------------*/ + +.overview-block-ptb { + padding: 100px 0; +} + +.overview-block-pt { + padding: 100px 0 0; +} + +.overview-block-pb { + padding: 0 0 100px; +} + + +/*---------------- +Padding All +----------------*/ + +.iq-pall { + padding: 0px; +} + +.iq-pall-10 { + padding: 10px; +} + +.iq-pall-15 { + padding: 15px; +} + +.iq-pall-20 { + padding: 20px; +} + +.iq-pall-25 { + padding: 25px; +} + +.iq-pall-30 { + padding: 30px; +} + +.iq-pall-40 { + padding: 40px; +} + +.iq-pall-50 { + padding: 50px; +} + +.iq-pall-60 { + padding: 60px; +} + +.iq-pall-70 { + padding: 70px; +} + +.iq-pall-80 { + padding: 80px; +} + +.iq-pall-90 { + padding: 90px; +} + +.iq-pall-100 { + padding: 100px; +} + + +/*---------------- +Padding Top and Bottom +----------------*/ + +.iq-ptb-0 { + padding: 0; +} + +.iq-ptb-10 { + padding: 10px 0; +} + +.iq-ptb-15 { + padding: 15px 0; +} + +.iq-ptb-20 { + padding: 20px 0; +} + +.iq-ptb-25 { + padding: 25px 0; +} + +.iq-ptb-30 { + padding: 30px 0; +} + +.iq-ptb-40 { + padding: 40px 0; +} + +.iq-ptb-50 { + padding: 50px 0; +} + +.iq-ptb-60 { + padding: 60px 0; +} + +.iq-ptb-70 { + padding: 70px 0; +} + +.iq-ptb-80 { + padding: 80px 0; +} + +.iq-ptb-90 { + padding: 90px 0; +} + +.iq-ptb-100 { + padding: 100px 0; +} + + +/*---------------- +Padding Left and right +----------------*/ + +.iq-plr-0 { + padding: 0; +} + +.iq-plr-10 { + padding: 0 10px; +} + +.iq-plr-15 { + padding: 0 15px; +} + +.iq-plr-20 { + padding: 0 20px; +} + +.iq-plr-25 { + padding: 0 25px; +} + +.iq-plr-30 { + padding: 0 30px; +} + +.iq-plr-40 { + padding: 0 40px; +} + +.iq-plr-50 { + padding: 0 50px; +} + +.iq-plr-60 { + padding: 0 60px; +} + +.iq-plr-70 { + padding: 0 70px; +} + +.iq-plr-80 { + padding: 0 80px; +} + +.iq-plr-90 { + padding: 0 90px; +} + +.iq-plr-100 { + padding: 0 100px; +} + + +/*---------------- +Padding top +----------------*/ + +.iq-pt-0 { + padding-top: 0px; +} + +.iq-pt-10 { + padding-top: 10px; +} + +.iq-pt-15 { + padding-top: 15px; +} + +.iq-pt-20 { + padding-top: 20px; +} + +.iq-pt-25 { + padding-top: 25px; +} + +.iq-pt-30 { + padding-top: 30px; +} + +.iq-pt-40 { + padding-top: 40px; +} + +.iq-pt-50 { + padding-top: 50px; +} + +.iq-pt-60 { + padding-top: 60px; +} + +.iq-pt-70 { + padding-top: 70px; +} + +.iq-pt-80 { + padding-top: 80px; +} + +.iq-pt-90 { + padding-top: 90px; +} + +.iq-pt-100 { + padding-top: 100px; +} + + +/*---------------- +Padding Bottom +----------------*/ + +.iq-pb-0 { + padding-bottom: 0px; +} + +.iq-pb-10 { + padding-bottom: 10px; +} + +.iq-pb-15 { + padding-bottom: 15px; +} + +.iq-pb-20 { + padding-bottom: 20px; +} + +.iq-pb-25 { + padding-bottom: 25px; +} + +.iq-pb-30 { + padding-bottom: 30px; +} + +.iq-pb-40 { + padding-bottom: 40px; +} + +.iq-pb-50 { + padding-bottom: 50px; +} + +.iq-pb-60 { + padding-bottom: 60px; +} + +.iq-pb-70 { + padding-bottom: 70px; +} + +.iq-pb-80 { + padding-bottom: 80px; +} + +.iq-pb-90 { + padding-bottom: 90px; +} + +.iq-pb-100 { + padding-bottom: 100px; +} + + +/*---------------- +Padding Left +----------------*/ + +.iq-pl-0 { + padding-left: 0; +} + +.iq-pl-10 { + padding-left: 10px; +} + +.iq-pl-15 { + padding-left: 15px; +} + +.iq-pl-20 { + padding-left: 20px; +} + +.iq-pl-25 { + padding-left: 25px; +} + +.iq-pl-30 { + padding-left: 30px; +} + +.iq-pl-40 { + padding-left: 40px; +} + +.iq-pl-50 { + padding-left: 50px; +} + +.iq-pl-60 { + padding-left: 60px; +} + +.iq-pl-70 { + padding-left: 70px; +} + +.iq-pl-80 { + padding-left: 80px; +} + +.iq-pl-90 { + padding-left: 90px; +} + +.iq-pl-100 { + padding-left: 100px; +} + + +/*---------------- +Padding Right +----------------*/ + +.iq-pr-0 { + padding-right: 0px; +} + +.iq-pr-10 { + padding-right: 10px; +} + +.iq-pr-15 { + padding-right: 15px; +} + +.iq-pr-20 { + padding-right: 20px; +} + +.iq-pr-25 { + padding-right: 25px; +} + +.iq-pr-30 { + padding-right: 30px; +} + +.iq-pr-40 { + padding-right: 40px; +} + +.iq-pr-50 { + padding-right: 50px; +} + +.iq-pr-60 { + padding-right: 60px; +} + +.iq-pr-70 { + padding-right: 70px; +} + +.iq-pr-80 { + padding-right: 80px; +} + +.iq-pr-90 { + padding-right: 90px; +} + +.iq-pr-100 { + padding-right: 100px; +} + + +/*---------------- +Margin All +----------------*/ + +.iq-mall-0 { + margin: 0; +} + +.iq-mall-10 { + margin: 10px; +} + +.iq-mall-15 { + margin: 15px; +} + +.iq-mall-20 { + margin: 20px; +} + +.iq-mall-25 { + margin: 25px; +} + +.iq-mall-30 { + margin: 30px; +} + +.iq-mall-40 { + margin: 40px; +} + +.iq-mall-50 { + margin: 50px; +} + +.iq-mall-60 { + margin: 60px; +} + +.iq-mall-70 { + margin: 70px; +} + +.iq-mall-80 { + margin: 80px; +} + +.iq-mall-90 { + margin: 90px; +} + +.iq-mall-100 { + margin: 100px; +} + + +/*---------------- +Margin Top and Bottom +----------------*/ + +.iq-mtb-0 { + margin: 0; +} + +.iq-mtb-10 { + margin: 10px 0; +} + +.iq-mtb-15 { + margin: 15px 0; +} + +.iq-mtb-20 { + margin: 20px 0; +} + +.iq-mtb-25 { + margin: 25px 0; +} + +.iq-mtb-30 { + margin: 30px 0; +} + +.iq-mtb-40 { + margin: 40px 0; +} + +.iq-mtb-50 { + margin: 50px 0; +} + +.iq-mtb-60 { + margin: 60px 0; +} + +.iq-mtb-70 { + margin: 70px 0; +} + +.iq-mtb-80 { + margin: 80px 0; +} + +.iq-mtb-90 { + margin: 90px 0; +} + +.iq-mtb-100 { + margin: 100px 0; +} + + +/*---------------- +Margin Left and Right +----------------*/ + +.iq-mlr-0 { + margin: 0; +} + +.iq-mlr-10 { + margin: 0 10px; +} + +.iq-mlr-15 { + margin: 0 15px; +} + +.iq-mlr-20 { + margin: 0 20px; +} + +.iq-mlr-25 { + margin: 0 25px; +} + +.iq-mlr-30 { + margin: 0 30px; +} + +.iq-mlr-40 { + margin: 0 40px; +} + +.iq-mlr-50 { + margin: 0 50px; +} + +.iq-mlr-60 { + margin: 0 60px; +} + +.iq-mlr-70 { + margin: 0 60px; +} + +.iq-mlr-80 { + margin: 0 80px; +} + +.iq-mlr-90 { + margin: 0 80px; +} + +.iq-mlr-100 { + margin: 0 100px; +} + + +/*---------------- +Margin Top +----------------*/ + +.iq-mt-0 { + margin-top: 0px; +} + +.iq-mt-5 { + margin-top: 5px; +} + +.iq-mt-10 { + margin-top: 10px; +} + +.iq-mt-15 { + margin-top: 15px; +} + +.iq-mt-20 { + margin-top: 20px; +} + +.iq-mt-25 { + margin-top: 25px; +} + +.iq-mt-30 { + margin-top: 30px; +} + +.iq-mt-40 { + margin-top: 40px; +} + +.iq-mt-50 { + margin-top: 50px; +} + +.iq-mt-60 { + margin-top: 60px; +} + +.iq-mt-70 { + margin-top: 70px; +} + +.iq-mt-80 { + margin-top: 80px; +} + +.iq-mt-90 { + margin-top: 90px; +} + +.iq-mt-100 { + margin-top: 100px; +} + + +/*---------------- +Margin Bottom +----------------*/ + +.iq-mb-0 { + margin-bottom: 0px; +} + +.iq-mb-10 { + margin-bottom: 10px; +} + +.iq-mb-15 { + margin-bottom: 15px; +} + +.iq-mb-20 { + margin-bottom: 20px; +} + +.iq-mb-25 { + margin-bottom: 25px; +} + +.iq-mb-30 { + margin-bottom: 30px; +} + +.iq-mb-40 { + margin-bottom: 40px; +} + +.iq-mb-50 { + margin-bottom: 50px; +} + +.iq-mb-60 { + margin-bottom: 60px; +} + +.iq-mb-70 { + margin-bottom: 70px; +} + +.iq-mb-80 { + margin-bottom: 80px; +} + +.iq-mb-90 { + margin-bottom: 90px; +} + +.iq-mb-100 { + margin-bottom: 100px; +} + + +/*---------------- +Margin Left +----------------*/ + +.iq-ml-0 { + margin-left: 0px; +} + +.iq-ml-10 { + margin-left: 10px; +} + +.iq-ml-15 { + margin-left: 15px; +} + +.iq-ml-20 { + margin-left: 20px; +} + +.iq-ml-25 { + margin-left: 25px; +} + +.iq-ml-30 { + margin-left: 30px; +} + +.iq-ml-40 { + margin-left: 40px; +} + +.iq-ml-50 { + margin-left: 50px; +} + +.iq-ml-60 { + margin-left: 60px; +} + +.iq-ml-70 { + margin-left: 70px; +} + +.iq-ml-80 { + margin-left: 80px; +} + +.iq-ml-90 { + margin-left: 90px; +} + +.iq-ml-100 { + margin-left: 100px; +} + + +/*---------------- +Margin Right +----------------*/ + +.iq-mr-0 { + margin-right: 0px; +} + +.iq-mr-10 { + margin-right: 10px; +} + +.iq-mr-15 { + margin-right: 15px; +} + +.iq-mr-20 { + margin-right: 20px; +} + +.iq-mr-25 { + margin-right: 25px; +} + +.iq-mr-30 { + margin-right: 30px; +} + +.iq-mr-40 { + margin-right: 40px; +} + +.iq-mr-50 { + margin-right: 50px; +} + +.iq-mr-60 { + margin-right: 60px; +} + +.iq-mr-70 { + margin-right: 70px; +} + +.iq-mr-80 { + margin-right: 80px; +} + +.iq-mr-90 { + margin-right: 90px; +} + +.iq-mr-100 { + margin-right: 100px; +} + + +/*--------------------------------------------------------------------- + Text Weight +-----------------------------------------------------------------------*/ + +.iq-tw-1 { + font-weight: 100; +} + +.iq-tw-2 { + font-weight: 200; +} + +.iq-tw-3 { + font-weight: 300; +} + +.iq-tw-4 { + font-weight: 400; +} + +.iq-tw-5 { + font-weight: 500; +} + +.iq-tw-6 { + font-weight: 600; +} + +.iq-tw-7 { + font-weight: 700; +} + +.iq-tw-8 { + font-weight: 800; +} + +.iq-tw-9 { + font-weight: 900; +} + + +/*--------------------------------------------------------------------- + Text Color +-----------------------------------------------------------------------*/ + +.iq-font-blue { + color: #4ac4f3; +} + +.iq-font-white { + color: #ffffff; +} + +.iq-font-black { + color: #333333; +} + +.iq-font-light { + color: #666666; +} + + +/*--------------------------------------------------------------------- + Font Size +-----------------------------------------------------------------------*/ + +/*.iq-font-15 { + font-size: 15px; +}*/ + +.iq-font-20 { + font-size: 20px; +} + +.iq-font-30 { + font-size: 30px; +} + + +/*--------------------------------------------------------------------- + Background Color +-----------------------------------------------------------------------*/ + +.white-bg { + background: #ffffff; +} + +.grey-bg { + background: #f5f7fb; +} + +.blue-bg { + background: #4ac4f3; +} + +.dark-bg { + background: #222222; +} + +.light-bg { + background: #f8f7ff; +} + +.light-blue-bg { + background: #bbe5f6; +} + + +/*--------------------------------------------------------------------- + BG Effect +-----------------------------------------------------------------------*/ + +.iq-parallax { + position: relative; + background-size: cover !important; + -webkit-background-size: cover !important; + -moz-background-size: cover !important; + -ms-background-size: cover !important; + background-origin: initial; + background-position: center center !important; + background-repeat: no-repeat; +} + + +/*--------------------------------------------------------------------- + Background Gradient +---------------------------------------------------------------------*/ + +.iq-bg-over { + position: relative; +} + + +/* Background Gradient Blue */ + +.iq-over-blue-10:before { + content: ""; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; + z-index: -1; + background: rgba(74, 196, 243, 0.1); +} + +.iq-over-blue-20:before { + content: ""; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; + z-index: -1; + background: rgba(74, 196, 243, 0.2); +} + +.iq-over-blue-30:before { + content: ""; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; + z-index: -1; + background: rgba(74, 196, 243, 0.3); +} + +.iq-over-blue-40:before { + content: ""; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; + z-index: -1; + background: rgba(74, 196, 243, 0.4); +} + +.iq-over-blue-50:before { + content: ""; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; + z-index: -1; + background: rgba(74, 196, 243, 0.5); +} + +.iq-over-blue-60:before { + content: ""; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; + z-index: -1; + background: rgba(74, 196, 243, 0.6); +} + +.iq-over-blue-70:before { + content: ""; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; + z-index: -1; + background: rgba(74, 196, 243, 0.7); +} + +.iq-over-blue-80:before { + content: ""; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; + z-index: -1; + background: rgba(74, 196, 243, 0.8); +} + +.iq-over-blue-85:before { + content: ""; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; + z-index: -1; + background: rgba(74, 196, 243, 0.85); +} + +.iq-over-blue-90:before { + content: ""; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; + z-index: -1; + background: rgba(74, 196, 243, 0.9); +} + +.iq-over-blue-95:before { + content: ""; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; + z-index: -1; + background: rgba(74, 196, 243, 0.95); +} + + +/* Background Gradient Black */ + +.iq-over-black-10:before { + content: ""; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; + z-index: -1; + background: rgba(0, 0, 0, 0.1); +} + +.iq-over-black-20:before { + content: ""; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; + z-index: -1; + background: rgba(0, 0, 0, 0.2); +} + +.iq-over-black-30:before { + content: ""; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; + z-index: -1; + background: rgba(0, 0, 0, 0.3); +} + +.iq-over-black-40:before { + content: ""; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; + z-index: -1; + background: rgba(0, 0, 0, 0.4); +} + +.iq-over-black-50:before { + content: ""; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; + z-index: -1; + background: rgba(0, 0, 0, 0.5); +} + +.iq-over-black-60:before { + content: ""; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; + z-index: -1; + background: rgba(0, 0, 0, 0.6); +} + +.iq-over-black-70:before { + content: ""; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; + z-index: -1; + background: rgba(0, 0, 0, 0.7); +} + +.iq-over-black-80:before { + content: ""; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; + z-index: -1; + background: rgba(0, 0, 0, 0.8); +} + +.iq-over-black-85:before { + content: ""; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; + z-index: -1; + background: rgba(0, 0, 0, 0.85); +} + +.iq-over-black-90:before { + content: ""; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; + z-index: -1; + background: rgba(0, 0, 0, 0.9); +} + +.iq-over-black-95:before { + content: ""; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; + z-index: -1; + background: rgba(0, 0, 0, 0.95); +} + +[class*='iq-over-']:before { + z-index: 0; +} + + +/* Background Gradient Black */ + +.iq-over-Gradient-top { + background: rgba(255, 93, 177, 0); + background: -moz-linear-gradient(top, rgba(255, 93, 177, 0) 0%, rgba(255, 93, 177, 0) 0%, rgba(204, 122, 195, 0) 28%, rgba(74, 196, 243, 0.8) 100%); + background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 93, 177, 0)), color-stop(0%, rgba(255, 93, 177, 0)), color-stop(28%, rgba(204, 122, 195, 0)), color-stop(100%, rgba(74, 196, 243, 0.8))); + background: -webkit-linear-gradient(top, rgba(255, 93, 177, 0) 0%, rgba(255, 93, 177, 0) 0%, rgba(204, 122, 195, 0) 28%, rgba(74, 196, 243, 0.8) 100%); + background: -o-linear-gradient(top, rgba(255, 93, 177, 0) 0%, rgba(255, 93, 177, 0) 0%, rgba(204, 122, 195, 0) 28%, rgba(74, 196, 243, 0.8) 100%); + background: -ms-linear-gradient(top, rgba(255, 93, 177, 0) 0%, rgba(255, 93, 177, 0) 0%, rgba(204, 122, 195, 0) 28%, rgba(74, 196, 243, 0.8) 100%); + background: linear-gradient(to bottom, rgba(255, 93, 177, 0) 0%, rgba(255, 93, 177, 0) 0%, rgba(204, 122, 195, 0) 28%, rgba(74, 196, 243, 0.8) 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5db1', endColorstr='#4ac4f3', GradientType=0); +} + + +/*--------------------------------------------------------------------- + Section Title +-----------------------------------------------------------------------*/ + +.heading-title { + margin-bottom: 60px; + text-align: center; +} + +.heading-title .title { + position: relative; + padding-bottom: 20px; + margin-bottom: 25px; +} + +.heading-title .title:before { + content: ""; + position: absolute; + bottom: 0; + border-radius: 4px; + left: 50%; + margin-left: -40px; + width: 80px; + height: 4px; + background: #4ac4f3; +} + +.heading-title p { + display: block; + margin-bottom: 50px; +} + + + +/* Section left title */ +.heading-title.left { margin-bottom: 20px; } +.heading-title.left .title:before { + content: ""; + position: absolute; + bottom: 0; + border-radius: 4px; + left: 0; + margin-left: 0; + width: 80px; + height: 4px; + background: #4ac4f3; +} + + + +/* Section title white */ + +.heading-title.white .title { + color: #fff; +} + +.heading-title.white .title:before { + background: #fff; +} + + + + + + + + +.iq-fadebounce { + -webkit-animation-name: fadebounce; + -moz-animation-name: fadebounce; + -ms-animation-name: fadebounce; + -o-animation-name: fadebounce; + animation-name: fadebounce; + -webkit-animation-duration: 3s; + -moz-animation-duration: 3s; + -ms-animation-duration: 3s; + -o-animation-duration: 3s; + animation-duration: 3s; + -webkit-animation-iteration-count: infinite; + -moz-animation-iteration-count: infinite; + -ms-animation-iteration-count: infinite; + -o-animation-iteration-count: infinite; + animation-iteration-count: infinite; +} + +@-moz-keyframes fadebounce { + 0% { + -moz-transform: translateY(0); + transform: translateY(0); + opacity: 1 + } + 50% { + -moz-transform: translateY(20px); + transform: translateY(20px); + opacity: 1 + } + 100% { + -moz-transform: translateY(0); + transform: translateY(0); + opacity: 1 + } +} + +@-webkit-keyframes fadebounce { + 0% { + -webkit-transform: translateY(0); + transform: translateY(0); + opacity: 1 + } + 50% { + -webkit-transform: translateY(20px); + transform: translateY(20px); + opacity: 1 + } + 100% { + -webkit-transform: translateY(0); + transform: translateY(0); + opacity: 1 + } +} + +@-o-keyframes fadebounce { + 0% { + -o-transform: translateY(0); + transform: translateY(0); + opacity: 1 + } + 50% { + -o-transform: translateY(20px); + transform: translateY(20px); + opacity: 1 + } + 100% { + -o-transform: translateY(0); + transform: translateY(0); + opacity: 1 + } +} + +@-ms-keyframes fadebounce { + 0% { + -ms-transform: translateY(0); + transform: translateY(0); + opacity: 1 + } + 50% { + -ms-transform: translateY(20px); + transform: translateY(20px); + opacity: 1 + } + 100% { + -ms-transform: translateY(0); + transform: translateY(0); + opacity: 1 + } +} + +@keyframes fadebounce { + 0% { + transform: translateY(0); + opacity: 1 + } + 50% { + transform: translateY(20px); + opacity: 1 + } + 100% { + transform: translateY(0); + opacity: 1 + } +} + + +/* Section title Style 2 */ + +.heading-title-2 { + margin-bottom: 80px; + text-align: center; +} + +.heading-title-2 .title { + position: relative; + padding-bottom: 0; + margin-bottom: 25px; +} + +.heading-title-2 i { + font-size: 60px; + color: #4ac4f3; +} + + +/* Heading Title 2 Left */ + +.heading-title-2.text-left { + text-align: left; + margin-bottom: 10px; +} + +.heading-title-2.text-left .title { + position: relative; + padding-bottom: 20px; + margin-bottom: 25px; + padding-top: 10px; +} + +.heading-title-2.text-left i { + font-size: 50px; + color: #4ac4f3; +} + + +/*--------------------------------------------------------------------- + Header +-----------------------------------------------------------------------*/ + +header { + position: fixed; + display: inline-block; + width: 100%; + top: 0; + left: 0; + z-index: 999; + padding: 20px 0; + transition: all 0.5s ease-in-out; + transition: all 0.5s ease-in-out; + -moz-transition: all 0.5s ease-in-out; + -ms-transition: all 0.5s ease-in-out; + -o-transition: all 0.5s ease-in-out; + -webkit-transition: all 0.5s ease-in-out; +} + +header .container-fluid { + padding: 0 100px; +} + +header .navbar { + padding: 0; +} + +header .navbar .navbar-brand { + padding: 0; +} + +header .navbar .navbar-brand img { + height: 60px; + margin: 10px 0px; + transition: all 0.5s ease-in-out; + transition: all 0.5s ease-in-out; + -moz-transition: all 0.5s ease-in-out; + -ms-transition: all 0.5s ease-in-out; + -o-transition: all 0.5s ease-in-out; + -webkit-transition: all 0.5s ease-in-out; +} + +header .navbar .navbar-nav { + margin-top: 0; + transition: all 0.5s ease-in-out; + transition: all 0.5s ease-in-out; + -moz-transition: all 0.5s ease-in-out; + -ms-transition: all 0.5s ease-in-out; + -o-transition: all 0.5s ease-in-out; + -webkit-transition: all 0.5s ease-in-out; +} + +header .navbar .navbar-nav>li { + margin: 0 30px 0 0; + position: relative; +} + +header .navbar .navbar-nav>li:last-child { + margin-right: 0 !important; +} + +header .navbar .navbar-nav .nav-item a { + color: #ffffff; + padding: 10px 0; + font-family: 'Raleway', sans-serif; + font-size: 16px; +} + +header .navbar .navbar-nav .nav-item a:hover, +header .navbar .navbar-nav .nav-item a:focus, +header .navbar .navbar-nav .nav-item a.active, +header .navbar .navbar-nav .nav-item a.active:focus, +header .navbar .navbar-nav .nav-item a.active:hover { + color: #fff; + background: none; + box-shadow: none; +} + +header .navbar .navbar-nav .nav-item a::before { + background: #fff; + bottom: 0; + content: ""; + height: 2px; + left: 0; + position: absolute; + width: 0; + transition: all 0.3s ease-out 0s; +} + +header .navbar .navbar-nav .nav-item a.active::before, +header .navbar .navbar-nav .nav-item:hover>a::before, +header .navbar .navbar-nav .nav-item>a:hover::before { + width: 100%; +} + +header .button, +header .button-line { + margin-top: 0; + margin-left: 40px; +} + +header#main-header .navbar .menu { + float: right; + margin: 0; + padding: 0; + transition: all 0.5s ease-in-out; + transition: all 0.5s ease-in-out; + -moz-transition: all 0.5s ease-in-out; + -ms-transition: all 0.5s ease-in-out; + -o-transition: all 0.5s ease-in-out; + -webkit-transition: all 0.5s ease-in-out; +} + +header#main-header .navbar .menu li .sub-menu { + display: none; + position: absolute; + top: 80px; + z-index: 1; + left: 0; + width: 200px; + padding: 0; + background: #fff; + margin: 0; + text-align: left; + -webkit-box-shadow: 0px 5px 20px 0px rgba(51, 51, 51, 0.2); + -moz-box-shadow: 0px 5px 20px 0px rgba(51, 51, 51, 0.2); + box-shadow: 0px 5px 20px 0px rgba(51, 51, 51, 0.2); +} + +header#main-header .navbar .menu li .sub-menu li { + background: #fff; + border-bottom: 1px solid #eee; + color: #23292c; + font-size: 14px; + margin: 0; + display: inline-block; + width: 100%; +} + +header#main-header .navbar .menu li .sub-menu li a { + color: #23292c; + font-size: 14px; + padding: 15px !important; + line-height: 20px; + display: inline-block; + width: 100%; + transition: all 0s ease-in-out; + transition: all 0s ease-in-out; + -moz-transition: all 0s ease-in-out; + -ms-transition: all 0s ease-in-out; + -o-transition: all 0s ease-in-out; + -webkit-transition: all 0s ease-in-out; +} + + + +header#main-header .navbar .menu li .sub-menu li a.active { + color: var(--primary-theme-color); +} + +header#main-header .navbar .menu .menu-item a { + padding: 0; + line-height: 45px; + font-size: 16px; + position: relative; +} + +header#main-header .navbar .menu li a { + padding: 0; + line-height: normal; + font-size: 16px; +} + +header#main-header .navbar .menu li i { + padding-left: 5px; +} + +header#main-header .navbar .menu>li { + transition: all 0.5s ease-in-out; + transition: all 0.5s ease-in-out; + -moz-transition: all 0.5s ease-in-out; + -ms-transition: all 0.5s ease-in-out; + -o-transition: all 0.5s ease-in-out; + -webkit-transition: all 0.5s ease-in-out; + margin: 0 30px 0 0; + padding: 20px 0; + position: relative; + list-style: none; + float: left; +} + +@media screen and (max-width: 3000px) and (min-width: 1023px) { + header#main-header .navbar .menu li:hover>.sub-menu { + display: block !important; + } +} + +header#main-header .navbar .menu li a { + padding: 0; + line-height: normal; + font-size: 16px; +} + +header#main-header .navbar .menu li .sub-menu li a:hover { + background: #fff; + color: var(--primary-theme-color); +} + + +/* Header sticky */ + +header.menu-sticky { + padding: 5px; + -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1); + -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1); + box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1); + background: rgba(74, 196, 243, 0.9); +} + +header.menu-sticky .navbar .navbar-brand img { + height: 50px; + margin: 10px 0; +} + +header.menu-sticky .navbar .menu>li { + padding: 10px 0 !important; +} + +header.menu-sticky .navbar .menu li .sub-menu { + top: 62px !important; +} + + +/* Header Fancy */ + +header.header-fancy .button { + margin-left: 30px; + padding: 0px 20px; + font-size: 28px; +} + +header.header-fancy .navbar .navbar-nav { + background: #fff; + border-radius: 4px; +} + +header.header-fancy .navbar .navbar-nav .nav-item a { + color: #333; + padding: 12px 20px; + font-weight: 500; +} + +header.header-fancy .navbar .navbar-nav>li { + margin: 0; +} + +header.header-fancy .navbar .navbar-nav .nav-item a::before { + display: none; +} + +header.header-fancy .navbar .navbar-nav .nav-item a:hover, +header.header-fancy .navbar .navbar-nav .nav-item a:focus, +header.header-fancy .navbar .navbar-nav .nav-item a.active, +header.header-fancy .navbar .navbar-nav .nav-item a.active:focus, +header.header-fancy .navbar .navbar-nav .nav-item a.active:hover { + color: #4ac4f3; + background: none; + box-shadow: none; +} + + +/* Header With Top Bar */ + +header.header-one { + position: fixed; + background-color: #fff; + display: inline-block; + width: 100%; + top: 0; + left: 0; + z-index: 999; + padding: 0; + transition: all 0.5s ease-in-out; + transition: all 0.5s ease-in-out; + -moz-transition: all 0.5s ease-in-out; + -ms-transition: all 0.5s ease-in-out; + -o-transition: all 0.5s ease-in-out; + -webkit-transition: all 0.5s ease-in-out; +} + +header.header-one .navbar .navbar-nav .nav-item a { + color: #333; + padding: 12px 20px; + font-weight: 500; +} + +header.header-one .navbar .navbar-nav>li { + margin: 0; +} + +header.header-one .navbar .navbar-nav .nav-item a::before { + display: none; +} + +header.header-one .navbar .navbar-nav .nav-item a:hover, +header.header-one .navbar .navbar-nav .nav-item a.active, +header.header-one .navbar .navbar-nav .nav-item a.active:focus, +header.header-one .navbar .navbar-nav .nav-item a.active:hover { + color: #4ac4f3; + background: none; + box-shadow: none; +} + +header.header-one .header-top-bar ul li { + display: inline-block; + margin: 0px 8px; +} + +header.header-one .header-top-bar ul li a { + color: #fff; + font-size: 14px +} + +header.header-one .header-top-bar ul li a:hover { + color: #4ac4f3; + font-size: 14px; +} + + +/*header.header-one .navbar { padding: 10px 0; }*/ + +.header-one.menu-sticky { + background-color: #ffffff; +} + + +/* Header White */ + +header.header-white { + background: #fff; +} + +header.header-white .navbar .navbar-nav .nav-item a::before { + background: #4ac4f3; +} + +header.header-white .navbar .navbar-nav .nav-item a { + color: #333; +} + +header.header-white .navbar .navbar-nav .nav-item a:hover, +header.header-white .navbar .navbar-nav .nav-item a:focus, +header.header-white .navbar .navbar-nav .nav-item a.active, +header.header-white .navbar .navbar-nav .nav-item a.active:focus, +header.header-white .navbar .navbar-nav .nav-item a.active:hover { + color: #4ac4f3; + background: none; + box-shadow: none; +} + + +/* Header Dark */ + +header.dark .navbar .navbar-nav .nav-item a::before { + background: #4ac4f3; +} + +header.dark .navbar .navbar-nav .nav-item a { + color: #333; +} + +header.dark .navbar .navbar-nav .nav-item a:hover, +header.dark .navbar .navbar-nav .nav-item a:focus, +header.dark .navbar .navbar-nav .nav-item a.active, +header.dark .navbar .navbar-nav .nav-item a.active:focus, +header.dark .navbar .navbar-nav .nav-item a.active:hover { + color: #4ac4f3; + background: none; + box-shadow: none; +} + + +/* Header sticky */ + +header.dark.menu-sticky { + padding: 10px 0; + -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1); + -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1); + box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1); + background: #fff; +} + + +/*--------------------------------------------------------------------- + Banner +-----------------------------------------------------------------------*/ + +.iq-banner { + position: relative; + overflow: hidden; +} + +.iq-banner .container-fluid { + padding: 0 90px; +} + +.iq-banner:after { + content: ""; + bottom: -5px; + left: 0; + width: 100%; + height: 84px; + background: url('../images/banner/02.png') no-repeat 0 0; + background-size: cover; + display: inline-block; + position: absolute; +} + +.iq-banner .banner-text { + z-index: 9; + position: relative; + margin-top: 13%; +} + +.iq-banner .banner-text h1 { + font-size: 64px; + line-height: normal; +} + +.iq-banner .banner-img { + width: 110%; +} + +.iq-banner .iq-video { + background: #fff; + display: inline-block; + width: 60px; + height: 60px; + text-align: center; + font-size: 29px; + color: #4ac4f3; + float: left; + border-radius: 100%; + line-height: 2.1; + z-index: 9; + position: relative; +} + +.iq-banner .iq-video i { + margin-left: 5px; +} + +.iq-banner .waves-box { + position: relative; +} + +.iq-banner .iq-waves { + position: absolute; + width: 14rem; + height: 14rem; + left: -90px; + top: -90px; + z-index: 2; + float: right; +} + +.iq-banner .iq-waves .waves { + position: absolute; + width: 384px; + width: 15rem; + height: 384px; + height: 15rem; + background: rgba(255, 255, 255, 0.2); + opacity: 0; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; + border-radius: 320px; + background-clip: padding-box; + -webkit-animation: waves 3s ease-in-out infinite; + animation: waves 3s ease-in-out infinite; +} + +.iq-banner .iq-waves .wave-1 { + -webkit-animation-delay: 0s; + animation-delay: 0s; +} + +.iq-banner .iq-waves .wave-2 { + -webkit-animation-delay: 1s; + animation-delay: 1s; +} + +.iq-banner .iq-waves .wave-3 { + -webkit-animation-delay: 2s; + animation-delay: 2s; +} + +@-webkit-keyframes waves { + 0% { + -webkit-transform: scale(0.2, 0.2); + transform: scale(0.2, 0.2); + opacity: 0; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; + } + 50% { + opacity: 0.9; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; + } + 100% { + -webkit-transform: scale(0.9, 0.9); + transform: scale(0.9, 0.9); + opacity: 0; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; + } +} + +@keyframes waves { + 0% { + -webkit-transform: scale(0.2, 0.2); + transform: scale(0.2, 0.2); + opacity: 0; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; + } + 50% { + opacity: 0.9; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; + } + 100% { + -webkit-transform: scale(0.9, 0.9); + transform: scale(0.9, 0.9); + opacity: 0; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; + } +} + +.iq-banner .banner-objects { + position: absolute; + left: 0; + top: 0; + display: inline-block; + width: 100%; + height: 100%; +} + +.iq-banner .banner-objects .banner-objects-01 { + position: absolute; + left: -8%; + bottom: -20%; + opacity: 0.1; +} + +.iq-banner .banner-objects .banner-objects-02 { + position: absolute; + bottom: 50%; + margin-bottom: -125px; + left: -13%; + border: 15px solid rgba(255, 255, 255, 0.1); + border-radius: 900px; + height: 250px; + width: 250px; +} + +.iq-banner .banner-objects .banner-objects-03 { + position: absolute; + top: 0%; + right: -15%; + border: 30px solid rgba(255, 255, 255, 0.1); + border-radius: 900px; + height: 400px; + width: 400px; +} + + +/* Banner Wave One */ + +.iq-banner.wave-one:after { + content: ""; + bottom: -2px; + left: 0; + width: 100%; + height: 330px; + background: url('../images/banner/14.png') no-repeat 0 0; + background-size: cover; + display: inline-block; + position: absolute; +} + +.iq-banner.wave-one .banner-text { + margin-top: 7%; + padding-bottom: 13%; +} + + +/* Banner 2 */ + +.iq-banner-02 { + position: relative; +} + +.iq-banner-02:after { + content: ""; + bottom: -2px; + left: 0; + width: 100%; + height: 78px; + background: url('../images/banner/04.png') no-repeat 0 0; + background-size: cover; + display: inline-block; + position: absolute; +} + +.iq-banner-02 .banner-text { + z-index: 9; + position: relative; + margin-top: 13%; +} + +.iq-banner-02 .banner-text h1 { + font-size: 64px; + line-height: normal; +} + +.iq-banner-02 .banner-img { + margin-bottom: -80px; +} + +.iq-banner-02 .banner-video { + margin-bottom: -50px; + width: 680px; + height: 383px; + -webkit-box-shadow: 0px 5px 50px 1px rgba(102, 102, 102, 0.25); + -moz-box-shadow: 0px 5px 50px 1px rgba(102, 102, 102, 0.25); + box-shadow: 0px 5px 50px 1px rgba(102, 102, 102, 0.25); +} + +.iq-banner-02 .banner-objects { + position: absolute; + left: 0; + top: 0; + display: inline-block; + width: 100%; + height: 100%; + overflow: hidden; +} + +.iq-banner-02 .banner-objects .banner-objects-01 { + position: absolute; + right: -0%; + bottom: 20%; + opacity: 0.2; +} + +.iq-banner-02 .banner-objects .banner-objects-02 { + position: absolute; + bottom: 50%; + margin-bottom: -280px; + left: -20%; + border: 30px solid rgba(255, 255, 255, 0.2); + border-radius: 900px; + height: 400px; + width: 400px; +} + +.iq-banner-02 .banner-objects .banner-objects-03 { + position: absolute; + top: 50%; + right: 25%; + border: 20px solid rgba(255, 255, 255, 0.2); + border-radius: 900px; + height: 300px; + width: 300px; +} + +.iq-banner-02 .banner-objects .banner-objects-04 { + position: absolute; + top: 20%; + left: 10%; + opacity: 0.2; +} + +.iq-banner-02.no-before:after { + display: none; +} + + +/* Banner style 01 */ + +.iq-banner-02.style-1:after { + display: none; +} + +.iq-banner-02.style-1 .banner-img { + margin-bottom: 0; +} + +.iq-banner-02.style-1 .banner-objects .banner-objects-01 { + bottom: 40%; + opacity: 0.6; +} + +.iq-banner-02.style-1 .banner-objects .banner-objects-02 { + border: 30px solid rgba(74, 195, 243, 0.9); +} + +.iq-banner-02.style-1 .banner-objects .banner-objects-03 { + border: 20px solid rgba(255, 255, 255, 0.3); +} + +.iq-banner-02.style-1 .banner-objects .banner-objects-04 { + top: 20%; + opacity: 0.6; +} + + +/* Banner style 02 */ + +.iq-banner-02.style-2:after { + display: none; +} + +.iq-banner-02.style-2 .banner-img { + margin-bottom: 0; +} + + +/* Banner 3 */ + +.iq-banner-03 { + position: relative; + overflow: hidden; +} + +.iq-banner-03:after { + content: ""; + bottom: 0; + left: 0; + width: 100%; + height: 230px; + background: url('../images/banner/06.png') no-repeat 0 0; + background-size: cover; + display: inline-block; + position: absolute; +} + +.iq-banner-03 .banner-text { + z-index: 9; + position: relative; + margin-top: 13%; + margin-bottom: 5%; +} + +.iq-banner-03 .banner-text h1 { + font-size: 55px; + line-height: normal; +} + +.iq-banner-03 .banner-img { + width: 110%; +} + +.iq-banner-03 .iq-banner-video { + position: relative; +} + +.iq-banner-03 .iq-video { + background: #fff; + display: inline-block; + width: 60px; + height: 60px; + text-align: center; + font-size: 29px; + color: #4ac4f3; + float: left; + border-radius: 100%; + line-height: 2.1; + z-index: 9; + position: relative; +} + +.iq-banner-03 .iq-video i { + margin-left: 5px; +} + +.iq-banner-03 .waves-box { + position: absolute; + top: 28%; + left: 39%; +} + +.iq-banner-03 .iq-waves { + position: absolute; + width: 14rem; + height: 14rem; + left: -90px; + top: -90px; + z-index: 2; + float: right; +} + +.iq-banner-03 .iq-waves .waves { + position: absolute; + width: 384px; + width: 15rem; + height: 384px; + height: 15rem; + background: rgba(255, 255, 255, 0.2); + opacity: 0; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; + border-radius: 320px; + background-clip: padding-box; + -webkit-animation: waves 3s ease-in-out infinite; + animation: waves 3s ease-in-out infinite; +} + +.iq-banner-03 .iq-waves .wave-1 { + -webkit-animation-delay: 0s; + animation-delay: 0s; +} + +.iq-banner-03 .iq-waves .wave-2 { + -webkit-animation-delay: 1s; + animation-delay: 1s; +} + +.iq-banner-03 .iq-waves .wave-3 { + -webkit-animation-delay: 2s; + animation-delay: 2s; +} + +.iq-banner-03 .banner-objects { + position: absolute; + left: 0; + top: 0; + display: inline-block; + width: 100%; + height: 100%; +} + +.iq-banner-03 .banner-objects .banner-objects-01 { + position: absolute; + left: 14%; + opacity: 0.4; +} + +.iq-banner-03 .banner-objects .banner-objects-02 { + position: absolute; + margin-bottom: -125px; + left: -5%; + border: 15px solid rgba(255, 255, 255, 0.1); + border-radius: 900px; + height: 250px; + width: 250px; +} + +.iq-banner-03 .banner-objects .banner-objects-03 { + position: absolute; + top: 19%; + right: 36%; + border: 20px solid rgba(255, 255, 255, 0.1); + border-radius: 900px; + height: 250px; + width: 250px; +} + +.iq-banner-03 .banner-objects .banner-objects-04 { + position: absolute; + top: 25%; + right: -3%; + opacity: 0.4; +} + + +/* Banner 4 */ + +.iq-banner-04 { + position: relative; + overflow: hidden; +} + +.iq-banner-04 .container-fluid { + padding: 0 90px; +} + +.iq-banner-04:after { + content: ""; + bottom: -2px; + left: 0; + width: 100%; + height: 78px; + background: url('../images/banner/02.png') no-repeat 0 0; + background-size: cover; + display: inline-block; + position: absolute; + z-index: 99; +} + +.iq-banner-04 .banner-text { + z-index: 9; + position: relative; + margin-top: 2%; +} + +.iq-banner-04 .banner-text h1 { + font-size: 64px; + line-height: normal; +} + +.iq-banner-04 .banner-img { + width: 100%; +} + +.iq-banner-04 .iq-video { + background: #fff; + display: inline-block; + width: 60px; + height: 60px; + text-align: center; + font-size: 29px; + color: #4ac4f3; + float: left; + border-radius: 100%; + line-height: 2.1; + z-index: 9; + position: relative; +} + +.iq-banner-04 .iq-video i { + margin-left: 5px; +} + +.iq-banner-04 .waves-box { + position: relative; +} + +.iq-banner-04 .iq-waves { + position: absolute; + width: 14rem; + height: 14rem; + left: -90px; + top: -90px; + z-index: 2; + float: right; +} + +.iq-banner-04 .iq-waves .waves { + position: absolute; + width: 384px; + width: 15rem; + height: 384px; + height: 15rem; + background: rgba(255, 255, 255, 0.2); + opacity: 0; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; + border-radius: 320px; + background-clip: padding-box; + -webkit-animation: waves 3s ease-in-out infinite; + animation: waves 3s ease-in-out infinite; +} + +.iq-banner-04 .iq-waves .wave-1 { + -webkit-animation-delay: 0s; + animation-delay: 0s; +} + +.iq-banner-04 .iq-waves .wave-2 { + -webkit-animation-delay: 1s; + animation-delay: 1s; +} + +.iq-banner-04 .iq-waves .wave-3 { + -webkit-animation-delay: 2s; + animation-delay: 2s; +} + +.iq-banner-04 .banner-objects { + position: absolute; + left: 0; + top: 0; + display: inline-block; + width: 100%; + height: 100%; +} + +.iq-banner-04 .banner-objects .banner-objects-01 { + position: absolute; + left: -8%; + bottom: -20%; + opacity: 0.1; +} + +.iq-banner-04 .banner-objects .banner-objects-02 { + position: absolute; + bottom: 50%; + margin-bottom: -125px; + left: -13%; + border: 15px solid rgba(255, 255, 255, 0.1); + border-radius: 900px; + height: 250px; + width: 250px; +} + +.iq-banner-04 .banner-objects .banner-objects-03 { + position: absolute; + top: 0%; + right: -15%; + border: 30px solid rgba(255, 255, 255, 0.1); + border-radius: 900px; + height: 400px; + width: 400px; +} + + +/* Banner 5 */ + +.iq-banner-05 { + position: relative; + overflow: hidden; +} + +.iq-banner-05 .container-fluid { + padding: 0 90px; +} + +.iq-banner-05 .banner-text { + z-index: 9; + position: relative; + margin-top: 5%; +} + +.iq-banner-05 .banner-text h1 { + font-size: 64px; + line-height: normal; +} + +.iq-banner-05 .banner-objects { + position: absolute; + left: 0; + top: 0; + display: inline-block; + width: 100%; + height: 100%; + overflow: hidden; +} + +.iq-banner-05 .banner-objects .banner-objects-01 { + position: absolute; + right: -0%; + bottom: 20%; + opacity: 0.2; +} + +.iq-banner-05 .banner-objects .banner-objects-02 { + position: absolute; + bottom: 50%; + margin-bottom: -280px; + left: -20%; + border: 30px solid rgba(255, 255, 255, 0.2); + border-radius: 900px; + height: 400px; + width: 400px; +} + +.iq-banner-05 .banner-objects .banner-objects-03 { + position: absolute; + top: 50%; + right: 25%; + border: 20px solid rgba(255, 255, 255, 0.2); + border-radius: 900px; + height: 300px; + width: 300px; +} + +.iq-banner-05 .banner-objects .banner-objects-04 { + position: absolute; + top: 20%; + left: 10%; + opacity: 0.2; +} + +.iq-banner-05 img { + width: 70%; +} + + +/* Banner 6 */ + +.iq-banner-06 { + position: relative; + overflow: hidden; +} + +.iq-banner-06 .banner-text { + z-index: 9; + position: relative; + margin-top: 15%; + margin-bottom: 30px; +} + +.iq-banner-06 .banner-objects { + position: absolute; + left: 0; + top: 0; + display: inline-block; + width: 100%; + height: 100%; + overflow: hidden; +} + +.iq-banner-06 .banner-objects .banner-objects-01 { + position: absolute; + right: -0%; + bottom: 20%; + opacity: 0.2; +} + +.iq-banner-06 .banner-objects .banner-objects-02 { + position: absolute; + bottom: 50%; + margin-bottom: -280px; + left: -20%; + border: 30px solid rgba(255, 255, 255, 0.2); + border-radius: 900px; + height: 400px; + width: 400px; +} + +.iq-banner-06 .banner-objects .banner-objects-03 { + position: absolute; + top: 19%; + right: 25%; + border: 20px solid rgba(255, 255, 255, 0.2); + border-radius: 900px; + height: 300px; + width: 300px; +} + + +/* Banner 7 */ + +.iq-banner-07 { + position: relative; + overflow: hidden; +} + +.iq-banner-07 .banner-text { + z-index: 9; + position: relative; + margin-top: 13%; + margin-bottom: 13%; +} + +.iq-banner-07 .banner-img { + width: 100%; +} + +.iq-banner-07 .iq-video { + background: #4ac4f3; + display: inline-block; + width: 60px; + height: 60px; + text-align: center; + font-size: 29px; + color: #fff; + float: left; + border-radius: 100%; + line-height: 2.1; + z-index: 9; + position: relative; +} + +.iq-banner-07 .iq-video i { + margin-left: 5px; +} + +.iq-banner-07 .waves-box { + position: relative; +} + +.iq-banner-07 .iq-waves { + position: absolute; + width: 14rem; + height: 14rem; + left: -90px; + top: -90px; + z-index: 2; + float: right; +} + +.iq-banner-07 .iq-waves .waves { + position: absolute; + width: 384px; + width: 15rem; + height: 384px; + height: 15rem; + background: rgba(74, 196, 243, 0.2); + opacity: 0; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; + border-radius: 320px; + background-clip: padding-box; + -webkit-animation: waves 3s ease-in-out infinite; + animation: waves 3s ease-in-out infinite; +} + +.iq-banner-07 .iq-waves .wave-1 { + -webkit-animation-delay: 0s; + animation-delay: 0s; +} + +.iq-banner-07 .iq-waves .wave-2 { + -webkit-animation-delay: 1s; + animation-delay: 1s; +} + +.iq-banner-07 .iq-waves .wave-3 { + -webkit-animation-delay: 2s; + animation-delay: 2s; +} + + +/* Banner 8 */ + +.iq-banner-08 { + position: relative; + overflow: hidden; +} + +.iq-banner-08 .banner-text { + z-index: 9; + position: relative; + margin-top: 14%; + margin-bottom: 10%; +} + +.iq-banner-08 .banner-text h1 { + font-size: 52px; + line-height: 70px; +} + +.iq-banner-08 .banner-img { + width: 110%; +} + +.iq-banner-08 .iq-video { + background: #fff; + display: inline-block; + width: 60px; + height: 60px; + text-align: center; + font-size: 29px; + color: #4ac4f3; + float: left; + border-radius: 100%; + line-height: 2.1; + z-index: 9; + position: relative; +} + +.iq-banner-08 .iq-video i { + margin-left: 5px; +} + +.iq-banner-08 .waves-box { + position: relative; +} + +.iq-banner-08 .iq-waves { + position: absolute; + width: 14rem; + height: 14rem; + left: -90px; + top: -90px; + z-index: 2; + float: right; +} + +.iq-banner-08 .iq-waves .waves { + position: absolute; + width: 384px; + width: 15rem; + height: 384px; + height: 15rem; + background: rgba(255, 255, 255, 0.2); + opacity: 0; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; + border-radius: 320px; + background-clip: padding-box; + -webkit-animation: waves 3s ease-in-out infinite; + animation: waves 3s ease-in-out infinite; +} + +.iq-banner-08 .iq-waves .wave-1 { + -webkit-animation-delay: 0s; + animation-delay: 0s; +} + +.iq-banner-08 .iq-waves .wave-2 { + -webkit-animation-delay: 1s; + animation-delay: 1s; +} + +.iq-banner-08 .iq-waves .wave-3 { + -webkit-animation-delay: 2s; + animation-delay: 2s; +} + +.animations { + display: table; + background: #FFFFFF; + width: 100%; + text-align: center; +} + +.animations .animations-container { + position: absolute; + width: 100%; + height: 100%; + top: 0; + left: 50%; + -webkit-transform: translateX(-50%); + transform: translateX(-50%); +} + +.ani { + position: absolute; +} + +.ani.ani-1 { + left: 30px; + top: 120px; + -webkit-transform: scale(0.8); + transform: scale(0.8); +} + +.ani.ani-2 { + right: 25%; + top: 140px; + -webkit-transform: scale(0.6); + transform: scale(0.6); +} + +.ani.ani-3 { + right: 100px; + bottom: 100px; + -webkit-transform: translate(50%, 50%) scale(0.8); + transform: translate(50%, 50%) scale(0.8); +} + +.ani.ani-4 { + bottom: 98px; + left: 15%; +} + +.ani.ani-5 { + left: 30px; + top: 70%; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); +} + +.ani.ani-6 { + height: 320px; + width: 320px; + right: 0; + top: 0; +} + +.ani-cube { + -webkit-perspective: 20000px; + perspective: 20000px; + height: 100px; + width: 100px; + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; + -webkit-transform: rotateX(-30deg) rotateY(40deg) rotateZ(360deg); + transform: rotateX(-30deg) rotateY(40deg) rotateZ(360deg); + -webkit-animation: ani-cube-1 20s linear infinite; + animation: ani-cube-1 20s linear infinite; +} + +.ani-cube .cube-face { + position: absolute; + left: 0px; + top: 0px; + width: 100px; + height: 100px; +} + +.ani-cube .cube-face.face_front { + background-color: #4ac4f3; + -webkit-transform: translate3d(0px, 0px, 50px); + transform: translate3d(0px, 0px, 50px); + z-index: 10; +} + +.ani-cube .cube-face.face_right { + background-color: #52b8e0; + -webkit-transform: rotateX(0deg) rotateY(90deg) rotateZ(0deg) translate3d(0px, 0px, 50px); + transform: rotateX(0deg) rotateY(90deg) rotateZ(0deg) translate3d(0px, 0px, 50px); + z-index: 8; +} + +.ani-cube .cube-face.face_left { + background-color: #52b8e0; + -webkit-transform: rotateX(0deg) rotateY(-90deg) rotateZ(0deg) translate3d(0px, 0px, 50px); + transform: rotateX(0deg) rotateY(-90deg) rotateZ(0deg) translate3d(0px, 0px, 50px); + z-index: 9; +} + +.ani-cube .cube-face.face_top { + background-color: #6fd7ff; + -webkit-transform: rotateX(90deg) rotateY(0deg) rotateZ(0deg) translate3d(0px, 0px, 50px); + transform: rotateX(90deg) rotateY(0deg) rotateZ(0deg) translate3d(0px, 0px, 50px); + z-index: 11; +} + +.ani-cube .cube-face.face_bottom { + background-color: #6fd7ff; + -webkit-transform: rotateX(-90deg) rotateY(0deg) rotateZ(0deg) translate3d(0px, 0px, 50px); + transform: rotateX(-90deg) rotateY(0deg) rotateZ(0deg) translate3d(0px, 0px, 50px); + z-index: 5; +} + +.ani-cube .cube-face.face_back { + background-color: #4ac4f3; + -webkit-transform: translate3d(0px, 0px, -50px); + transform: translate3d(0px, 0px, -50px); + z-index: 1; +} + +.ani-cube.ani-cube-2 { + height: 40px; + -webkit-transform: rotateX(143deg) rotateY(50deg) rotateZ(360deg); + transform: rotateX(143deg) rotateY(50deg) rotateZ(360deg); + -webkit-animation: ani-cube-2 10s linear infinite; + animation: ani-cube-2 10s linear infinite; +} + +.ani-cube.ani-cube-2 .cube-face.face_front { + height: 40px; + -webkit-transform: translate3d(0px, 0px, 100px); + transform: translate3d(0px, 0px, 100px); +} + +.ani-cube.ani-cube-2 .cube-face.face_right { + width: 200px; + height: 40px; + -webkit-transform: rotateX(0deg) rotateY(90deg) rotateZ(0deg) translate3d(0px, 0px, 0); + transform: rotateX(0deg) rotateY(90deg) rotateZ(0deg) translate3d(0px, 0px, 0); +} + +.ani-cube.ani-cube-2 .cube-face.face_left { + width: 200px; + height: 40px; + -webkit-transform: rotateX(0deg) rotateY(-90deg) rotateZ(0deg) translate3d(0px, 0px, 100px); + transform: rotateX(0deg) rotateY(-90deg) rotateZ(0deg) translate3d(0px, 0px, 100px); +} + +.ani-cube.ani-cube-2 .cube-face.face_top { + height: 200px; + -webkit-transform: rotateX(90deg) rotateY(0deg) rotateZ(0deg) translate3d(0px, 0px, 60px); + transform: rotateX(90deg) rotateY(0deg) rotateZ(0deg) translate3d(0px, 0px, 60px); +} + +.ani-cube.ani-cube-2 .cube-face.face_bottom { + height: 200px; + -webkit-transform: rotateX(-90deg) rotateY(0deg) rotateZ(0deg) translate3d(0px, 0px, -100px); + transform: rotateX(-90deg) rotateY(0deg) rotateZ(0deg) translate3d(0px, 0px, -100px); +} + +.ani-cube.ani-cube-2 .cube-face.face_back { + height: 40px; + -webkit-transform: translate3d(0px, 0px, -100px); + transform: translate3d(0px, 0px, -100px); +} + +.ani-cube.ani-cube-3 { + -webkit-transform: scale(0.6) rotateX(-63deg) rotateY(13deg) rotateZ(47deg); + transform: scale(0.6) rotateX(-63deg) rotateY(13deg) rotateZ(47deg); + -webkit-animation: ani-cube-3 20s cubic-bezier(0.7, 0, 0.7, 1) infinite; + animation: ani-cube-3 20s cubic-bezier(0.7, 0, 0.7, 1) infinite; +} + +.ani-cube.ani-cube-3 .cube-face.face_front, +.ani-cube.ani-cube-3 .cube-face.face_right, +.ani-cube.ani-cube-3 .cube-face.face_left, +.ani-cube.ani-cube-3 .cube-face.face_top, +.ani-cube.ani-cube-3 .cube-face.face_bottom, +.ani-cube.ani-cube-3 .cube-face.face_back { + border: 2px solid #4ac4f3; + border-radius: 2px; + background-color: transparent; + box-shadow: inset 0 0 0 2px #4ac4f3, 0 0 0 2px #4ac4f3; +} + +.ani-hamburger { + height: 19px; + width: 30px; + -webkit-animation: rotate90 4s cubic-bezier(0.7, 0, 0.7, 1) infinite; + animation: rotate90 4s cubic-bezier(0.7, 0, 0.7, 1) infinite; +} + +.ani-hamburger .hamburger-line { + position: absolute; + background-color: #4ac4f3; + height: 2px; + width: 100%; + left: 0; + -webkit-transform-origin: center; + transform-origin: center; +} + +.ani-hamburger .hamburger-line.hamburger-line_top { + top: 0; + -webkit-animation: hamburger-line_top 4s cubic-bezier(0.7, 0, 0.7, 1) infinite; + animation: hamburger-line_top 4s cubic-bezier(0.7, 0, 0.7, 1) infinite; +} + +.ani-hamburger .hamburger-line.hamburger-line_middle { + top: 50%; + -webkit-animation: hamburger-line_middle 4s cubic-bezier(0.7, 0, 0.7, 1) infinite; + animation: hamburger-line_middle 4s cubic-bezier(0.7, 0, 0.7, 1) infinite; +} + +.ani-hamburger .hamburger-line.hamburger-line_bottom { + top: 100%; + -webkit-animation: hamburger-line_bottom 4s cubic-bezier(0.7, 0, 0.7, 1) infinite; + animation: hamburger-line_bottom 4s cubic-bezier(0.7, 0, 0.7, 1) infinite; +} + +.moving-square-frame { + position: absolute; + height: 20px; + width: 20px; + top: 10px; + left: 10px; + opacity: .1; + border: 1px solid #000; +} + +.ani-moving-square { + background: #4ac4f3; + height: 20px; + width: 20px; + -webkit-animation: ani-moving-square 6s cubic-bezier(0.7, 0, 0.7, 1) infinite; + animation: ani-moving-square 6s cubic-bezier(0.7, 0, 0.7, 1) infinite; +} + +svg { + height: 100%; + width: 100%; +} + +svg #followPath { + fill: none; + stroke: #4ac4f3; + stroke-width: 8; + stroke-dasharray: 2870px; + stroke-dashoffset: 2870px; + -webkit-animation: drawPath 6s linear infinite; + animation: drawPath 6s linear infinite; +} + +svg #dashedPath { + fill: none; + stroke: #fff; + stroke-width: 14; + stroke-dasharray: 50px; +} + +svg #airplain { + fill: #4ac4f3; + -webkit-transform: translate(-10px, -45px); + transform: translate(-10px, -45px); +} + +@-webkit-keyframes ani-cube-1 { + to { + -webkit-transform: rotateX(-30deg) rotateY(40deg) rotateZ(0); + transform: rotateX(-30deg) rotateY(40deg) rotateZ(0); + } +} + +@keyframes ani-cube-1 { + to { + -webkit-transform: rotateX(-30deg) rotateY(40deg) rotateZ(0); + transform: rotateX(-30deg) rotateY(40deg) rotateZ(0); + } +} + +@-webkit-keyframes ani-cube-2 { + to { + -webkit-transform: rotateX(143deg) rotateY(50deg) rotateZ(0); + transform: rotateX(143deg) rotateY(50deg) rotateZ(0); + } +} + +@keyframes ani-cube-2 { + to { + -webkit-transform: rotateX(143deg) rotateY(50deg) rotateZ(0); + transform: rotateX(143deg) rotateY(50deg) rotateZ(0); + } +} + +@-webkit-keyframes ani-cube-3 { + 0% { + -webkit-transform: scale(0.6) rotateX(-63deg) rotateY(13deg) rotateZ(47deg); + transform: scale(0.6) rotateX(-63deg) rotateY(13deg) rotateZ(47deg); + } + 5%, + 15%, + 25%, + 35%, + 45%, + 55%, + 65%, + 75%, + 85%, + 95% { + -webkit-transform: scale(0.8) rotateX(-63deg) rotateY(-23deg) rotateZ(47deg); + transform: scale(0.8) rotateX(-63deg) rotateY(-23deg) rotateZ(47deg); + } + 10%, + 20%, + 30%, + 40%, + 50%, + 60%, + 70%, + 80%, + 90% { + -webkit-transform: scale(0.6) rotateX(-63deg) rotateY(13deg) rotateZ(47deg); + transform: scale(0.6) rotateX(-63deg) rotateY(13deg) rotateZ(47deg); + } + 100% { + -webkit-transform: scale(0.6) rotateX(-63deg) rotateY(13deg) rotateZ(407deg); + transform: scale(0.6) rotateX(-63deg) rotateY(13deg) rotateZ(407deg); + } +} + +@keyframes ani-cube-3 { + 0% { + -webkit-transform: scale(0.6) rotateX(-63deg) rotateY(13deg) rotateZ(47deg); + transform: scale(0.6) rotateX(-63deg) rotateY(13deg) rotateZ(47deg); + } + 5%, + 15%, + 25%, + 35%, + 45%, + 55%, + 65%, + 75%, + 85%, + 95% { + -webkit-transform: scale(0.8) rotateX(-63deg) rotateY(-23deg) rotateZ(47deg); + transform: scale(0.8) rotateX(-63deg) rotateY(-23deg) rotateZ(47deg); + } + 10%, + 20%, + 30%, + 40%, + 50%, + 60%, + 70%, + 80%, + 90% { + -webkit-transform: scale(0.6) rotateX(-63deg) rotateY(13deg) rotateZ(47deg); + transform: scale(0.6) rotateX(-63deg) rotateY(13deg) rotateZ(47deg); + } + 100% { + -webkit-transform: scale(0.6) rotateX(-63deg) rotateY(13deg) rotateZ(407deg); + transform: scale(0.6) rotateX(-63deg) rotateY(13deg) rotateZ(407deg); + } +} + +@-webkit-keyframes rotate90 { + 0% { + -webkit-transform: rotate(0); + transform: rotate(0); + } + 5%, + 50% { + -webkit-transform: rotate(-90deg); + transform: rotate(-90deg); + } + 55%, + 100% { + -webkit-transform: rotate(0); + transform: rotate(0); + } +} + +@keyframes rotate90 { + 0% { + -webkit-transform: rotate(0); + transform: rotate(0); + } + 5%, + 50% { + -webkit-transform: rotate(-90deg); + transform: rotate(-90deg); + } + 55%, + 100% { + -webkit-transform: rotate(0); + transform: rotate(0); + } +} + +@-webkit-keyframes hamburger-line_top { + 0% { + top: 0; + -webkit-transform: rotate(0); + transform: rotate(0); + } + 5%, + 50% { + top: 50%; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + } + 55%, + 100% { + top: 0; + -webkit-transform: rotate(0); + transform: rotate(0); + } +} + +@keyframes hamburger-line_top { + 0% { + top: 0; + -webkit-transform: rotate(0); + transform: rotate(0); + } + 5%, + 50% { + top: 50%; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + } + 55%, + 100% { + top: 0; + -webkit-transform: rotate(0); + transform: rotate(0); + } +} + +@-webkit-keyframes hamburger-line_middle { + 0% { + opacity: 1; + } + 5%, + 50% { + opacity: 0; + } + 55%, + 100% { + opacity: 1; + } +} + +@keyframes hamburger-line_middle { + 0% { + opacity: 1; + } + 5%, + 50% { + opacity: 0; + } + 55%, + 100% { + opacity: 1; + } +} + +@-webkit-keyframes hamburger-line_bottom { + 0% { + top: 100%; + -webkit-transform: rotate(0); + transform: rotate(0); + } + 5%, + 50% { + top: 50%; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + } + 55%, + 100% { + top: 100%; + -webkit-transform: rotate(0); + transform: rotate(0); + } +} + +@keyframes hamburger-line_bottom { + 0% { + top: 100%; + -webkit-transform: rotate(0); + transform: rotate(0); + } + 5%, + 50% { + top: 50%; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + } + 55%, + 100% { + top: 100%; + -webkit-transform: rotate(0); + transform: rotate(0); + } +} + +@-webkit-keyframes ani-moving-square { + 0%, + 2.5% { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); + } + 10%, + 15% { + -webkit-transform: translate(20px, 0); + transform: translate(20px, 0); + } + 22.5%, + 27.5% { + -webkit-transform: translate(20px, 20px); + transform: translate(20px, 20px); + } + 35%, + 40% { + -webkit-transform: translate(0, 20px); + transform: translate(0, 20px); + } + 47.5%, + 52.5% { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); + } + 60%, + 65% { + -webkit-transform: translate(0, 20px); + transform: translate(0, 20px); + } + 72.5%, + 77.5% { + -webkit-transform: translate(20px, 20px); + transform: translate(20px, 20px); + } + 85%, + 90% { + -webkit-transform: translate(20px, 0); + transform: translate(20px, 0); + } + 97.5%, + 100% { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); + } +} + +@keyframes ani-moving-square { + 0%, + 2.5% { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); + } + 10%, + 15% { + -webkit-transform: translate(20px, 0); + transform: translate(20px, 0); + } + 22.5%, + 27.5% { + -webkit-transform: translate(20px, 20px); + transform: translate(20px, 20px); + } + 35%, + 40% { + -webkit-transform: translate(0, 20px); + transform: translate(0, 20px); + } + 47.5%, + 52.5% { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); + } + 60%, + 65% { + -webkit-transform: translate(0, 20px); + transform: translate(0, 20px); + } + 72.5%, + 77.5% { + -webkit-transform: translate(20px, 20px); + transform: translate(20px, 20px); + } + 85%, + 90% { + -webkit-transform: translate(20px, 0); + transform: translate(20px, 0); + } + 97.5%, + 100% { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); + } +} + +@-webkit-keyframes drawPath { + 0% { + opacity: 1; + stroke-dashoffset: 2870px; + } + 53% { + opacity: 1; + stroke-dashoffset: 0; + } + 78% { + opacity: 0; + } + 100% { + opacity: 0; + stroke-dashoffset: 0; + } +} + +@keyframes drawPath { + 0% { + opacity: 1; + stroke-dashoffset: 2870px; + } + 53% { + opacity: 1; + stroke-dashoffset: 0; + } + 78% { + opacity: 0; + } + 100% { + opacity: 0; + stroke-dashoffset: 0; + } +} + +@media (max-width:1023px) { + .ani.ani-1 { + -webkit-transform: scale(0.5); + transform: scale(0.5); + } + .ani.ani-2 { + top: 120px; + -webkit-transform: scale(0.3); + transform: scale(0.3); + } + .ani.ani-5 { + top: 80%; + } + .ani.ani-6 { + max-height: 30vw; + max-width: 30vw; + max-height: 140px; + max-width: 140px; + } +} + + +/* Banner 09 */ + +.iq-banner-09 { + position: relative; + overflow: hidden; +} + +.iq-banner-09 .banner-text { + z-index: 9; + position: relative; + margin-top: 10%; +} + +.iq-banner-09 .banner-objects { + position: absolute; + left: 0; + top: 0; + display: inline-block; + width: 100%; + height: 100%; + overflow: hidden; +} + +.iq-banner-09 .banner-objects .banner-objects-01 { + position: absolute; + right: -0%; + bottom: 20%; + opacity: 0.2; +} + +.iq-banner-09 .banner-objects .banner-objects-02 { + position: absolute; + bottom: 50%; + margin-bottom: -280px; + left: -20%; + border: 30px solid rgba(255, 255, 255, 0.2); + border-radius: 900px; + height: 400px; + width: 400px; +} + +.iq-banner-09 .banner-objects .banner-objects-03 { + position: absolute; + top: 19%; + right: 25%; + border: 20px solid rgba(255, 255, 255, 0.2); + border-radius: 900px; + height: 300px; + width: 300px; +} + +.iq-banner-09 .form-group { + width: 72%; +} + +.iq-banner-09 .form-control { + border-radius: 4px; + height: 50px; + width: 100%; + display: inline-block; + padding-left: 25px; + box-shadow: none; + border: none; +} + +.iq-banner-09 .banner-service { + background: rgb(255, 255, 255, 0.9); + margin: 100px 0px 50px; + padding: 18px 0; + border-radius: 5px; +} + +.iq-banner-09 i { + font-size: 50px; + color: #4ac4f3; +} + +.banner-service:hover, +.banner-service:focus { + background: #fff; +} + + +/* Banner 10 */ + +.iq-banner-10 { + position: relative; + overflow: hidden; +} + +.iq-banner-10 .container-fluid { + padding: 0 90px; +} + +.iq-banner-10:after { + content: ""; + bottom: -2px; + left: 0; + width: 100%; + height: 330px; + background: url('../images/banner/14.png') no-repeat 0 0; + background-size: cover; + display: inline-block; + position: absolute; +} + +.iq-banner-10 .banner-text { + z-index: 9; + position: relative; + margin-top: 10%; + padding-bottom: 10%; +} + +.iq-banner-10 .banner-text h1 { + font-size: 64px; + line-height: normal; +} + +.iq-banner-10 .banner-img { + width: 90%; + -webkit-box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.36); + -moz-box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.36); + box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.36); +} + +.iq-banner-10 .iq-video { + background: #fff; + display: inline-block; + width: 60px; + height: 60px; + text-align: center; + font-size: 29px; + color: #4ac4f3; + float: left; + border-radius: 100%; + line-height: 2.1; + z-index: 9; + position: relative; +} + +.iq-banner-10 .iq-video i { + margin-left: 5px; +} + +.iq-banner-10 .waves-box { + position: relative; +} + +.iq-banner-10 .iq-waves { + position: absolute; + width: 14rem; + height: 14rem; + left: -90px; + top: -90px; + z-index: 2; + float: right; +} + +.iq-banner-10 .iq-waves .waves { + position: absolute; + width: 384px; + width: 15rem; + height: 384px; + height: 15rem; + background: rgba(255, 255, 255, 0.2); + opacity: 0; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; + border-radius: 320px; + background-clip: padding-box; + -webkit-animation: waves 3s ease-in-out infinite; + animation: waves 3s ease-in-out infinite; +} + +.iq-banner-10 .iq-waves .wave-1 { + -webkit-animation-delay: 0s; + animation-delay: 0s; +} + +.iq-banner-10 .iq-waves .wave-2 { + -webkit-animation-delay: 1s; + animation-delay: 1s; +} + +.iq-banner-10 .iq-waves .wave-3 { + -webkit-animation-delay: 2s; + animation-delay: 2s; +} + +@-webkit-keyframes waves { + 0% { + -webkit-transform: scale(0.2, 0.2); + transform: scale(0.2, 0.2); + opacity: 0; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; + } + 50% { + opacity: 0.9; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; + } + 100% { + -webkit-transform: scale(0.9, 0.9); + transform: scale(0.9, 0.9); + opacity: 0; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; + } +} + +@keyframes waves { + 0% { + -webkit-transform: scale(0.2, 0.2); + transform: scale(0.2, 0.2); + opacity: 0; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; + } + 50% { + opacity: 0.9; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; + } + 100% { + -webkit-transform: scale(0.9, 0.9); + transform: scale(0.9, 0.9); + opacity: 0; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; + } +} + +.iq-banner-10 .banner-objects { + position: absolute; + left: 0; + top: 0; + display: inline-block; + width: 100%; + height: 100%; +} + +.iq-banner-10 .banner-objects .banner-objects-01 { + position: absolute; + left: -8%; + bottom: -20%; + opacity: 0.1; +} + +.iq-banner-10 .banner-objects .banner-objects-02 { + position: absolute; + bottom: 50%; + margin-bottom: -125px; + left: -13%; + border: 15px solid rgba(255, 255, 255, 0.1); + border-radius: 900px; + height: 250px; + width: 250px; +} + +.iq-banner-10 .banner-objects .banner-objects-03 { + position: absolute; + top: 0%; + right: -15%; + border: 30px solid rgba(255, 255, 255, 0.1); + border-radius: 900px; + height: 400px; + width: 400px; +} + + +/* Banner 11 */ + +.iq-banner-11 { + position: relative; + overflow: hidden; +} + +.iq-banner-11 .container-fluid { + padding: 0 90px; +} + +.iq-banner-11 .banner-text { + z-index: 9; + position: relative; + margin-top: 8%; + margin-bottom: 100px; +} + +.iq-banner-11 .banner-text h1 { + font-size: 64px; + line-height: normal; +} + +.iq-banner-11 .banner-img { + width: 110%; +} + +.iq-banner-11 .iq-video { + background: #fff; + display: inline-block; + width: 60px; + height: 60px; + text-align: center; + font-size: 29px; + color: #4ac4f3; + float: left; + border-radius: 100%; + line-height: 2.1; + z-index: 9; + position: relative; +} + + +/* Banner 12 */ + +.iq-banner-12 { + position: relative; + overflow: hidden; +} + +.iq-banner-12 .banner-text { + z-index: 9; + position: relative; + margin-top: 13%; + margin-bottom: 3%; +} + +.iq-banner-12 .banner-img { + max-width: 150%; +} + +.iq-banner-12 .banner-objects .banner-objects-01 { + position: absolute; + right: -0%; + bottom: 20%; + opacity: 0.2; +} + +.iq-banner-12 .banner-objects .banner-objects-02 { + position: absolute; + bottom: 50%; + margin-bottom: -280px; + left: -20%; + border: 30px solid rgba(255, 255, 255, 0.2); + border-radius: 900px; + height: 400px; + width: 400px; +} + +.iq-banner-12 .banner-objects .banner-objects-03 { + position: absolute; + top: 50%; + right: 25%; + border: 20px solid rgba(255, 255, 255, 0.2); + border-radius: 900px; + height: 300px; + width: 300px; +} + +.iq-banner-12 .banner-objects .banner-objects-04 { + position: absolute; + top: 20%; + left: 10%; + opacity: 0.2; +} + +.iq-banner-12 .banner-text .banner-phone { + position: absolute; + left: -50px; + bottom: -31px; + width: 40%; +} + +.iq-banner-12 .banner-text .form-group .form-control { + border: none; + height: 50px; + margin-top: 9px; + border-radius: 0; + margin-right: 10px; +} + +.iq-banner-12 .banner-text .form-group .form-control:focus { + box-shadow: none; + border: none; +} + +.iq-banner-12 .banner-text .button { + border-radius: 0; + background: #333333; + color: #ffffff; +} + +.iq-banner-12 .banner-text .button:hover { + background: #fff; + color: #333333; +} + + +/* Banner 13*/ + +.iq-banner .banner-text .banner-phone { + position: absolute; + right: -50px; + bottom: -18px; + width: 26%; +} + +.iq-banner .banner-text .watch-img { + position: absolute; + width: 20%; + top: 52%; + right: 85% +} + + +/* Banner 14*/ + +.iq-banner-13 .banner-text { + margin-top: 3% +} + +.iq-breadcrumb .banner-img { + max-width: 130%; +} + +.iq-breadcrumb .banner-ani { + position: absolute; + top: 20%; + right: 0 +} + + +/* ---- particles.js container ---- */ + +#particles-js { + width: 100%; + height: 100%; + /* background-image: url('');*/ + background-size: cover; + background-position: 50% 50%; + background-repeat: no-repeat; + position: absolute; +} + + +/*-------------------------------------------------------------------- + How it Works +-----------------------------------------------------------------------*/ + +.iq-works-box { + border: 1px solid #f7f7f7; + background: #fff; + padding: 30px; + -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.02); + -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.02); + box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.02); + position: relative; + transition: all 0.5s ease-in-out; + transition: all 0.5s ease-in-out; + -moz-transition: all 0.5s ease-in-out; + -ms-transition: all 0.5s ease-in-out; + -o-transition: all 0.5s ease-in-out; + -webkit-transition: all 0.5s ease-in-out; +} + +.iq-works-box p { + margin-bottom: 0; +} + +.iq-works-box .icon-bg { + background: rgba(31, 76, 255, 0.1); + height: 100px; + width: 100px; + border-radius: 100px; +} + +.iq-works-box .icon-bg i { + font-size: 50px; + line-height: 100px; + color: #4ac4f3; +} + +.iq-works-box .step { + font-size: 14px; + background: #ffffff; + border-radius: 100px; + border: 1px solid #f7f7f7; + color: #4ac4f3; + width: 30px; + height: 30px; + line-height: 30px; + text-align: center; + position: absolute; + top: 30px; +} + +.iq-works-box:hover { + border: solid transparent 1px; + -webkit-box-shadow: 0 0 40px rgba(var(--primary-rgb-theme-color), .4) !important; + -moz-box-shadow: 0 0 40px rgba(var(--primary-rgb-theme-color), .4) !important; + box-shadow: 0 0 40px rgba(var(--primary-rgb-theme-color), .4) !important; +} + + +/* IQ Works Box No Shadow */ + +.iq-works-box.no-shadow { + border: none; + box-shadow: none; +} + +.iq-works-box.no-shadow:hover { + border: none; + box-shadow: none; +} + + +/* IQ Works Box No Shadow */ + +.iq-works-box.round-icon { + padding: 20px 20px; + border: none; + box-shadow: none; +} + +.iq-works-box.round-icon .icon-bg { + background: none; + height: 100px; + width: 100px; + display: inline-block; + border-radius: 100px; + box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.08); + transition: all 0.5s ease-in-out; + transition: all 0.5s ease-in-out; + -moz-transition: all 0.5s ease-in-out; + -ms-transition: all 0.5s ease-in-out; + -o-transition: all 0.5s ease-in-out; + -webkit-transition: all 0.5s ease-in-out; +} + +.iq-works-box.round-icon .icon-bg i { + font-size: 50px; + line-height: 100px; + color: #4ac4f3; +} + +.iq-works-box.round-icon .step { + font-size: 20px; + background: #ffffff; + border-radius: 100px; + border: 1px solid #f7f7f7; + color: #4ac4f3; + width: 38px; + height: 38px; + line-height: 38px; + text-align: center; + position: absolute; + top: 40px; +} + +.iq-works-box.round-icon:hover { + border: none; + box-shadow: none; +} + +.iq-works-box.round-icon:hover .icon-bg { + box-shadow: 0 0 40px rgba(74, 195, 243, 0.6); + -webkit-box-shadow: 0 0 40px rgba(74, 195, 243, 0.6); + -moz-box-shadow: 0 0 40px rgba(74, 195, 243, 0.6); +} + + +/* IQ Border Block */ + +.iq-border-block { + border: 1px solid #f7f7f7; + padding: 50px 20px; + position: relative; +} + +.iq-border-block .icon-bg { + height: 100px; + width: 100px; + border-radius: 100px; +} + +.iq-border-block .icon-bg i { + font-size: 50px; + line-height: 100px; + color: #4ac4f3; +} + +.iq-border-block .step { + font-size: 20px; + background: #ffffff; + border-radius: 100px; + border: 1px solid #f7f7f7; + color: #4ac4f3; + width: 38px; + height: 38px; + line-height: 38px; + text-align: center; + position: absolute; + top: 40px; +} + +.iq-border-block { + display: inline-block; + overflow: hidden; + position: relative; +} + +.iq-border-block:before, +.iq-border-block:after, +.iq-border-block>.border-box:before, +.iq-border-block>.border-box:after { + content: ""; + background: #4ac4f3; + position: absolute; + transition: all 0.3s ease 0s; +} + +.iq-border-block:before, +.iq-border-block:after { + bottom: 0; + right: 0; +} + +.iq-border-block:before { + width: 100%; + height: 2px; + transform: translateX(-100%); + transition-delay: 0.9s; +} + +.iq-border-block:after { + width: 2px; + height: 100%; + transform: translateY(100%); + transition-delay: 0.6s; +} + +.iq-border-block>.border-box:before, +.iq-border-block>.border-box:after { + top: 0; + left: 0; +} + +.iq-border-block>.border-box:before { + width: 100%; + height: 2px; + transform: translateX(100%); + transition-delay: 0.3s; +} + +.iq-border-block>.border-box:after { + width: 2px; + height: 100%; + transform: translateY(-100%); + transition-delay: 0s; +} + +.iq-border-block:hover:before, +.iq-border-block:hover:after, +.iq-border-block:hover>.border-box:before, +.iq-border-block:hover>.border-box:after { + transform: translate(0, 0); +} + +.iq-border-block:hover:before { + transition-delay: 0s; +} + +.iq-border-block:hover:after { + transition-delay: 0.3s; +} + +.iq-border-block:hover>.border-box:before { + transition-delay: 0.6s; +} + +.iq-border-block:hover>.border-box:after { + transition-delay: 0.9s; +} + + +/*--------------------------------------------------------------------- + Who is Sofbox ? +-----------------------------------------------------------------------*/ + +.how-works { + position: relative; + overflow: hidden; +} + +.iq-works-img { + width: 100%; +} + +.iq-objects { + position: absolute; + left: 0; + top: 0; + display: inline-block; + width: 100%; + height: 100%; + z-index: -1; +} + +.iq-objects .iq-objects-01 { + position: absolute; + bottom: 10%; + left: 0; +} + +.iq-objects .iq-objects-02 { + position: absolute; + top: 10%; + right: 35%; +} + +.iq-objects .iq-objects-03 { + position: absolute; + top: 30%; + right: 0; +} + +.iq-objects .iq-objects-04 { + position: absolute; + top: 0%; + right: -13%; + border: 56px solid #4ac4f3; + border-radius: 900px; + height: 600px; + width: 600px; +} + + +/*--------------------------------------------------------------------- + All four Productivity +-----------------------------------------------------------------------*/ + +.how-works { + position: relative; + overflow: hidden; +} + +.iq-works-img { + width: 100%; +} + +.iq-objectsnew { + position: absolute; + left: 0; + top: 0; + display: inline-block; + width: 100%; + height: 100%; + z-index: -1; +} + +.iq-objectsnew .iq-objects-01 { + position: absolute; + bottom: 10%; + left: 0; +} + +.iq-objectsnew .iq-objects-02 { + position: absolute; + top: 10%; + right: 35%; +} + +.iq-objectsnew .iq-objects-03 { + position: absolute; + top: 30%; + right: 0; +} + +.iq-objectsnew .iq-objects-04 { + position: absolute; + top: 0%; + right: -13%; + border: 56px solid #4ac4f3; + border-radius: 900px; + height: 600px; + width: 600px; +} + + +/*--------------------------------------------------------------------- + Software Features +-----------------------------------------------------------------------*/ + +.software { + position: relative; +} + +.iq-software-demo { + position: absolute; + top: 50px; + height: 100%; + width: 50%; + left: 0; +} + +.iq-list li { + margin-bottom: 15px; + line-height: 26px; +} + +.iq-list li i { + float: left; +} + +.iq-list li span { + display: table-cell; +} + +.iq-objects-software { + position: absolute; + left: 0; + top: 0; + display: inline-block; + width: 100%; + height: 100%; + z-index: -1; +} + +.iq-objects-software .iq-objects-01 { + position: absolute; + top: 0; + left: 0; +} + +.iq-objects-software .iq-objects-02 { + position: absolute; + bottom: 5%; + left: 15%; +} + +.iq-objects-software .iq-objects-03 { + position: absolute; + top: 0%; + left: 10%; + border: 40px solid #4ac4f3; + border-radius: 900px; + height: 600px; + width: 600px; +} + + +/*--------------------------------------------------------------------- + All four Productivity +-----------------------------------------------------------------------*/ + +.software { + position: relative; +} + +.iq-software-demo { + position: absolute; + top: 50px; + height: 100%; + width: 50%; + left: 0; +} + +.iq-list li { + margin-bottom: 15px; + line-height: 26px; +} + +.iq-list li i { + float: left; +} + +.iq-list li span { + display: table-cell; +} + +.iq-objects-softwarenew { + position: absolute; + left: 0; + top: 0; + display: inline-block; + width: 100%; + height: 100%; + z-index: -1; +} + +.iq-objects-softwarenew .iq-objects-01 { + position: absolute; + top: 0; + left: 0; +} + +.iq-objects-softwarenew .iq-objects-02 { + position: absolute; + bottom: 5%; + left: 15%; +} + +.iq-objects-softwarenew .iq-objects-03 { + position: absolute; + top: 0%; + left: 10%; + border: 40px solid #4ac4f3; + border-radius: 900px; + height: 600px; + width: 600px; +} + + +/*--------------------------------------------------------------------- + Great screenshots +-----------------------------------------------------------------------*/ + +.iq-screenshots { + overflow: hidden; + position: relative; +} + +@keyframes heartbeat { + 0% { + transform: scale(0); + } + 25% { + transform: scale(1.2); + } + 50% { + transform: scale(1); + } + 75% { + transform: scale(1.2); + } + 100% { + transform: scale(1); + } +} + +.screenshots-slider { + display: inline-block; + width: 100%; + min-height: 580px; +} + +.slider-container { + position: absolute; + left: 50%; + top: 50%; + width: 780px; + height: 580px; + margin: -300px 0 0 -390px; +} + +.slider-container .slider-content { + position: relative; + left: 50%; + top: 50%; + width: 100%; + height: 100%; + transform: translate(-50%, -50%); +} + +.slider-container .slider-content .slider-single { + position: absolute; + z-index: 0; + left: 0; + top: 0; + width: 100%; + height: 100%; + transition: z-index 0ms 250ms; +} + +.slider-container .slider-content .slider-single .slider-single-image { + position: relative; + left: 0; + top: 0; + width: 100%; + height: 100%; + box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.2); + transition: 500ms cubic-bezier(0.17, 0.67, 0.55, 1.43); + transform: scale(0); + opacity: 0; +} + +.slider-container .slider-content .slider-single.preactivede .slider-single-image { + transform: translateX(-50%) scale(0); +} + +.slider-container .slider-content .slider-single.preactive { + z-index: 1; +} + +.slider-container .slider-content .slider-single.preactive .slider-single-image { + opacity: .3; + transform: translateX(-25%) scale(0.8); +} + +.slider-container .slider-content .slider-single.proactive { + z-index: 1; +} + +.slider-container .slider-content .slider-single.proactive .slider-single-image { + opacity: .3; + transform: translateX(25%) scale(0.8); +} + +.slider-container .slider-content .slider-single.proactivede .slider-single-image { + transform: translateX(50%) scale(0); +} + +.slider-container .slider-content .slider-single.active { + z-index: 2; +} + +.slider-container .slider-content .slider-single.active .slider-single-image { + opacity: 1; + transform: translateX(0%) scale(1); +} + +.slider-container .slider-left { + position: absolute; + z-index: 3; + display: block; + right: 115%; + top: 50%; + color: #ffffff; + transform: translateY(-50%); + padding: 20px 15px; + font-size: 60px; +} + +.slider-container .slider-right { + position: absolute; + z-index: 3; + display: block; + left: 115%; + top: 50%; + color: #ffffff; + transform: translateY(-50%); + padding: 20px 15px; + font-size: 60px; +} + + +/* Screenshots Slider NO Shadow */ + +.no-shadow .slider-container .slider-content .slider-single .slider-single-image { + box-shadow: none; +} + +.no-shadow .slider-container .slider-content .slider-single.preactive .slider-single-image { + opacity: 0; +} + +.no-shadow .slider-container .slider-content .slider-single.proactive .slider-single-image { + opacity: 0; +} + + +/*--------------------------------------------------------------------- + Special Features +-----------------------------------------------------------------------*/ + +.iq-amazing-tab .nav.nav-tabs { + border-bottom: 1px solid #e9e9e9; + overflow: hidden; + text-align: center; + display: inline-block; + width: 100%; +} + +.iq-amazing-tab .nav.nav-tabs li { + margin-bottom: 0; + display: inline-block; + float: none; + width: 25%; + position: relative; +} + +.iq-amazing-tab .nav-tabs>li a.active, +.iq-amazing-tab .nav-tabs>li a.active:hover, +.iq-amazing-tab .nav-tabs>li a.active:focus, +.iq-amazing-tab .nav-tabs>li a.active1, +.iq-amazing-tab .nav-tabs>li a.active1:hover, +.iq-amazing-tab .nav-tabs>li a.active1:focus { + background-color: #f5f7fb !important; +} + +.iq-amazing-tab .nav.nav-tabs li a { + width: 100%; + display: inline-block; + position: relative; + padding: 20px 40px; + margin-right: 0; + text-align: center; + color: #666666; + border: none; + position: relative; +} + +.iq-amazing-tab .nav-tabs li a i { + font-size: 50px; + margin-right: 20px; + vertical-align: middle; + text-align: right; +} + +.iq-amazing-tab .nav.nav-tabs li a span { + font-size: 18px; + font-family: 'Raleway', sans-serif; + font-weight: 600; + line-height: 40px; + vertical-align: sub; + text-align: left; +} + +.iq-amazing-tab .nav.nav-tabs li a:hover { + color: #4ac4f3; + background: none; + border: none; +} + +.iq-amazing-tab .nav.nav-tabs li a:hover i { + color: #4ac4f3; +} + +.iq-amazing-tab .nav.nav-tabs li a.active, +.iq-amazing-tab .nav.nav-tabs li a.active:hover, +.iq-amazing-tab .nav.nav-tabs li a.active:focus { + color: #333333; + background: none; + border: none; +} + +.iq-amazing-tab .nav.nav-tabs li a.active i, +.iq-amazing-tab .nav.nav-tabs li a.active:hover i, +.iq-amazing-tab .nav.nav-tabs li a.active:focus i, +.iq-amazing-tab .nav.nav-tabs li a.active1 i, +.iq-amazing-tab .nav.nav-tabs li a.active1:hover i, +.iq-amazing-tab .nav.nav-tabs li a.active1:focus i { + color: #4ac4f3; +} + +.iq-amazing-tab .nav.nav-tabs li a:before, +.iq-amazing-tab .nav.nav-tabs li a:hover:before, +.iq-amazing-tab .nav.nav-tabs li a:focus:before { + position: absolute; + left: -100%; + bottom: -1px; + height: 3px; + width: 100%; + content: ""; + opacity: 0; + background: #4ac4f3; + -webkit-transition: all 0.5s ease-out 0s; + -moz-transition: all 0.5s ease-out 0s; + -ms-transition: all 0.5s ease-out 0s; + -o-transition: all 0.5s ease-out 0s; + transition: all 0.5s ease-out 0s; +} + +.iq-amazing-tab .nav.nav-tabs li a.active:before, +.iq-amazing-tab .nav.nav-tabs li a.active:hover:before, +.iq-amazing-tab .nav.nav-tabs li a.active:focus:before, +.iq-amazing-tab .nav.nav-tabs li a:hover, +.iq-amazing-tab .nav.nav-tabs li a.active1:before, +.iq-amazing-tab .nav.nav-tabs li a.active1:hover:before { + opacity: 1; + left: 0%; +} + + +/*--------------------------------------------------------------------- + More Useful Infomation +-----------------------------------------------------------------------*/ + +.info-box { + border: 1px solid #eee; + height: 140px; + width: 140px; + border-radius: 70px; + text-align: center; + display: inline-block; +} + +.info-box .info-icon i { + font-size: 56px; +} + +.info-box .info-icon { + border-radius: 50px; + box-shadow: 0px 0px 30px 5px #eee; + height: 100px; + width: 100px; + text-align: center; + margin: 20px; + line-height: 94px; +} + + +/*--------------------------------------------------------------------- + Sofbox Specialities +-----------------------------------------------------------------------*/ + +.iq-fancy-box { + padding: 30px; + overflow: hidden; + position: relative; + background: #fff; + border: 1px solid #f2f2f2; +} + +.iq-fancy-box .iq-icon { + border-radius: 90px; + display: inline-block; + height: 86px; + width: 86px; + line-height: 86px; + text-align: center; + color: #4ac4f3; + background: #f4f4f4; + -webkit-transition: all 0.5s ease-out 0s; + -moz-transition: all 0.5s ease-out 0s; + -ms-transition: all 0.5s ease-out 0s; + -o-transition: all 0.5s ease-out 0s; + transition: all 0.5s ease-out 0s; +} + +.iq-fancy-box:hover .iq-icon { + color: #f4f4f4; + background: #4ac4f3; +} + +.iq-fancy-box .iq-icon i { + font-size: 46px; +} + +.iq-fancy-box .fancy-content h5 { + z-index: 9; + position: relative; +} +.iq-specialities { padding-bottom: calc(100px - 30px) !important; } + + +/*--------------------------------------------------------------------- + Sofbox Specialities +-----------------------------------------------------------------------*/ + +.iq-fancy-box-new { + padding: 40px 15px 25px 15px; + overflow: hidden; + position: relative; +} + +.iq-fancy-box-new .iq-icon { + border-radius: 90px; + display: inline-block; + height: 86px; + width: 86px; + line-height: 86px; + text-align: center; + color: #4ac4f3; + background: #f4f4f4; + -webkit-transition: all 0.5s ease-out 0s; + -moz-transition: all 0.5s ease-out 0s; + -ms-transition: all 0.5s ease-out 0s; + -o-transition: all 0.5s ease-out 0s; + transition: all 0.5s ease-out 0s; +} + +.iq-fancy-box-new:hover .iq-icon { + color: #f4f4f4; + background: #4ac4f3; +} + +.iq-fancy-box-new .iq-icon i { + font-size: 46px; +} + +.iq-fancy-box-new .fancy-content h5 { + z-index: 9; + position: relative; +} + + +/*--------------------------------------------------------------------- + Sofbox Specialities +-----------------------------------------------------------------------*/ + +.iq-fancy-box-1 { + padding: 30px; + overflow: hidden; + position: relative; +} + +.iq-fancy-box-1 .iq-icon { + border-radius: 90px; + display: inline-block; + height: 86px; + width: 86px; + line-height: 86px; + text-align: center; + color: #4ac4f3; + -webkit-transition: all 0.5s ease-out 0s; + -moz-transition: all 0.5s ease-out 0s; + -ms-transition: all 0.5s ease-out 0s; + -o-transition: all 0.5s ease-out 0s; + transition: all 0.5s ease-out 0s; +} + +.iq-fancy-box-1:hover .iq-icon { + color: #333333; +} + +.iq-fancy-box-1 .iq-icon i { + font-size: 46px; +} + +.iq-fancy-box-1 .fancy-content h5 { + z-index: 9; + position: relative; +} + + +/*--------------------------------------------------------------------- + Counter +-----------------------------------------------------------------------*/ + +.counter { + position: relative; + min-height: 60px; + display: flex; + align-items: flex-start; +} + +.counter i { + font-size: 60px; + line-height: 65px; + display: inline-block; + float: left; + margin-right: 20px; +} + +.counter-date { + flex: 1; +} + +.counter span { + display: inline-block; + width: 100%; + font-size: 40px; + margin: 0; + margin-bottom: 5px; + line-height: 40px; +} + +.counter label { + font-size: 18px; + display: inline-block; + width: 100%; + position: relative; + margin: 0 0 15px 0; + margin-bottom: 0; + float: left; +} + +.counter-info { + border-top: 1px solid rgba(255, 255, 255, 0.2); + display: inline-block; + width: 100%; + position: relative; +} + +.counter-info-img { + position: relative; + display: inline-block; + width: 100%; + height: 100%; + min-height: 200px; +} + +.counter-info-img img { + +} + +.counter-info .iq-video { + background: #fff; + display: inline-block; + width: 80px; + height: 80px; + text-align: center; + font-size: 32px; + color: #4ac4f3; + float: left; + border-radius: 100%; + line-height: 2.6; + z-index: 9; + position: relative; +} + +.counter-info .iq-video i { + margin-left: 7px; +} + +.counter-info .waves-box { + position: absolute; + top: 36%; + left: 60%; +} + +.counter-info .iq-waves { + position: absolute; + width: 14rem; + height: 14rem; + left: -80px; + top: -80px; + z-index: 2; + float: right; +} + +.counter-info .iq-waves .waves { + position: absolute; + width: 384px; + width: 15rem; + height: 384px; + height: 15rem; + background: rgba(255, 255, 255, 0.2); + opacity: 0; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; + border-radius: 320px; + background-clip: padding-box; + -webkit-animation: waves 3s ease-in-out infinite; + animation: waves 3s ease-in-out infinite; +} + +.counter-info .iq-waves .wave-1 { + -webkit-animation-delay: 0s; + animation-delay: 0s; +} + +.counter-info .iq-waves .wave-2 { + -webkit-animation-delay: 1s; + animation-delay: 1s; +} + +.counter-info .iq-waves .wave-3 { + -webkit-animation-delay: 2s; + animation-delay: 2s; +} + + +/* Counter */ + +.iq-counter { + position: relative; + min-height: 60px; + display: flex; + align-items: flex-start; +} + +.iq-counter i { + font-size: 60px; + line-height: 65px; + display: inline-block; + float: left; + margin-right: 20px; +} + +.counter-date { + flex: 1; +} + +.iq-counter span { + display: inline-block; + width: 100%; + font-size: 40px; + margin: 0; + margin-bottom: 5px; + line-height: 40px; +} + +.iq-counter label { + font-size: 14px; + display: inline-block; + width: 100%; + position: relative; + margin: 0 0 15px 0; + margin-bottom: 0; + float: left; +} + +.iq-counter-box-1 .heading-title p { + padding-left: 20%; + padding-right: 20%; +} + + +/* Counter 1 */ + +.iq-counter-1 { + position: relative; + min-height: 60px; + display: flex; + align-items: flex-start; +} + +.iq-counter-1 i { + font-size: 60px; + line-height: 65px; + display: inline-block; + float: left; + margin-right: 20px; +} + +.counter-date { + flex: 1; +} + +.iq-counter-1 span { + display: inline-block; + width: 100%; + font-size: 40px; + margin: 0; + margin-bottom: 5px; + line-height: 40px; +} + +.iq-counter-1 label { + margin-top: 40px; + font-size: 14px; + display: inline-block; + width: 100%; + position: relative; + margin: 0 0 15px 0; + margin-bottom: 0; + float: left; +} + +.iq-counter-1-box-2 .heading-title p { + padding-left: 20%; + padding-right: 20%; +} + + +/*--------------------------------------------------------------------- + Loved By Our Customers +-----------------------------------------------------------------------*/ + +.iq-loved-customers .owl-carousel .owl-item .item { + padding: 0 0 5px; +} + +.iq-client { + position: relative; + margin-top: 40px; + padding: 30px; + text-align: center; + border: 1px solid #f2f2f2; + -webkit-box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.06); + -moz-box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.06); + box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.06); +} + +.iq-client:before { + position: absolute; + content: ""; + bottom: -8px; + left: 5%; + width: 90%; + background: #4ac4f3; + height: 8px; + display: inline-block; + z-index: -1; +} + +.iq-client .client-img { + width: 80px; + height: 80px; + display: inline-block; + border-radius: 90px; + position: absolute; + left: 50%; + top: 0; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); +} + +.client-info { + margin-top: 30px; +} + +.client-name:before { + content: "\f10d"; + font-family: "Font Awesome 5 Free"; + position: absolute; + top: 15px; + left: 15px; + font-size: 44px; + color: #f0f0f0; + line-height: normal; + font-weight: 900; +} + +.client-name:after { + content: "\f10e"; + font-family: "Font Awesome 5 Free"; + position: absolute; + bottom: 15px; + right: 15px; + font-size: 44px; + color: #f0f0f0; + line-height: normal; + font-weight: 900; +} + +.client-info p { + line-height: 28px; +} + + +/*--------------------------------------------------------------------- + Affordable Price +-----------------------------------------------------------------------*/ + +.iq-pricing { + position: relative; + display: inline-block; + width: 100%; + border: 1px solid #ededed; + background: #fff; +} + +.iq-pricing .price-title { + padding: 35px 20px; + position: relative; +} + +.iq-pricing .price-title:after { + position: absolute; + content: ""; + left: 0; + bottom: 0; + background: url('../images/drive/09.png') no-repeat center bottom; + background-size: 100%; + height: 100%; + width: 100%; +} + +.iq-pricing.pricing-02 .price-title:after { + position: absolute; + content: ""; + left: 0; + bottom: 0; + background: url('../images/drive/11.png') no-repeat center bottom; + background-size: 100%; + height: 100%; + width: 100%; +} + +.iq-pricing.pricing-03 .price-title:after { + position: absolute; + content: ""; + left: 0; + bottom: 0; + background: url('../images/drive/12.png') no-repeat center bottom; + background-size: 100%; + height: 100%; + width: 100%; +} + +.iq-pricing .price-title h2 { + font-family: 'Open Sans', sans-serif; + line-height: 60px; + font-size: 50px; + position: relative; +} + +.iq-pricing .price-title h2 small { + font-size: 16px; + color: #fff; + vertical-align: super; + padding: 0 5px; +} + +.iq-pricing .price-title h2 small:first-child { + font-size: 24px; +} + +.iq-pricing .price-title span { + letter-spacing: 6px; + position: relative; +} + +.iq-pricing ul { + margin: 20px 0 0; +} + +.iq-pricing ul li { + line-height: 50px; +} + +.iq-pricing .price-footer { + padding: 30px 0; + z-index: 9; + position: relative; +} + + +/*--------------------------------------------------------------------- + Meet the Team +-----------------------------------------------------------------------*/ + +.iq-team { + position: relative; + overflow: hidden; +} + +.iq-team .iq-team-info { + padding: 10px 0; +} + +.iq-team .iq-team-info span { + font-family: 'Raleway', sans-serif; +} + +.iq-team .share { + background: none; + position: absolute; + left: -65px; + top: 10px; + width: 40px; + -webkit-transition: all 0.5s ease-out 0s; + -moz-transition: all 0.5s ease-out 0s; + -ms-transition: all 0.5s ease-out 0s; + -o-transition: all 0.5s ease-out 0s; + transition: all 0.5s ease-out 0s; +} + +.iq-team:hover .share { + left: 15px; +} + +.iq-team .share ul li { + margin: 5px 0; +} + +.iq-team .share ul li a { + color: #fff; + width: 45px; + height: 45px; + line-height: 45px; + background: #333; + color: #fff; + border-radius: 90px; + text-align: center; + display: inline-block; +} + +.iq-team .share ul li a:hover { + background: #4ac4f3; +} + +.iq-team .iq-team-img { + position: relative; +} + +.iq-team .iq-team-img img { + width: 100%; +} + +.iq-team .iq-team-img:before { + content: ""; + bottom: 0; + opacity: 0; + left: 0; + position: absolute; + width: 100%; + height: 100%; + background: rgba(74, 196, 243, 0); + background: -moz-linear-gradient(top, rgba(74, 196, 243, 0) 0%, rgba(74, 196, 243, 1) 100%); + background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(74, 196, 243, 0)), color-stop(100%, rgba(74, 196, 243, 1))); + background: -webkit-linear-gradient(top, rgba(74, 196, 243, 0) 0%, rgba(74, 196, 243, 1) 100%); + background: -o-linear-gradient(top, rgba(74, 196, 243, 0) 0%, rgba(74, 196, 243, 1) 100%); + background: -ms-linear-gradient(top, rgba(74, 196, 243, 0) 0%, rgba(74, 196, 243, 1) 100%); + background: linear-gradient(to bottom, rgba(74, 196, 243, 0) 0%, rgba(74, 196, 243, 1) 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4ac4f3', endColorstr='#4ac4f3', GradientType=0); + -webkit-transition: all 0.3s ease-out 0s; + -moz-transition: all 0.3s ease-out 0s; + -ms-transition: all 0.3s ease-out 0s; + -o-transition: all 0.3s ease-out 0s; + transition: all 0.3s ease-out 0s; +} + +.iq-team:hover .iq-team-img:before { + opacity: 1; +} + + +/*Team 1*/ + +.iq-team-1 .team-blog { + border: 1px solid #f2f2f2; + border-bottom: 2px solid #4ac3f3; + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + border-radius: 10px; +} + +.iq-team-1 .team-blog img { + display: inline; +} + +.iq-team-1 .iq-star i { + font-size: 16px; + margin-right: 4px; + color: #4ac3f3; +} + + +/*--------------------------------------------------------------------- + Compare Services +-----------------------------------------------------------------------*/ + +.iq-services-box .iq-icon i { + font-size: 60px; + float: left; + margin-right: 20px; +} + +.iq-services-box .services-content { + display: table-cell; +} + +.iq-progress-bar-text { + font-size: 16px; + text-transform: uppercase; + color: #4ac4f3; + position: relative; + margin-top: 50px; +} + +.iq-progress-bar-text span { + float: right; + background: #fff; + border-radius: 4px; + text-align: center; + width: 40px; + height: 30px; + line-height: 30px; + font-weight: 600; + position: relative; + bottom: 50px; + right: 0; +} + +.iq-progress-bar-text span:before { + content: ""; + position: absolute; + left: 50%; + margin-left: -7px; + bottom: -7px; + width: 0; + height: 0; + border-style: solid; + border-width: 7px 7px 0 7px; + border-color: #ffffff transparent transparent transparent; +} + +.iq-progress-bar { + background: #fff none repeat scroll 0 0; + box-shadow: 0 0 0; + height: 8px; + margin: 0; + position: relative; + width: 100%; +} + +.iq-progress-bar>span { + background: #333 none repeat scroll 0 0; + display: block; + height: 100%; + width: 0; +} + +.iq-compare-services { padding-bottom: calc(100px - 22px) !important; } + +/*--------------------------------------------------------------------- + Frequently Asked Questions +-----------------------------------------------------------------------*/ + +.iq-asked { + position: relative; +} + +.iq-accordion { + z-index: 9; + position: relative; +} + +.iq-accordion .accordion-title { + position: relative; + padding: 15px 50px 15px 15px; + font-size: 16px; + line-height: normal; + cursor: pointer; + background-color: #f5f7fb; + display: block; + text-align: left; + color: #2c3e50; + text-decoration: none; + border-radius: 4px; +} + +.iq-accordion .accordion-title:before { + -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.06); + -moz-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.06); + box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.06); + cursor: pointer; + content: "\f3d0"; + font-family: "Ionicons"; + position: absolute; + top: 0; + right: 0; + display: block; + padding: 14px 20px; + color: #fff; + font-size: 16px; + line-height: 24px; + height: 100%; + font-weight: normal; + -webkit-transition: all 0.25s ease-in-out 0s; + -moz-transition: all 0.25s ease-in-out 0s; + transition: all 0.25s ease-in-out 0s; + background: #4ac4f3; +} + +.iq-accordion .accordion-active .accordion-title:before { + content: "\f3d8"; + font-family: "Ionicons"; +} + +.iq-accordion .accordion-details { + display: none; + overflow: hidden; + text-align: left; + padding: 15px 15px; + color: #666666; + line-height: 24px; + background: #fff; + border: 1px solid #eeeeee; + border-top: none; + -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.06); + -moz-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.06); + box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.06); +} + +.iq-accordion .iq-accordion { + margin-bottom: 30px; +} + +.iq-accordion .iq-accordion:last-child { + margin-bottom: 0; +} + +.iq-objects-asked { + position: absolute; + left: 0; + top: 0; + display: inline-block; + width: 100%; + height: 100%; +} + +.iq-objects-asked .iq-objects-01 { + position: absolute; + bottom: 10%; + left: 0; +} + +.iq-objects-asked .iq-objects-02 { + position: absolute; + top: 37%; + left: 35%; +} + +.iq-objects-asked .iq-objects-03 { + position: absolute; + top: 28%; + left: 13%; + border: 25px solid #4ac4f3; + border-radius: 900px; + height: 350px; + width: 350px; +} + + +/*--------------------------------------------------------------------- + Latest Blog Post +-----------------------------------------------------------------------*/ + +.iq-blog-box { + -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.06); + -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.06); + box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.06); +} + +.iq-blog-box .iq-blog-image { + position: relative; +} + +.iq-blog-box .iq-blog-image img { + width: 100%; +} + +.iq-blog-detail { + padding: 20px; + background: #fff; +} + +.iq-blog-detail a, +.iq-blog-detail .blog-title a h5 { + color: #333; + transition: all 0.5s ease-in-out; + transition: all 0.5s ease-in-out; + -moz-transition: all 0.5s ease-in-out; + -ms-transition: all 0.5s ease-in-out; + -o-transition: all 0.5s ease-in-out; + -webkit-transition: all 0.5s ease-in-out; +} + +.list-inline-item:not(:last-child) { + margin-right: 1rem; +} + +.iq-blog-detail a:hover, +.iq-blog-detail .blog-title a:hover h5 { + color: #4ac4f3; +} + +.iq-blog-detail p { + font-size: 14px; + } + + .iq-blog-detail a { + font-size: 14px; + font-weight: 700; + color: #666666; + } + +.iq-blog-detail a.button { + color: #fff; +} + +.iq-blog-detail a i { + color: #4ac4f3; +} + +.iq-blog-meta { + margin: 15px 0 0px; + border-top: 1px solid #ececec; + padding-top: 15px; +} + +.iq-blog-meta ul li { + margin: 0 15px 0 0; + padding: 0; + font-size: 16px; +} + +.iq-blog-meta ul li:last-child { + margin: 0; +} + +.blog-section { + padding-bottom: calc(100px - 32px) !important; +} + + +/*video vimeo and youtube*/ + +.iq-bolg-video { + height: 0; + padding-bottom: 56.5%; + position: relative; + overflow: hidden; +} + +.iq-bolg-video video, +.iq-bolg-video embed, +.iq-bolg-video iframe, +.iq-bolg-video object { + top: 0; + left: 0; + width: 100%; + height: 100%; + position: absolute; + border: none; +} + + +/*blog-entry-audio*/ + +.media-wrapper video { + width: 100%; + height: 100%; + display: inline-block; + float: left; +} + +.players { + position: absolute; + bottom: 15px; + display: inline-block; + left: 50%; + transform: translateX(-50%); + -webkit-transform: translateX(-50%); + -o-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -moz-transform: translateX(-50%); +} + + +/*--------------------------------------------------------------------- + Our clients +-----------------------------------------------------------------------*/ + +.iq-our-clients { + border-top: 1px solid #ededed; +} + +.iq-our-clients .owl-carousel .owl-nav { + margin-top: -20px; +} + +.iq-our-new { + border-bottom: 1px solid #ededed; + border-top: 1px solid #ededed; +} + + +/* clients Box*/ + +.iq-clients-box { + display: inline-block; + border-top: 1px solid #f2f2f2; + border-right: 1px solid #f2f2f2; +} + +.iq-clients-box .clients .clients-brd { + border: 1px solid #f2f2f2; +} + +.iq-clients-box ul li { + width: 33.33%; + border-left: 1px solid #f2f2f2; + border-bottom: 1px solid #f2f2f2; + float: left; + margin: 0; + padding: 15px 0; + text-align: center; +} + +.iq-clients-box ul li.small { + width: 25%; +} + +.iq-clients-box ul li:nth-child(3n) { + border-righ: 1px solid #f2f2f2; +} + + +/*--------------------------------------------------------------------- + Subscribe Our Newsletter +-----------------------------------------------------------------------*/ + +.iq-newsletter .form-group { + width: 72%; +} + +.iq-newsletter .form-control { + border-radius: 4px; + height: 50px; + width: 100%; + display: inline-block; + padding-left: 25px; + box-shadow: none; + border: none; +} + +.iq-newsletter .form-group { + width: 72%; +} + +.iq-newsletter .form-control { + border-radius: 4px; + height: 50px; + width: 100%; + display: inline-block; + padding-left: 25px; + box-shadow: none; + border: none; +} + + +/*--------------------------------------------------------------------- + Get in Touch +-----------------------------------------------------------------------*/ + +.iq-footer-box .iq-icon i { + font-size: 26px; + float: left; + margin-right: 20px; + height: 60px; + width: 60px; + background: #f4f4f4; + text-align: center; + line-height: 60px; + color: #4ac4f3; + border-radius: 90px; +} + +.iq-footer-box .footer-content { + display: table-cell; +} + +.info-share { + margin: 30px 0 0; + padding: 0; + text-align: left; +} + +.info-share li { + display: inline-block; + list-style: none; + padding: 0; + margin: 0px 5px; +} + +.info-share li a { + display: block; + width: 45px; + height: 45px; + line-height: 45px; + font-size: 16px; + color: #666; + background: transparent; + border: 1px solid #666; + text-align: center; + border-radius: 50%; +} + +.info-share li a:hover { + background: #4ac4f3; + border-color: #4ac4f3; + color: #fff; +} + +.footer-copyright { + border-top: 1px solid #efefef; +} + + +/*--------------------------------------------------------------------- + Footer Info +-----------------------------------------------------------------------*/ + +.footer-info { + position: relative; +} + +.footer-info .map { + border: 0px; + width: 100%; + height: 100%; + position: absolute; + top: 0; + left: 0; + z-index: 1; + -webkit-filter: grayscale(100%); + -moz-filter: grayscale(100%); + -ms-filter: grayscale(100%); + -o-filter: grayscale(100%); + filter: grayscale(100%); +} + +.iq-get-in { + position: relative; + z-index: 9; + background: #fff; + padding: 30px 30px; + display: inline-block; + width: 100%; + margin: 30px auto; + -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.08); + -moz-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.08); + box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.08); +} + +.contact-form .section-field { + position: relative; + width: 100%; + float: left; +} + +.contact-form .section-field input { + position: relative; + width: 100%; + margin-bottom: 20px; + border-radius: 4px; + padding-left: 15px; + height: 48px; + line-height: 48px; + clear: both; + color: #b6b6b6; + border: 1px solid #e1e1e1; +} + +.contact-form .section-field input:focus, +.contact-form .section-field.textarea textarea:focus { + border: 1px solid #4ac4f3; + box-shadow: none; + outline: none; +} + +.contact-form .section-field.textarea textarea { + width: 100%; + float: left; + color: #b6b6b6; + border: 1px solid #e1e1e1; + border-radius: 4px; + padding: 15px 0 0 20px; + resize: none; +} + +#formmessage { + display: none; +} + +#success { + display: none; + margin-top: 10px; +} + +.contact-info { + position: relative; +} + +.contact-info:before { + content: ""; + position: absolute; + height: 100%; + width: 1px; + left: 15px; + top: 0; + background: #e5e5e5; +} + +.info-share { + margin: 0 0; + padding: 0; + text-align: left; +} + +.info-share li { + display: inline-block; + list-style: none; + padding: 0; + margin: 0px 5px; +} + +.info-share li a { + display: block; + width: 45px; + height: 45px; + line-height: 45px; + font-size: 16px; + color: #666; + background: transparent; + border: 1px solid #666; + text-align: center; + border-radius: 50%; +} + +.info-share li a:hover { + background: #4ac4f3; + border-color: #4ac4f3; + color: #fff; +} + + +/*--------------------------------------------------------------------- + Footer 2 +-----------------------------------------------------------------------*/ + +.iq-footer { + background: #111111; +} + +.iq-footer hr { + border-bottom: 1px solid rgba(255, 255, 255, 0.2); +} + +.iq-footer.gray-footer { + background: #000; +} + + +/*Contact*/ + +.iq-footer .iq-contact .contact-block { + color: #ffffff; + display: inline-block; +} + +.iq-footer .iq-contact .contact-block .title { + font-size: 20px; +} + +.iq-footer .iq-contact .contact-block span { + font-size: 20px; +} + +.iq-footer .iq-contact .contact-block i { + color: #4ac4f3; + font-size: 40px; + line-height: 40px; + vertical-align: middle; + margin-right: 15px; + display: table; + float: left; +} + +.iq-footer .iq-contact .contact-block .content { + display: table-cell; +} + + +/*Menu*/ + +.iq-footer .footer-menu li { + margin: 0; +} + +.iq-footer .footer-menu li a { + font-weight: 500; + background: rgba(255, 255, 255, 0); + padding: 8px 0; + display: block; + color: #ffffff; +} + +.iq-footer .footer-menu li a:hover { + background: rgba(255, 255, 255, 0.2); + color: #4ac4f3; + padding: 8px 15px; +} + + +/*Popular Posts*/ + +.iq-footer .iq-post li { + width: 100%; + float: left; + margin-top: 0px; + border-bottom: 1px solid rgba(255, 255, 255, 0.2); + display: inline-block; + margin-bottom: 15px; + padding-bottom: 15px; +} + +.iq-footer .post-blog { + display: table-cell; +} + +.iq-footer .post-blog a { + vertical-align: top; + font-size: 16px; + color: #fff; +} + +.iq-footer .post-blog a:hover { + color: #4ac4f3; +} + +.iq-footer .post-blog .iq-date { + font-size: 13px; + display: table; +} + +.iq-footer .post-blog i { + font-size: 14px; +} + +.iq-footer .iq-post li:last-child { + border-bottom: none; + padding-bottom: 0; + margin-bottom: 0; +} + +.iq-footer .post-img { + display: table; + float: left; + margin-right: 15px; +} + +.iq-footer .post-img img { + vertical-align: top; + height: 65px; + width: 65px; + border-radius: 2px; +} + +.iq-footer ul { + margin-right: 0px; +} + + +/*Newsletter*/ + +.iq-footer .input-group-addon { + padding: 0px; +} + +.iq-footer .newsletter-form .input-group .form-control { + border: none; + padding: 15px 10px; +} + +.iq-footer .newsletter-form .input-group-addon { + border: none; +} + +.iq-footer .newsletter-form .button { + padding: 11px 20px 11px; + border-radius: 0px 4px 4px 0px +} + + +/*Copyright*/ + +.iq-footer .iq-copyright, +.iq-footer .iq-copyright a { + color: #ffffff; +} + +.iq-footer .iq-copyright a:hover { + color: #4ac4f3; +} + +.iq-footer .footer-bottom { + background: #000000; +} + + +/*--------------------------------------------------------------------- + Footer 3 +-----------------------------------------------------------------------*/ + +.iq-footer3 { + background: #222222; +} + +.iq-footer3 .footer-top { + background: #242424; +} + +.iq-footer3 { + color: #fff; +} + +.iq-footer3 hr { + margin: 0; + border-top: 0px; + padding: 0px; + border-bottom: 1px solid #323232; +} + +.iq-footer3 .logo img { + width: 50px; +} + + +/*Menu*/ + +.iq-footer3 .menu li { + display: block; + border-bottom: 0px; + margin-bottom: 10px; + line-height: 24px; + padding: 0; +} + +.iq-footer3 .menu li a { + color: #fff; +} + +.iq-footer3 .menu li a:hover { + color: #4ac4f3; +} + +.iq-footer3 .office-day li { + margin-bottom: 10px; +} + +.iq-footer3 .office-day li a { + color: #fff; +} + +.iq-footer3 .office-day li a:hover { + color: #4ac4f3; +} + + +/*Link*/ + +.iq-footer3 .link li a { + color: #fff; +} + +.iq-footer3 .link li a:hover { + color: #4ac4f3; +} + + +/*Social Media*/ + +.iq-footer3 .iq-media-blog li { + margin: 0 0 0 4px; +} + +.iq-footer3 .iq-media-blog li a { + height: 45px; + width: 45px; + font-size: 18px; + line-height: 45px; + background: rgba(2, 216, 113, 1.0); + text-align: center; + color: #ffffff; + -webkit-border-radius: 100px; + -moz-border-radius: 100px; + border-radius: 100px; + float: left; + border: 1px solid #4ac4f3; +} + +.iq-footer3 .iq-media-blog li a:hover { + background: rgba(2, 216, 113, .0); + color: #4ac4f3; +} + + +/*footer-widget*/ + +.iq-footer3 .iq-contact li { + font-size: 14px; + color: #fff; + margin-bottom: 15px; +} + +.iq-footer3 .iq-contact i { + color: #4ac3f3; + float: left; + display: table-cell; + width: 30px; + line-height: 23px; + font-size: 32px; +} + +.iq-footer3 .iq-contact p { + display: table; + color: #fff; + margin-bottom: 0px; + padding-left: 5px; +} + + +/*Tweeter*/ + +.iq-footer3 .owl-carousel .owl-nav { + opacity: 1; + top: inherit; + top: 15%; + bottom: inherit; +} + +.iq-footer3 .owl-carousel .owl-nav .owl-next { + right: 20%; +} + +.iq-footer3 .owl-carousel .owl-nav .owl-prev { + left: 20%; +} + +.iq-footer3 .owl-carousel:hover .owl-nav .owl-prev { + left: 20%; +} + +.iq-footer3 .owl-carousel:hover .owl-nav .owl-next { + right: 20%; +} + +.iq-footer3 .tweet-img { + float: left; + display: table; +} + +.iq-footer3 .tweet-img img { + vertical-align: middle; + width: 70px; + height: 60px; +} + +.iq-footer3 .tweet-info { + display: table-cell; + padding-left: 15px; +} + +.iq-footer3 .tweet-info a { + color: #fff; + font-size: 14px; + vertical-align: top; +} + +.iq-footer3 .tweet-info a:hover { + color: #4ac4f3; +} + +.iq-footer3 .tweet-info span { + font-size: 12px; + display: table; + padding-top: 5px; +} + +.iq-footer3 .tweet-info i { + font-size: 14px; + padding-right: 5px; +} + + +/*Copyright*/ + +.iq-footer3 .iq-copyright { + text-align: right; +} + +.iq-footer3 .iq-copyright a { + color: #4ac4f3; +} + +.iq-footer3 .iq-copyright a:hover { + color: #ffffff; +} + + +/*build*/ + +.iq-footer3 .build li { + display: block; + border-bottom: 0px; + margin-bottom: 10px; + line-height: 24px; + padding: 0; +} + +.iq-footer3 .build li a { + color: #fff; +} + +.iq-footer3 .build li a:hover { + color: #4ac4f3; +} + + +/*about*/ + +.iq-footer3 .about li { + display: block; + border-bottom: 0px; + margin-bottom: 10px; + line-height: 24px; + padding: 0; +} + +.iq-footer3 .about li a { + color: #fff; +} + +.iq-footer3 .about li a:hover { + color: #4ac4f3; +} + + +/*Support*/ + +.iq-footer3 .support li { + display: block; + border-bottom: 0px; + margin-bottom: 10px; + line-height: 24px; + padding: 0; +} + +.iq-footer3 .support li a { + color: #fff; +} + +.iq-footer3 .support li a:hover { + color: #4ac4f3; +} + + +/*Contact*/ + +.iq-footer3 .contact li { + display: block; + border-bottom: 0px; + margin-bottom: 10px; + line-height: 24px; + padding: 0; +} + +.iq-footer3 .contact li a { + color: #fff; +} + +.iq-footer3 .contact li a:hover { + color: #4ac4f3; +} + + +/*--------------------------------------------------------------------- + Footer 4 +-----------------------------------------------------------------------*/ + +.iq-footer4 { + position: relative; + overflow: hidden; +} + +.iq-footer4 .container-fluid { + padding: 0 90px; +} + +.iq-footer4 .iq-video { + background: #fff; + display: inline-block; + width: 60px; + height: 60px; + text-align: center; + font-size: 29px; + color: #4ac4f3; + float: left; + border-radius: 100%; + line-height: 2.1; + z-index: 9; + position: relative; +} + +.iq-footer4 .iq-video i { + margin-left: 5px; +} + + +/*Menu*/ + +.iq-footer4 .menu li { + display: block; + border-bottom: 0px; + margin-bottom: 10px; + line-height: 24px; + padding: 0; +} + +.iq-footer4 .menu li a { + color: #fff; +} + +.iq-footer4 .menu li a:hover { + color: #000000; +} + + +/*Link*/ + +.iq-footer4 .link li a { + color: #fff; +} + +.iq-footer4 .link li a:hover { + color: #666; +} + + +/*Social Media*/ + +.iq-footer4 .iq-media-blog li { + margin: 0 0 0 4px; +} + +.iq-footer4 .iq-media-blog li a { + margin-right: 5px; + height: 45px; + width: 45px; + font-size: 18px; + line-height: 45px; + background: #4ac4f3; + text-align: center; + color: #ffffff; + -webkit-border-radius: 100px; + -moz-border-radius: 100px; + border-radius: 100px; + float: left; + border: 1px solid #4ac4f3; +} + +.iq-footer4 .iq-media-blog li a:hover { + background: #666; + color: #fff; +} + + +/*footer-widget*/ + +.iq-footer4 .iq-contact li { + font-size: 14px; + color: #fff; + margin-bottom: 15px; +} + +.iq-footer4 .iq-contact i { + color: #fff; + float: left; + display: table-cell; + width: 30px; + line-height: 23px; + font-size: 32px; +} + +.iq-footer4 .iq-contact p { + display: table; + color: #fff; + margin-bottom: 0px; + padding-left: 5px; +} + + +/*Copyright*/ + +.iq-footer4 .iq-copyright { + text-align: right; +} + +.iq-footer4 .iq-copyright a { + color: #4ac4f3; +} + +.iq-footer4 .iq-copyright a:hover { + color: #ffffff; +} + + +/*--------------------------------------------------------------------- + Breadcrumb Inner Page +-----------------------------------------------------------------------*/ + +.iq-breadcrumb { + margin: 0px; + position: relative; + display: inline-block; + width: 100%; +} + +.iq-breadcrumb-title .title { + letter-spacing: 2px; + text-transform: uppercase; + font-size: 46px; +} + +.iq-breadcrumb-title .title span { + font-family: 'Open Sans', sans-serif; +} + +.iq-breadcrumb .breadcrumb { + background: rgba(255, 255, 255, 1); + padding: 14px 25px; + border-radius: 90px; + display: inline-block; + position: relative; + bottom: -32px; + margin-bottom: 0; + -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1); + -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1); + box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1); +} + +.iq-breadcrumb .breadcrumb li a { + color: #2c3e50; +} + +.iq-breadcrumb .breadcrumb li a i { + padding-right: 5px; +} + +.iq-breadcrumb .breadcrumb li a:hover { + color: #4ac4f3; +} + +.iq-breadcrumb .breadcrumb li { + color: #2c3e50; + font-size: 16px; + font-weight: 500; + float: left; +} + +.iq-breadcrumb .breadcrumb li.active { + color: #4ac4f3; +} + +.iq-breadcrumb .breadcrumb>li+li:before { + color: #2c3e50; +} + + +/*pagination-nav*/ + +.pagination .page-item.active .page-link { + background-color: #4ac4f3; + border-color: #4ac4f3; +} + +.pagination .page-link { + color: #4ac4f3; +} + +.pagination .page-link:hover { + color: #333; +} + + +/*--------------------------------------------------------------------- + Blog Page +-----------------------------------------------------------------------*/ + +.iq-page-blog .iq-blog-box { + box-shadow: none; + border: 1px solid #ededed; +} + +.iq-blog-box .iq-get-in { + margin-top: 0; + box-shadow: none; +} + +.iq-post-author { + position: relative; + min-height: 130px; +} + +.iq-post-author-pic { + float: left; +} + +.iq-post-author a { + color: #fff; +} + +.iq-post-author a:hover { + text-decoration: underline; + color: #fff; +} + + +/* Comments Box */ + +.iq-comment-list li { + margin-top: 25px; + margin-bottom: 0; + vertical-align: top; + padding: 0; +} + +.iq-comment-list .iq-comments-media { + padding: 15px 15px 30px; + border-radius: 0px; + border-bottom: 1px solid #eee; + display: flex; + align-items: flex-start; +} + +.iq-comment-list li:last-child .iq-comments-media { + border-bottom: none; + padding-bottom: 0; +} + +.iq-comment-list ul { + padding-left: 60px; +} + +.iq-comment-list .iq-comments-photo { + padding-right: 20px; +} + +.iq-comment-list .iq-comments-photo a img { + width: 80px; + height: auto; +} + +.iq-comment-list .iq-comments-info { + position: relative; + flex: 1; +} + +.iq-comment-list .iq-comments-info .title { + margin: 0; + line-height: 22px; +} + +.iq-comment-list .iq-comment-metadata { + line-height: 22px; + margin-top: 7px; + margin-bottom: 10px; +} + +.iq-comment-list .iq-comment-metadata a { + color: #333333; +} + +.iq-comment-list .iq-comment-metadata i { + padding-right: 7px; + color: #4ac4f3; +} + +.iq-comment-list .reply { + position: absolute; + line-height: 22px; + margin: 0; + padding: 2px 16px; + font-size: 11px; + right: 0; + top: 0; + font-weight: 500; +} + +.iq-comment-list .iq-comments-media .iq-comments-info .reply { + color: #ffffff; +} + +.iq-comment-list .iq-comments-info p { + margin-top: 5px; + margin-bottom: 0; +} + + +/*--------------------------------------------------------------------- + Blog - SideBar +-----------------------------------------------------------------------*/ + +.iq-post-sidebar { + height: 100%; +} + +.iq-sidebar-widget { + margin-bottom: 40px; + padding: 20px 20px; + border: 1px solid #ededed; + border-radius: 0px; +} + +.iq-sidebar-widget:last-child { + margin-bottom: 0; +} + +.iq-sidebar-widget .iq-widget-title { + padding-bottom: 10px; + margin-bottom: 20px; + font-size: 24px; +} + + +/*widget-menu*/ + +.iq-widget-menu { + position: relative; +} + +.iq-widget-menu ul li a { + font-size: 14px; + display: block; + color: #2c3e50; + position: relative; +} + +.iq-widget-menu i { + padding-top: 4px; + position: absolute; + right: 18px; + transition: all 0.3s ease-in-out; + -webkit-transition: all 0.3s ease-in-out; + -moz-transition: all 0.3s ease-in-out; + -o-transition: all 0.3s ease-in-out; + -ms-transition: all 0.3s ease-in-out; +} + +.iq-widget-menu ul li a span { + padding: 5px 10px 5px 0; + display: block; + font-size: 14px; +} + +.iq-widget-menu ul li a span:hover { + text-decoration: none; + color: #4ac4f3; +} + +.iq-widget-menu ul li.active { + border-bottom: none; +} + +.iq-widget-menu ul li.hover a { + color: #4ac4f3; +} + +.iq-widget-menu ul li.hover a span { + background: transparent; + color: #4ac4f3; +} + +.iq-widget-menu ul ul li a span { + color: #333333; +} + +.iq-widget-menu ul ul li a span:hover { + color: #4ac4f3; +} + +.iq-widget-menu ul ul { + display: none; + padding-left: 20px; +} + +.iq-widget-menu ul ul a { + display: block; + color: #333333; + font-size: 14px; +} + +.iq-widget-menu ul ul a:hover { + color: #4ac4f3; +} + +.iq-widget-menu ul li.active i { + transform: rotate(90deg); +} + + +/*SideBar - Search*/ + +.iq-sidebar-widget .iq-widget-search { + position: relative; +} + +.iq-sidebar-widget .iq-widget-search input { + padding-right: 40px; + box-shadow: none; + border-radius: 90px; + color: #2c3e50; + height: 50px; + border: 2px solid #f2f2f2; + background: #ffffff; + transition: all 0.3s ease-in-out; + -webkit-transition: all 0.3s ease-in-out; + -o-transition: all 0.3s ease-in-out; + -moz-transition: all 0.3s ease-in-out; + -ms-transition: all 0.3s ease-in-out; +} + +.iq-sidebar-widget .iq-widget-search input:focus { + background: #ffffff; +} + +.iq-sidebar-widget .iq-widget-search i { + position: absolute; + right: 8px; + color: #4ac4f3; + cursor: pointer; + padding: 16px 12px; + font-size: 18px; +} + +.iq-sidebar-widget .iq-widget-search input:focus { + border-color: #4ac4f3; +} + + +/*SideBar - Posts*/ + +.iq-sidebar-widget .iq-recent-post { + margin-top: 20px; +} + +.iq-sidebar-widget .iq-recent-post .media-body>a { + display: block; + font-size: 15px; + font-weight: 600; + color: #2c3e50; +} + +.iq-sidebar-widget .iq-recent-post .media-body>a:hover { + color: #4ac4f3; +} + +.iq-sidebar-widget .iq-recent-post .media-body span { + color: #666666; +} + +.iq-sidebar-widget .iq-recent-post .media-body span .fa { + color: #333333; + margin-right: 5px; +} + + +/*SideBar - Tags*/ + +.iq-tags li { + padding-left: 2px; + display: inline-block; + padding-right: 2px; + margin: 0 0 15px; +} + +.iq-tags li a { + background: transparent; + color: #666; + padding: 4px 8px; + border: 1px solid #666; + border-radius: 90px; + transition: all 0.3s ease-in-out; + -webkit-transition: all 0.3s ease-in-out; + -o-transition: all 0.3s ease-in-out; + -moz-transition: all 0.3s ease-in-out; + -ms-transition: all 0.3s ease-in-out; +} + +.iq-tags li a:hover { + border-color: #4ac4f3; + background: none; + color: #4ac4f3; +} + + +/* Meta - SideBar */ + +.iq-widget-archives li { + margin: 10px 0; +} + +.iq-widget-archives li a { + color: #666; +} + +.iq-widget-archives li a i { + font-size: 16px; + margin-right: 5px; +} + +.iq-widget-archives li a:hover { + margin-left: 5px; + color: #4ac4f3; +} + + +/*--------------------------------------------------------------------- + 404 Error +-----------------------------------------------------------------------*/ + +.iq-error .big-text { + font-size: 180px; + font-family: 'Open Sans', sans-serif; + line-height: 180px; + color: #333333; +} + +.iq-error h6 { + background-color: #4ac4f3; + color: #ffffff; + display: inline-block; +} + +.iq-error .form-inline.iq-subscribe { + text-align: center; + display: inline-block; + width: 100%; +} + +.iq-error .iq-subscribe .form-group { + width: 40%; + display: inline-block; +} + +.iq-error .iq-subscribe .form-control { + border-radius: 90px; + height: 50px; + width: 100%; + display: inline-block; + padding-left: 25px; + box-shadow: none; + border: none; + background: #f4f4f4; +} + + +/*--------------------------------------------------------------------- + Coming Soon +-----------------------------------------------------------------------*/ + +.iq-coming .big-text { + font-size: 80px; + font-family: 'Open Sans', sans-serif; + text-transform: uppercase; + color: #333333; +} + +.iq-coming img { + width: 140px; +} + +.iq-coming .form-inline.iq-subscribe { + text-align: center; + display: inline-block; + width: 100%; +} + +.iq-coming .iq-subscribe .form-group { + width: 40%; + display: inline-block; +} + +.iq-coming .iq-subscribe .form-control { + border-radius: 90px; + height: 50px; + width: 100%; + display: inline-block; + padding-left: 25px; + box-shadow: none; + border: none; + background: #f4f4f4; +} + +.iq-coming .countdown-timer { + border-radius: 5px; + margin-bottom: 20px; + max-width: 300px; + margin: 50px auto; +} + +.iq-coming .countdown-timer h5 { + font-size: 14px; + letter-spacing: 0.5px; + text-align: center; + padding-top: 10px; + text-shadow: none; +} + +.iq-coming .countdown-timer .timer { + padding: 10px; + text-align: center; + padding-top: 15px; +} + +.iq-coming .countdown-timer .timer .timer-wrapper { + display: inline-block; + width: 200px; + height: 50px; +} + +.iq-coming .countdown-timer .timer .timer-wrapper .time { + font-size: 80px; + font-weight: bold; + color: #333; + margin: 0 50px; + float: left; +} + +.iq-coming .countdown-timer .timer .timer-wrapper .text { + font-size: 20px; +} + +#countdown { + list-style: none; + margin: 50px 0; + padding: 0; + display: block; + text-align: center; + display: inline-block; +} + +#countdown li { + display: inline-block; +} + +#countdown li span { + font-size: 50px; + font-weight: 800; + line-height: 80px; + margin: 0 30px; +} + +#countdown li.seperator { + font-size: 50px; + line-height: 40px; + vertical-align: top; + margin-top: 15px; +} + +#countdown li p { + color: #a7abb1; + font-size: 20px; +} + + +/*--------------------------------------------------------------------- + jarallax +-----------------------------------------------------------------------*/ + +.jarallax { + position: relative; + z-index: 0; +} + +.jarallax>.jarallax-img { + position: absolute; + object-fit: cover; + /* support for plugin https://github.com/bfred-it/object-fit-images */ + font-family: 'object-fit:cover; '; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: -1; +} + + +/*--------------------------------------------------------------------- + TERMS OF SERVICE +-----------------------------------------------------------------------*/ + +.terms-of-service .btn.btn-link { + color: #4ac4f3; + text-decoration: none; + font-weight: 700; +} + +.terms-of-service .btn.btn-link.collapsed { + color: #333; +} + + +/*--------------------------------------------------------------------- + OWL Carousel +-----------------------------------------------------------------------*/ + +.owl-carousel .owl-nav { + display: block; + position: absolute; + text-indent: inherit; + top: 50%; + transform: translateY(-50%); + -webkit-transform: translateY(-50%); + -o-transform: translateY(-50%); + -ms-transform: translateY(-50%); + -moz-transform: translateY(-50%); + left: 0; + width: 100%; + cursor: pointer; + z-index: 999; +} + +.owl-carousel .owl-nav .owl-prev { + display: block; + position: absolute; + text-align: center; + text-indent: inherit; + left: -8%; + width: auto; + cursor: pointer; + -webkit-transition: opacity 0.3s ease 0s, left 0.3s ease 0s; + -moz-transition: opacity 0.3s ease 0s, left 0.3s ease 0s; + -ms-transition: opacity 0.3s ease 0s, left 0.3s ease 0s; + -o-transition: opacity 0.3s ease 0s, left 0.3s ease 0s; + transition: opacity 0.3s ease 0s, left 0.3s ease 0s; +} + +.owl-carousel .owl-nav .owl-next { + display: block; + position: absolute; + text-align: center; + text-indent: inherit; + right: -8%; + width: auto; + cursor: pointer; + -webkit-transition: opacity 0.3s ease 0s, right 0.3s ease 0s; + -moz-transition: opacity 0.3s ease 0s, right 0.3s ease 0s; + -ms-transition: opacity 0.3s ease 0s, right 0.3s ease 0s; + -o-transition: opacity 0.3s ease 0s, right 0.3s ease 0s; + transition: opacity 0.3s ease 0s, right 0.3s ease 0s; +} + +.owl-carousel .owl-nav i { + font-size: 24px; + border-radius: 50%; + width: 44px; + height: 44px; + line-height: 42px; + padding-left: 0px; + display: inline-block; + color: #fff; + background: #e7e7e7; + font-weight: normal; + text-align: center; + -webkit-transition: all 0.5s ease-out 0s; + -moz-transition: all 0.5s ease-out 0s; + -ms-transition: all 0.5s ease-out 0s; + -o-transition: all 0.5s ease-out 0s; + transition: all 0.5s ease-out 0s; +} + +.owl-carousel .owl-nav i:hover { + background: #4ac4f3; + color: #fff; +} + + +/* Dots */ + +.owl-carousel .owl-controls .owl-dot { + margin-top: 20px; + display: inline-block; +} + +.owl-carousel .owl-dots { + position: relative; + width: 100%; + display: inline-block; + text-indent: inherit; + text-align: center; + cursor: pointer; +} + +.owl-carousel.owl-theme .owl-dots .owl-dot span { + background: #333333; + display: inline-block; + border-radius: 30px; + margin: 0px 3px; + height: 10px; + width: 10px; + border: 1px solid #333333; + transition: all 0.5s ease-in-out; + -webkit-transition: all 0.5s ease-in-out; + -o-transition: all 0.5s ease-in-out; + -moz-transition: all 0.5s ease-in-out; + -ms-transition: all 0.5s ease-in-out; + cursor: pointer; +} + +.owl-carousel.owl-theme .owl-dots .owl-dot:hover span { + background: #4ac4f3; + border: 1px solid #4ac4f3; +} + +.owl-carousel.owl-theme .owl-dots .owl-dot.active span { + background: #4ac4f3; + border: 1px solid #4ac4f3; +} + + +/* Arrow-1 */ + +.owl-carousel.arrow-1 { + overflow: hidden; +} + +.owl-carousel.arrow-1 .owl-nav { + display: block; + position: absolute; + text-indent: inherit; + top: 50% !important; + margin-top: -20px; + -webkit-transform: translateY(-50%); + -moz-transform: translateY(-50%); + -ms-transform: translateY(-50%); + -o-transform: translateY(-50%); + left: 0; + width: 100%; + cursor: pointer; +} + +.owl-carousel.arrow-1 .owl-nav .owl-prev { + display: block; + position: absolute; + text-indent: inherit; + left: -44px; + width: auto; + cursor: pointer; + -webkit-transition: opacity 0.3s ease 0s, left 0.3s ease 0s; + -moz-transition: opacity 0.3s ease 0s, left 0.3s ease 0s; + -ms-transition: opacity 0.3s ease 0s, left 0.3s ease 0s; + -o-transition: opacity 0.3s ease 0s, left 0.3s ease 0s; + transition: opacity 0.3s ease 0s, left 0.3s ease 0s; +} + +.owl-carousel.arrow-1 .owl-nav .owl-next { + display: block; + position: absolute; + text-indent: inherit; + right: -44px; + width: auto; + cursor: pointer; + -webkit-transition: opacity 0.3s ease 0s, right 0.3s ease 0s; + -moz-transition: opacity 0.3s ease 0s, right 0.3s ease 0s; + -ms-transition: opacity 0.3s ease 0s, right 0.3s ease 0s; + -o-transition: opacity 0.3s ease 0s, right 0.3s ease 0s; + transition: opacity 0.3s ease 0s, right 0.3s ease 0s; +} + +.owl-carousel.arrow-1 .owl-nav i { + font-weight: normal; + font-size: 24px; + color: #fff; + background: rgba(34, 34, 34, 0.7); + padding: 0px 12px; + border-radius: 0; + -webkit-transition: all 0.3s ease-out 0s; + -moz-transition: all 0.3s ease-out 0s; + -ms-transition: all 0.3s ease-out 0s; + -o-transition: all 0.3s ease-out 0s; + transition: all 0.3s ease-out 0s; +} + +.owl-carousel.arrow-1 .owl-nav i:hover { + background: #4ac4f3; +} + +.owl-carousel.arrow-1 .owl-nav .owl-prev { + left: 0; + display: inline-grid; +} + +.owl-carousel.arrow-1 .owl-nav .owl-next { + right: 0; + display: inline-grid; +} + +.owl-carousel.arrow-1 .owl-stage-outer { + overflow: hidden; +} + + +/*--------------------------------------------------------------------- + Testimonial +-----------------------------------------------------------------------*/ + +.iq-testimonial .feedback .iq-avtar { + width: 60px; + display: inline-block; + text-align: center; + -webkit-border-radius: 100%; + -moz-border-radius: 100%; + border-radius: 100%; + float: left; +} + +.iq-testimonial .feedback .iq-avtar img { + -webkit-border-radius: 100%; + -moz-border-radius: 100%; + border-radius: 100%; +} + +.iq-testimonial .feedback .iq-info { + position: relative; + background: rgba(255, 255, 255, 1.0); + padding: 20px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + -webkit-box-shadow: 0px 8px 30px -20px rgba(0, 0, 0, 0.5); + -moz-box-shadow: 0px 8px 30px -20px rgba(0, 0, 0, 0.5); + box-shadow: 0px 8px 30px -20px rgba(0, 0, 0, 0.5); +} + +.iq-testimonial .feedback .iq-info:before { + content: ""; + position: absolute; + z-index: 9; + bottom: -15px; + left: 05%; + height: 0; + width: 0; + border-top: 15px solid rgba(255, 255, 255, 1.0); + border-left: 15px solid transparent; +} + +.iq-testimonial .feedback .iq-info.light { + background: rgba(255, 255, 255, 0.1); +} + +.iq-testimonial .feedback .iq-info.light:before { + border-top: 15px solid rgba(255, 255, 255, 0.1); +} + +.iq-testimonial .feedback .iq-info.bg-light { + background: #f8f8f8; +} + +.iq-testimonial .feedback .title { + font-size: 18px; +} + +.iq-testimonial .feedback .avtar-name { + display: table-cell; +} + +.iq-testimonial .feedback p { + margin-bottom: 0px; +} + +.iq-testimonial .feedback .iq-lead { + font-size: 18px; +} + +.iq-testimonial .iq-star i { + margin-right: 4px; +} + +.iq-testimonial .owl-prev, +.iq-testimonial .owl-next { + float: left; +} + +.iq-testimonial .owl-prev i, +.iq-testimonial .owl-next i { + color: #ddd; +} + +.iq-testimonial .owl-prev:hover i, +.iq-testimonial .owl-next:hover i { + color: #4ac4f3; +} + +.iq-testimonial .owl-prev .fa-angle-left:before { + content: "\f177"; + float: left; +} + +.iq-testimonial .owl-next .fa-angle-right:before { + content: "\f178"; + float: left; + margin-left: 10px; +} + +.iq-testimonial .iq-star i { + margin-right: 4px; +} + +.iq-testimonial .owl-controls { + position: relative; + width: 100%; + position: relative; + top: 30px; +} + + +/* Testimonial 2 */ + +.iq-testimonial2 .owl-prev, +.iq-testimonial2 .owl-next { + float: left; +} + +.iq-testimonial2 .owl-prev i, +.iq-testimonial2 .owl-next i { + color: #ddd; +} + +.iq-testimonial2 .owl-prev:hover i, +.iq-testimonial2 .owl-next:hover i { + color: #4ac4f3; +} + +.iq-testimonial2 .owl-prev .fa-angle-left:before { + content: "\f177"; + float: left; +} + +.iq-testimonial2 .owl-next .fa-angle-right:before { + content: "\f178"; + float: left; + margin-left: 10px; +} + +.iq-testimonial2 .feedback .iq-avtar { + width: 60px; + display: inline-block; + text-align: center; + -webkit-border-radius: 100%; + -moz-border-radius: 100%; + border-radius: 100%; + float: left; +} + +.iq-testimonial2 .feedback .iq-avtar img { + -webkit-border-radius: 100%; + -moz-border-radius: 100%; + border-radius: 100%; +} + +.iq-testimonial2 .feedback .iq-info { + position: relative; + background: rgba(255, 255, 255, 1.0); + border: 1px solid #f8f3f3; + padding: 20px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} + +.iq-testimonial2 .feedback .iq-info.brd-none { + border: none; +} + +.iq-testimonial2 .feedback .iq-info.light { + background: rgba(255, 255, 255, 0.2); + border: none; +} + +.iq-testimonial2 .feedback .iq-info.light:before { + border-top: 15px solid rgba(255, 255, 255, 0.2); +} + +.iq-testimonial2 .feedback .title { + font-size: 18px; +} + +.iq-testimonial2 .feedback p { + margin-bottom: 0px; + font-style: italic; +} + +.iq-testimonial2 .iq-star i { + margin-right: 4px; +} + +.iq-testimonial2 .owl-controls { + position: relative; + width: 100%; + position: relative; + top: 30px; +} + +.iq-testimonial2 .iq-brd { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + border-radius: 10px; +} + +.iq-testimonial2 .testi-white { + background: #ffffff; + padding: 30px 30px 100px 30px; +} + +.iq-testimonial2 .testi-white .feedback .iq-info { + padding: 20px 0; +} + +.iq-testimonial2 img { + left: 0; + right: 0; +} + +.iq-testimonial2 .feedback { + padding: 0 200px; +} + + +/*--------------------------------------------------------------------- + Pricing Table +-----------------------------------------------------------------------*/ + +.panel { + background-color: #fff; + border-radius: 10px; + padding: 15px 25px; + position: relative; + width: 100%; + z-index: 10; +} + +.pricing-table { + box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.01), 0px 20px 31px 3px rgba(0, 0, 0, 0.01), 0px 8px 20px 7px rgba(0, 0, 0, 0.01); + display: flex; + flex-direction: column; +} + +@media (min-width:900px) { + .pricing-table { + flex-direction: row; + } +} + +.pricing-table * { + text-align: center; + text-transform: uppercase; +} + +.pricing-plan { + border-bottom: 1px solid #e1f1ff; + padding: 25px; +} + +.pricing-plan:last-child { + border-bottom: none; +} + +@media (min-width:900px) { + .pricing-plan { + border-bottom: none; + border-right: 1px solid #e1f1ff; + flex-basis: 100%; + padding: 25px 50px; + } + .pricing-plan:last-child { + border-right: none; + } +} + +.pricing-img { + margin-bottom: 25px; + max-width: 100%; +} + +.pricing-header { + color: #888; + font-weight: 600; + letter-spacing: 1px; +} + +.pricing-features { + color: #4ac4f3; + font-weight: 600; + letter-spacing: 1px; + margin: 50px 0 25px; +} + +.pricing-features-item { + border-top: 1px solid #e1f1ff; + font-size: 12px; + line-height: 1.5; + padding: 15px 0; + color: #666666; +} + +.pricing-features-item:last-child { + border-bottom: 1px solid #e1f1ff; +} + +.pricing-price { + color: #4ac4f3; + display: block; + font-size: 32px; + font-weight: 700; +} + +.our-pricing-1 .iq-icon { + border-radius: 90px; + display: inline-block; + height: 86px; + width: 86px; + line-height: 86px; + text-align: center; + color: #4ac4f3; + background: #f4f4f4; + -webkit-transition: all 0.5s ease-out 0s; + -moz-transition: all 0.5s ease-out 0s; + -ms-transition: all 0.5s ease-out 0s; + -o-transition: all 0.5s ease-out 0s; + transition: all 0.5s ease-out 0s; + margin-bottom: 20px; +} + +.our-pricing-1 .iq-icon i { + font-size: 50px; +} + +.our-pricing-1 .iq-icon:hover { + color: rgb(244, 244, 244); + background: rgb(74, 196, 243); +} + + +/* pricing 01 */ + +.iq-pricing-01 { + padding: 30px 20px; + text-align: center; + z-index: 1; + position: relative; + border-radius: 10px; + margin-top: 0; + border: 1px solid #f2f2f2; + transition: all 0.5s ease-in-out; + transition: all 0.5s ease-in-out; + -moz-transition: all 0.5s ease-in-out; + -ms-transition: all 0.5s ease-in-out; + -o-transition: all 0.5s ease-in-out; + -webkit-transition: all 0.5s ease-in-out; +} + +.iq-pricing-01:hover, +.iq-pricing-01.active { + margin-top: -5px; + box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1); + border: 1px solid #4ac4f3; +} + + +/*--------------------------------------------------------------------- + Feature +-----------------------------------------------------------------------*/ + +.iq-feature h6 { + position: relative; +} + +.iq-feature h6::before { + background: #4ac4f3; + bottom: -15px; + content: ""; + height: 2px; + position: absolute; + width: 50px; + left: 50%; + margin-left: -25px; +} + +.iq-feature img { + width: 180px; + height: 180px; + border-radius: 100%; +} + +.iq-feature .step-img { + position: relative; + display: inline-block; +} + +.iq-feature .step-number { + background: #5bc9f4; + color: #ffffff; + width: 50px; + height: 50px; + border-radius: 100%; + font-size: 18px; + position: absolute; + text-align: center; + line-height: 43px; + right: 0; + top: 0; + border: 4px solid #ffffff; +} + +.iq-feature.stap-left:before { + position: absolute; + left: 79%; + top: 20%; + background: url('../images/arrow/dashed-arrow1.png') no-repeat 0 0; + content: ""; + width: 174px; + height: 29px; +} + +.iq-feature.stap-right:before { + position: absolute; + left: 79%; + top: 25%; + background: url('../images/arrow/dashed-arrow2.png') no-repeat 0 0; + content: ""; + width: 174px; + height: 29px; +} + +.get-feature .iq-text-right { + padding-right: 40%; +} + +.get-feature img { + width: 90%; + margin-top: -150px; + margin-bottom: -40%; + margin-left: 10%; +} + + +/* Feature 01 */ + +.iq-feature-01 { + display: -ms-flexbox; + display: flex; +} + +.iq-feature-01 .icon-box { + color: #666; + font-size: 82px; + padding: 5px 15px; + margin-right: 15px; + background: #fff; + transition: all 0.5s ease-in-out; + transition: all 0.5s ease-in-out; + -moz-transition: all 0.5s ease-in-out; + -ms-transition: all 0.5s ease-in-out; + -o-transition: all 0.5s ease-in-out; + -webkit-transition: all 0.5s ease-in-out; +} + +.iq-feature-01:hover .icon-box { + color: #4ac4f3; +} + +.iq-feature-01 .feature-body { + -ms-flex: 1; + flex: 1; +} + + +/*--------------------------------------------------------------------- + Extra +-----------------------------------------------------------------------*/ + +.iq-about { + position: relative; + margin-bottom: -243px; + border-radius: 10px; +} + +.soft-about { + position: relative; +} + +.soft-about .box-img1 { + position: absolute; + top: 100px; + width: 400px; + right: 180px; +} + +.soft-about .box-img2 { + position: absolute; + right: -50px; + width: 250px; + top: -100px; +} + +.soft-about .box-img3 { + position: absolute; + right: 580px; + top: -50px; +} + +.soft-about .box-img4 { + position: absolute; + right: 580px; + top: 100px; +} + +.soft-about .box-img5 { + position: absolute; + right: 0; + top: 0; +} + +.soft-about .box-img6 { + position: absolute; + top: 100px; + width: 400px; + right: 180px; +} + +.about-me img { + width: 50%; +} + +.box-mail img { + width: 94%; + margin-bottom: -200px; + margin-top: -137px; +} + +.life-work .iq-software-demo-1 { + position: absolute; + top: 100px; + height: 50%; + width: 40%; + right: 0; +} + +.life-work img { + -webkit-box-shadow: -97px -94px 0px -48px rgba(208, 240, 252, 1); + -moz-box-shadow: -97px -94px 0px -48px rgba(208, 240, 252, 1); + box-shadow: -97px -94px 0px -48px rgba(208, 240, 252, 1); +} + +.life-work-1 img { + width: 80%; +} + +.iq-tool-feature { + margin-top: -100px; + z-index: -1; +} + + +/************************************* +Feature 1 +**************************************/ + +.iq-feature1 .iq-blog { + top: 0px; + position: relative; + background: #fff; + -webkit-transition: all 0.3s ease-out 0s; + -moz-transition: all 0.3s ease-out 0s; + -ms-transition: all 0.3s ease-out 0s; + -o-transition: all 0.3s ease-out 0s; + transition: all 0.3s ease-out 0s; + z-index: 1; + border-bottom: 2px solid rgba(2, 216, 113, 0); + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; +} + +.iq-feature1 { + padding-bottom: calc(100px - 30px) !important; +} + +.iq-feature1 .iq-blog .content-blog { + display: inline-block; + width: 100%; +} + +.iq-feature1 .iq-blog .content-blog p { + margin-bottom: 0; +} + +.iq-feature1 .iq-blog i { + margin-right: 25px; + color: #4ac4f3; + font-size: 50px; + line-height: 30px; + float: left; + -webkit-transition: all 0.3s ease-out 0s; + -moz-transition: all 0.3s ease-out 0s; + -ms-transition: all 0.3s ease-out 0s; + -o-transition: all 0.3s ease-out 0s; + transition: all 0.3s ease-out 0s; +} + +.iq-feature1 .iq-blog h5 { + display: table; + position: relative; + text-transform: none; + transition: all 0.3s ease-out 0s; + padding-top: 15px; +} + +.iq-feature1 .iq-blog:hover, +.iq-feature1 .iq-blog.active { + top: -4px; + -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.12); + -moz-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.12); + box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.12); + border-bottom: 2px solid rgba(74, 196, 243, 0.9); +} + + +/************************************* +Feature 10 +**************************************/ + +.iq-feature10 .left { + width: 76px; + height: 76px; + float: left; + margin-right: 20px; + text-align: center; + border: 1px solid #f5f5f5; + transition: all 0.5s ease-in-out; + -webkit-transition: all 0.5s ease-in-out; + -moz-transition: all 0.5s ease-in-out; + -ms-transition: all 0.5s ease-in-out; + -o-transition: all 0.5s ease-in-out; +} + +.iq-feature10 .left i { + color: #4ac4f3; + font-size: 36px; + background: #f3f3f3; + display: block; + margin: 7px 10px 10px 7px; + width: 60px; + height: 60px; + line-height: 60px; + transition: all 0.5s ease-in-out; + -webkit-transition: all 0.5s ease-in-out; + -moz-transition: all 0.5s ease-in-out; + -ms-transition: all 0.5s ease-in-out; + -o-transition: all 0.5s ease-in-out; +} + +.iq-feature10 .right { + display: table-cell; + margin-top: 10px; + vertical-align: top; +} + +.iq-feature10 .right p { + margin-top: 0px; + margin-bottom: 0; +} + +.iq-feature10:hover .left, +.iq-feature10:hover .left i { + border-color: #4ac4f3; +} + +.iq-feature10:hover .left i { + background: #4ac4f3; + color: #ffffff; +} + +.iq-feature10 .brd { + -webkit-border-radius: 100px; + -moz-border-radius: 100px; + border-radius: 100px; +} + +.right-side .iq-feature10 .left { + float: right; + margin-left: 20px; + margin-right: 0; +} + +.right-side .iq-feature10 .right { + text-align: right; +} + +.iq-shadow { + border: 1px solid #f3f4f7; +} + +.iq-shadow i { + font-size: 44px; + padding: 20px; + color: #4ac4f3; +} + +.iq-shadow .iq-font-white { + color: #fff; +} + + +/************************************* +Teams 2 +**************************************/ + +.iq-team2 .team-content { + width: 220px; + height: 220px; + -webkit-border-radius: 50%; + -moz-border-radius: 50%; + border-radius: 50%; + padding: 10px; + overflow: hidden; + display: inline-block; + box-shadow: 5px 5px 0px rgb(0, 0, 0, 0.2); + -webkit-box-shadow: 5px 5px 0px rgb(0, 0, 0, 0.2); + -moz-box-shadow: 5px 5px 0px rgb(0, 0, 0, 0.2); + -ms-box-shadow: 5px 5px 0px rgb(0, 0, 0, 0.2); + -o-box-shadow: 5px 5px 0px rgb(0, 0, 0, 0.2); + -webkit-transition: all 0.5s ease-out 0s; + -moz-transition: all 0.5s ease-out 0s; + -ms-transition: all 0.5s ease-out 0s; + -o-transition: all 0.5s ease-out 0s; + transition: all 0.5s ease-out 0s; +} + +.iq-team2 .team-content img { + -webkit-border-radius: 50%; + -moz-border-radius: 50%; + border-radius: 50%; + width: 200px; + height: 200px; + -webkit-transition: all 0.5s ease-out 0s; + -moz-transition: all 0.5s ease-out 0s; + -ms-transition: all 0.5s ease-out 0s; + -o-transition: all 0.5s ease-out 0s; + transition: all 0.5s ease-out 0s; +} + +.iq-team2 .team-social { + position: relative; +} + +.iq-team2 .team-social li { + display: inline-block; + margin-right: 10px; +} + +.iq-team2 .team-social li:last-child { + margin-right: 0; +} + +.iq-team2 .team-social li a { + padding: 0 5px; + font-size: 15px; + background: rgba(255, 255, 255, 1.0); + width: 36px; + height: 36px; + line-height: 36px; + -webkit-border-radius: 50%; + -moz-border-radius: 50%; + border-radius: 50%; + display: block; + color: #4ac4f3; + border: 1px solid #ffffff; +} + +.iq-team2 .team-social li a:hover { + color: #ffffff; + background: rgba(255, 255, 255, 0); +} + +.iq-team2 .avtar-name a:hover { + color: #222222; +} + +.iq-team-main { + padding-bottom: calc(100px - 30px) !important; +} + + +/*---------------------- +Pricing 5 +----------------------*/ + +.iq-pricing-5 { + padding: 30px 20px; + text-align: center; + z-index: 1; + position: relative; + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + border-radius: 10px; + margin-top: 0; + border: 1px solid #f2f2f2; + transition: all 0.5s ease-in-out; + transition: all 0.5s ease-in-out; + -moz-transition: all 0.5s ease-in-out; + -ms-transition: all 0.5s ease-in-out; + -o-transition: all 0.5s ease-in-out; + -webkit-transition: all 0.5s ease-in-out; +} + +.iq-pricing-5:hover, +.iq-pricing-5.active { + margin-top: -10px; + box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1); + border: 1px solid #4ac4f3; +} + +.iq-pricing-main { + padding-bottom: calc(100px - 10px) !important; +} + + +/*--------------------------------------------------------------------- + Footer 3 +-----------------------------------------------------------------------*/ + +.iq-footerr { + background: #fff; +} + +.iq-footerr .footer-top { + background: #242424; +} + +.iq-footerr { + color: #222222; +} + +.iq-footerr hr { + margin: 0; + border-top: 0px; + padding: 0px; + border-bottom: 1px solid #3333; +} + +.iq-footerr .logo img { + width: 50px; +} + + +/*Menu*/ + +.iq-footerr .menu li { + display: block; + border-bottom: 0px; + margin-bottom: 10px; + line-height: 24px; + padding: 0; +} + +.iq-footerr .menu li a { + color: #222222; +} + +.iq-footerr .menu li a:hover { + color: #4ac4f3; +} + +.iq-footerr .office-day li { + margin-bottom: 10px; +} + +.iq-footerr .office-day li a { + color: #222222; +} + +.iq-footerr .office-day li a:hover { + color: #4ac4f3; +} + + +/*Link*/ + +.iq-footerr .link li a { + color: #222222; +} + +.iq-footerr .link li a:hover { + color: #4ac4f3; +} + + +/*footer-widget*/ + +.iq-footerr .iq-contact li { + font-size: 14px; + color: #222222; + margin-bottom: 15px; +} + +.iq-footerr .iq-contact i { + color: #4ac3f3; + float: left; + display: table-cell; + width: 30px; + line-height: 23px; + font-size: 32px; +} + +.iq-footerr .iq-contact p { + display: table; + color: #222222; + margin-bottom: 0px; + padding-left: 5px; +} + + +/************************* +Tab +*************************/ + +.iq-tab .nav-pills { + padding: 8px; + border-radius: 900px; +} + +.iq-tab .nav-item { + width: 100%; +} + +.iq-tab .nav-item a { + color: #f0f0f0; + font-size: 16px; + font-weight: 600; + padding: 15px 10px; + margin-bottom: 8px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + position: relative; + border: inherit; +} + +.iq-footerr .link li img { + height: 50px; + margin-right: 10px; +} + +.iq-tab .nav-pills .nav-link { + border: none; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + margin-right: 2px; +} + +.iq-tab .nav-pills .nav-link.active, +.iq-tab .nav-pills .show>.nav-link, +.iq-tab .nav-pills .nav-link:hover { + background: rgba(125, 210, 243, 0.7); + color: #ffffff; +} + +.iq-tab.horizontal .nav-item { + width: 16%; + text-align: center; + margin-right: 15px; +} + +.iq-tab.horizontal .nav-item a { + padding: 15px 10px; + margin-bottom: 0; + border-radius: 10px; +} + +.iq-tab.horizontal .nav-item a i { + font-size: 44px; + display: block; + margin-bottom: 10px; +} +.main-service-box{ + padding-bottom: calc(100px - 30px) !important; +} + +.service-box { + padding: 20px; + border: 1px solid transparent; + background: #ffffff; + margin-bottom: 30px; +} + +.service-box:hover { + border: solid transparent 1px; + box-shadow: 0 0 40px rgba(var(--primary-rgb-theme-color), .3); + transition: all 0.5s ease-in-out; + transition: all 0.5s ease-in-out; + -moz-transition: all 0.5s ease-in-out; + -ms-transition: all 0.5s ease-in-out; + -o-transition: all 0.5s ease-in-out; + -webkit-transition: all 0.5s ease-in-out; +} + +.media.service-box i { + font-size: 50px; + margin-right: 20px; + color: #4ac3f3; +} + +.animationnew-shap { + position: absolute; + top: 0%; + right: 0; +} + +.animation-shap { + position: absolute; + top: 0%; + left: 0; +} + +.animation-shap { + position: absolute; + top: 0%; + left: 0; +} + +.animation-shap .shap-bg, +.animationnew-shap .shap-bg { + text-align: center; + align-content: center; + align-items: center; + justify-content: center; + width: 515px; + height: 515px; + margin: auto; + position: relative; + background-color: #4ac4f3; + background-image: linear-gradient(-45deg, #4ac4f3 0%, #4ac4f3 100%); + border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; + animation: one-animated 5s infinite; + overflow: hidden; +} + +@keyframes one-animated { + 0% { + border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; + } + 25% { + border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; + } + 50% { + border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; + } + 75% { + border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; + } +} + +@keyframes two-animated { + 0% { + border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; + } + 25% { + border-radius: 40% 80% 30% 90% / 72% 65% 35% 28%; + } + 50% { + border-radius: 65% 35% 45% 55% / 22% 48% 52% 78%; + } + 75% { + border-radius: 24% 76% 10% 90% / 44% 68% 32% 56%; + } +} + +@keyframes three-animated { + 0% { + border-radius: 12% 88% 40% 40% / 20% 15% 85% 80%; + } + 25% { + border-radius: 72% 28% 30% 90% / 15% 46% 54% 85%; + } + 50% { + border-radius: 12% 88% 40% 40% / 20% 15% 85% 80%; + } + 75% { + border-radius: 18% 82% 10% 90% / 24% 68% 32% 76%; + } +} + +.iq-badge { + text-transform: uppercase; + letter-spacing: 2px; + font-size: 14px; + font-weight: normal; + padding: 10px; + margin-bottom: 15px; +} + +.iq-fancy-boxnew { + padding: 30px; + overflow: hidden; + position: relative; + background: #fff; + +} + +.iq-fancy-boxnew:hover { + background: #f5f7fb; + border-bottom: solid 4px #4ac4f3; + transition: all 0.3s ease-in-out; + transition: all 0.3s ease-in-out; + -moz-transition: all 0.3s ease-in-out; + -ms-transition: all 0.3s ease-in-out; + -o-transition: all 0.3s ease-in-out; + -webkit-transition: all 0.3s ease-in-out; + + } + +.iq-fancy-boxnew .iq-icon { + border-radius: 90px; + display: inline-block; + height: 86px; + width: 86px; + line-height: 86px; + text-align: center; + color: #fff; + background: #4ac4f3; + -webkit-transition: all 0.5s ease-out 0s; + -moz-transition: all 0.5s ease-out 0s; + -ms-transition: all 0.5s ease-out 0s; + -o-transition: all 0.5s ease-out 0s; + transition: all 0.5s ease-out 0s; +} + +.iq-fancy-boxnew .iq-icon i { + font-size: 46px; +} + +.iq-fancy-boxnew .fancy-content h5 { + z-index: 9; + position: relative; +} + +.iq-fancy-boxnew .fancy-content p { + margin-bottom: 0; +} + +.iq-works-imgs { + width: 100%; +} + +.iq-fancy-boxnew.text-center .icon-bg { + text-align: center; + display: flex; + align-content: center; + align-items: center; + justify-content: center; + width: 86px; + height: 86px; + margin: auto; + position: relative; + background-color: #4ac4f3; + background-image: linear-gradient(-45deg, #4ac4f3 0%, #4ac4f3 100%); + border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; + box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.2); + animation: one-animated 10s infinite; + overflow: hidden; +} + +.future-services { + padding: 60px 10px 0px; +} + +.future-services .future-img { + margin-bottom: 15px; +} + +.future-services h4 { + margin-bottom: 10px; +} + +.services-list { + margin: 0 0 -120px; + padding: 0; + position: relative; + display: inline-block; + width: 100%; +} + +.services-list li { + list-style: none; + margin: 0; + padding: 0; + float: left; +} + +.services-list li.one { + position: absolute; + left: 30px; + bottom: 0; +} + +.services-list li.two { + position: absolute; + right: 100px; + bottom: 0; +} + +.services-page .future-services { + padding: 30px 10px 0px; +} + +.search-btn input[type=text] { + padding: 10px; + width: 50%; + font-size: 16px; + border-radius: 4px; + color: #333333; + border: none; +} + +.search-btn button { + padding: 10px 15px; + margin-top: 8px; + margin-right: 16px; + border-radius: 4px; + background: #333333; + font-size: 17px; + border: none; + cursor: pointer; + color: #fff; +} + +.search-btn button:focus { + outline: none; +} + +.search-btn button:hover { + background: #fff; + color: #333333; +} diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/css/flaticon.css b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/css/flaticon.css new file mode 100644 index 00000000..8fe99189 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/css/flaticon.css @@ -0,0 +1,39 @@ + /* + Flaticon icon font: Flaticon + Creation date: 20/04/2019 09:34 + */ + +@font-face { + font-family: "Flaticon"; + src: url("../fonts/Flaticon.eot"); + src: url("../fonts/Flaticon.eot?#iefix") format("embedded-opentype"), + url("../fonts/Flaticon.woff2") format("woff2"), + url("../fonts/Flaticon.woff") format("woff"), + url("../fonts/Flaticon.ttf") format("truetype"), + url("../fonts/Flaticon.svg#Flaticon") format("svg"); + font-weight: normal; + font-style: normal; +} + +@media screen and (-webkit-min-device-pixel-ratio:0) { + @font-face { + font-family: "Flaticon"; + src: url("../fonts/Flaticon.svg#Flaticon") format("svg"); + } +} + +[class^="flaticon-"]:before, [class*=" flaticon-"]:before, +[class^="flaticon-"]:after, [class*=" flaticon-"]:after { + font-family: Flaticon; + font-size: 20px; +font-style: normal; +margin-left: 20px; +} + +.flaticon-upload:before { content: "\f100"; } +.flaticon-monitor:before { content: "\f101"; } +.flaticon-responsive:before { content: "\f102"; } +.flaticon-timer:before { content: "\f103"; } +.flaticon-up:before { content: "\f104"; } +.flaticon-shield:before { content: "\f105"; } +.flaticon-stats:before { content: "\f106"; } \ No newline at end of file diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/css/responsive.css b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/css/responsive.css new file mode 100644 index 00000000..054b8eb5 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/css/responsive.css @@ -0,0 +1,184 @@ +/* + +Template: Sofbox - Responsive Software Landing Page +Author: iqonicthemes.in +Version: 3.0 +Design and Developed by: iqonicthemes.in + +*/ + +/***************** +================================================ + ( Media Queries ) +================================================ + *******************/ +@media (min-width:576px) { + .container { max-width: 540px } +} +@media (min-width:768px) { + .container { max-width: 720px } +} +@media (min-width:992px) { + .container { max-width: 960px } +} +@media (min-width:1365px) { + .container { max-width: 1140px } +} +@media (min-width:1366px) { + .container { max-width: 1170px } +} +@media(min-width:1601px) { } +@media(max-width:1474px) { } +@media(max-width:1399px) { + .right-image { right: -30%; } + .left-image { left: -30%; } +} +@media(max-width:1365px) { + .iq-work-detail { padding: 60px 25px 120px; } + .right-image { right: -40%; top: 10%; } + .left-image { left: -40%; top: 10%; } + .team-img { width: 100%; height: 100%; } + .team .right { padding: 50px 0 50px 30px; } + .iq-blockquote { padding: 30px; } + .iq-widget { padding: 30px 15px; } + .right-side-blog { padding-left: 0; } + .left-side-blog { padding-right: 0px; } +} +@media(max-width:1199px) { + header .container-fluid { padding: 0 50px; } + header .navbar .navbar-nav>li { margin: 0 20px 0 0; } + footer input, footer input.form-control { width: 100%; } + .right-image { right: -55%; } + .left-image { left: -55%; } + .slider-container .slider-right { right: 0; left: auto; } + .slider-container .slider-left { left: 0; right: auto; } +} +@media(max-width:1023px) { } +@media(max-width:992px) { + .iq-showcase { overflow: hidden; } + .title { margin-bottom: 15px; } + .title-box { margin-bottom: 50px; } + .slider-container .slider-left { left: 15px; } + .slider-container .slider-right { right: 15px; } + header .container-fluid { padding: 0 50px; } + header .navbar-light .navbar-nav .nav-item.dropdown .dropdown-menu a { color: #222222; padding: 0 15px; } + .blog.effect-chico h2 { line-height: 40px; font-size: 20px; } + .iq-rpt-0 { padding-top: 0; } + .iq-rmt-50 { margin-top: 50px; } + .team { margin-bottom: 80px; } + .team-right { margin-top: 80px; } + .iq-testimonial .owl-carousel.owl-theme .owl-dots { width: 100%; } + .iq-pricing-table { margin-top: 50px; } + .iq-work-id { position: relative; top: -30px; } + .iq-work-detail { padding: 60px 50px 60px; } + .right-image, .left-image { position: relative; right: 0; left: 0; margin-top: 50px; } + .main-bg { background-position: 0 0; background-size: 100% 100%; } + .iq-breadcrumb nav { float: none !important; } + .iq-breadcrumb { text-align: center; } + .container-fluid { padding: 0 30px; } + .iq-post img { margin-bottom: 30px; } + .iq-contact .contact-info { padding: 0; margin-top: 50px; } + .heading-left.title { margin-bottom: 30px; } + section { padding: 80px 0; } + header { padding: 10px 0; } + header .navbar-light .navbar-collapse { position: absolute; top: 75px; width: 100%; } + header.menu-sticky .navbar-light .navbar-collapse { top: 60px; } + header .navbar-light .navbar-toggler { border: 2px solid #ffffff; background: #ffffff; border-radius: 0px; height: 45px; } + header .navbar-light .navbar-nav .nav-item { margin: 0 20px; } + header .navbar-light .navbar-nav { background: #ffffff; padding: 10px 0; border: 1px solid #dddddd; } + header .navbar-light .navbar-nav .dropdown-menu { border: none; padding: 10px; } + header .navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link { color: var(--mainColour); } + header .navbar-light .navbar-nav .nav-item a { color: #222222; } + header .navbar-light .navbar-nav .nav-item:hover a, header .navbar-light .navbar-nav .nav-item a.active, header .navbar-light .navbar-nav .nav-item a:focus, header .navbar-light .navbar-nav .nav-item a:focus { color: var(--mainColour); } + header .navbar .navbar-nav .nav-item a.active::before, header .navbar .navbar-nav .nav-item:hover>a::before, header .navbar .navbar-nav .nav-item>a:hover::before { display: none; } +} +@media(max-width:979px) { } +@media(max-width:767px) { + .maintenance-box img { width: 30%; } + .maintenance-one { margin-left: 5%; } + .maintenance-three { margin-right: 5%; } + .iq-font-100 { font-size: 40px; line-height: 60px; } + .maintenance-box p { padding: 0 10%; } + .iq-coming form .form-control { width: 100%; } + .iq-coming form .button { margin-top: 30px; } + .iq-coming .big-text { font-size: 50px; line-height: 60px; margin-bottom: 30px; } + .iq-font-200 { font-size: 100px; line-height: 100px; } + .iq-widget .media img { margin-bottom: 0; } + .iq-widget { float: left; width: 100%; } + .comments-box { padding: 15px; float: left; display: block; margin: 0 0 30px !important; } + .media { float: left; display: block; width: 100%; } + .media-body { float: left; width: 100%; display: block; margin-bottom: 15px; margin-top: 30px; } + .page-item:first-child .page-link, .page-item:last-child .page-link { padding: 10px; } + header .navbar { padding: 0; } + .iq-rmb-50 { margin-bottom: 50px; } + header .container-fluid { padding: 0 15px; } + .slider-container .slider-content { width: 40%; height: 40%; } + .screenshots-slider { min-height: 250px; } + .team .right { padding: 0px 0 0px 30px; } + .team { margin-bottom: 50px; } + footer .links, footer .copyright { padding: 10px 0; text-align: center; } + .iq-work .iq-work-detail::before { opacity: 1; -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } + .iq-work .readmore { opacity: 1; -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } + .iq-work-detail { padding: 60px 50px 90px; } + h2 { font-size: 30px; line-height: 50px; } + h4 { font-size: 20px; } + .iq-about-us .button { margin-left: 15px; } + .iq-services { padding: 0 15px; } + .iq-blockquote { padding: 15px; } +} +@media(max-width:479px) { + .blog-box li.d-inline.ml-3 { margin-left: 15px !important; } + .blog-box img { height: 30px; width: 30px; } + .iq-work-detail { padding: 30px 30px 90px; } + .blog-comment { padding: 10px; } + .blog.effect-chico .blog-info { padding: 15px; } + .blog.effect-chico:hover h2 { padding: 0; } + .team .left, .team .right { float: left; width: 100%; } + .team .left { margin-bottom: 30px; } + .team .right { padding: 0; } + .iq-testimonial .owl-carousel button.owl-dot { height: 50px; width: 50px; margin: 0 5px; } + .iq-testimonial .owl-carousel.owl-theme .owl-dots .owl-dot span { height: 50px; width: 50px; } + .iq-pricing-table { padding: 30px 15px; } + .team-img img { width: 100%; } + .iq-work { padding-top: 50px; } + .iq-testimonial .owl-carousel.owl-theme .owl-dots .owl-dot.active span::after { top: -59px; } +} + + +/* Hero Section */ + +@media(max-width:1500px) { + .slider-left-block { padding: 100px 0 100px 100px; } + .right-slider-image { right: -35%; } +} +@media(max-width:1300px) { + .right-slider-image { right: -45%; } + h1.slider-title { font-size: 47px; } + .slider-left-block { padding: 100px 0 100px 50px; } +} +@media(max-width:1070px) { + .right-slider-image { right: -63%; } +} +@media(max-width:1199px) { + .right-slider-image { right: -71%; } + h1.slider-title { font-size: 37px; } + .slider-left-block { padding: 100px 0 100px 30px; } + p.slider-description.mt-5 br { display: none; } +} +@media(max-width:991px) { + .right-slider-image { right: -73%; } + h1.slider-title { font-size: 30px; } + h1.slider-title br { display: none; } +} +@media(max-width:876px) { + .right-slider-image { right: -89%; } +} +@media(max-width:767px) { + h1.slider-title { font-size: 30px; } + h1.slider-title br { display: none; } + .right-slider-image { position: relative; left: 0; right: 0; } + .slider-left-block { padding: 50px 15px; } +} +@media(max-width:479px) { + h1.slider-title { font-size: 26px; } +} diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/css/style.css b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/css/style.css new file mode 100644 index 00000000..bc40a8e0 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/css/style.css @@ -0,0 +1,566 @@ +/* + +Template: Sofbox - Responsive Software Landing Page +Author: iqonicthemes.in +Version: 3.0 +Design and Developed by: iqonicthemes.in + +*/ + +/*================================================ +[ Table of contents ] +================================================ +1 Back to Top +2 Loader +3 Header +4 Banner +5 How It Work +6 About Us +7 Screenshot Section +8 Team +9 Testimonial +10 Pricing Table +11 Blog +12 Client +13 Footer +14 Maintenance +15 Coming Soon +16 Breadcrumb +17 Contact Us + +====================================== +[ End table content ] +======================================*/ + +/*--------------------------------------------------------------------- + Back to Top +-----------------------------------------------------------------------*/ +#back-to-top .top { z-index: 999; position: fixed; margin: 0px; color: #fff; background: #333333; position: fixed; bottom: 25px; right: 25px; z-index: 999; font-size: 26px; width: 50px; height: 50px; text-align: center; line-height: 50px; border-radius: 90px; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; transition: all .3s ease-in-out; } +#back-to-top .top:hover { background: #4ac4f3; color: #fff; -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1); box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1); } + +/*--------------------------------------------------------------------- + Loader +-----------------------------------------------------------------------*/ +#loading { background-color: #eee; height: 100%; width: 100%; position: fixed; margin-top: 0px; top: 0px; left: 0px; bottom: 0px; overflow: hidden !important; right: 0px; z-index: 999999; } +#loading-center { width: 100%; height: 100%; position: relative; } +.loader { width: 3em; height: 3em; margin: auto; left: 0; right: 0; top: 0; bottom: 0; position: absolute; } +@-webkit-keyframes rotate { + 0% { -webkit-transform: rotateX(-37.5deg) rotateY(45deg); transform: rotateX(-37.5deg) rotateY(45deg); } + 50% { -webkit-transform: rotateX(-37.5deg) rotateY(405deg); transform: rotateX(-37.5deg) rotateY(405deg); } + 100% { -webkit-transform: rotateX(-37.5deg) rotateY(405deg); transform: rotateX(-37.5deg) rotateY(405deg); } +} +@keyframes rotate { + 0% { -webkit-transform: rotateX(-37.5deg) rotateY(45deg); transform: rotateX(-37.5deg) rotateY(45deg); } + 50% { -webkit-transform: rotateX(-37.5deg) rotateY(405deg); transform: rotateX(-37.5deg) rotateY(405deg); } + 100% { -webkit-transform: rotateX(-37.5deg) rotateY(405deg); transform: rotateX(-37.5deg) rotateY(405deg); } +} +.cube, .cube * { position: absolute; width: 71px; height: 71px; left: 0; right: 0; top: 0; bottom: 0; } +.sides { -webkit-animation: rotate 3s ease infinite; animation: rotate 3s ease infinite; -webkit-animation-delay: .8s; animation-delay: .8s; -webkit-transform-style: preserve-3d; transform-style: preserve-3d; -webkit-transform: rotateX(-37.5deg) rotateY(45deg); transform: rotateX(-37.5deg) rotateY(45deg); } +.cube .sides * { box-sizing: border-box; background-image: linear-gradient(to right, #766dfe 0%, #766dfe 25%, #2735ff 100%); border: 5px solid white; } +.cube .sides .top { -webkit-animation: top-animation 3s ease infinite; animation: top-animation 3s ease infinite; -webkit-animation-delay: 0ms; animation-delay: 0ms; -webkit-transform: rotateX(90deg) translateZ(90px); transform: rotateX(90deg) translateZ(90px); -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; -webkit-transform-origin: 50% 50%; transform-origin: 50% 50%; } +@-webkit-keyframes top-animation { + 0% { opacity: 1; -webkit-transform: rotateX(90deg) translateZ(90px); transform: rotateX(90deg) translateZ(90px); } + 20% { opacity: 1; -webkit-transform: rotateX(90deg) translateZ(35px); transform: rotateX(90deg) translateZ(35px); } + 70% { opacity: 1; -webkit-transform: rotateX(90deg) translateZ(35px); transform: rotateX(90deg) translateZ(35px); } + 90% { opacity: 1; -webkit-transform: rotateX(90deg) translateZ(90px); transform: rotateX(90deg) translateZ(90px); } + 100% { opacity: 1; -webkit-transform: rotateX(90deg) translateZ(90px); transform: rotateX(90deg) translateZ(90px); } +} +@keyframes top-animation { + 0% { opacity: 1; -webkit-transform: rotateX(90deg) translateZ(90px); transform: rotateX(90deg) translateZ(90px); } + 20% { opacity: 1; -webkit-transform: rotateX(90deg) translateZ(35px); transform: rotateX(90deg) translateZ(35px); } + 70% { opacity: 1; -webkit-transform: rotateX(90deg) translateZ(35px); transform: rotateX(90deg) translateZ(35px); } + 90% { opacity: 1; -webkit-transform: rotateX(90deg) translateZ(90px); transform: rotateX(90deg) translateZ(90px); } + 100% { opacity: 1; -webkit-transform: rotateX(90deg) translateZ(90px); transform: rotateX(90deg) translateZ(90px); } +} +.cube .sides .bottom { -webkit-animation: bottom-animation 3s ease infinite; animation: bottom-animation 3s ease infinite; -webkit-animation-delay: 0ms; animation-delay: 0ms; -webkit-transform: rotateX(-90deg) translateZ(90px); transform: rotateX(-90deg) translateZ(90px); -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; -webkit-transform-origin: 50% 50%; transform-origin: 50% 50%; } +@-webkit-keyframes bottom-animation { + 0% { opacity: 1; -webkit-transform: rotateX(-90deg) translateZ(90px); transform: rotateX(-90deg) translateZ(90px); } + 20% { opacity: 1; -webkit-transform: rotateX(-90deg) translateZ(35px); transform: rotateX(-90deg) translateZ(35px); } + 70% { opacity: 1; -webkit-transform: rotateX(-90deg) translateZ(35px); transform: rotateX(-90deg) translateZ(35px); } + 90% { opacity: 1; -webkit-transform: rotateX(-90deg) translateZ(90px); transform: rotateX(-90deg) translateZ(90px); } + 100% { opacity: 1; -webkit-transform: rotateX(-90deg) translateZ(90px); transform: rotateX(-90deg) translateZ(90px); } +} +@keyframes bottom-animation { + 0% { opacity: 1; -webkit-transform: rotateX(-90deg) translateZ(90px); transform: rotateX(-90deg) translateZ(90px); } + 20% { opacity: 1; -webkit-transform: rotateX(-90deg) translateZ(35px); transform: rotateX(-90deg) translateZ(35px); } + 70% { opacity: 1; -webkit-transform: rotateX(-90deg) translateZ(35px); transform: rotateX(-90deg) translateZ(35px); } + 90% { opacity: 1; -webkit-transform: rotateX(-90deg) translateZ(90px); transform: rotateX(-90deg) translateZ(90px); } + 100% { opacity: 1; -webkit-transform: rotateX(-90deg) translateZ(90px); transform: rotateX(-90deg) translateZ(90px); } +} +.cube .sides .front { -webkit-animation: front-animation 3s ease infinite; animation: front-animation 3s ease infinite; -webkit-animation-delay: 100ms; animation-delay: 100ms; -webkit-transform: rotateY(0deg) translateZ(90px); transform: rotateY(0deg) translateZ(90px); -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; -webkit-transform-origin: 50% 50%; transform-origin: 50% 50%; } +@-webkit-keyframes front-animation { + 0% { opacity: 1; -webkit-transform: rotateY(0deg) translateZ(90px); transform: rotateY(0deg) translateZ(90px); } + 20% { opacity: 1; -webkit-transform: rotateY(0deg) translateZ(35px); transform: rotateY(0deg) translateZ(35px); } + 70% { opacity: 1; -webkit-transform: rotateY(0deg) translateZ(35px); transform: rotateY(0deg) translateZ(35px); } + 90% { opacity: 1; -webkit-transform: rotateY(0deg) translateZ(90px); transform: rotateY(0deg) translateZ(90px); } + 100% { opacity: 1; -webkit-transform: rotateY(0deg) translateZ(90px); transform: rotateY(0deg) translateZ(90px); } +} +@keyframes front-animation { + 0% { opacity: 1; -webkit-transform: rotateY(0deg) translateZ(90px); transform: rotateY(0deg) translateZ(90px); } + 20% { opacity: 1; -webkit-transform: rotateY(0deg) translateZ(35px); transform: rotateY(0deg) translateZ(35px); } + 70% { opacity: 1; -webkit-transform: rotateY(0deg) translateZ(35px); transform: rotateY(0deg) translateZ(35px); } + 90% { opacity: 1; -webkit-transform: rotateY(0deg) translateZ(90px); transform: rotateY(0deg) translateZ(90px); } + 100% { opacity: 1; -webkit-transform: rotateY(0deg) translateZ(90px); transform: rotateY(0deg) translateZ(90px); } +} +.cube .sides .back { -webkit-animation: back-animation 3s ease infinite; animation: back-animation 3s ease infinite; -webkit-animation-delay: 100ms; animation-delay: 100ms; -webkit-transform: rotateY(-180deg) translateZ(90px); transform: rotateY(-180deg) translateZ(90px); -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; -webkit-transform-origin: 50% 50%; transform-origin: 50% 50%; } +@-webkit-keyframes back-animation { + 0% { opacity: 1; -webkit-transform: rotateY(-180deg) translateZ(90px); transform: rotateY(-180deg) translateZ(90px); } + 20% { opacity: 1; -webkit-transform: rotateY(-180deg) translateZ(35px); transform: rotateY(-180deg) translateZ(35px); } + 70% { opacity: 1; -webkit-transform: rotateY(-180deg) translateZ(35px); transform: rotateY(-180deg) translateZ(35px); } + 90% { opacity: 1; -webkit-transform: rotateY(-180deg) translateZ(90px); transform: rotateY(-180deg) translateZ(90px); } + 100% { opacity: 1; -webkit-transform: rotateY(-180deg) translateZ(90px); transform: rotateY(-180deg) translateZ(90px); } +} +@keyframes back-animation { + 0% { opacity: 1; -webkit-transform: rotateY(-180deg) translateZ(90px); transform: rotateY(-180deg) translateZ(90px); } + 20% { opacity: 1; -webkit-transform: rotateY(-180deg) translateZ(35px); transform: rotateY(-180deg) translateZ(35px); } + 70% { opacity: 1; -webkit-transform: rotateY(-180deg) translateZ(35px); transform: rotateY(-180deg) translateZ(35px); } + 90% { opacity: 1; -webkit-transform: rotateY(-180deg) translateZ(90px); transform: rotateY(-180deg) translateZ(90px); } + 100% { opacity: 1; -webkit-transform: rotateY(-180deg) translateZ(90px); transform: rotateY(-180deg) translateZ(90px); } +} +.cube .sides .left { -webkit-animation: left-animation 3s ease infinite; animation: left-animation 3s ease infinite; -webkit-animation-delay: 100ms; animation-delay: 100ms; -webkit-transform: rotateY(-90deg) translateZ(90px); transform: rotateY(-90deg) translateZ(90px); -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; -webkit-transform-origin: 50% 50%; transform-origin: 50% 50%; } +@-webkit-keyframes left-animation { + 0% { opacity: 1; -webkit-transform: rotateY(-90deg) translateZ(90px); transform: rotateY(-90deg) translateZ(90px); } + 20% { opacity: 1; -webkit-transform: rotateY(-90deg) translateZ(35px); transform: rotateY(-90deg) translateZ(35px); } + 70% { opacity: 1; -webkit-transform: rotateY(-90deg) translateZ(35px); transform: rotateY(-90deg) translateZ(35px); } + 90% { opacity: 1; -webkit-transform: rotateY(-90deg) translateZ(90px); transform: rotateY(-90deg) translateZ(90px); } + 100% { opacity: 1; -webkit-transform: rotateY(-90deg) translateZ(90px); transform: rotateY(-90deg) translateZ(90px); } +} +@keyframes left-animation { + 0% { opacity: 1; -webkit-transform: rotateY(-90deg) translateZ(90px); transform: rotateY(-90deg) translateZ(90px); } + 20% { opacity: 1; -webkit-transform: rotateY(-90deg) translateZ(35px); transform: rotateY(-90deg) translateZ(35px); } + 70% { opacity: 1; -webkit-transform: rotateY(-90deg) translateZ(35px); transform: rotateY(-90deg) translateZ(35px); } + 90% { opacity: 1; -webkit-transform: rotateY(-90deg) translateZ(90px); transform: rotateY(-90deg) translateZ(90px); } + 100% { opacity: 1; -webkit-transform: rotateY(-90deg) translateZ(90px); transform: rotateY(-90deg) translateZ(90px); } +} +.cube .sides .right { -webkit-animation: right-animation 3s ease infinite; animation: right-animation 3s ease infinite; -webkit-animation-delay: 100ms; animation-delay: 100ms; -webkit-transform: rotateY(90deg) translateZ(90px); transform: rotateY(90deg) translateZ(90px); -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; -webkit-transform-origin: 50% 50%; transform-origin: 50% 50%; } +@-webkit-keyframes right-animation { + 0% { opacity: 1; -webkit-transform: rotateY(90deg) translateZ(90px); transform: rotateY(90deg) translateZ(90px); } + 20% { opacity: 1; -webkit-transform: rotateY(90deg) translateZ(35px); transform: rotateY(90deg) translateZ(35px); } + 70% { opacity: 1; -webkit-transform: rotateY(90deg) translateZ(35px); transform: rotateY(90deg) translateZ(35px); } + 90% { opacity: 1; -webkit-transform: rotateY(90deg) translateZ(90px); transform: rotateY(90deg) translateZ(90px); } + 100% { opacity: 1; -webkit-transform: rotateY(90deg) translateZ(90px); transform: rotateY(90deg) translateZ(90px); } +} +@keyframes right-animation { + 0% { opacity: 1; -webkit-transform: rotateY(90deg) translateZ(90px); transform: rotateY(90deg) translateZ(90px); } + 20% { opacity: 1; -webkit-transform: rotateY(90deg) translateZ(35px); transform: rotateY(90deg) translateZ(35px); } + 70% { opacity: 1; -webkit-transform: rotateY(90deg) translateZ(35px); transform: rotateY(90deg) translateZ(35px); } + 90% { opacity: 1; -webkit-transform: rotateY(90deg) translateZ(90px); transform: rotateY(90deg) translateZ(90px); } + 100% { opacity: 1; -webkit-transform: rotateY(90deg) translateZ(90px); transform: rotateY(90deg) translateZ(90px); } +} + +/*--------------------------------------------------------------------- + Header +-----------------------------------------------------------------------*/ +header { padding: 15px 0; } +header .container-fluid { padding: 0 100px; } +header { position: relative; display: inline-block; width: 100%; z-index: 999; padding: 20px 0; transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; } +header .navbar { padding-left: 0; padding-right: 0; } +header .navbar .navbar-brand { padding: 0; } +header .navbar .navbar-brand img { transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; } +header .navbar .navbar-nav { margin-top: 0; transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; } +header .navbar .navbar-nav>li { margin: 0 30px 0 0; position: relative; } +header .navbar .navbar-nav>li:last-child { margin-right: 0; } +header .navbar .navbar-nav .nav-item a { color: #ffffff; padding: 0; font-family: 'Muli', sans-serif; font-size: 16px; text-transform: capitalize; } +header .navbar .navbar-nav .nav-item a:hover, header .navbar .navbar-nav .nav-item a:focus, header .navbar .navbar-nav .nav-item a.active, header .navbar .navbar-nav .nav-item a.active:focus, header .navbar .navbar-nav .nav-item a.active:hover { color: var(--mainColour); background: none; box-shadow: none; } +header .navbar .navbar-nav .nav-item a::before { background: var(--mainColour); bottom: 0; content: ""; height: 2px; left: 0; position: absolute; width: 0; transition: all 0.3s ease-out 0s; } +header .navbar .navbar-nav .nav-item a.active::before, header .navbar .navbar-nav .nav-item:hover>a::before, header .navbar .navbar-nav .nav-item>a:hover::before { width: 100%; } +header .button, header .button-line { margin-top: 0; margin-left: 40px; } +header .navbar-light .navbar-nav .nav-item .dropdown-menu a { color: #000000; padding: 5px 15px; } +header .navbar-nav .dropdown-menu { top: 48px; } +header .navbar-light .navbar-nav .nav-item .dropdown-menu a:hover, header .navbar-light .navbar-nav .nav-item .dropdown-menu a.active { color: var(--mainColour); } +header .navbar .navbar-nav .nav-item .dropdown-menu a.active::before, header .navbar .navbar-nav .nav-item .dropdown-menu a:hover::before { display: none; } + +/* Header sticky */ +header.menu-sticky { padding: 10px 0; top: 0; left: 0; -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1); box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1); position: fixed; } +header.menu-sticky .navbar .navbar-brand img { height: 50px; } + +/* Header Fancy */ +header.header-fancy .button { margin-left: 30px; padding: 11px 20px 11px; font-size: 28px; } +header.header-fancy .navbar .navbar-nav { background: #fff; border-radius: 4px; } +header.header-fancy .navbar .navbar-nav .nav-item a { color: #333; padding: 0px; font-weight: 500; } +header.header-fancy .navbar .navbar-nav>li { margin: 0; } +header.header-fancy .navbar .navbar-nav .nav-item a::before { display: none; } +header.header-fancy .navbar .navbar-nav .nav-item a:hover, header.header-fancy .navbar .navbar-nav .nav-item a:focus, header.header-fancy .navbar .navbar-nav .nav-item a.active, header.header-fancy .navbar .navbar-nav .nav-item a.active:focus, header.header-fancy .navbar .navbar-nav .nav-item a.active:hover { color: #4ac4f3; background: none; box-shadow: none; } + +/* Header With Top Bar */ +header.header-one { position: fixed; background-color: #fff; display: inline-block; width: 100%; top: 0; left: 0; z-index: 999; padding: 0; transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; } +header.header-one .navbar .navbar-nav .nav-item a { color: #333; padding: 12px 20px; font-weight: 500; } +header.header-one .navbar .navbar-nav>li { margin: 0; } +header.header-one .navbar .navbar-nav .nav-item a::before { display: none; } +header.header-one .navbar .navbar-nav .nav-item a:hover, header.header-one .navbar .navbar-nav .nav-item a.active, header.header-one .navbar .navbar-nav .nav-item a.active:focus, header.header-one .navbar .navbar-nav .nav-item a.active:hover { color: #4ac4f3; background: none; box-shadow: none; } +header.header-one .header-top-bar ul li { display: inline-block; margin: 0px 8px; } +header.header-one .header-top-bar ul li a { color: #fff; font-size: 14px } +header.header-one .header-top-bar ul li a:hover { color: #4ac4f3; font-size: 14px; } +header.header-one .navbar { padding: 10px 0; } +.header-one.menu-sticky { background-color: #ffffff; } + +/* Header White */ +header.header-white { background: #fff; } +header.header-white .navbar .navbar-nav .nav-item a::before { background: #4ac4f3; } +header.header-white .navbar .navbar-nav .nav-item a { color: #333; } +header.header-white .navbar .navbar-nav .nav-item a:hover, header.header-white .navbar .navbar-nav .nav-item a:focus, header.header-white .navbar .navbar-nav .nav-item a.active, header.header-white .navbar .navbar-nav .nav-item a.active:focus, header.header-white .navbar .navbar-nav .nav-item a.active:hover { color: #4ac4f3; background: none; box-shadow: none; } + +/* Header Dark */ +header.dark .navbar .navbar-nav .nav-item a::before { background: #4ac4f3; } +header.dark .navbar .navbar-nav .nav-item a { color: #333; } +header.dark .navbar .navbar-nav .nav-item a:hover, header.dark .navbar .navbar-nav .nav-item a:focus, header.dark .navbar .navbar-nav .nav-item a.active, header.dark .navbar .navbar-nav .nav-item a.active:focus, header.dark .navbar .navbar-nav .nav-item a.active:hover { color: #4ac4f3; background: none; box-shadow: none; } + +/* Header sticky */ +header.dark.menu-sticky { padding: 10px 0; -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1); box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1); background: #fff; } + +/*--------------------------------------------------------------------- + Banner +-----------------------------------------------------------------------*/ +.iq-banner { position: relative; overflow: hidden; } +.iq-banner .container-fluid { padding: 0 90px; } +/*.iq-banner:after { content: ""; bottom: -5px; left: 0; width: 100%; height: 84px; background: url('./src/assets/sofbox-sass-black/images/bg/02.png') no-repeat 0 0; background-size: cover; display: inline-block; position: absolute; }*/ +.iq-banner .banner-text { z-index: 9; position: relative; margin-top: 13%; } +.iq-banner .banner-text h1 { font-size: 64px; line-height: normal; } +.iq-banner .banner-img { width: 110%; } +.iq-banner .iq-video { background: #fff; display: inline-block; width: 60px; height: 60px; text-align: center; font-size: 29px; color: #4ac4f3; float: left; border-radius: 100%; line-height: 2.1; z-index: 9; position: relative; } +.iq-banner .iq-video i { margin-left: 5px; } +.iq-banner .waves-box { position: relative; } +.iq-banner .iq-waves { position: absolute; width: 14rem; height: 14rem; left: -90px; top: -90px; z-index: 2; float: right; } +.iq-banner .iq-waves .waves { position: absolute; width: 384px; width: 15rem; height: 384px; height: 15rem; background: rgba(255, 255, 255, 0.2); opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; border-radius: 320px; background-clip: padding-box; -webkit-animation: waves 3s ease-in-out infinite; animation: waves 3s ease-in-out infinite; } +.iq-banner .iq-waves .wave-1 { -webkit-animation-delay: 0s; animation-delay: 0s; } +.iq-banner .iq-waves .wave-2 { -webkit-animation-delay: 1s; animation-delay: 1s; } +.iq-banner .iq-waves .wave-3 { -webkit-animation-delay: 2s; animation-delay: 2s; } +@-webkit-keyframes waves { + 0% { -webkit-transform: scale(0.2, 0.2); transform: scale(0.2, 0.2); opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; } + 50% { opacity: 0.9; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; } + 100% { -webkit-transform: scale(0.9, 0.9); transform: scale(0.9, 0.9); opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; } +} +@keyframes waves { + 0% { -webkit-transform: scale(0.2, 0.2); transform: scale(0.2, 0.2); opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; } + 50% { opacity: 0.9; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; } + 100% { -webkit-transform: scale(0.9, 0.9); transform: scale(0.9, 0.9); opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; } +} +.iq-banner .banner-objects { position: absolute; left: 0; top: 0; display: inline-block; width: 100%; height: 100%; } +.iq-banner .banner-objects .banner-objects-01 { position: absolute; left: -8%; bottom: -20%; opacity: 0.1; } +.iq-banner .banner-objects .banner-objects-02 { position: absolute; bottom: 50%; margin-bottom: -125px; left: -13%; border: 15px solid rgba(255, 255, 255, 0.1); border-radius: 900px; height: 250px; width: 250px; } +.iq-banner .banner-objects .banner-objects-03 { position: absolute; top: 0%; right: -15%; border: 30px solid rgba(255, 255, 255, 0.1); border-radius: 900px; height: 400px; width: 400px; } + +/* Banner Wave One */ +/*.iq-banner.wave-one:after { content: ""; bottom: -2px; left: 0; width: 100%; height: 330px; background: url('./src/assets/sofbox-sass-black/images/bg/01.png') no-repeat 0 0; background-size: cover; display: inline-block; position: absolute; } +.iq-banner.wave-one .banner-text { margin-top: 7%; padding-bottom: 13%; } +*/ +/*--------------------------------------------------------------------- + How It Work +-----------------------------------------------------------------------*/ +.iq-work { position: relative; padding-top: 70px !important; } +.iq-work-detail { background: #16171d; padding: 60px 30px 60px; position: relative; overflow: hidden; border-bottom: 4px solid transparent; z-index: 1; } +.iq-work-id { -webkit-transition: all 0.5s linear; -moz-transition: all 0.5s linear; -o-transition: all 0.5s linear; transition: all 0.5s linear; font-size: 140px; font-family: 'Montserrat', sans-serif; font-weight: bold; position: absolute; text-align: center; top: 120px; margin: 0 auto; left: 0; right: 0; line-height: 140px; background: -webkit-linear-gradient(28deg, rgba(118, 109, 254, 1) 0%, rgba(39, 53, 255, 1) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } +i.flaticon { color: #ffffff; display: block; } +.iq-work-detail p { position: relative; } +.flaticon::before { font-size: 60px !important; margin: 0; line-height: 60px; } +.readmore { position: absolute; right: 30px; font-size: 40px; line-height: 40px; bottom: 30px; color: #ffffff; opacity: 0; z-index: 1; -webkit-transform: translate3d(20px, 20px, 0); transform: translate3d(20px, 20px, 0); -webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; -o-transition: all 0.2s linear; transition: all 0.2s linear; } +.iq-work-detail::before { position: absolute; right: -80px; bottom: -80px; width: 195px; height: 195px; background: #191a20; border-radius: 100%; content: ''; opacity: 0; -webkit-transform: scale3d(0.5, 0.5, 1); transform: scale3d(0.5, 0.5, 1); -webkit-transform-origin: 50% 50%; transform-origin: 50% 50%; } +.iq-work .iq-work-detail::before { -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; } +.iq-work:hover .iq-work-detail { border-color: var(--mainColour); } +.iq-work:hover i.flaticon { color: var(--mainColour); } +.iq-work:hover .iq-work-detail::before { opacity: 1; -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } +.iq-work:hover .readmore { opacity: 1; -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } +.iq-work:hover .iq-work-id { top: -30px; } + +/*--------------------------------------------------------------------- + About Us +-----------------------------------------------------------------------*/ +.right-image { position: absolute; right: -20%; top: 0; } +.left-image { position: absolute; left: -20%; top: 0; } +.iq-about-us { overflow: hidden; } +.timer, .counter { font-size: 50px; line-height: 50px; font-weight: 700; } +.features { margin-bottom: 30px; float: left; display: block; } +.features .feature-icon { float: left; } +.features .feature-info { float: left; } +.features .feature-icon i.flaticon { color: var(--mainColour); margin-right: 15px; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; } +.features:hover .feature-icon i.flaticon { -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; -webkit-animation-name: wobble-vertical; animation-name: wobble-vertical; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } +.iq-services { margin-bottom: 50px; } +.iq-services:hover h5, .iq-services:hover .flaticon { color: #ffffff; } +.iq-services:hover .iq-icon img { -webkit-animation-name: wobble-horizontal; animation-name: wobble-horizontal; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; } +.hvr-wobble-horizontal { } +@keyframes bounce { + from { transform: translateY(0px); } + to { transform: translateY(-25px); } +} +@-webkit-keyframes bounce { + from { transform: translateY(0px); } + to { transform: translateY(-25px); } +} +@keyframes wobble-vertical { + 16.65% { transform: translateY(8px); } + 33.3% { transform: translateY(-6px); } + 49.95% { transform: translateY(4px); } + 66.6% { transform: translateY(-2px); } + 83.25% { transform: translateY(1px); } + 100% { transform: translateY(0); } +} +@-webkit-keyframes wobble-horizontal { + 16.65% { -webkit-transform: translateX(8px); transform: translateX(8px); } + 33.3% { -webkit-transform: translateX(-6px); transform: translateX(-6px); } + 49.95% { -webkit-transform: translateX(4px); transform: translateX(4px); } + 66.6% { -webkit-transform: translateX(-2px); transform: translateX(-2px); } + 83.25% { -webkit-transform: translateX(1px); transform: translateX(1px); } + 100% { -webkit-transform: translateX(0); transform: translateX(0); } +} +@keyframes wobble-horizontal { + 16.65% { -webkit-transform: translateX(8px); transform: translateX(8px); } + 33.3% { -webkit-transform: translateX(-6px); transform: translateX(-6px); } + 49.95% { -webkit-transform: translateX(4px); transform: translateX(4px); } + 66.6% { -webkit-transform: translateX(-2px); transform: translateX(-2px); } + 83.25% { -webkit-transform: translateX(1px); transform: translateX(1px); } + 100% { -webkit-transform: translateX(0); transform: translateX(0); } +} + +/*--------------------------------------------------------------------- + Great screenshots +-----------------------------------------------------------------------*/ +.iq-screenshots { overflow: hidden; position: relative; } +@keyframes heartbeat { + 0% { transform: scale(0); } + 25% { transform: scale(1.2); } + 50% { transform: scale(1); } + 75% { transform: scale(1.2); } + 100% { transform: scale(1); } +} +.screenshots-slider { display: inline-block; width: 100%; min-height: 563px; } +.slider-container { position: absolute; left: 50%; top: 50%; width: 770px; height: 563px; margin: -300px 0 0 -390px; } +.slider-container .slider-content { position: relative; left: 50%; top: 50%; width: 100%; height: 100%; transform: translate(-50%, -50%); } +.slider-container .slider-content .slider-single { position: absolute; z-index: 0; left: 0; top: 0; width: 100%; height: 100%; transition: z-index 0ms 250ms; } +.slider-container .slider-content .slider-single .slider-single-image { position: relative; left: 0; top: 0; width: 100%; height: 100%; transition: 500ms cubic-bezier(0.17, 0.67, 0.55, 1.43); transform: scale(0); opacity: 0; } +.slider-container .slider-content .slider-single.preactivede .slider-single-image { transform: translateX(-50%) scale(0); } +.slider-container .slider-content .slider-single.preactive { z-index: 1; } +.slider-container .slider-content .slider-single.preactive .slider-single-image { opacity: .3; transform: translateX(-25%) scale(0.8); } +.slider-container .slider-content .slider-single.proactive { z-index: 1; } +.slider-container .slider-content .slider-single.proactive .slider-single-image { opacity: .3; transform: translateX(25%) scale(0.8); } +.slider-container .slider-content .slider-single.proactivede .slider-single-image { transform: translateX(50%) scale(0); } +.slider-container .slider-content .slider-single.active { z-index: 2; } +.slider-container .slider-content .slider-single.active .slider-single-image { opacity: 1; transform: translateX(0%) scale(1); } +.slider-container .slider-left { position: absolute; z-index: 3; display: block; right: 115%; top: 50%; color: #ffffff; transform: translateY(-50%); padding: 20px 15px; font-size: 60px; } +.slider-container .slider-right { position: absolute; z-index: 3; display: block; left: 115%; top: 50%; color: #ffffff; transform: translateY(-50%); padding: 20px 15px; font-size: 60px; } + +/* Screenshots Slider NO Shadow */ +.no-shadow .slider-container .slider-content .slider-single .slider-single-image { box-shadow: none; } +.no-shadow .slider-container .slider-content .slider-single.preactive .slider-single-image { opacity: 0; } +.no-shadow .slider-container .slider-content .slider-single.proactive .slider-single-image { opacity: 0; } + +/*--------------------------------------------------------------------- + Team +-----------------------------------------------------------------------*/ +.team { float: left; width: 100%; margin-bottom: 140px; } +.team .left, .team .right { float: left; width: 50%; } +.team-right { margin-top: 120px; } +.team-img { width: 270px; height: 330px; } +.team .right { padding: 70px 30px; } +.team-img img { -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */ filter: grayscale(100%); } +.social-media li { display: inline-block; height: 34px; width: 34px; margin-right: 15px; border: 1px solid #e0e0e0; text-align: center; -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%; } +.social-media li a { color: #e0e0e0; } +.social-media li:hover { background: -moz-linear-gradient(left, rgba(118, 109, 254, 1) 0%, rgba(118, 109, 254, 1) 0%, rgba(39, 53, 255, 1) 51%, rgba(39, 53, 255, 1) 100%); background: -webkit-gradient(left top, right top, color-stop(0%, rgba(118, 109, 254, 1)), color-stop(0%, rgba(118, 109, 254, 1)), color-stop(51%, rgba(39, 53, 255, 1)), color-stop(100%, rgba(39, 53, 255, 1))); background: -webkit-linear-gradient(left, rgba(118, 109, 254, 1) 0%, rgba(118, 109, 254, 1) 0%, rgba(39, 53, 255, 1) 51%, rgba(39, 53, 255, 1) 100%); background: -o-linear-gradient(left, rgba(118, 109, 254, 1) 0%, rgba(118, 109, 254, 1) 0%, rgba(39, 53, 255, 1) 51%, rgba(39, 53, 255, 1) 100%); background: -ms-linear-gradient(left, rgba(118, 109, 254, 1) 0%, rgba(118, 109, 254, 1) 0%, rgba(39, 53, 255, 1) 51%, rgba(39, 53, 255, 1) 100%); background: linear-gradient(to right, rgba(118, 109, 254, 1) 0%, rgba(118, 109, 254, 1) 0%, rgba(39, 53, 255, 1) 51%, rgba(39, 53, 255, 1) 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#766dfe', endColorstr='#2735ff', GradientType=1); border-color: -moz-linear-gradient(left, rgba(118, 109, 254, 1) 0%, rgba(118, 109, 254, 1) 0%, rgba(39, 53, 255, 1) 51%, rgba(39, 53, 255, 1) 100%); border-color: -webkit-gradient(left top, right top, color-stop(0%, rgba(118, 109, 254, 1)), color-stop(0%, rgba(118, 109, 254, 1)), color-stop(51%, rgba(39, 53, 255, 1)), color-stop(100%, rgba(39, 53, 255, 1))); border-color: -webkit-linear-gradient(left, rgba(118, 109, 254, 1) 0%, rgba(118, 109, 254, 1) 0%, rgba(39, 53, 255, 1) 51%, rgba(39, 53, 255, 1) 100%); border-color: -o-linear-gradient(left, rgba(118, 109, 254, 1) 0%, rgba(118, 109, 254, 1) 0%, rgba(39, 53, 255, 1) 51%, rgba(39, 53, 255, 1) 100%); border-color: -ms-linear-gradient(left, rgba(118, 109, 254, 1) 0%, rgba(118, 109, 254, 1) 0%, rgba(39, 53, 255, 1) 51%, rgba(39, 53, 255, 1) 100%); border-color: linear-gradient(to right, rgba(118, 109, 254, 1) 0%, rgba(118, 109, 254, 1) 0%, rgba(39, 53, 255, 1) 51%, rgba(39, 53, 255, 1) 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#766dfe', endColorstr='#2735ff', GradientType=1); } +.social-media li:hover a { color: #ffffff; } +.team:hover .team-img img { -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */ filter: grayscale(0%); } + +/*--------------------------------------------------------------------- + Pricing Table +-----------------------------------------------------------------------*/ +.pricing-tab { text-align: center; color: #ffffff; } +.iq-pricing .nav { width: 86px; margin: 0 15px; border: 1px solid #ffffff; border-radius: 5px; display: inline-block; text-align: center; vertical-align: middle; } +.iq-pricing .nav li { width: 50%; float: left; height: 25px; } +.iq-pricing .nav li a { display: block; height: 25px; } +.nav-pills .nav-link.active, .nav-pills .show>.nav-link { background: -moz-linear-gradient(left, rgba(118, 109, 254, 1) 0%, rgba(118, 109, 254, 1) 0%, rgba(39, 53, 255, 1) 51%, rgba(39, 53, 255, 1) 100%); background: -webkit-gradient(left top, right top, color-stop(0%, rgba(118, 109, 254, 1)), color-stop(0%, rgba(118, 109, 254, 1)), color-stop(51%, rgba(39, 53, 255, 1)), color-stop(100%, rgba(39, 53, 255, 1))); background: -webkit-linear-gradient(left, rgba(118, 109, 254, 1) 0%, rgba(118, 109, 254, 1) 0%, rgba(39, 53, 255, 1) 51%, rgba(39, 53, 255, 1) 100%); background: -o-linear-gradient(left, rgba(118, 109, 254, 1) 0%, rgba(118, 109, 254, 1) 0%, rgba(39, 53, 255, 1) 51%, rgba(39, 53, 255, 1) 100%); background: -ms-linear-gradient(left, rgba(118, 109, 254, 1) 0%, rgba(118, 109, 254, 1) 0%, rgba(39, 53, 255, 1) 51%, rgba(39, 53, 255, 1) 100%); background: linear-gradient(to right, rgba(118, 109, 254, 1) 0%, rgba(118, 109, 254, 1) 0%, rgba(39, 53, 255, 1) 51%, rgba(39, 53, 255, 1) 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#766dfe', endColorstr='#2735ff', GradientType=1); } +.iq-pricing .tab-content { margin-top: 30px; } +.iq-pricing-table { border: 5px solid #16171d; padding: 60px 30px; background: none; float: left; width: 100%; -webkit-animation: rotate 0.5s; -moz-animation: rotate 0.5s; animation: rotate 0.5s; -webkit-animation: rotate-inverse 0.5s; -moz-animation: rotate-inverse 0.5s; animation: rotate-inverse 0.5s; } +.iq-pricing-table h2 { font-size: 60px; margin-bottom: 30px; } +.iq-pricing-table h2 span { font-size: 16px; font-weight: normal; } +.iq-pricing-table ul li { color: #ffffff; margin-bottom: 10px; } +.iq-pricing-table ul li i { margin-right: 15px; } +.iq-pricing-table .button { border: 1px solid #ffffff; background: #16171d; } +.iq-pricing-table .button:hover, .iq-pricing-table:hover .button { background: -moz-linear-gradient(left, rgba(118, 109, 254, 1) 0%, rgba(118, 109, 254, 1) 0%, rgba(39, 53, 255, 1) 51%, rgba(39, 53, 255, 1) 100%); background: -webkit-gradient(left top, right top, color-stop(0%, rgba(118, 109, 254, 1)), color-stop(0%, rgba(118, 109, 254, 1)), color-stop(51%, rgba(39, 53, 255, 1)), color-stop(100%, rgba(39, 53, 255, 1))); background: -webkit-linear-gradient(left, rgba(118, 109, 254, 1) 0%, rgba(118, 109, 254, 1) 0%, rgba(39, 53, 255, 1) 51%, rgba(39, 53, 255, 1) 100%); background: -o-linear-gradient(left, rgba(118, 109, 254, 1) 0%, rgba(118, 109, 254, 1) 0%, rgba(39, 53, 255, 1) 51%, rgba(39, 53, 255, 1) 100%); background: -ms-linear-gradient(left, rgba(118, 109, 254, 1) 0%, rgba(118, 109, 254, 1) 0%, rgba(39, 53, 255, 1) 51%, rgba(39, 53, 255, 1) 100%); background: linear-gradient(to right, rgba(118, 109, 254, 1) 0%, rgba(118, 109, 254, 1) 0%, rgba(39, 53, 255, 1) 51%, rgba(39, 53, 255, 1) 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#766dfe', endColorstr='#2735ff', GradientType=1); border: 1px solid transparent; } +.iq-pricing-table:hover { background: #16171d; transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; } +@-webkit-keyframes rotate { + 0% { -webkit-transform: perspective(2000px) rotateY(0); } + 70% { -webkit-transform: perspective(2000px) rotateY(200deg); } + 100% { -webkit-transform: perspective(2000px) rotateY(180deg); } +} +@-moz-keyframes rotate { + 0% { -moz-transform: perspective(2000px) rotateY(0); } + 70% { -moz-transform: perspective(2000px) rotateY(200deg); } + 100% { -moz-transform: perspective(2000px) rotateY(180deg); } +} +@keyframes rotate { + 0% { -webkit-transform: perspective(2000px) rotateY(0); -moz-transform: perspective(2000px) rotateY(0); -ms-transform: perspective(2000px) rotateY(0); -o-transform: perspective(2000px) rotateY(0); transform: perspective(2000px) rotateY(0); } + 70% { -webkit-transform: perspective(2000px) rotateY(200deg); -moz-transform: perspective(2000px) rotateY(200deg); -ms-transform: perspective(2000px) rotateY(200deg); -o-transform: perspective(2000px) rotateY(200deg); transform: perspective(2000px) rotateY(200deg); } + 100% { -webkit-transform: perspective(2000px) rotateY(180deg); -moz-transform: perspective(2000px) rotateY(180deg); -ms-transform: perspective(2000px) rotateY(180deg); -o-transform: perspective(2000px) rotateY(180deg); transform: perspective(2000px) rotateY(180deg); } +} +@-webkit-keyframes rotate-inverse { + 0% { -webkit-transform: perspective(2000px) rotateY(-180deg); } + 70% { -webkit-transform: perspective(2000px) rotateY(20deg); } + 100% { -webkit-transform: perspective(2000px) rotateY(0); } +} +@-moz-keyframes rotate-inverse { + 0% { -moz-transform: perspective(2000px) rotateY(-180deg); } + 70% { -moz-transform: perspective(2000px) rotateY(20deg); } + 100% { -moz-transform: perspective(2000px) rotateY(0); } +} +@keyframes rotate-inverse { + 0% { -webkit-transform: perspective(2000px) rotateY(-180deg); -moz-transform: perspective(2000px) rotateY(-180deg); -ms-transform: perspective(2000px) rotateY(-180deg); -o-transform: perspective(2000px) rotateY(-180deg); transform: perspective(2000px) rotateY(-180deg); } + 70% { -webkit-transform: perspective(2000px) rotateY(20deg); -moz-transform: perspective(2000px) rotateY(20deg); -ms-transform: perspective(2000px) rotateY(20deg); -o-transform: perspective(2000px) rotateY(20deg); transform: perspective(2000px) rotateY(20deg); } + 100% { -webkit-transform: perspective(2000px) rotateY(0); -moz-transform: perspective(2000px) rotateY(0); -ms-transform: perspective(2000px) rotateY(0); -o-transform: perspective(2000px) rotateY(0); transform: perspective(2000px) rotateY(0); } +} + +/*--------------------------------------------------------------------- + Blog +-----------------------------------------------------------------------*/ +.iq-all-blogs .container { padding-top: 150px; } +.effect-chico.blog { overflow: hidden; float: left; width: 100%; position: relative; } +.iq-blogs .blog { margin-bottom: 30px; } +.iq-blogs .oel-carousel .blog { margin-bottom: 0px; } +.blog.effect-chico img { width: 100%; -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; -webkit-transform: scale(1.12); transform: scale(1.12); } +.blog.effect-chico:hover img { opacity: 0.5; -webkit-transform: scale(1); transform: scale(1); } +.blog.effect-chico .blog-info { padding: 30px; position: absolute; top: 0; left: 0; float: left; width: 100%; } +.blog.effect-chico .blog-info::before, .blog.effect-chico p { opacity: 0; -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; } +.blog.effect-chico h2 { padding: 18% 0 20px 0; font-size: 24px; -webkit-transition: all 0.5s ease-out 0s; -moz-transition: all 0.5s ease-out 0s; -ms-transition: all 0.5s ease-out 0s; -o-transition: all 0.5s ease-out 0s; transition: all 0.5s ease-out 0s; color: #ffffff; } +.blog.effect-chico:hover h2 { padding: 7% 0 20px 0; -webkit-transition: all 0.5s ease-out 0s; -moz-transition: all 0.5s ease-out 0s; -ms-transition: all 0.5s ease-out 0s; -o-transition: all 0.5s ease-out 0s; transition: all 0.5s ease-out 0s; margin-bottom: 0; line-height: 34px; } +.blog.effect-chico p { text-align: left; max-width: 500px; line-height: 24px; font-size: 14px; color: #ffffff; } +.blog.effect-chico:hover .blog-info::before, .blog.effect-chico:hover p { opacity: 1; } +.blog-comment { padding: 10px 30px; transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; background: #16171d; position: absolute; width: 100%; bottom: 0px; z-index: 2 } +.effect-chico:hover .blog-comment { background: rgba(118, 109, 254, 1); background: -moz-linear-gradient(45deg, rgba(118, 109, 254, 1) 0%, rgba(39, 53, 255, 1) 100%); background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(118, 109, 254, 1)), color-stop(100%, rgba(39, 53, 255, 1))); background: -webkit-linear-gradient(45deg, rgba(118, 109, 254, 1) 0%, rgba(39, 53, 255, 1) 100%); background: -o-linear-gradient(45deg, rgba(118, 109, 254, 1) 0%, rgba(39, 53, 255, 1) 100%); background: -ms-linear-gradient(45deg, rgba(118, 109, 254, 1) 0%, rgba(39, 53, 255, 1) 100%); background: linear-gradient(45deg, rgba(118, 109, 254, 1) 0%, rgba(39, 53, 255, 1) 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#766dfe', endColorstr='#2735ff', GradientType=1); transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; } +.effect-chico:hover .blog-comment ul li a { color: #ffffff; } +.iq-widget { padding: 45px 30px; margin-bottom: 45px; border: 1px solid #666666; } +.iq-widget .media { border-bottom: 1px solid #666666; margin-bottom: 30px; } +.iq-widget .media img { margin-bottom: 15px; } +.iq-sidebar-widget li a { font-size: 18px; color: #ffffff; } +.iq-sidebar-widget li a span { border: 1px solid #666666; float: right; border-radius: 5px; padding: 0 9px; } +.social-links li { display: inline-block; margin-right: 10px; } +.social-links li a, .blog-box ul li a { color: #ffffff; } +.social-links li a:hover, .blog-box ul li a:hover, .iq-sidebar-widget li a:hover { color: var(--mainColour); } +.iq-widget-search { position: relative; } +.iq-widget-search input.form-control { width: 100%; margin-bottom: 0; } +.iq-widget-search a { position: absolute; right: 2px; top: 2px; background: #16171d; color: #ffffff; padding: 7px 15px; } +.left-side-blog { padding-right: 35px; } +.right-side-blog { padding-left: 35px; } +.blog-img img { width: 100%; } +.blog-box { float: left; width: 100%; margin-bottom: 30px; } +.blog-box img { height: 50px; width: 50px; } +.blog-box ul li a { line-height: 50px; } +.iq-blockquote { background: #16171d; position: relative; float: left; width: 100%; padding: 60px; margin-bottom: 30px; } +.iq-blockquote:before { content: "\f10e"; font-family: "Font Awesome 5 Free"; font-size: 70px; color: #1b1c21; font-weight: 800; position: absolute; left: 30px; z-index: 1; transform: rotatey(180deg); top: 50%; } +.blockquote { text-align: center; } +.blockquote h5 { position: relative; z-index: 2; font-size: 24px; line-height: 40px; } +.iq-post { border-bottom: 1px solid #666666; float: left; width: 100%; } +.comments-box { border: 1px solid #666666; padding: 30px 15px; } +.comments-box img { height: 83px; width: 83px; } +.iq-commentbox input, .iq-commentbox textarea { width: 100%; background: none; padding: 15px; } + +/*--------------------------------------------------------------------- + Client +-----------------------------------------------------------------------*/ +.iq-client-info { padding: 30px; } +.iq-client-info:hover { background: #1c1d24; transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; } +.owl-carousel .owl-item .iq-client-info .hover-img { display: none; } +.owl-carousel .owl-item .iq-client-info:hover .hover-img { display: block; } +.owl-carousel .owl-item .iq-client-info:hover .default-img { display: none; } +.owl-carousel .owl-item .iq-client-info img { width: auto; margin: 0 auto; } + +/*--------------------------------------------------------------------- + Footer +-----------------------------------------------------------------------*/ +.footer-top { padding: 60px 0; border-top: 1px solid #666666; border-bottom: 1px solid #666666; } +footer .social-links li { display: inline-block; margin-right: 15px; } +footer a { color: #e0e0e0; } +footer .links, footer .copyright { padding: 15px 0; } +footer .links li { display: inline-block; margin-right: 20px; } +footer input, footer input.form-control { width: 270px; } +footer a:hover { color: #fe9c6a; } +footer .iq-contact li { font-size: 16px; color: #e0e0e0; margin-bottom: 15px; } +footer .iq-contact i { color: #e0e0e0; float: left; display: table-cell; width: 35px; line-height: 45px; font-size: 32px; } +footer .iq-contact p footer .iq-contact a { display: table; color: #e0e0e0; margin-bottom: 0px; padding-left: 5px; } + +/*--------------------------------------------------------------------- + Maintenance +-----------------------------------------------------------------------*/ +.maintenance-box { margin: 80px auto; } +.maintenance-box p { padding: 0 25%; } +.maintenance-box img { margin-bottom: 50px; -webkit-animation: spinAround 5s linear infinite; -moz-animation: spinAround 5s linear infinite; animation: spinAround 5s linear infinite; } +.error { margin: 120px auto; } +.maintenance-one { margin-right: 50px; margin-top: 50px; } +.maintenance-two { margin-top: 100px; } +.maintenance-three { margin-top: -50px; margin-left: 30px; } +@-webkit-keyframes spinAround { + from { -webkit-transform: rotate(0deg) } + to { -webkit-transform: rotate(360deg); } +} +@-moz-keyframes spinAround { + from { -moz-transform: rotate(0deg) } + to { -moz-transform: rotate(360deg); } +} +@keyframes spinAround { + from { transform: rotate(0deg) } + to { transform: rotate(360deg); } +} + +/*--------------------------------------------------------------------- + Coming Soon +---------------------------------------------------------------------*/ +.coming-height { min-height: 800px; vertical-align: middle; } +.iq-coming .big-text { font-size: 80px; text-transform: uppercase; color: #ffffff; font-weight: 900; line-height: 100px; font-family: 'Josefin Sans', sans-serif; } +.iq-coming img { width: 140px; } +.iq-coming form label { margin-right: 30px; } +.small-text { font-family: 'Muli', sans-serif; } +.iq-coming form .form-control { display: inline-block; margin-bottom: 0; background: none; height: 45px; padding: 0 15px 0 15px; outline: none !important; box-shadow: inherit; width: 280px; border-radius: 5px; } +.iq-coming form::-webkit-input-placeholder { color: #ffffff; } +.iq-coming form:-ms-input-placeholder { color: #ffffff; } +.iq-coming form::-moz-placeholder { color: #ffffff; opacity: 1; } +.iq-coming form:-moz-placeholder { color: #ffffff; opacity: 1; } +.iq-coming form .button { box-shadow: inherit; border: none; box-shadow: inherit; border: none; padding: 0 20px; border-radius: 0; height: 45px; font-size: 30px; } +.iq-coming .countdown-timer { -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; margin-bottom: 20px; max-width: 300px; margin: 50px auto; border-bottom-left-radius: 15px; } +.iq-coming .countdown-timer h5 { font-size: 14px; letter-spacing: 0.5px; text-align: center; padding-top: 10px; text-shadow: none; } +.iq-coming .countdown-timer .timer { padding: 10px; text-align: center; padding-top: 15px; } +.iq-coming .countdown-timer .timer .timer-wrapper { display: inline-block; width: 200px; height: 50px; } +.iq-coming .countdown-timer .timer .timer-wrapper .time { font-size: 80px; font-weight: bold; margin: 0 50px; float: left; } +.iq-coming .countdown-timer .timer .timer-wrapper .text { font-size: 20px; } +.iq-coming #countdown { list-style: none; margin: 20px 0 30px 0; padding: 0; text-align: center; display: inline-block; } +.iq-coming #countdown li { display: inline-block; margin: 0 20px; position: relative; } +.iq-coming #countdown li span { font-size: 120px; font-weight: 800; line-height: 120px; color: #ffffff; position: relative; } +.iq-coming #countdown li.seperator { font-size: 50px; line-height: 40px; vertical-align: top; margin: 16px 0px; color: #ffffff; } +.iq-coming #countdown li h6 { color: #ffffff; font-size: 20px; padding-right: 30px; } +.iq-coming .particles-bg { position: relative; overflow: hidden; } +.iq-coming .particles-bg #canvas { position: absolute; display: block; color: rgba(255, 255, 255.0.9); } +.iq-coming #countdown li p { font-size: 20px; font-weight: 600; line-height: 24px; color: #ffffff; text-transform: uppercase; background: #0e0f16; position: absolute; width: 100%; padding: 5px 0; top: 40%; } + +/*--------------------------------------------------------------------- + Breadcrumb +---------------------------------------------------------------------*/ +.iq-breadcrumb { padding: 80px 0; border-bottom: 1px solid #666666; } +.iq-breadcrumb nav { display: inline-block; } +.iq-breadcrumb .breadcrumb { z-index: 86; text-align: left; position: relative; color: #ffffff; margin-bottom: 0; display: inline-block; width: 100%; background: none; padding: 0 60px 0 20px; vertical-align: middle; line-height: 22px; } +.iq-breadcrumb .breadcrumb li { display: inline-block; text-transform: capitalize; } +.iq-breadcrumb .breadcrumb li a i { font-size: 18px; margin-right: 6px; } +.iq-breadcrumb .breadcrumb li, .iq-breadcrumb .breadcrumb li a:hover { color: #ffffff; } +.iq-breadcrumb .breadcrumb li a, .iq-breadcrumb .breadcrumb-item+.breadcrumb-item::before { color: #ffffff; margin-bottom: 0; } + +/*--------------------------------------------------------------------- + Contact Us +---------------------------------------------------------------------*/ +.heading-left.title::before, .heading-left.title::after { top: 14px; } +.iq-contact .iq-map iframe { border: 0px; width: 100%; height: 350px; } +.iq-our-touch { } +.iq-contact .iq-get-in { background: #16171d; padding: 45px; position: relative; margin-top: -12%; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; } +.contact-form input, .contact-form textarea { width: 100%; } +.iq-contact #formmessage { display: none; } +.iq-contact .contact-info { position: relative; padding: 0 30px; } +.iq-contact i { font-size: 20px; } +.iq-contact .left { width: 70px; height: 70px; float: left; margin-right: 10px; text-align: center; transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; } +.iq-contact .left i { color: #ffffff; font-size: 50px; display: block; line-height: 60px; transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; } +.iq-contact .contact-box .right { display: table-cell; margin-top: 10px; vertical-align: top; } +.iq-contact .contact-box .right p { margin-top: 0px; } + +/* Slider Hero Section */ + +/* main slider */ +.slider-left-block { padding: 100px 0 100px 150px; } +.main-slider { margin: 100px 0; overflow: hidden; } +.right-slider-image { position: absolute; top: 0; left: auto; right: -22%; animation: slidemove 6s infinite alternate; } +@keyframes slidemove { + 0%, 100% { transform: translate(0, 0); } + 50% { transform: translate(10px, 0); } + 80% { transform: translate(-10px, 0); } +} diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/css/typography.css b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/css/typography.css new file mode 100644 index 00000000..d66c5b06 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/css/typography.css @@ -0,0 +1,249 @@ +/* + +Template: Sofbox - Responsive Software Landing Page +Author: iqonicthemes.in +Version: 3.0 +Design and Developed by: iqonicthemes.in + +*/ + + + +/*================================================ +[ Table of contents ] +================================================ + +1 Google Font +2 Import Css +3 General +5 Text color +6 Title +7 Button +8 Background color +9 Background overlay color +10 Back to Top +11 Loader +12 Extra class + + +====================================== +[ End table content ] +======================================*/ + +/*--------------------------------------------------------------------- +Google Font +-----------------------------------------------------------------------*/ +@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700,800,900'); +@import url('https://fonts.googleapis.com/css?family=Muli:400,600,700,800,900'); + +/*--------------------------------------------------------------------- +import Css +-----------------------------------------------------------------------*/ + +/*--------------------------------------------------------------------- +General +-----------------------------------------------------------------------*/ +*::-moz-selection { background: #2737ff; color: #fff; text-shadow: none; } +::-moz-selection { background: #2737ff; color: #fff; text-shadow: none; } +::selection { background: #2737ff; color: #fff; text-shadow: none; } +body { color: #e0e0e0; } +a:focus { text-decoration: none !important; } +a{color:#ffffff;} +a:focus, a:hover { color: var(--mainColour); text-decoration: none !important; } +a, button { outline: medium none !important; } +h1, h2, h3, h4, h5, h6 { color: #ffffff; } +h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { color: inherit; } +label { font-weight: normal; } +ul { margin: 0px; padding: 0px; } +ul li{list-style: none;} +hr { margin: 0; padding: 0px; border-bottom: 1px solid #cccccc; display: inline-block; width: 100%; border-top: 0px; } +a:hover{color:var(--mainColour);} + +/*--------------------------------------------------------------------- +Text color +-----------------------------------------------------------------------*/ +.text-orange {color: var(--mainColour) } +.text-white { color: #ffffff; } +.text-black { color: #000000; } +.light-black{color: #192130} +.text-gray { color: #666666; } +.text-blue{color: #2737ff;} + +/*--------------------------------------------------------------------- +Font-size +-----------------------------------------------------------------------*/ +.iq-font-18{font-size: 18px;} +.iq-font-50{font-size: 50px;} +.iq-font-32{font-size: 32px;line-height: 48px;} +.iq-font-100{font-size: 100px;line-height: 100px;} +.iq-font-200{font-size: 200px;line-height: 200px;} + +/*--------------------------------------------------------------------- +Font-Weight +-----------------------------------------------------------------------*/ +.iq-fw-4{font-weight: 400;} +.iq-fw-6{font-weight: 500;} +.iq-fw-6{font-weight: 600;} +.iq-fw-7{font-weight: 700;} +.iq-fw-8{font-weight: 800;} +.iq-fw-9{font-weight: 900;} + +/*--------------------------------------------------------------------- +Heading Title +-----------------------------------------------------------------------*/ +.title-box { margin-bottom: 100px; text-align: center;font-weight: bold; } +.title { font-family: 'Muli', sans-serif; color:#666666; margin-bottom: 30px; font-weight: 800;text-transform: uppercase; position: relative; display: inline-block; padding-left: 20px; padding-right: 60px;} +.title:after{position: absolute; width: 6px; height: 6px; line-height: 6px; content:""; background:var(--mainColour) ; left: 0 ;top: 8px;} +.title:before{position: absolute; width: 50px; height: 4px; line-height: 6px; content:""; background:var(--mainColour) ; right:0 ;top: 10px;} + +/*---------------------------------------------------------------------- + Form +-----------------------------------------------------------------------*/ +input, input.form-control {background: transparent; color:#ffffff;border: 2px solid #666666; font-size: 14px; height: 50px; padding-left: 15px; margin-bottom: 30px; + -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px;width: 400px; + } +input[type="checkbox"], input.form-control[type="checkbox"] { margin-top: 0.5rem; background: #fff; height: auto; border: 1px solid var(--mainColour); + -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; } +::-webkit-input-placeholder { /* Chrome/Opera/Safari */ +color: #ffffff; } +::-moz-placeholder { /* Firefox 19+ */ +color: #ffffff; } +:-ms-input-placeholder { /* IE 10+ */ +color: #ffffff; } +:-moz-placeholder { /* Firefox 18- */ +color: #ffffff; } +textarea.form-control,textarea {background: none; height: 230px; padding: 15px 30px;margin-bottom: 30px; + -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; border: 2px solid #666666;} + input:hover, input.form-control:hover, input:focus, input.form-control:focus, textarea.form-control:hover, textarea.form-control:focus ,textarea:hover,textarea:focus{ + border: 2px solid var(--mainColour); + background: none; + outline: 0; + box-shadow: none; + color: #ffffff; + + } + +/*---------------------------------------------------------------------- + Buttons +-----------------------------------------------------------------------*/ +.button {font-family: 'Montserrat',sans-serif;-webkit-border-radius: 5px; +-moz-border-radius: 5px; +border-radius: 5px; color: #ffffff; cursor: pointer; padding: 8px 30px; font-weight: 600; font-size: 16px; position: relative;display: inline-block; +background-image: linear-gradient(to right, #766dfe 0%, #2735ff 51%, #2735ff 100%); transition: all .5s ease-in-out; transition: all .5s ease-in-out; -moz-transition: all .5s ease-in-out; -ms-transition: all .5s ease-in-out; -o-transition: all .5s ease-in-out; -webkit-transition: all .5s ease-in-out; + text-transform: capitalize; + background-size: 200% auto; } +.button:hover, .button:focus { color: #ffffff; background-position: right center;} +.clicklink{font-size: 18px;color: #fda96c; text-decoration: underline;} + + + + + + +/*---------------------------------------------------------------------- + Owl Carousel +-----------------------------------------------------------------------*/ +.owl-carousel .owl-dots{text-align: center;} +.owl-carousel button.owl-dot{height: 20px;width: 20px;border:1px solid transparent;-webkit-border-radius:90px; +-moz-border-radius: 90px; +border-radius: 90px;} +.owl-carousel button.owl-dot.active{border-color: #ffffff;} +.owl-carousel button.owl-dot span{height: 10px;width: 10px;background: #ffffff;-webkit-border-radius:90px; +-moz-border-radius: 90px; +border-radius: 90px; display: block;text-align: center;margin:0 auto; } + + +/*---------------- +Paging +----------------*/ + .pagination{float: left;width: 100%;} +.page-item:first-child .page-link i, .page-item:last-child .page-link { text-align: center; color: #ffffff; } + +.page-item:first-child .page-link, .page-item:last-child .page-link {border:none; background:none;padding: 10px 40px; border-radius: 5px; text-align: center; width: auto; -webkit-transition: all 0.5s ease-out 0s; -moz-transition: all 0.5s ease-out 0s; -ms-transition: all 0.5s ease-out 0s; -o-transition: all 0.5s ease-out 0s; transition: all 0.5s ease-out 0s; } +.page-link {background: none;border-color:#16171d; border-radius: 5px; width: 45px; height: 45px;margin:0 6px; line-height: 28px; text-align: center; color: #ffffff; } + .page-item.active .page-link, .page-item .page-link:hover, .page-item .page-link:focus { + box-shadow: none; + transition: all .5s ease-in-out; + transition: all .5s ease-in-out; + -moz-transition: all .5s ease-in-out; + -ms-transition: all .5s ease-in-out; + -o-transition: all .5s ease-in-out; + -webkit-transition: all .5s ease-in-out; + + border-color: rgba(39,53,255,1); background: -moz-linear-gradient(left, rgba(118,109,254,1) 0%, rgba(118,109,254,1) 0%, rgba(39,53,255,1) 51%, rgba(39,53,255,1) 100%); +background-image: linear-gradient(to right,#766dfe 0%,#766dfe 25%,#2735ff 100%); + + border-radius: 5px; text-align: center; color: #ffffff; z-index: 1; } + + .pagination li { z-index: 1;display: inline-block; } + +/*--------------------------------------------------------------------- +Background color +-----------------------------------------------------------------------*/ +.white-bg { background: #ffffff; } +.gray-bg {background: #f4f4f4;} +.blue-bg{background: #16171d;} +.dark-bg{background: #0e0f16;} +.orange-bg{background: #fda96c;} +.lightdark-bg{background: #191a20;} + + + +/*--------------------------------------------------------------------- +Background overlay color +-----------------------------------------------------------------------*/ + +/* Background Gradient Black */ +.bg-over-black-10:before { background: rgba(0, 0, 0, 0.1); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; } +.bg-over-black-20:before { background: rgba(0, 0, 0, 0.2); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; } +.bg-over-black-30:before { background: rgba(0, 0, 0, 0.3); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; } +.bg-over-black-40:before { background: rgba(0, 0, 0, 0.4); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; } +.bg-over-black-50:before { background: rgba(0, 0, 0, 0.5); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; } +.bg-over-black-60:before { background: rgba(0, 0, 0, 0.6); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; } +.bg-over-black-70:before { background: rgba(0, 0, 0, 0.7); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; } +.bg-over-black-80:before { background: rgba(0, 0, 0, 0.8); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; } +.bg-over-black-90:before { background: rgba(0, 0, 0, 0.9); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; } + +/* Background Gradient White */ +.bg-over-white-10:before { background: rgba(255, 255, 255, 0.1); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; } +.bg-over-white-20:before { background: rgba(255, 255, 255, 0.2); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; } +.bg-over-white-30:before { background: rgba(255, 255, 255, 0.3); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; } +.bg-over-white-40:before { background: rgba(255, 255, 255, 0.4); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; } +.bg-over-white-50:before { background: rgba(255, 255, 255, 0.5); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; } +.bg-over-white-60:before { background: rgba(255, 255, 255, 0.6); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; } +.bg-over-white-70:before { background: rgba(255, 255, 255, 0.7); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; } +.bg-over-white-80:before { background: rgba(255, 255, 255, 0.8); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; } +.bg-over-white-90:before { background: rgba(255, 255, 255, 0.9); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; } + +/*--------------------------------------------------------------------- +Back to Top +-----------------------------------------------------------------------*/ +/*#back-to-top .top { z-index: 999; position: absolute; margin: 0px; color: #ffffff; bottom: 1%; right: 1%; z-index: 9; font-weight: 600; overflow: hidden; } +#back-to-top .top i { font-size: 28px; vertical-align: middle; } +#back-to-top:hover .top i { top: 0; } +#back-to-top .top:hover { color: rgba(255, 255, 255, 0.6); }*/ + +/*--------------------------------------------------------------------- +Loader +-----------------------------------------------------------------------*/ +#loading { width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #ffffff; z-index: 9999; } +#loading img{width: 150px;} + + + +/*--------------------------------------------------------------------- +Extra class +---------------------------------------------------------------------*/ +section { padding: 150px 0; } +.container-fluid{padding: 0 100px;} + + +/************************* + BG - Images +*************************/ +.parallax { background-size: cover !important; -webkit-background-size: cover !important; -moz-background-size: cover !important; -ms-background-size: cover !important; position: relative; z-index: 0; background-origin: initial; background-position: center center !important; background-repeat: no-repeat; } + + + + + diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-Black.otf b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-Black.otf new file mode 100644 index 00000000..c5eb31fb Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-Black.otf differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-BlackItalic.otf b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-BlackItalic.otf new file mode 100644 index 00000000..4fdd1670 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-BlackItalic.otf differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-Bold.otf b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-Bold.otf new file mode 100644 index 00000000..c2bfaabf Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-Bold.otf differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-BoldItalic.otf b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-BoldItalic.otf new file mode 100644 index 00000000..0de2da9f Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-BoldItalic.otf differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-Heavy.otf b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-Heavy.otf new file mode 100644 index 00000000..86adc32f Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-Heavy.otf differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-HeavyItalic.otf b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-HeavyItalic.otf new file mode 100644 index 00000000..5a7b44b4 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-HeavyItalic.otf differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-Italic.otf b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-Italic.otf new file mode 100644 index 00000000..4fcf7e0b Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-Italic.otf differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-Light.otf b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-Light.otf new file mode 100644 index 00000000..ec443430 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-Light.otf differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-LightItalic.otf b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-LightItalic.otf new file mode 100644 index 00000000..5a095abd Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-LightItalic.otf differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-Regular.otf b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-Regular.otf new file mode 100644 index 00000000..4248f6ff Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-Regular.otf differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-SemiBold.otf b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-SemiBold.otf new file mode 100644 index 00000000..b1f507df Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-SemiBold.otf differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-SemiBoldItalic.otf b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-SemiBoldItalic.otf new file mode 100644 index 00000000..2b7924ee Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-SemiBoldItalic.otf differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-Thin.otf b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-Thin.otf new file mode 100644 index 00000000..39b6e990 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-Thin.otf differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-ThinItalic.otf b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-ThinItalic.otf new file mode 100644 index 00000000..df40ebf9 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-ThinItalic.otf differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-UltraLight.otf b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-UltraLight.otf new file mode 100644 index 00000000..4131241b Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-UltraLight.otf differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-UltraLightItalic.otf b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-UltraLightItalic.otf new file mode 100644 index 00000000..17d762e6 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Aileron-UltraLightItalic.otf differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Flaticon.eot b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Flaticon.eot new file mode 100644 index 00000000..27bc3b94 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Flaticon.eot differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Flaticon.svg b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Flaticon.svg new file mode 100644 index 00000000..72dbaab5 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Flaticon.svg @@ -0,0 +1,123 @@ + + + + + +Created by FontForge 20170731 at Sat Apr 20 09:34:28 2019 + By root + + + + + + + + + + + + + + + + diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Flaticon.ttf b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Flaticon.ttf new file mode 100644 index 00000000..8e6a71ed Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Flaticon.ttf differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Flaticon.woff b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Flaticon.woff new file mode 100644 index 00000000..4bc00c04 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Flaticon.woff differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Flaticon.woff2 b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Flaticon.woff2 new file mode 100644 index 00000000..b505b0dc Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/Flaticon.woff2 differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-brands-400.eot b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-brands-400.eot new file mode 100644 index 00000000..da7bd5eb Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-brands-400.eot differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-brands-400.svg b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-brands-400.svg new file mode 100644 index 00000000..caa8cc43 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-brands-400.svg @@ -0,0 +1,3296 @@ + + + + +Created by FontForge 20190112 at Tue Feb 12 10:24:59 2019 + By Robert Madole +Copyright (c) Font Awesome + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-brands-400.ttf b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-brands-400.ttf new file mode 100644 index 00000000..5f72e912 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-brands-400.ttf differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-brands-400.woff b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-brands-400.woff new file mode 100644 index 00000000..c64755a5 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-brands-400.woff differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-brands-400.woff2 b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-brands-400.woff2 new file mode 100644 index 00000000..b5a95676 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-brands-400.woff2 differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-regular-400.eot b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-regular-400.eot new file mode 100644 index 00000000..55085ca9 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-regular-400.eot differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-regular-400.svg b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-regular-400.svg new file mode 100644 index 00000000..bba54466 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-regular-400.svg @@ -0,0 +1,799 @@ + + + + +Created by FontForge 20190112 at Tue Feb 12 10:24:59 2019 + By Robert Madole +Copyright (c) Font Awesome + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-regular-400.ttf b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-regular-400.ttf new file mode 100644 index 00000000..a309313d Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-regular-400.ttf differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-regular-400.woff b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-regular-400.woff new file mode 100644 index 00000000..25782618 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-regular-400.woff differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-regular-400.woff2 b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-regular-400.woff2 new file mode 100644 index 00000000..3ef9c3ed Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-regular-400.woff2 differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-solid-900.eot b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-solid-900.eot new file mode 100644 index 00000000..68c010a8 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-solid-900.eot differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-solid-900.svg b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-solid-900.svg new file mode 100644 index 00000000..4ef85aa3 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-solid-900.svg @@ -0,0 +1,4516 @@ + + + + +Created by FontForge 20190112 at Tue Feb 12 10:24:59 2019 + By Robert Madole +Copyright (c) Font Awesome + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-solid-900.ttf b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-solid-900.ttf new file mode 100644 index 00000000..7ece3282 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-solid-900.ttf differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-solid-900.woff b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-solid-900.woff new file mode 100644 index 00000000..a892a7a9 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-solid-900.woff differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-solid-900.woff2 b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-solid-900.woff2 new file mode 100644 index 00000000..71b07ce0 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/fa-solid-900.woff2 differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/ionicons.eot b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/ionicons.eot new file mode 100644 index 00000000..92a3f20a Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/ionicons.eot differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/ionicons.svg b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/ionicons.svg new file mode 100644 index 00000000..49fc8f36 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/ionicons.svg @@ -0,0 +1,2230 @@ + + + + + +Created by FontForge 20120731 at Thu Dec 4 09:51:48 2014 + By Adam Bradley +Created by Adam Bradley with FontForge 2.0 (http://fontforge.sf.net) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/ionicons.ttf b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/ionicons.ttf new file mode 100644 index 00000000..c4e46324 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/ionicons.ttf differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/ionicons.woff b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/ionicons.woff new file mode 100644 index 00000000..5f3a14e0 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/fonts/ionicons.woff differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/assets/881cd-01.png b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/assets/881cd-01.png new file mode 100644 index 00000000..e1018224 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/assets/881cd-01.png differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/assets/transparent.png b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/assets/transparent.png new file mode 100644 index 00000000..3c92dc5a Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/assets/transparent.png differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/css/settings.css b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/css/settings.css new file mode 100644 index 00000000..815fb1f0 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/css/settings.css @@ -0,0 +1,1216 @@ +/*----------------------------------------------------------------------------- + +- Revolution Slider 5.0 Default Style Settings - + +Screen Stylesheet + +version: 5.4.5 +date: 15/05/17 +author: themepunch +email: info@themepunch.com +website: http://www.themepunch.com +-----------------------------------------------------------------------------*/ + +#debungcontrolls { + z-index:100000; + position:fixed; + bottom:0px; width:100%; + height:auto; + background:rgba(0,0,0,0.6); + padding:10px; + box-sizing: border-box; +} + +.debugtimeline { + width:100%; + height:10px; + position:relative; + display:block; + margin-bottom:3px; + display:none; + white-space: nowrap; + box-sizing: border-box; +} + +.debugtimeline:hover { + height:15px; + +} + +.the_timeline_tester { + background:#e74c3c; + position:absolute; + top:0px; + left:0px; + height:100%; + width:0; +} + +.rs-go-fullscreen { + position:fixed !important; + width:100% !important; + height:100% !important; + top:0px !important; + left:0px !important; + z-index:9999999 !important; + background:#ffffff !important; +} + + +.debugtimeline.tl_slide .the_timeline_tester { + background:#f39c12; +} + +.debugtimeline.tl_frame .the_timeline_tester { + background:#3498db; +} + +.debugtimline_txt { + color:#fff; + font-weight: 400; + font-size:7px; + position:absolute; + left:10px; + top:0px; + white-space: nowrap; + line-height: 10px; +} + +/****************************** + - BASIC STYLES - +******************************/ + +.rev_slider_wrapper{ + position:relative; + z-index: 0; + width:100%; +} + +.rev_slider{ + position:relative; + overflow:visible; +} + +.entry-content .rev_slider a, +.rev_slider a { box-shadow: none; } + +.tp-overflow-hidden { overflow:hidden !important;} +.group_ov_hidden { overflow:hidden} + +.tp-simpleresponsive img, +.rev_slider img{ + max-width:none !important; + transition: none; + margin:0px; + padding:0px; + border:none; +} + +.rev_slider .no-slides-text{ + font-weight:bold; + text-align:center; + padding-top:80px; +} + +.rev_slider >ul, +.rev_slider_wrapper >ul, +.tp-revslider-mainul >li, +.rev_slider >ul >li, +.rev_slider >ul >li:before, +.tp-revslider-mainul >li:before, +.tp-simpleresponsive >ul, +.tp-simpleresponsive >ul >li, +.tp-simpleresponsive >ul >li:before, +.tp-revslider-mainul >li, +.tp-simpleresponsive >ul >li{ + list-style:none !important; + position:absolute; + margin:0px !important; + padding:0px !important; + overflow-x: visible; + overflow-y: visible; + list-style-type: none !important; + background-image:none; + background-position:0px 0px; + text-indent: 0em; + top:0px;left:0px; +} + + +.tp-revslider-mainul >li, +.rev_slider >ul >li, +.rev_slider >ul >li:before, +.tp-revslider-mainul >li:before, +.tp-simpleresponsive >ul >li, +.tp-simpleresponsive >ul >li:before, +.tp-revslider-mainul >li, +.tp-simpleresponsive >ul >li { + visibility:hidden; +} + +.tp-revslider-slidesli, +.tp-revslider-mainul { + padding:0 !important; + margin:0 !important; + list-style:none !important; +} + +.rev_slider li.tp-revslider-slidesli { + position: absolute !important; +} + + +.tp-caption .rs-untoggled-content { display:block;} +.tp-caption .rs-toggled-content { display:none;} + +.rs-toggle-content-active.tp-caption .rs-toggled-content { display:block;} +.rs-toggle-content-active.tp-caption .rs-untoggled-content { display:none;} + +.rev_slider .tp-caption, +.rev_slider .caption { + position:relative; + visibility:hidden; + white-space: nowrap; + display: block; + -webkit-font-smoothing: antialiased !important; + z-index:1; +} + +.rev_slider .tp-caption, +.rev_slider .caption, +.tp-simpleresponsive img { + -moz-user-select: none; + -khtml-user-select: none; + -webkit-user-select: none; + -o-user-select: none; +} + +.rev_slider .tp-mask-wrap .tp-caption, +.rev_slider .tp-mask-wrap *:last-child, +.wpb_text_column .rev_slider .tp-mask-wrap .tp-caption, +.wpb_text_column .rev_slider .tp-mask-wrap *:last-child{ + margin-bottom:0; + +} + +.tp-svg-layer svg { width:100%; height:100%;position: relative;vertical-align: top} + + +/* ADDED FOR SLIDELINK MANAGEMENT */ +.tp_inner_padding { + box-sizing:border-box; + max-height:none !important; +} + + +.tp-caption.tp-layer-selectable { + -moz-user-select: all; + -khtml-user-select: all; + -webkit-user-select: all; + -o-user-select: all; +} + +.tp-forcenotvisible, +.tp-hide-revslider, +.tp-caption.tp-hidden-caption, +.tp-parallax-wrap.tp-hidden-caption { + visibility:hidden !important; + display:none !important +} + +.rev_slider embed, +.rev_slider iframe, +.rev_slider object, +.rev_slider audio, +.rev_slider video { + max-width: none !important +} + +.tp-element-background { position:absolute; top:0px;left:0px; width:100%;height:100%;z-index:0;} + +.tp-blockmask, +.tp-blockmask_in, +.tp-blockmask_out { position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; background: #fff; z-index: 1000; transform: scaleX(0) scaleY(0);} + +.tp-parallax-wrap { transform-style: preserve-3d } + +/*********************************************************** + - ZONES / GOUP / ROW / COLUMN LAYERS AND HELPERS - +***********************************************************/ +.rev_row_zone { position:absolute; width:100%;left:0px; box-sizing: border-box;min-height:50px; font-size:0px;} + +.rev_row_zone_top { top:0px;} +.rev_row_zone_middle { top:50%; transform:translateY(-50%);} +.rev_row_zone_bottom { bottom:0px;} + +.rev_column .tp-parallax-wrap { vertical-align: top } + +.rev_slider .tp-caption.rev_row { + display:table; + position:relative; + width:100% !important; + table-layout: fixed; + box-sizing: border-box; + vertical-align: top; + height:auto !important; + font-size:0px; +} + +.rev_column { + display: table-cell; + position: relative; + vertical-align: top; + height: auto; + box-sizing: border-box; + font-size:0px; +} + +.rev_column_inner { + box-sizing: border-box; + display: block; + position: relative; + width:100% !important; + height:auto !important; + white-space: normal !important; +} + +.rev_column_bg { + width: 100%; + height: 100%; + position: absolute; + top: 0px; + left: 0px; + z-index: 0; + box-sizing: border-box; + background-clip: content-box; + border: 0px solid transparent; +} + + + +.rev_column_inner .tp-parallax-wrap, +.rev_column_inner .tp-loop-wrap, +.rev_column_inner .tp-mask-wrap { text-align: inherit; } +.rev_column_inner .tp-mask-wrap { display: inline-block;} + + +.rev_column_inner .tp-parallax-wrap .tp-loop-wrap, +.rev_column_inner .tp-parallax-wrap .tp-mask-wrap, +.rev_column_inner .tp-parallax-wrap { position: relative !important; left:auto !important; top:auto !important; line-height: 0px;} + +.rev_column_inner .tp-parallax-wrap .tp-loop-wrap, +.rev_column_inner .tp-parallax-wrap .tp-mask-wrap, +.rev_column_inner .tp-parallax-wrap, +.rev_column_inner .rev_layer_in_column { vertical-align: top; } + +.rev_break_columns { display: block !important } +.rev_break_columns .tp-parallax-wrap.rev_column { display:block !important; width:100% !important; } + + +/********************************************** + - FULLSCREEN AND FULLWIDHT CONTAINERS - +**********************************************/ + + +.fullscreen-container { + position:relative; + padding:0; +} + + +.fullwidthbanner-container{ + position:relative; + padding:0; + overflow:hidden; +} + +.fullwidthbanner-container .fullwidthabanner{ + width:100%; + position:relative; +} + + + +/********************************* + - SPECIAL TP CAPTIONS - +**********************************/ + +.tp-static-layers { + position:absolute; z-index:101; top:0px;left:0px; + /*pointer-events:none;*/ + +} + +/* new static layers position option */ +.tp-static-layers-back { + z-index:0; +} + + +.tp-caption .frontcorner { + width: 0; + height: 0; + border-left: 40px solid transparent; + border-right: 0px solid transparent; + border-top: 40px solid #00A8FF; + position: absolute;left:-40px;top:0px; +} + +.tp-caption .backcorner { + width: 0; + height: 0; + border-left: 0px solid transparent; + border-right: 40px solid transparent; + border-bottom: 40px solid #00A8FF; + position: absolute;right:0px;top:0px; +} + +.tp-caption .frontcornertop { + width: 0; + height: 0; + border-left: 40px solid transparent; + border-right: 0px solid transparent; + border-bottom: 40px solid #00A8FF; + position: absolute;left:-40px;top:0px; +} + +.tp-caption .backcornertop { + width: 0; + height: 0; + border-left: 0px solid transparent; + border-right: 40px solid transparent; + border-top: 40px solid #00A8FF; + position: absolute;right:0px;top:0px; +} + +.tp-layer-inner-rotation { + position: relative !important; +} + + +/*********************************************** + - SPECIAL ALTERNATIVE IMAGE SETTINGS - +***********************************************/ + +img.tp-slider-alternative-image { + width:100%; height:auto; +} + + +/****************************** + - IE8 HACKS - +*******************************/ +.noFilterClass { + filter:none !important; +} + + +/******************************** + - FULLSCREEN VIDEO - +*********************************/ + +.rs-background-video-layer { position: absolute;top:0px;left:0px; width:100%;height:100%;visibility: hidden;z-index: 0;} + +.tp-caption.coverscreenvideo { width:100%;height:100%;top:0px;left:0px;position:absolute;} +.caption.fullscreenvideo, +.tp-caption.fullscreenvideo { left:0px; top:0px; position:absolute;width:100%;height:100%} + +.caption.fullscreenvideo iframe, +.caption.fullscreenvideo audio, +.caption.fullscreenvideo video, +.tp-caption.fullscreenvideo iframe, +.tp-caption.fullscreenvideo iframe audio, +.tp-caption.fullscreenvideo iframe video { width:100% !important; height:100% !important; display: none} + +.fullcoveredvideo audio, +.fullscreenvideo audio +.fullcoveredvideo video, +.fullscreenvideo video { background: #000} + +.fullcoveredvideo .tp-poster { background-position: center center;background-size: cover;width:100%;height:100%;top:0px;left:0px} + + +.videoisplaying .html5vid .tp-poster { display: none} + +.tp-video-play-button { + background:#000; + background:rgba(0,0,0,0.3); + border-radius:5px; + position: absolute; + top: 50%; + left: 50%; + color: #FFF; + z-index: 3; + margin-top: -25px; + margin-left: -25px; + line-height: 50px !important; + text-align: center; + cursor: pointer; + width: 50px; + height:50px; + box-sizing: border-box; + + display: inline-block; + vertical-align: top; + z-index: 4; + opacity: 0; + transition:opacity 300ms ease-out !important; +} + +.tp-hiddenaudio, +.tp-audio-html5 .tp-video-play-button { display:none !important;} +.tp-caption .html5vid { width:100% !important; height:100% !important;} +.tp-video-play-button i { width:50px;height:50px; display:inline-block; text-align: center; vertical-align: top; line-height: 50px !important; font-size: 40px !important;} +.tp-caption:hover .tp-video-play-button { opacity: 1; display:block;} +.tp-caption .tp-revstop { display:none; border-left:5px solid #fff !important; border-right:5px solid #fff !important;margin-top:15px !important;line-height: 20px !important;vertical-align: top; font-size:25px !important;} +.videoisplaying .revicon-right-dir { display:none} +.videoisplaying .tp-revstop { display:inline-block} + +.videoisplaying .tp-video-play-button { display:none} + + +.fullcoveredvideo .tp-video-play-button { display:none !important} + + +.fullscreenvideo .fullscreenvideo audio { object-fit:contain !important;} +.fullscreenvideo .fullscreenvideo video { object-fit:contain !important;} + +.fullscreenvideo .fullcoveredvideo audio { object-fit:cover !important;} +.fullscreenvideo .fullcoveredvideo video { object-fit:cover !important;} + +.tp-video-controls { + position: absolute; + bottom: 0; + left: 0; + right: 0; + padding: 5px; + opacity: 0; + transition: opacity .3s; + background-image: linear-gradient(to bottom, rgb(0,0,0) 13%, rgb(50,50,50) 100%); + display:table;max-width:100%; overflow:hidden;box-sizing:border-box; +} + +.tp-caption:hover .tp-video-controls { opacity: .9;} + +.tp-video-button { + background: rgba(0,0,0,.5); + border: 0; + color: #EEE; + border-radius: 3px; + cursor:pointer; + line-height:12px; + font-size:12px; + color:#fff; + padding:0px; + margin:0px; + outline: none; + } +.tp-video-button:hover { cursor: pointer;} + + +.tp-video-button-wrap, +.tp-video-seek-bar-wrap, +.tp-video-vol-bar-wrap { padding:0px 5px;display:table-cell; vertical-align: middle;} + +.tp-video-seek-bar-wrap { width:80%} +.tp-video-vol-bar-wrap { width:20%} + +.tp-volume-bar, +.tp-seek-bar { width:100%; cursor: pointer; outline:none; line-height:12px;margin:0; padding:0;} + + +.rs-fullvideo-cover { width:100%;height:100%;top:0px;left:0px;position: absolute; background:transparent;z-index:5;} + + +.disabled_lc .tp-video-play-button, +.rs-background-video-layer video::-webkit-media-controls-start-playback-button, +.rs-background-video-layer video::-webkit-media-controls, +.rs-background-video-layer audio::-webkit-media-controls { display:none !important;} + + +.tp-audio-html5 .tp-video-controls { opacity: 1 !important; visibility: visible !important} + + + + +/******************************** + - DOTTED OVERLAYS - +*********************************/ +.tp-dottedoverlay { background-repeat:repeat;width:100%;height:100%;position:absolute;top:0px;left:0px;z-index:3} + + +/****************************** + - SHADOWS - +******************************/ + +.tp-shadowcover { width:100%;height:100%;top:0px;left:0px;background: #fff;position: absolute; z-index: -1;} +.tp-shadow1 { box-shadow: 0 10px 6px -6px rgba(0,0,0,0.8);} + +.tp-shadow2:before, .tp-shadow2:after, +.tp-shadow3:before, .tp-shadow4:after +{ + z-index: -2; + position: absolute; + content: ""; + bottom: 10px; + left: 10px; + width: 50%; + top: 85%; + max-width:300px; + background: transparent; + box-shadow: 0 15px 10px rgba(0,0,0,0.8); + + transform: rotate(-3deg); +} + +.tp-shadow2:after, +.tp-shadow4:after +{ + transform: rotate(3deg); + right: 10px; + left: auto; +} + +.tp-shadow5 +{ + position:relative; + box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset; +} +.tp-shadow5:before, .tp-shadow5:after +{ + content:""; + position:absolute; + z-index:-2; + box-shadow:0 0 25px 0px rgba(0,0,0,0.6); + top:30%; + bottom:0; + left:20px; + right:20px; + border-radius:100px / 20px; +} + +/****************************** + - BUTTONS - +*******************************/ + +.tp-button{ + padding:6px 13px 5px; + border-radius: 3px; + height:30px; + cursor:pointer; + color:#fff !important; text-shadow:0px 1px 1px rgba(0, 0, 0, 0.6) !important; font-size:15px; line-height:45px !important; + font-family: arial, sans-serif; font-weight: bold; letter-spacing: -1px; + text-decoration:none; +} + +.tp-button.big { color:#fff; text-shadow:0px 1px 1px rgba(0, 0, 0, 0.6); font-weight:bold; padding:9px 20px; font-size:19px; line-height:57px !important; } + + +.purchase:hover, +.tp-button:hover, +.tp-button.big:hover { background-position:bottom, 15px 11px} + + +/* BUTTON COLORS */ + +.tp-button.green, .tp-button:hover.green, +.purchase.green, .purchase:hover.green { background-color:#21a117;box-shadow:0px 3px 0px 0px #104d0b;} + +.tp-button.blue, .tp-button:hover.blue, +.purchase.blue, .purchase:hover.blue { background-color:#1d78cb;box-shadow:0px 3px 0px 0px #0f3e68} + +.tp-button.red, .tp-button:hover.red, +.purchase.red, .purchase:hover.red { background-color:#cb1d1d;box-shadow:0px 3px 0px 0px #7c1212} + +.tp-button.orange, .tp-button:hover.orange, +.purchase.orange, .purchase:hover.orange { background-color:#ff7700;box-shadow:0px 3px 0px 0px #a34c00} + +.tp-button.darkgrey,.tp-button.grey, +.tp-button:hover.darkgrey,.tp-button:hover.grey, +.purchase.darkgrey, .purchase:hover.darkgrey { background-color:#555;box-shadow:0px 3px 0px 0px #222} + +.tp-button.lightgrey, .tp-button:hover.lightgrey, +.purchase.lightgrey, .purchase:hover.lightgrey { background-color:#888;box-shadow:0px 3px 0px 0px #555} + + + +/* TP BUTTONS DESKTOP SIZE */ + +.rev-btn, +.rev-btn:visited { outline:none !important; box-shadow:none !important; text-decoration: none !important; line-height: 44px; font-size: 17px; font-weight: 500; padding: 12px 35px; box-sizing:border-box; font-family: "Roboto", sans-serif; cursor: pointer;} + +.rev-btn.rev-uppercase, +.rev-btn.rev-uppercase:visited { text-transform: uppercase; letter-spacing: 1px; font-size: 15px; font-weight: 900; } + +.rev-btn.rev-withicon i { font-size: 15px; font-weight: normal; position: relative; top: 0px; transition: all 0.2s ease-out !important; margin-left:10px !important;} + +.rev-btn.rev-hiddenicon i { font-size: 15px; font-weight: normal; position: relative; top: 0px; transition: all 0.2s ease-out !important; opacity: 0; margin-left:0px !important; width:0px !important; } +.rev-btn.rev-hiddenicon:hover i { opacity: 1 !important; margin-left:10px !important; width:auto !important;} + +/* REV BUTTONS MEDIUM */ +.rev-btn.rev-medium, +.rev-btn.rev-medium:visited { line-height: 36px; font-size: 14px; padding: 10px 30px; } + +.rev-btn.rev-medium.rev-withicon i { font-size: 14px; top: 0px; } + +.rev-btn.rev-medium.rev-hiddenicon i { font-size: 14px; top: 0px; } + + +/* REV BUTTONS SMALL */ +.rev-btn.rev-small, +.rev-btn.rev-small:visited { line-height: 28px; font-size: 12px; padding: 7px 20px; } + +.rev-btn.rev-small.rev-withicon i { font-size: 12px; top: 0px; } + +.rev-btn.rev-small.rev-hiddenicon i { font-size: 12px; top: 0px; } + + +/* ROUNDING OPTIONS */ +.rev-maxround { border-radius: 30px; } +.rev-minround { border-radius: 3px; } + + +/* BURGER BUTTON */ +.rev-burger { + position: relative; + width: 60px; + height: 60px; + box-sizing: border-box; + padding: 22px 0 0 14px; + border-radius: 50%; + border: 1px solid rgba(51,51,51,0.25); + -webkit-tap-highlight-color: rgba(0,0,0,0); + -webkit-tap-highlight-color: transparent; + cursor: pointer; +} +.rev-burger span { + display: block; + width: 30px; + height: 3px; + background: #333; + transition: .7s; + pointer-events: none; + transform-style: flat !important; +} +.rev-burger span:nth-child(2) { + margin: 3px 0; +} + +#dialog_addbutton .rev-burger:hover :first-child, +.open .rev-burger :first-child, +.open.rev-burger :first-child { + transform: translateY(6px) rotate(-45deg); + +} +#dialog_addbutton .rev-burger:hover :nth-child(2), +.open .rev-burger :nth-child(2), +.open.rev-burger :nth-child(2) { + transform: rotate(-45deg); + + opacity: 0; +} +#dialog_addbutton .rev-burger:hover :last-child, +.open .rev-burger :last-child, +.open.rev-burger :last-child { + transform: translateY(-6px) rotate(-135deg); + +} + +.rev-burger.revb-white { + border: 2px solid rgba(255,255,255,0.2); +} +.rev-burger.revb-white span { + background: #fff; +} +.rev-burger.revb-whitenoborder { + border: 0; +} +.rev-burger.revb-whitenoborder span { + background: #fff; +} +.rev-burger.revb-darknoborder { + border: 0; +} +.rev-burger.revb-darknoborder span { + background: #333; +} + +.rev-burger.revb-whitefull { + background: #fff; + border:none; +} + +.rev-burger.revb-whitefull span { + background:#333; +} + +.rev-burger.revb-darkfull { + background: #333; + border:none; +} + +.rev-burger.revb-darkfull span { + background:#fff; +} + + +/* SCROLL DOWN BUTTON */ + +@keyframes rev-ani-mouse { + 0% {opacity: 1;top: 29%;} + 15% {opacity: 1;top: 50%;} + 50% {opacity: 0;top: 50%;} + 100% {opacity: 0;top: 29%;} +} +.rev-scroll-btn { + display: inline-block; + position: relative; + left: 0; + right: 0; + text-align: center; + cursor: pointer; + width:35px; + height:55px; + box-sizing: border-box; + border: 3px solid white; + border-radius: 23px; +} +.rev-scroll-btn > * { + display: inline-block; + line-height: 18px; + font-size: 13px; + font-weight: normal; + color: #7f8c8d; + color: #ffffff; + font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif; + letter-spacing: 2px; +} +.rev-scroll-btn > *:hover, +.rev-scroll-btn > *:focus, +.rev-scroll-btn > *.active { + color: #ffffff; +} +.rev-scroll-btn > *:hover, +.rev-scroll-btn > *:focus, +.rev-scroll-btn > *:active, +.rev-scroll-btn > *.active { + opacity: 0.8; +} + +.rev-scroll-btn.revs-fullwhite { + background:#fff; +} + +.rev-scroll-btn.revs-fullwhite span { + background: #333; +} + +.rev-scroll-btn.revs-fulldark { + background:#333; + border:none; +} + +.rev-scroll-btn.revs-fulldark span { + background: #fff; +} + +.rev-scroll-btn span { + position: absolute; + display: block; + top: 29%; + left: 50%; + width: 8px; + height: 8px; + margin: -4px 0 0 -4px; + background: white; + border-radius: 50%; + animation: rev-ani-mouse 2.5s linear infinite; +} + +.rev-scroll-btn.revs-dark { + border-color:#333; +} +.rev-scroll-btn.revs-dark span { + background: #333; +} + +.rev-control-btn { + position: relative; + display: inline-block; + z-index: 5; + color: #FFF; + font-size: 20px; + line-height: 60px; + font-weight: 400; + font-style: normal; + font-family: Raleway; + text-decoration: none; + text-align: center; + background-color: #000; + border-radius: 50px; + text-shadow: none; + background-color: rgba(0, 0, 0, 0.50); + width:60px; + height:60px; + box-sizing: border-box; + cursor: pointer; +} + +.rev-cbutton-dark-sr { + border-radius: 3px; +} + +.rev-cbutton-light { + color: #333; + background-color: rgba(255,255,255, 0.75); +} + +.rev-cbutton-light-sr { + color: #333; + border-radius: 3px; + background-color: rgba(255,255,255, 0.75); +} + + +.rev-sbutton { + line-height: 37px; + width:37px; + height:37px; +} + +.rev-sbutton-blue { + background-color: #3B5998 +} +.rev-sbutton-lightblue { + background-color: #00A0D1; +} +.rev-sbutton-red { + background-color: #DD4B39; +} + + + + +/************************************ +- TP BANNER TIMER - +*************************************/ +.tp-bannertimer { visibility: hidden; width:100%; height:5px; background:#000; background:rgba(0,0,0,0.15); position:absolute; z-index:200; top:0px} +.tp-bannertimer.tp-bottom { top:auto; bottom:0px !important;height:5px} + + + +/********************************************* +- BASIC SETTINGS FOR THE BANNER - +***********************************************/ + +.tp-caption img { + background: transparent; + -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)"; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF); + zoom:1; +} + +.tp-caption img { } + + + +.caption.slidelink a div, + +.tp-shape { width:100%;height:100%;} + + + +/********************************************* +- WOOCOMMERCE STYLES - +***********************************************/ + +.tp-caption .rs-starring { display: inline-block} + + +.tp-caption .rs-starring .star-rating { + float: none; + display: inline-block; + vertical-align: top; + color: #FFC321 !important; +} + + +.tp-caption .rs-starring .star-rating, +.tp-caption .rs-starring-page .star-rating { + position: relative; + height: 1em; + width: 5.4em; + font-family: star; + font-size: 1em !important; +} + +.tp-caption .rs-starring .star-rating:before, +.tp-caption .rs-starring-page .star-rating:before { + content: "\73\73\73\73\73"; + color: #E0DADF; + float: left; + top: 0; + left: 0; + position: absolute; +} + +.tp-caption .rs-starring .star-rating span { + overflow: hidden; + float: left; + top: 0; + left: 0; + position: absolute; + padding-top: 1.5em; + font-size: 1em !important; +} + +.tp-caption .rs-starring .star-rating span:before, +.tp-caption .rs-starring .star-rating span:before { + content: "\53\53\53\53\53"; + top: 0; + position: absolute; + left: 0; +} + + + + +/****************************** + - LOADER FORMS - +********************************/ + +.tp-loader { + top:50%; left:50%; + z-index:10000; + position:absolute; +} + +.tp-loader.spinner0 { + width: 40px; + height: 40px; + background-color: #fff; + + background-repeat:no-repeat; + background-position: center center; + box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15); + margin-top:-20px; + margin-left:-20px; + animation: tp-rotateplane 1.2s infinite ease-in-out; + border-radius: 3px; +} + + +.tp-loader.spinner1 { + width: 40px; + height: 40px; + background-color: #fff; + box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15); + margin-top:-20px; + margin-left:-20px; + animation: tp-rotateplane 1.2s infinite ease-in-out; + border-radius: 3px; +} + + + +.tp-loader.spinner5 { + + background-repeat:no-repeat; + background-position:10px 10px; + background-color:#fff; + margin:-22px -22px; + width:44px;height:44px; + border-radius: 3px; +} + + +@keyframes tp-rotateplane { + 0% { transform: perspective(120px) rotateX(0deg) rotateY(0deg);} + 50% { transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);} + 100% { transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);} +} + + +.tp-loader.spinner2 { + width: 40px; + height: 40px; + margin-top:-20px;margin-left:-20px; + background-color: #ff0000; + box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15); + border-radius: 100%; + animation: tp-scaleout 1.0s infinite ease-in-out; +} + + +@keyframes tp-scaleout { + 0% {transform: scale(0.0);} + 100% {transform: scale(1.0);opacity: 0;} +} + + +.tp-loader.spinner3 { + margin: -9px 0px 0px -35px; + width: 70px; + text-align: center; +} + +.tp-loader.spinner3 .bounce1, +.tp-loader.spinner3 .bounce2, +.tp-loader.spinner3 .bounce3 { + width: 18px; + height: 18px; + background-color: #fff; + box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15); + border-radius: 100%; + display: inline-block; + animation: tp-bouncedelay 1.4s infinite ease-in-out; + /* Prevent first frame from flickering when animation starts */ + animation-fill-mode: both; +} + +.tp-loader.spinner3 .bounce1 { + animation-delay: -0.32s; +} + +.tp-loader.spinner3 .bounce2 { + animation-delay: -0.16s; +} + +@keyframes tp-bouncedelay { + 0%, 80%, 100% {transform: scale(0.0);} + 40% {transform: scale(1.0);} +} + + + + +.tp-loader.spinner4 { + margin: -20px 0px 0px -20px; + width: 40px; + height: 40px; + text-align: center; + animation: tp-rotate 2.0s infinite linear; +} + +.tp-loader.spinner4 .dot1, +.tp-loader.spinner4 .dot2 { + width: 60%; + height: 60%; + display: inline-block; + position: absolute; + top: 0; + background-color: #fff; + border-radius: 100%; + animation: tp-bounce 2.0s infinite ease-in-out; + box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15); +} + +.tp-loader.spinner4 .dot2 { + top: auto; + bottom: 0px; + animation-delay: -1.0s; +} + + +@keyframes tp-rotate { 100% { transform: rotate(360deg);}} + +@keyframes tp-bounce { + 0%, 100% {transform: scale(0.0);} + 50% { transform: scale(1.0);} +} + + + +/*********************************************** + - STANDARD NAVIGATION SETTINGS +***********************************************/ + + +.tp-thumbs.navbar, +.tp-bullets.navbar, +.tp-tabs.navbar { border:none; min-height: 0; margin:0; border-radius: 0; } + +.tp-tabs, +.tp-thumbs, +.tp-bullets { position:absolute; display:block; z-index:1000; top:0px; left:0px;} + +.tp-tab, +.tp-thumb { cursor: pointer; position:absolute;opacity:0.5; box-sizing: border-box;} + +.tp-arr-imgholder, +.tp-videoposter, +.tp-thumb-image, +.tp-tab-image { background-position: center center; background-size:cover;width:100%;height:100%; display:block; position:absolute;top:0px;left:0px;} + +.tp-tab:hover, +.tp-tab.selected, +.tp-thumb:hover, +.tp-thumb.selected { opacity:1;} + +.tp-tab-mask, +.tp-thumb-mask { box-sizing:border-box !important; } + +.tp-tabs, +.tp-thumbs { box-sizing:content-box !important; } + +.tp-bullet { width:15px;height:15px; position:absolute; background:#fff; background:rgba(255,255,255,0.3); cursor: pointer;} +.tp-bullet.selected, +.tp-bullet:hover { background:#fff;} + + + + +.tparrows { cursor:pointer; background:#000; background:rgba(0,0,0,0.5); width:40px;height:40px;position:absolute; display:block; z-index:1000; } +.tparrows:hover { background:#000;} +.tparrows:before { font-family: "revicons"; font-size:15px; color:#fff; display:block; line-height: 40px; text-align: center;} +.tparrows.tp-leftarrow:before { content: '\e824'; } +.tparrows.tp-rightarrow:before { content: '\e825'; } + + + +/*************************** + - KEN BURNS FIXES - +***************************/ + +body.rtl .tp-kbimg {left: 0 !important} + + + +/*************************** + - 3D SHADOW MODE - +***************************/ + +.dddwrappershadow { box-shadow:0 45px 100px rgba(0, 0, 0, 0.4);} + +/******************* + - DEBUG MODE - +*******************/ + +.hglayerinfo { position: fixed; + bottom: 0px; + left: 0px; + color: #FFF; + font-size: 12px; + line-height: 20px; + font-weight: 600; + background: rgba(0, 0, 0, 0.75); + padding: 5px 10px; + z-index: 2000; + white-space: normal;} +.hginfo { position:absolute;top:-2px;left:-2px;color:#e74c3c;font-size:12px;font-weight:600; background:#000;padding:2px 5px;} +.indebugmode .tp-caption:hover { border:1px dashed #c0392b !important;} +.helpgrid { border:2px dashed #c0392b;position:absolute;top:0px;left:0px;z-index:0 } +#revsliderlogloglog { padding:15px;color:#fff;position:fixed; top:0px;left:0px;width:200px;height:150px;background:rgba(0,0,0,0.7); z-index:100000; font-size:10px; overflow:scroll;} + + + +/** +INSTAGRAM FILTERS BY UNA +https://una.im/CSSgram/ +**/ +.aden{filter:hue-rotate(-20deg) contrast(.9) saturate(.85) brightness(1.2)}.aden::after{background:linear-gradient(to right,rgba(66,10,14,.2),transparent);mix-blend-mode:darken}.perpetua::after,.reyes::after{mix-blend-mode:soft-light;opacity:.5}.inkwell{filter:sepia(.3) contrast(1.1) brightness(1.1) grayscale(1)}.perpetua::after{background:linear-gradient(to bottom,#005b9a,#e6c13d)}.reyes{filter:sepia(.22) brightness(1.1) contrast(.85) saturate(.75)}.reyes::after{background:#efcdad}.gingham{filter:brightness(1.05) hue-rotate(-10deg)}.gingham::after{background:linear-gradient(to right,rgba(66,10,14,.2),transparent);mix-blend-mode:darken}.toaster{filter:contrast(1.5) brightness(.9)}.toaster::after{background:radial-gradient(circle,#804e0f,#3b003b);mix-blend-mode:screen}.walden{filter:brightness(1.1) hue-rotate(-10deg) sepia(.3) saturate(1.6)}.walden::after{background:#04c;mix-blend-mode:screen;opacity:.3}.hudson{filter:brightness(1.2) contrast(.9) saturate(1.1)}.hudson::after{background:radial-gradient(circle,#a6b1ff 50%,#342134);mix-blend-mode:multiply;opacity:.5}.earlybird{filter:contrast(.9) sepia(.2)}.earlybird::after{background:radial-gradient(circle,#d0ba8e 20%,#360309 85%,#1d0210 100%);mix-blend-mode:overlay}.mayfair{filter:contrast(1.1) saturate(1.1)}.mayfair::after{background:radial-gradient(circle at 40% 40%,rgba(255,255,255,.8),rgba(255,200,200,.6),#111 60%);mix-blend-mode:overlay;opacity:.4}.lofi{filter:saturate(1.1) contrast(1.5)}.lofi::after{background:radial-gradient(circle,transparent 70%,#222 150%);mix-blend-mode:multiply}._1977{filter:contrast(1.1) brightness(1.1) saturate(1.3)}._1977:after{background:rgba(243,106,188,.3);mix-blend-mode:screen}.brooklyn{filter:contrast(.9) brightness(1.1)}.brooklyn::after{background:radial-gradient(circle,rgba(168,223,193,.4) 70%,#c4b7c8);mix-blend-mode:overlay}.xpro2{filter:sepia(.3)}.xpro2::after{background:radial-gradient(circle,#e6e7e0 40%,rgba(43,42,161,.6) 110%);mix-blend-mode:color-burn}.nashville{filter:sepia(.2) contrast(1.2) brightness(1.05) saturate(1.2)}.nashville::after{background:rgba(0,70,150,.4);mix-blend-mode:lighten}.nashville::before{background:rgba(247,176,153,.56);mix-blend-mode:darken}.lark{filter:contrast(.9)}.lark::after{background:rgba(242,242,242,.8);mix-blend-mode:darken}.lark::before{background:#22253f;mix-blend-mode:color-dodge}.moon{filter:grayscale(1) contrast(1.1) brightness(1.1)}.moon::before{background:#a0a0a0;mix-blend-mode:soft-light}.moon::after{background:#383838;mix-blend-mode:lighten}.clarendon{filter:contrast(1.2) saturate(1.35)}.clarendon:before{background:rgba(127,187,227,.2);mix-blend-mode:overlay}.willow{filter:grayscale(.5) contrast(.95) brightness(.9)}.willow::before{background-color:radial-gradient(40%,circle,#d4a9af 55%,#000 150%);mix-blend-mode:overlay}.willow::after{background-color:#d8cdcb;mix-blend-mode:color}.rise{filter:brightness(1.05) sepia(.2) contrast(.9) saturate(.9)}.rise::after{background:radial-gradient(circle,rgba(232,197,152,.8),transparent 90%);mix-blend-mode:overlay;opacity:.6}.rise::before{background:radial-gradient(circle,rgba(236,205,169,.15) 55%,rgba(50,30,7,.4));mix-blend-mode:multiply}._1977:after,._1977:before,.aden:after,.aden:before,.brooklyn:after,.brooklyn:before,.clarendon:after,.clarendon:before,.earlybird:after,.earlybird:before,.gingham:after,.gingham:before,.hudson:after,.hudson:before,.inkwell:after,.inkwell:before,.lark:after,.lark:before,.lofi:after,.lofi:before,.mayfair:after,.mayfair:before,.moon:after,.moon:before,.nashville:after,.nashville:before,.perpetua:after,.perpetua:before,.reyes:after,.reyes:before,.rise:after,.rise:before,.slumber:after,.slumber:before,.toaster:after,.toaster:before,.walden:after,.walden:before,.willow:after,.willow:before,.xpro2:after,.xpro2:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}._1977,.aden,.brooklyn,.clarendon,.earlybird,.gingham,.hudson,.inkwell,.lark,.lofi,.mayfair,.moon,.nashville,.perpetua,.reyes,.rise,.slumber,.toaster,.walden,.willow,.xpro2{position:relative}._1977 img,.aden img,.brooklyn img,.clarendon img,.earlybird img,.gingham img,.hudson img,.inkwell img,.lark img,.lofi img,.mayfair img,.moon img,.nashville img,.perpetua img,.reyes img,.rise img,.slumber img,.toaster img,.walden img,.willow img,.xpro2 img{width:100%;z-index:1}._1977:before,.aden:before,.brooklyn:before,.clarendon:before,.earlybird:before,.gingham:before,.hudson:before,.inkwell:before,.lark:before,.lofi:before,.mayfair:before,.moon:before,.nashville:before,.perpetua:before,.reyes:before,.rise:before,.slumber:before,.toaster:before,.walden:before,.willow:before,.xpro2:before{z-index:2}._1977:after,.aden:after,.brooklyn:after,.clarendon:after,.earlybird:after,.gingham:after,.hudson:after,.inkwell:after,.lark:after,.lofi:after,.mayfair:after,.moon:after,.nashville:after,.perpetua:after,.reyes:after,.rise:after,.slumber:after,.toaster:after,.walden:after,.willow:after,.xpro2:after{z-index:3}.slumber{filter:saturate(.66) brightness(1.05)}.slumber::after{background:rgba(125,105,24,.5);mix-blend-mode:soft-light}.slumber::before{background:rgba(69,41,12,.4);mix-blend-mode:lighten} +.tp-kbimg-wrap:before, +.tp-kbimg-wrap:after {height:500%;width:500%} + + +.rs-background-video-layer iframe {visibility:inherit !important;} diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/font-awesome/css/font-awesome.min.css b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/font-awesome/css/font-awesome.min.css new file mode 100644 index 00000000..9b27f8ea --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/font-awesome/css/font-awesome.min.css @@ -0,0 +1,4 @@ +/*! + * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.6.3');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.6.3') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.6.3') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.6.3') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/font-awesome/fonts/FontAwesome.otf b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/font-awesome/fonts/FontAwesome.otf new file mode 100644 index 00000000..401ec0f3 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/font-awesome/fonts/FontAwesome.otf differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/font-awesome/fonts/fontawesome-webfont.eot b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/font-awesome/fonts/fontawesome-webfont.eot new file mode 100644 index 00000000..e9f60ca9 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/font-awesome/fonts/fontawesome-webfont.eot differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/font-awesome/fonts/fontawesome-webfont.svg b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/font-awesome/fonts/fontawesome-webfont.svg new file mode 100644 index 00000000..855c845e --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/font-awesome/fonts/fontawesome-webfont.svg @@ -0,0 +1,2671 @@ + + + + +Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 + By ,,, +Copyright Dave Gandy 2016. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/font-awesome/fonts/fontawesome-webfont.ttf b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/font-awesome/fonts/fontawesome-webfont.ttf new file mode 100644 index 00000000..35acda2f Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/font-awesome/fonts/fontawesome-webfont.ttf differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/font-awesome/fonts/fontawesome-webfont.woff b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/font-awesome/fonts/fontawesome-webfont.woff new file mode 100644 index 00000000..400014a4 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/font-awesome/fonts/fontawesome-webfont.woff differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/font-awesome/fonts/fontawesome-webfont.woff2 b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/font-awesome/fonts/fontawesome-webfont.woff2 new file mode 100644 index 00000000..4d13fc60 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/font-awesome/fonts/fontawesome-webfont.woff2 differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/pe-icon-7-stroke/css/helper.css b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/pe-icon-7-stroke/css/helper.css new file mode 100644 index 00000000..25f775e4 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/pe-icon-7-stroke/css/helper.css @@ -0,0 +1,191 @@ + +/* HELPER CLASS + * -------------------------- */ + +/* FA based classes */ + +/*! Modified from font-awesome helper CSS classes - PIXEDEN + * Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (CSS: MIT License) + */ + +/* makes the font 33% larger relative to the icon container */ +.pe-lg { + font-size: 1.3333333333333333em; + line-height: 0.75em; + vertical-align: -15%; +} +.pe-2x { + font-size: 2em; +} +.pe-3x { + font-size: 3em; +} +.pe-4x { + font-size: 4em; +} +.pe-5x { + font-size: 5em; +} +.pe-fw { + width: 1.2857142857142858em; + text-align: center; +} +.pe-ul { + padding-left: 0; + margin-left: 2.142857142857143em; + list-style-type: none; +} +.pe-ul > li { + position: relative; +} +.pe-li { + position: absolute; + left: -2.142857142857143em; + width: 2.142857142857143em; + top: 0.14285714285714285em; + text-align: center; +} +.pe-li.pe-lg { + left: -1.8571428571428572em; +} +.pe-border { + padding: .2em .25em .15em; + border: solid 0.08em #eeeeee; + border-radius: .1em; +} +.pull-right { + float: right; +} +.pull-left { + float: left; +} +.pe.pull-left { + margin-right: .3em; +} +.pe.pull-right { + margin-left: .3em; +} +.pe-spin { + -webkit-animation: spin 2s infinite linear; + -moz-animation: spin 2s infinite linear; + -o-animation: spin 2s infinite linear; + animation: spin 2s infinite linear; +} +@-moz-keyframes spin { + 0% { + -moz-transform: rotate(0deg); + } + 100% { + -moz-transform: rotate(359deg); + } +} +@-webkit-keyframes spin { + 0% { + -webkit-transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + } +} +@-o-keyframes spin { + 0% { + -o-transform: rotate(0deg); + } + 100% { + -o-transform: rotate(359deg); + } +} +@-ms-keyframes spin { + 0% { + -ms-transform: rotate(0deg); + } + 100% { + -ms-transform: rotate(359deg); + } +} +@keyframes spin { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(359deg); + } +} +.pe-rotate-90 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); + -webkit-transform: rotate(90deg); + -moz-transform: rotate(90deg); + -ms-transform: rotate(90deg); + -o-transform: rotate(90deg); + transform: rotate(90deg); +} +.pe-rotate-180 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); + -webkit-transform: rotate(180deg); + -moz-transform: rotate(180deg); + -ms-transform: rotate(180deg); + -o-transform: rotate(180deg); + transform: rotate(180deg); +} +.pe-rotate-270 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); + -webkit-transform: rotate(270deg); + -moz-transform: rotate(270deg); + -ms-transform: rotate(270deg); + -o-transform: rotate(270deg); + transform: rotate(270deg); +} +.pe-flip-horizontal { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1); + -webkit-transform: scale(-1, 1); + -moz-transform: scale(-1, 1); + -ms-transform: scale(-1, 1); + -o-transform: scale(-1, 1); + transform: scale(-1, 1); +} +.pe-flip-vertical { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1); + -webkit-transform: scale(1, -1); + -moz-transform: scale(1, -1); + -ms-transform: scale(1, -1); + -o-transform: scale(1, -1); + transform: scale(1, -1); +} +.pe-stack { + position: relative; + display: inline-block; + width: 2em; + height: 2em; + line-height: 2em; + vertical-align: middle; +} +.pe-stack-1x, +.pe-stack-2x { + position: absolute; + left: 0; + width: 100%; + text-align: center; +} +.pe-stack-1x { + line-height: inherit; +} +.pe-stack-2x { + font-size: 2em; +} +.pe-inverse { + color: #ffffff; +} + +/* Custom classes / mods - PIXEDEN */ +.pe-va { + vertical-align: middle; +} + +.pe-border { + border: solid 0.08em #eaeaea; +} + +[class^="pe-7s-"], [class*=" pe-7s-"] { + display: inline-block; +} \ No newline at end of file diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/pe-icon-7-stroke/css/pe-icon-7-stroke.css b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/pe-icon-7-stroke/css/pe-icon-7-stroke.css new file mode 100644 index 00000000..44bcbaa6 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/pe-icon-7-stroke/css/pe-icon-7-stroke.css @@ -0,0 +1,632 @@ +@font-face { + font-family: 'Pe-icon-7-stroke'; + src:url('../fonts/Pe-icon-7-stroke.eot?d7yf1v'); + src:url('../fonts/Pe-icon-7-stroke.eot?#iefixd7yf1v') format('embedded-opentype'), + url('../fonts/Pe-icon-7-stroke.woff?d7yf1v') format('woff'), + url('../fonts/Pe-icon-7-stroke.ttf?d7yf1v') format('truetype'), + url('../fonts/Pe-icon-7-stroke.svg?d7yf1v#Pe-icon-7-stroke') format('svg'); + font-weight: normal; + font-style: normal; +} + +[class^="pe-7s-"], [class*=" pe-7s-"] { + display: inline-block; + font-family: 'Pe-icon-7-stroke'; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.pe-7s-album:before { + content: "\e6aa"; +} +.pe-7s-arc:before { + content: "\e6ab"; +} +.pe-7s-back-2:before { + content: "\e6ac"; +} +.pe-7s-bandaid:before { + content: "\e6ad"; +} +.pe-7s-car:before { + content: "\e6ae"; +} +.pe-7s-diamond:before { + content: "\e6af"; +} +.pe-7s-door-lock:before { + content: "\e6b0"; +} +.pe-7s-eyedropper:before { + content: "\e6b1"; +} +.pe-7s-female:before { + content: "\e6b2"; +} +.pe-7s-gym:before { + content: "\e6b3"; +} +.pe-7s-hammer:before { + content: "\e6b4"; +} +.pe-7s-headphones:before { + content: "\e6b5"; +} +.pe-7s-helm:before { + content: "\e6b6"; +} +.pe-7s-hourglass:before { + content: "\e6b7"; +} +.pe-7s-leaf:before { + content: "\e6b8"; +} +.pe-7s-magic-wand:before { + content: "\e6b9"; +} +.pe-7s-male:before { + content: "\e6ba"; +} +.pe-7s-map-2:before { + content: "\e6bb"; +} +.pe-7s-next-2:before { + content: "\e6bc"; +} +.pe-7s-paint-bucket:before { + content: "\e6bd"; +} +.pe-7s-pendrive:before { + content: "\e6be"; +} +.pe-7s-photo:before { + content: "\e6bf"; +} +.pe-7s-piggy:before { + content: "\e6c0"; +} +.pe-7s-plugin:before { + content: "\e6c1"; +} +.pe-7s-refresh-2:before { + content: "\e6c2"; +} +.pe-7s-rocket:before { + content: "\e6c3"; +} +.pe-7s-settings:before { + content: "\e6c4"; +} +.pe-7s-shield:before { + content: "\e6c5"; +} +.pe-7s-smile:before { + content: "\e6c6"; +} +.pe-7s-usb:before { + content: "\e6c7"; +} +.pe-7s-vector:before { + content: "\e6c8"; +} +.pe-7s-wine:before { + content: "\e6c9"; +} +.pe-7s-cloud-upload:before { + content: "\e68a"; +} +.pe-7s-cash:before { + content: "\e68c"; +} +.pe-7s-close:before { + content: "\e680"; +} +.pe-7s-bluetooth:before { + content: "\e68d"; +} +.pe-7s-cloud-download:before { + content: "\e68b"; +} +.pe-7s-way:before { + content: "\e68e"; +} +.pe-7s-close-circle:before { + content: "\e681"; +} +.pe-7s-id:before { + content: "\e68f"; +} +.pe-7s-angle-up:before { + content: "\e682"; +} +.pe-7s-wristwatch:before { + content: "\e690"; +} +.pe-7s-angle-up-circle:before { + content: "\e683"; +} +.pe-7s-world:before { + content: "\e691"; +} +.pe-7s-angle-right:before { + content: "\e684"; +} +.pe-7s-volume:before { + content: "\e692"; +} +.pe-7s-angle-right-circle:before { + content: "\e685"; +} +.pe-7s-users:before { + content: "\e693"; +} +.pe-7s-angle-left:before { + content: "\e686"; +} +.pe-7s-user-female:before { + content: "\e694"; +} +.pe-7s-angle-left-circle:before { + content: "\e687"; +} +.pe-7s-up-arrow:before { + content: "\e695"; +} +.pe-7s-angle-down:before { + content: "\e688"; +} +.pe-7s-switch:before { + content: "\e696"; +} +.pe-7s-angle-down-circle:before { + content: "\e689"; +} +.pe-7s-scissors:before { + content: "\e697"; +} +.pe-7s-wallet:before { + content: "\e600"; +} +.pe-7s-safe:before { + content: "\e698"; +} +.pe-7s-volume2:before { + content: "\e601"; +} +.pe-7s-volume1:before { + content: "\e602"; +} +.pe-7s-voicemail:before { + content: "\e603"; +} +.pe-7s-video:before { + content: "\e604"; +} +.pe-7s-user:before { + content: "\e605"; +} +.pe-7s-upload:before { + content: "\e606"; +} +.pe-7s-unlock:before { + content: "\e607"; +} +.pe-7s-umbrella:before { + content: "\e608"; +} +.pe-7s-trash:before { + content: "\e609"; +} +.pe-7s-tools:before { + content: "\e60a"; +} +.pe-7s-timer:before { + content: "\e60b"; +} +.pe-7s-ticket:before { + content: "\e60c"; +} +.pe-7s-target:before { + content: "\e60d"; +} +.pe-7s-sun:before { + content: "\e60e"; +} +.pe-7s-study:before { + content: "\e60f"; +} +.pe-7s-stopwatch:before { + content: "\e610"; +} +.pe-7s-star:before { + content: "\e611"; +} +.pe-7s-speaker:before { + content: "\e612"; +} +.pe-7s-signal:before { + content: "\e613"; +} +.pe-7s-shuffle:before { + content: "\e614"; +} +.pe-7s-shopbag:before { + content: "\e615"; +} +.pe-7s-share:before { + content: "\e616"; +} +.pe-7s-server:before { + content: "\e617"; +} +.pe-7s-search:before { + content: "\e618"; +} +.pe-7s-film:before { + content: "\e6a5"; +} +.pe-7s-science:before { + content: "\e619"; +} +.pe-7s-disk:before { + content: "\e6a6"; +} +.pe-7s-ribbon:before { + content: "\e61a"; +} +.pe-7s-repeat:before { + content: "\e61b"; +} +.pe-7s-refresh:before { + content: "\e61c"; +} +.pe-7s-add-user:before { + content: "\e6a9"; +} +.pe-7s-refresh-cloud:before { + content: "\e61d"; +} +.pe-7s-paperclip:before { + content: "\e69c"; +} +.pe-7s-radio:before { + content: "\e61e"; +} +.pe-7s-note2:before { + content: "\e69d"; +} +.pe-7s-print:before { + content: "\e61f"; +} +.pe-7s-network:before { + content: "\e69e"; +} +.pe-7s-prev:before { + content: "\e620"; +} +.pe-7s-mute:before { + content: "\e69f"; +} +.pe-7s-power:before { + content: "\e621"; +} +.pe-7s-medal:before { + content: "\e6a0"; +} +.pe-7s-portfolio:before { + content: "\e622"; +} +.pe-7s-like2:before { + content: "\e6a1"; +} +.pe-7s-plus:before { + content: "\e623"; +} +.pe-7s-left-arrow:before { + content: "\e6a2"; +} +.pe-7s-play:before { + content: "\e624"; +} +.pe-7s-key:before { + content: "\e6a3"; +} +.pe-7s-plane:before { + content: "\e625"; +} +.pe-7s-joy:before { + content: "\e6a4"; +} +.pe-7s-photo-gallery:before { + content: "\e626"; +} +.pe-7s-pin:before { + content: "\e69b"; +} +.pe-7s-phone:before { + content: "\e627"; +} +.pe-7s-plug:before { + content: "\e69a"; +} +.pe-7s-pen:before { + content: "\e628"; +} +.pe-7s-right-arrow:before { + content: "\e699"; +} +.pe-7s-paper-plane:before { + content: "\e629"; +} +.pe-7s-delete-user:before { + content: "\e6a7"; +} +.pe-7s-paint:before { + content: "\e62a"; +} +.pe-7s-bottom-arrow:before { + content: "\e6a8"; +} +.pe-7s-notebook:before { + content: "\e62b"; +} +.pe-7s-note:before { + content: "\e62c"; +} +.pe-7s-next:before { + content: "\e62d"; +} +.pe-7s-news-paper:before { + content: "\e62e"; +} +.pe-7s-musiclist:before { + content: "\e62f"; +} +.pe-7s-music:before { + content: "\e630"; +} +.pe-7s-mouse:before { + content: "\e631"; +} +.pe-7s-more:before { + content: "\e632"; +} +.pe-7s-moon:before { + content: "\e633"; +} +.pe-7s-monitor:before { + content: "\e634"; +} +.pe-7s-micro:before { + content: "\e635"; +} +.pe-7s-menu:before { + content: "\e636"; +} +.pe-7s-map:before { + content: "\e637"; +} +.pe-7s-map-marker:before { + content: "\e638"; +} +.pe-7s-mail:before { + content: "\e639"; +} +.pe-7s-mail-open:before { + content: "\e63a"; +} +.pe-7s-mail-open-file:before { + content: "\e63b"; +} +.pe-7s-magnet:before { + content: "\e63c"; +} +.pe-7s-loop:before { + content: "\e63d"; +} +.pe-7s-look:before { + content: "\e63e"; +} +.pe-7s-lock:before { + content: "\e63f"; +} +.pe-7s-lintern:before { + content: "\e640"; +} +.pe-7s-link:before { + content: "\e641"; +} +.pe-7s-like:before { + content: "\e642"; +} +.pe-7s-light:before { + content: "\e643"; +} +.pe-7s-less:before { + content: "\e644"; +} +.pe-7s-keypad:before { + content: "\e645"; +} +.pe-7s-junk:before { + content: "\e646"; +} +.pe-7s-info:before { + content: "\e647"; +} +.pe-7s-home:before { + content: "\e648"; +} +.pe-7s-help2:before { + content: "\e649"; +} +.pe-7s-help1:before { + content: "\e64a"; +} +.pe-7s-graph3:before { + content: "\e64b"; +} +.pe-7s-graph2:before { + content: "\e64c"; +} +.pe-7s-graph1:before { + content: "\e64d"; +} +.pe-7s-graph:before { + content: "\e64e"; +} +.pe-7s-global:before { + content: "\e64f"; +} +.pe-7s-gleam:before { + content: "\e650"; +} +.pe-7s-glasses:before { + content: "\e651"; +} +.pe-7s-gift:before { + content: "\e652"; +} +.pe-7s-folder:before { + content: "\e653"; +} +.pe-7s-flag:before { + content: "\e654"; +} +.pe-7s-filter:before { + content: "\e655"; +} +.pe-7s-file:before { + content: "\e656"; +} +.pe-7s-expand1:before { + content: "\e657"; +} +.pe-7s-exapnd2:before { + content: "\e658"; +} +.pe-7s-edit:before { + content: "\e659"; +} +.pe-7s-drop:before { + content: "\e65a"; +} +.pe-7s-drawer:before { + content: "\e65b"; +} +.pe-7s-download:before { + content: "\e65c"; +} +.pe-7s-display2:before { + content: "\e65d"; +} +.pe-7s-display1:before { + content: "\e65e"; +} +.pe-7s-diskette:before { + content: "\e65f"; +} +.pe-7s-date:before { + content: "\e660"; +} +.pe-7s-cup:before { + content: "\e661"; +} +.pe-7s-culture:before { + content: "\e662"; +} +.pe-7s-crop:before { + content: "\e663"; +} +.pe-7s-credit:before { + content: "\e664"; +} +.pe-7s-copy-file:before { + content: "\e665"; +} +.pe-7s-config:before { + content: "\e666"; +} +.pe-7s-compass:before { + content: "\e667"; +} +.pe-7s-comment:before { + content: "\e668"; +} +.pe-7s-coffee:before { + content: "\e669"; +} +.pe-7s-cloud:before { + content: "\e66a"; +} +.pe-7s-clock:before { + content: "\e66b"; +} +.pe-7s-check:before { + content: "\e66c"; +} +.pe-7s-chat:before { + content: "\e66d"; +} +.pe-7s-cart:before { + content: "\e66e"; +} +.pe-7s-camera:before { + content: "\e66f"; +} +.pe-7s-call:before { + content: "\e670"; +} +.pe-7s-calculator:before { + content: "\e671"; +} +.pe-7s-browser:before { + content: "\e672"; +} +.pe-7s-box2:before { + content: "\e673"; +} +.pe-7s-box1:before { + content: "\e674"; +} +.pe-7s-bookmarks:before { + content: "\e675"; +} +.pe-7s-bicycle:before { + content: "\e676"; +} +.pe-7s-bell:before { + content: "\e677"; +} +.pe-7s-battery:before { + content: "\e678"; +} +.pe-7s-ball:before { + content: "\e679"; +} +.pe-7s-back:before { + content: "\e67a"; +} +.pe-7s-attention:before { + content: "\e67b"; +} +.pe-7s-anchor:before { + content: "\e67c"; +} +.pe-7s-albums:before { + content: "\e67d"; +} +.pe-7s-alarm:before { + content: "\e67e"; +} +.pe-7s-airplay:before { + content: "\e67f"; +} diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.eot b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.eot new file mode 100644 index 00000000..6f7b5848 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.eot differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.svg b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.svg new file mode 100644 index 00000000..13d9709a --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.svg @@ -0,0 +1,212 @@ + + + +Generated by IcoMoon + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.ttf b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.ttf new file mode 100644 index 00000000..bc8a269c Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.ttf differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.woff b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.woff new file mode 100644 index 00000000..c205e6fd Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.woff differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/revicons/revicons.eot b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/revicons/revicons.eot new file mode 100644 index 00000000..955dc3f1 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/revicons/revicons.eot differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/revicons/revicons.svg b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/revicons/revicons.svg new file mode 100644 index 00000000..7c9d595e --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/revicons/revicons.svg @@ -0,0 +1,54 @@ + + + +Copyright (C) 2013 by original authors @ fontello.com + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/revicons/revicons.ttf b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/revicons/revicons.ttf new file mode 100644 index 00000000..4e8df989 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/revicons/revicons.ttf differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/revicons/revicons.woff b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/revicons/revicons.woff new file mode 100644 index 00000000..6d3ea4d9 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/fonts/revicons/revicons.woff differ diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/js/extensions/revolution.extension.actions.min.js b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/js/extensions/revolution.extension.actions.min.js new file mode 100644 index 00000000..eefda4ae --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/js/extensions/revolution.extension.actions.min.js @@ -0,0 +1,8 @@ +/******************************************** + * REVOLUTION 5.4.8 EXTENSION - ACTIONS + * @version: 2.1.0 (22.11.2017) + * @requires jquery.themepunch.revolution.js + * @author ThemePunch +*********************************************/ + +!function($){"use strict";function getScrollRoot(){var e,t=document.documentElement,o=document.body,a=(void 0!==window.pageYOffset?window.pageYOffset:null)||o.scrollTop||t.scrollTop;return t.scrollTop=o.scrollTop=a+(a>0)?-1:1,e=t.scrollTop!==a?t:o,e.scrollTop=a,e}var _R=jQuery.fn.revolution,_ISM=_R.is_mobile(),extension={alias:"Actions Min JS",name:"revolution.extensions.actions.min.js",min_core:"5.4.5",version:"2.1.0"};jQuery.extend(!0,_R,{checkActions:function(e,t,o){if("stop"===_R.compare_version(extension).check)return!1;checkActions_intern(e,t,o)}});var checkActions_intern=function(e,t,o){o&&jQuery.each(o,function(o,a){a.delay=parseInt(a.delay,0)/1e3,e.addClass("tp-withaction"),t.fullscreen_esclistener||"exitfullscreen"!=a.action&&"togglefullscreen"!=a.action||(jQuery(document).keyup(function(t){27==t.keyCode&&jQuery("#rs-go-fullscreen").length>0&&e.trigger(a.event)}),t.fullscreen_esclistener=!0);var r="backgroundvideo"==a.layer?jQuery(".rs-background-video-layer"):"firstvideo"==a.layer?jQuery(".tp-revslider-slidesli").find(".tp-videolayer"):jQuery("#"+a.layer);switch(-1!=jQuery.inArray(a.action,["toggleslider","toggle_mute_video","toggle_global_mute_video","togglefullscreen"])&&e.data("togglelisteners",!0),a.action){case"togglevideo":jQuery.each(r,function(t,o){var a=(o=jQuery(o)).data("videotoggledby");void 0==a&&(a=new Array),a.push(e),o.data("videotoggledby",a)});break;case"togglelayer":jQuery.each(r,function(t,o){var r=(o=jQuery(o)).data("layertoggledby");void 0==r&&(r=new Array),r.push(e),o.data("layertoggledby",r),o.data("triggered_startstatus",a.layerstatus)});break;case"toggle_mute_video":case"toggle_global_mute_video":jQuery.each(r,function(t,o){var a=(o=jQuery(o)).data("videomutetoggledby");void 0==a&&(a=new Array),a.push(e),o.data("videomutetoggledby",a)});break;case"toggleslider":void 0==t.slidertoggledby&&(t.slidertoggledby=new Array),t.slidertoggledby.push(e);break;case"togglefullscreen":void 0==t.fullscreentoggledby&&(t.fullscreentoggledby=new Array),t.fullscreentoggledby.push(e)}switch(e.on(a.event,function(){if("click"===a.event&&e.hasClass("tp-temporarydisabled"))return!1;var o="backgroundvideo"==a.layer?jQuery(".active-revslide .slotholder .rs-background-video-layer"):"firstvideo"==a.layer?jQuery(".active-revslide .tp-videolayer").first():jQuery("#"+a.layer);if("stoplayer"==a.action||"togglelayer"==a.action||"startlayer"==a.action){if(o.length>0){var r=o.data();void 0!==r.clicked_time_stamp&&(new Date).getTime()-r.clicked_time_stamp>150&&(clearTimeout(r.triggerdelayIn),clearTimeout(r.triggerdelayOut)),r.clicked_time_stamp=(new Date).getTime(),"startlayer"==a.action||"togglelayer"==a.action&&"in"!=o.data("animdirection")?(r.animdirection="in",r.triggerstate="on",_R.toggleState(r.layertoggledby),_R.playAnimationFrame&&(clearTimeout(r.triggerdelayIn),r.triggerdelayIn=setTimeout(function(){_R.playAnimationFrame({caption:o,opt:t,frame:"frame_0",triggerdirection:"in",triggerframein:"frame_0",triggerframeout:"frame_999"})},1e3*a.delay))):("stoplayer"==a.action||"togglelayer"==a.action&&"out"!=o.data("animdirection"))&&(r.animdirection="out",r.triggered=!0,r.triggerstate="off",_R.stopVideo&&_R.stopVideo(o,t),_R.unToggleState(r.layertoggledby),_R.endMoveCaption&&(clearTimeout(r.triggerdelayOut),r.triggerdelayOut=setTimeout(function(){_R.playAnimationFrame({caption:o,opt:t,frame:"frame_999",triggerdirection:"out",triggerframein:"frame_0",triggerframeout:"frame_999"})},1e3*a.delay)))}}else!_ISM||"playvideo"!=a.action&&"stopvideo"!=a.action&&"togglevideo"!=a.action&&"mutevideo"!=a.action&&"unmutevideo"!=a.action&&"toggle_mute_video"!=a.action&&"toggle_global_mute_video"!=a.action?(a.delay="NaN"===a.delay||NaN===a.delay?0:a.delay,_R.isSafari11()?actionSwitches(o,t,a,e):punchgs.TweenLite.delayedCall(a.delay,function(){actionSwitches(o,t,a,e)},[o,t,a,e])):actionSwitches(o,t,a,e)}),a.action){case"togglelayer":case"startlayer":case"playlayer":case"stoplayer":var l=(r=jQuery("#"+a.layer)).data();r.length>0&&void 0!==l&&(void 0!==l.frames&&"bytrigger"!=l.frames[0].delay||void 0===l.frames&&"bytrigger"!==l.start)&&(l.triggerstate="on")}})},actionSwitches=function(tnc,opt,a,_nc){switch(a.action){case"scrollbelow":a.speed=void 0!==a.speed?a.speed:400,a.ease=void 0!==a.ease?a.ease:punchgs.Power2.easeOut,_nc.addClass("tp-scrollbelowslider"),_nc.data("scrolloffset",a.offset),_nc.data("scrolldelay",a.delay),_nc.data("scrollspeed",a.speed),_nc.data("scrollease",a.ease);var off=getOffContH(opt.fullScreenOffsetContainer)||0,aof=parseInt(a.offset,0)||0;off=off-aof||0,opt.scrollRoot=jQuery(document);var sobj={_y:opt.scrollRoot.scrollTop()};punchgs.TweenLite.to(sobj,a.speed/1e3,{_y:opt.c.offset().top+jQuery(opt.li[0]).height()-off,ease:a.ease,onUpdate:function(){opt.scrollRoot.scrollTop(sobj._y)}});break;case"callback":eval(a.callback);break;case"jumptoslide":switch(a.slide.toLowerCase()){case"+1":case"next":opt.sc_indicator="arrow",_R.callingNewSlide(opt.c,1);break;case"previous":case"prev":case"-1":opt.sc_indicator="arrow",_R.callingNewSlide(opt.c,-1);break;default:var ts=jQuery.isNumeric(a.slide)?parseInt(a.slide,0):a.slide;_R.callingNewSlide(opt.c,ts)}break;case"simplelink":window.open(a.url,a.target);break;case"toggleslider":opt.noloopanymore=0,"playing"==opt.sliderstatus?(opt.c.revpause(),opt.forcepause_viatoggle=!0,_R.unToggleState(opt.slidertoggledby)):(opt.forcepause_viatoggle=!1,opt.c.revresume(),_R.toggleState(opt.slidertoggledby));break;case"pauseslider":opt.c.revpause(),_R.unToggleState(opt.slidertoggledby);break;case"playslider":opt.noloopanymore=0,opt.c.revresume(),_R.toggleState(opt.slidertoggledby);break;case"playvideo":tnc.length>0&&_R.playVideo(tnc,opt);break;case"stopvideo":tnc.length>0&&_R.stopVideo&&_R.stopVideo(tnc,opt);break;case"togglevideo":tnc.length>0&&(_R.isVideoPlaying(tnc,opt)?_R.stopVideo&&_R.stopVideo(tnc,opt):_R.playVideo(tnc,opt));break;case"mutevideo":tnc.length>0&&_R.muteVideo(tnc,opt);break;case"unmutevideo":tnc.length>0&&_R.unMuteVideo&&_R.unMuteVideo(tnc,opt);break;case"toggle_mute_video":tnc.length>0&&(_R.isVideoMuted(tnc,opt)?_R.unMuteVideo(tnc,opt):_R.muteVideo&&_R.muteVideo(tnc,opt)),_nc.toggleClass("rs-toggle-content-active");break;case"toggle_global_mute_video":!0===opt.globalmute?(opt.globalmute=!1,void 0!=opt.playingvideos&&opt.playingvideos.length>0&&jQuery.each(opt.playingvideos,function(e,t){_R.unMuteVideo&&_R.unMuteVideo(t,opt)})):(opt.globalmute=!0,void 0!=opt.playingvideos&&opt.playingvideos.length>0&&jQuery.each(opt.playingvideos,function(e,t){_R.muteVideo&&_R.muteVideo(t,opt)})),_nc.toggleClass("rs-toggle-content-active");break;case"simulateclick":tnc.length>0&&tnc.click();break;case"toggleclass":tnc.length>0&&(tnc.hasClass(a.classname)?tnc.removeClass(a.classname):tnc.addClass(a.classname));break;case"gofullscreen":case"exitfullscreen":case"togglefullscreen":if(jQuery(".rs-go-fullscreen").length>0&&("togglefullscreen"==a.action||"exitfullscreen"==a.action)){jQuery(".rs-go-fullscreen").removeClass("rs-go-fullscreen");var gf=opt.c.closest(".forcefullwidth_wrapper_tp_banner").length>0?opt.c.closest(".forcefullwidth_wrapper_tp_banner"):opt.c.closest(".rev_slider_wrapper");opt.minHeight=opt.oldminheight,opt.infullscreenmode=!1,opt.c.revredraw(),jQuery(window).trigger("resize"),_R.unToggleState(opt.fullscreentoggledby)}else if(0==jQuery(".rs-go-fullscreen").length&&("togglefullscreen"==a.action||"gofullscreen"==a.action)){var gf=opt.c.closest(".forcefullwidth_wrapper_tp_banner").length>0?opt.c.closest(".forcefullwidth_wrapper_tp_banner"):opt.c.closest(".rev_slider_wrapper");gf.addClass("rs-go-fullscreen"),opt.oldminheight=opt.minHeight,opt.minHeight=jQuery(window).height(),opt.infullscreenmode=!0,opt.c.revredraw(),jQuery(window).trigger("resize"),_R.toggleState(opt.fullscreentoggledby)}break;default:var obj={};obj.event=a,obj.layer=_nc,opt.c.trigger("layeraction",[obj])}},getOffContH=function(e){if(void 0==e)return 0;if(e.split(",").length>1){var t=e.split(","),o=0;return t&&jQuery.each(t,function(e,t){jQuery(t).length>0&&(o+=jQuery(t).outerHeight(!0))}),o}return jQuery(e).height()}}(jQuery); \ No newline at end of file diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/js/extensions/revolution.extension.carousel.min.js b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/js/extensions/revolution.extension.carousel.min.js new file mode 100644 index 00000000..816745f5 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/js/extensions/revolution.extension.carousel.min.js @@ -0,0 +1,7 @@ +/******************************************** + * REVOLUTION 5.8 EXTENSION - CAROUSEL + * @version: 1.2.1 (18.11.2016) + * @requires jquery.themepunch.revolution.js + * @author ThemePunch +*********************************************/ +!function(a){"use strict";var b=jQuery.fn.revolution,c={alias:"Carousel Min JS",name:"revolution.extensions.carousel.min.js",min_core:"5.3.0",version:"1.2.1"};jQuery.extend(!0,b,{prepareCarousel:function(a,d,h,i){return"stop"!==b.compare_version(c).check&&(h=a.carousel.lastdirection=f(h,a.carousel.lastdirection),e(a),a.carousel.slide_offset_target=j(a),void(void 0!==i?g(a,h,!1,0):void 0==d?b.carouselToEvalPosition(a,h):g(a,h,!1)))},carouselToEvalPosition:function(a,c){var d=a.carousel;c=d.lastdirection=f(c,d.lastdirection);var e="center"===d.horizontal_align?(d.wrapwidth/2-d.slide_width/2-d.slide_globaloffset)/d.slide_width:(0-d.slide_globaloffset)/d.slide_width,h=b.simp(e,a.slideamount,!1),i=h-Math.floor(h),j=0,k=-1*(Math.ceil(h)-h),l=-1*(Math.floor(h)-h);j=i>=.3&&"left"===c||i>=.7&&"right"===c?k:i<.3&&"left"===c||i<.7&&"right"===c?l:j,j="off"===d.infinity?h<0?h:e>a.slideamount-1?e-(a.slideamount-1):j:j,d.slide_offset_target=j*d.slide_width,0!==Math.abs(d.slide_offset_target)?g(a,c,!0):b.organiseCarousel(a,c)},organiseCarousel:function(a,b,c,d){b=void 0===b||"down"==b||"up"==b||null===b||jQuery.isEmptyObject(b)?"left":b;for(var e=a.carousel,f=new Array,g=e.slides.length,i=("right"===e.horizontal_align?a.width:0,0);ie.wrapwidth-e.inneroffset&&"right"==b?e.slide_offset-(e.slides.length-i)*e.slide_width:j,j=j<0-e.inneroffset-e.slide_width&&"left"==b?j+e.maxwidth:j),f[i]=j}var k=999;e.slides&&jQuery.each(e.slides,function(d,h){var i=f[d];"on"===e.infinity&&(i=i>e.wrapwidth-e.inneroffset&&"left"===b?f[0]-(g-d)*e.slide_width:i,i=i<0-e.inneroffset-e.slide_width?"left"==b?i+e.maxwidth:"right"===b?f[g-1]+(d+1)*e.slide_width:i:i);var j=new Object;j.left=i+e.inneroffset;var l="center"===e.horizontal_align?(Math.abs(e.wrapwidth/2)-(j.left+e.slide_width/2))/e.slide_width:(e.inneroffset-j.left)/e.slide_width,n="center"===e.horizontal_align?2:1;if((c&&Math.abs(l)0?1-l:Math.abs(l)>e.maxVisibleItems-1?1-(Math.abs(l)-(e.maxVisibleItems-1)):1;break;case"right":j.autoAlpha=l>-1&&l<0?1-Math.abs(l):l>e.maxVisibleItems-1?1-(Math.abs(l)-(e.maxVisibleItems-1)):1}else j.autoAlpha=Math.abs(l)0)if("on"===e.vary_scale){j.scale=1-Math.abs(e.minScale/100/Math.ceil(e.maxVisibleItems/n)*l);var o=(e.slide_width-e.slide_width*j.scale)*Math.abs(l)}else{j.scale=l>=1||l<=-1?1-e.minScale/100:(100-e.minScale*Math.abs(l))/100;var o=(e.slide_width-e.slide_width*(1-e.minScale/100))*Math.abs(l)}void 0!==e.maxRotation&&0!=Math.abs(e.maxRotation)&&("on"===e.vary_rotation?(j.rotationY=Math.abs(e.maxRotation)-Math.abs((1-Math.abs(1/Math.ceil(e.maxVisibleItems/n)*l))*e.maxRotation),j.autoAlpha=Math.abs(j.rotationY)>90?0:j.autoAlpha):j.rotationY=l>=1||l<=-1?e.maxRotation:Math.abs(l)*e.maxRotation,j.rotationY=l<0?j.rotationY*-1:j.rotationY),j.x=-1*e.space*l,j.left=Math.floor(j.left),j.x=Math.floor(j.x),void 0!==j.scale?l<0?j.x-o:j.x+o:j.x,j.zIndex=Math.round(100-Math.abs(5*l)),j.transformStyle="3D"!=a.parallax.type&&"3d"!=a.parallax.type?"flat":"preserve-3d",punchgs.TweenLite.set(h,j)}),d&&(a.c.find(".next-revslide").removeClass("next-revslide"),jQuery(e.slides[e.focused]).addClass("next-revslide"),a.c.trigger("revolution.nextslide.waiting"));e.wrapwidth/2-e.slide_offset,e.maxwidth+e.slide_offset-e.wrapwidth/2}});var d=function(a){var b=a.carousel;b.infbackup=b.infinity,b.maxVisiblebackup=b.maxVisibleItems,b.slide_globaloffset="none",b.slide_offset=0,b.wrap=a.c.find(".tp-carousel-wrapper"),b.slides=a.c.find(".tp-revslider-slidesli"),0!==b.maxRotation&&("3D"!=a.parallax.type&&"3d"!=a.parallax.type?punchgs.TweenLite.set(b.wrap,{perspective:1200,transformStyle:"flat"}):punchgs.TweenLite.set(b.wrap,{perspective:1600,transformStyle:"preserve-3d"})),void 0!==b.border_radius&&parseInt(b.border_radius,0)>0&&punchgs.TweenLite.set(a.c.find(".tp-revslider-slidesli"),{borderRadius:b.border_radius})},e=function(a){void 0===a.bw&&b.setSize(a);var c=a.carousel,e=b.getHorizontalOffset(a.c,"left"),f=b.getHorizontalOffset(a.c,"right");void 0===c.wrap&&d(a),c.slide_width="on"!==c.stretch?a.gridwidth[a.curWinRange]*a.bw:a.c.width(),c.maxwidth=a.slideamount*c.slide_width,c.maxVisiblebackup>c.slides.length+1&&(c.maxVisibleItems=c.slides.length+2),c.wrapwidth=c.maxVisibleItems*c.slide_width+(c.maxVisibleItems-1)*c.space,c.wrapwidth="auto"!=a.sliderLayout?c.wrapwidth>a.c.closest(".tp-simpleresponsive").width()?a.c.closest(".tp-simpleresponsive").width():c.wrapwidth:c.wrapwidth>a.ul.width()?a.ul.width():c.wrapwidth,c.infinity=c.wrapwidth>=c.maxwidth?"off":c.infbackup,c.wrapoffset="center"===c.horizontal_align?(a.c.width()-f-e-c.wrapwidth)/2:0,c.wrapoffset="auto"!=a.sliderLayout&&a.outernav?0:c.wrapoffsetMath.abs(b)?a>0?a-Math.abs(Math.floor(a/b)*b):a+Math.abs(Math.floor(a/b)*b):a},i=function(a,b,c){var c,c,d=b-a,e=b-c-a;return d=h(d,c),e=h(e,c),Math.abs(d)>Math.abs(e)?e:d},j=function(a){var c=0,d=a.carousel;if(void 0!==d.positionanim&&d.positionanim.kill(),"none"==d.slide_globaloffset)d.slide_globaloffset=c="center"===d.horizontal_align?d.wrapwidth/2-d.slide_width/2:0;else{d.slide_globaloffset=d.slide_offset,d.slide_offset=0;var e=a.c.find(".processing-revslide").index(),f="center"===d.horizontal_align?(d.wrapwidth/2-d.slide_width/2-d.slide_globaloffset)/d.slide_width:(0-d.slide_globaloffset)/d.slide_width;f=b.simp(f,a.slideamount,!1),e=e>=0?e:a.c.find(".active-revslide").index(),e=e>=0?e:0,c="off"===d.infinity?f-e:-i(f,e,a.slideamount),c*=d.slide_width}return c}}(jQuery); \ No newline at end of file diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/js/extensions/revolution.extension.kenburn.min.js b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/js/extensions/revolution.extension.kenburn.min.js new file mode 100644 index 00000000..050066da --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/js/extensions/revolution.extension.kenburn.min.js @@ -0,0 +1,7 @@ +/******************************************** + * REVOLUTION 5.4.8 EXTENSION - KEN BURN + * @version: 1.3.1 (15.05.2017) + * @requires jquery.themepunch.revolution.js + * @author ThemePunch +*********************************************/ +!function(a){"use strict";var b=jQuery.fn.revolution,c={alias:"KenBurns Min JS",name:"revolution.extensions.kenburn.min.js",min_core:"5.4",version:"1.3.1"};jQuery.extend(!0,b,{stopKenBurn:function(a){if("stop"===b.compare_version(c).check)return!1;void 0!=a.data("kbtl")&&a.data("kbtl").pause()},startKenBurn:function(a,d,e){if("stop"===b.compare_version(c).check)return!1;var f=a.data(),g=a.find(".defaultimg"),h=g.data("lazyload")||g.data("src"),j=(f.owidth,f.oheight,"carousel"===d.sliderType?d.carousel.slide_width:d.ul.width()),k=d.ul.height();if(a.data("kbtl")&&a.data("kbtl").kill(),e=e||0,0==a.find(".tp-kbimg").length){var m=g.data("mediafilter");m=void 0===m?"":m,a.append('
    '),a.data("kenburn",a.find(".tp-kbimg"))}var n=function(a,b,c,d,e,f,g){var h=a*c,i=b*c,j=Math.abs(d-h),k=Math.abs(e-i),l=new Object;return l.l=(0-f)*j,l.r=l.l+h,l.t=(0-g)*k,l.b=l.t+i,l.h=f,l.v=g,l},o=function(a,b,c,d,e){var f=a.bgposition.split(" ")||"center center",g="center"==f[0]?"50%":"left"==f[0]||"left"==f[1]?"0%":"right"==f[0]||"right"==f[1]?"100%":f[0],h="center"==f[1]?"50%":"top"==f[0]||"top"==f[1]?"0%":"bottom"==f[0]||"bottom"==f[1]?"100%":f[1];g=parseInt(g,0)/100||0,h=parseInt(h,0)/100||0;var i=new Object;return i.start=n(e.start.width,e.start.height,e.start.scale,b,c,g,h),i.end=n(e.start.width,e.start.height,e.end.scale,b,c,g,h),i},p=function(a,b,c){var d=c.scalestart/100,e=c.scaleend/100,f=void 0!=c.offsetstart?c.offsetstart.split(" ")||[0,0]:[0,0],g=void 0!=c.offsetend?c.offsetend.split(" ")||[0,0]:[0,0];c.bgposition="center center"==c.bgposition?"50% 50%":c.bgposition;var h=new Object,i=a*d,k=(c.owidth,c.oheight,a*e);c.owidth,c.oheight;if(h.start=new Object,h.starto=new Object,h.end=new Object,h.endo=new Object,h.start.width=a,h.start.height=h.start.width/c.owidth*c.oheight,h.start.height0?0:p+f[0]0?0:r+g[0]0?0:q+f[1]0?0:s+g[1]
    ');var d=t.find(".helpgrid");d.append('
    Zoom:'+Math.round(100*p.bw)+"%     Device Level:"+p.curWinRange+"    Grid Preset:"+p.gridwidth[p.curWinRange]+"x"+p.gridheight[p.curWinRange]+"
    "),p.c.append('
    '),d.append('
    ')}void 0!==a&&p.layers[a]&&jQuery.each(p.layers[a],function(e,t){var i=jQuery(this);A.updateMarkup(this,p),A.prepareSingleCaption({caption:i,opt:p,offsetx:s,offsety:0,index:e,recall:n,preset:r}),r&&0!==o||A.buildFullTimeLine({caption:i,opt:p,offsetx:s,offsety:0,index:e,recall:n,preset:r,regenerate:0===o}),n&&"carousel"===p.sliderType&&"on"===p.carousel.showLayersAllTime&&A.animcompleted(i,p)}),p.layers.static&&jQuery.each(p.layers.static,function(e,t){var i=jQuery(this),a=i.data();!0!==a.hoveredstatus&&!0!==a.inhoveroutanimation?(A.updateMarkup(this,p),A.prepareSingleCaption({caption:i,opt:p,offsetx:s,offsety:0,index:e,recall:n,preset:r}),r&&0!==o||!0===a.veryfirstststic||(A.buildFullTimeLine({caption:i,opt:p,offsetx:s,offsety:0,index:e,recall:n,preset:r,regenerate:0===o}),a.veryfirstststic=!0),n&&"carousel"===p.sliderType&&"on"===p.carousel.showLayersAllTime&&A.animcompleted(i,p)):A.prepareSingleCaption({caption:i,opt:p,offsetx:s,offsety:0,index:e,recall:n,preset:r})});var g=-1===p.nextSlide||void 0===p.nextSlide?0:p.nextSlide;void 0!==p.rowzones&&(g=g>p.rowzones.length?p.rowzones.length:g),null!=p.rowzones&&0=t.firstslide&&g<=t.lastslide,n=gt.lastslide,r=t.timeline.getLabelTime("slide_"+t.firstslide),o=t.timeline.getLabelTime("slide_"+t.lastslide),s=i.static_layer_timeline_time,d="in"===i.animdirection||"out"!==i.animdirection&&void 0,l="bytrigger"===i.frames[0].delay,m=(i.frames[i.frames.length-1].delay,i.triggered_startstatus),c=i.lasttriggerstate;!0!==i.hoveredstatus&&1!=i.inhoveroutanimation&&(void 0!==s&&d&&("keep"==c?(A.playAnimationFrame({caption:t.layer,opt:p,frame:"frame_0",triggerdirection:"in",triggerframein:"frame_0",triggerframeout:"frame_999"}),i.triggeredtimeline.time(s)):!0!==i.hoveredstatus&&t.timeline.time(s)),"reset"===c&&"hidden"===m&&(t.timeline.time(0),i.animdirection="out"),a?d?g===t.lastslide&&(t.timeline.play(o),i.animdirection="in"):(l||"in"===i.animdirection||t.timeline.play(r),("visible"==m&&"keep"!==c||"keep"===c&&!0===d||"visible"==m&&void 0===d)&&(t.timeline.play(r+.01),i.animdirection="in")):n&&d&&t.timeline.play("frame_999"))})),null!=i&&setTimeout(function(){i.resume()},30)},prepareSingleCaption:function(e){var t=e.caption,i=t.data(),a=e.opt,n=e.recall,r=e.recall,o=(e.preset,jQuery("body").hasClass("rtl"));if(i._pw=void 0===i._pw?t.closest(".tp-parallax-wrap"):i._pw,i._lw=void 0===i._lw?t.closest(".tp-loop-wrap"):i._lw,i._mw=void 0===i._mw?t.closest(".tp-mask-wrap"):i._mw,i._responsive=i.responsive||"on",i._respoffset=i.responsive_offset||"on",i._ba=i.basealign||"grid",i._gw="grid"===i._ba?a.width:a.ulw,i._gh="grid"===i._ba?a.height:a.ulh,i._lig=void 0===i._lig?t.hasClass("rev_layer_in_group")?t.closest(".rev_group"):t.hasClass("rev_layer_in_column")?t.closest(".rev_column_inner"):t.hasClass("rev_column_inner")?t.closest(".rev_row"):"none":i._lig,i._column=void 0===i._column?t.hasClass("rev_column_inner")?t.closest(".rev_column"):"none":i._column,i._row=void 0===i._row?t.hasClass("rev_column_inner")?t.closest(".rev_row"):"none":i._row,i._ingroup=void 0===i._ingroup?!(t.hasClass("rev_group")||!t.closest(".rev_group")):i._ingroup,i._isgroup=void 0===i._isgroup?!!t.hasClass("rev_group"):i._isgroup,i._nctype=i.type||"none",i._cbgc_auto=void 0===i._cbgc_auto?"column"===i._nctype&&i._pw.find(".rev_column_bg_auto_sized"):i._cbgc_auto,i._cbgc_man=void 0===i._cbgc_man?"column"===i._nctype&&i._pw.find(".rev_column_bg_man_sized"):i._cbgc_man,i._slideid=i._slideid||t.closest(".tp-revslider-slidesli").data("index"),i._id=void 0===i._id?t.data("id")||t.attr("id"):i._id,i._slidelink=void 0===i._slidelink?void 0!==t.hasClass("slidelink")&&t.hasClass("slidelink"):i._slidelink,void 0===i._li&&(t.hasClass("tp-static-layer")?(i._isstatic=!0,i._li=t.closest(".tp-static-layers"),i._slideid="staticlayers"):i._li=t.closest(".tp-revslider-slidesli")),i._row=void 0===i._row?"column"===i._nctype&&i._pw.closest(".rev_row"):i._row,void 0===i._togglelisteners&&t.find(".rs-toggled-content")?(i._togglelisteners=!0,void 0===i.actions&&t.click(function(){A.swaptoggleState(t)})):i._togglelisteners=!1,"fullscreen"==a.sliderLayout&&(e.offsety=i._gh/2-a.gridheight[a.curWinRange]*a.bh/2),("on"==a.autoHeight||null!=a.minHeight&&0'+e+":"+t+"    ")}),s.html(i)})}if("off"===(void 0===i.visibility?"oon":N(i.visibility,a)[a.forcedWinRange]||N(i.visibility,a)||"ooon")||i._gw
  • '),i._mw.append(i._bmask)),i.arrobj=new Object,i.arrobj.voa=N(i.voffset,a)[a.curWinRange]||N(i.voffset,a)[0],i.arrobj.hoa=N(i.hoffset,a)[a.curWinRange]||N(i.hoffset,a)[0],i.arrobj.elx=N(i.x,a)[a.curWinRange]||N(i.x,a)[0],i.arrobj.ely=N(i.y,a)[a.curWinRange]||N(i.y,a)[0];var j=0==i.arrobj.voa.length?0:i.arrobj.voa,L=0==i.arrobj.hoa.length?0:i.arrobj.hoa,I=0==i.arrobj.elx.length?0:i.arrobj.elx,W=0==i.arrobj.ely.length?0:i.arrobj.ely;i.eow=t.outerWidth(!0),i.eoh=t.outerHeight(!0),0==i.eow&&0==i.eoh&&(i.eow=a.ulw,i.eoh=a.ulh);var R="off"!==i._respoffset?parseInt(j,0)*a.bw:parseInt(j,0),C="off"!==i._respoffset?parseInt(L,0)*a.bw:parseInt(L,0),z="grid"===i._ba?a.gridwidth[a.curWinRange]*a.bw:i._gw,O="grid"===i._ba?a.gridheight[a.curWinRange]*a.bw:i._gh;"on"==a.fullScreenAlignForce&&(z=a.ulw,O=a.ulh),"none"!==i._lig&&null!=i._lig&&(z=i._lig.width(),O=i._lig.height(),e.offsetx=0,e.offsety=0),I="center"===I||"middle"===I?z/2-i.eow/2+C:"left"===I?C:"right"===I?z-i.eow-C:"off"!==i._respoffset?I*a.bw:I,W="center"==W||"middle"==W?O/2-i.eoh/2+R:"top"==W?R:"bottom"==W?O-i.eoh-R:"off"!==i._respoffset?W*a.bw:W,o&&!i._slidelink&&(I+=i.eow),i._slidelink&&(I=0),i.calcx=parseInt(I,0)+e.offsetx,i.calcy=parseInt(W,0)+e.offsety;var Q=t.css("z-Index");if("row"!==i._nctype&&"column"!==i._nctype)punchgs.TweenLite.set(i._pw,{zIndex:Q,top:i.calcy,left:i.calcx,overwrite:"auto"});else if("row"!==i._nctype)punchgs.TweenLite.set(i._pw,{zIndex:Q,width:i.columnwidth,top:0,left:0,overwrite:"auto"});else if("row"===i._nctype){var S="grid"===i._ba?z+"px":"100%";punchgs.TweenLite.set(i._pw,{zIndex:Q,width:S,top:0,left:e.offsetx,overwrite:"auto"})}if(void 0!==i.blendmode&&punchgs.TweenLite.set(i._pw,{mixBlendMode:i.blendmode}),"row"===i._nctype&&(i.columnbreak<=a.curWinRange?t.addClass("rev_break_columns"):t.removeClass("rev_break_columns")),"on"==i.loopanimation&&punchgs.TweenLite.set(i._lw,{minWidth:i.eow,minHeight:i.eoh}),"column"===i._nctype){var M=void 0!==t[0]._gsTransform?t[0]._gsTransform.y:0,P=parseInt(i._column[0].style.paddingTop,0);punchgs.TweenLite.set(t,{y:0}),punchgs.TweenLite.set(i._cbgc_man,{y:parseInt(P+i._column.offset().top-t.offset().top,0)}),punchgs.TweenLite.set(t,{y:M})}i._ingroup&&"row"!==i._nctype&&(void 0!==i._groupw&&!jQuery.isNumeric(i._groupw)&&0=t.removeonslide||e.currentslide1?1:c<0?0:c,m(e)&&(b||e.width>e.min_width)&&f(c,d,a.c,e,a.slideamount,"tab"),m(g)&&(b||g.width>g.min_width)&&f(c,d,a.c,g,a.slideamount,"thumb"),m(h)&&b){var i=a.c.find(".tp-bullets");i.find(".tp-bullet").each(function(a){var b=jQuery(this),c=a+1,d=b.outerWidth()+parseInt(void 0===h.space?0:h.space,0),e=b.outerHeight()+parseInt(void 0===h.space?0:h.space,0);"vertical"===h.direction?(b.css({top:(c-1)*e+"px",left:"0px"}),i.css({height:(c-1)*e+b.outerHeight(),width:b.outerWidth()})):(b.css({left:(c-1)*d+"px",top:"0px"}),i.css({width:(c-1)*d+b.outerWidth(),height:b.outerHeight()}))})}d.play(),x(a)}return!0},updateNavIndexes:function(a){function d(a){c.find(a).lenght>0&&c.find(a).each(function(a){jQuery(this).data("liindex",a)})}var c=a.c;d(".tp-tab"),d(".tp-bullet"),d(".tp-thumb"),b.resizeThumbsTabs(a,!0),b.manageNavigation(a)},manageNavigation:function(a){var c=b.getHorizontalOffset(a.c.parent(),"left"),d=b.getHorizontalOffset(a.c.parent(),"right");m(a.navigation.bullets)&&("fullscreen"!=a.sliderLayout&&"fullwidth"!=a.sliderLayout&&(a.navigation.bullets.h_offset_old=void 0===a.navigation.bullets.h_offset_old?a.navigation.bullets.h_offset:a.navigation.bullets.h_offset_old,a.navigation.bullets.h_offset="center"===a.navigation.bullets.h_align?a.navigation.bullets.h_offset_old+c/2-d/2:a.navigation.bullets.h_offset_old+c-d),t(a.c.find(".tp-bullets"),a.navigation.bullets,a)),m(a.navigation.thumbnails)&&t(a.c.parent().find(".tp-thumbs"),a.navigation.thumbnails,a),m(a.navigation.tabs)&&t(a.c.parent().find(".tp-tabs"),a.navigation.tabs,a),m(a.navigation.arrows)&&("fullscreen"!=a.sliderLayout&&"fullwidth"!=a.sliderLayout&&(a.navigation.arrows.left.h_offset_old=void 0===a.navigation.arrows.left.h_offset_old?a.navigation.arrows.left.h_offset:a.navigation.arrows.left.h_offset_old,a.navigation.arrows.left.h_offset="right"===a.navigation.arrows.left.h_align?a.navigation.arrows.left.h_offset_old+d:a.navigation.arrows.left.h_offset_old+c,a.navigation.arrows.right.h_offset_old=void 0===a.navigation.arrows.right.h_offset_old?a.navigation.arrows.right.h_offset:a.navigation.arrows.right.h_offset_old,a.navigation.arrows.right.h_offset="right"===a.navigation.arrows.right.h_align?a.navigation.arrows.right.h_offset_old+d:a.navigation.arrows.right.h_offset_old+c),t(a.c.find(".tp-leftarrow.tparrows"),a.navigation.arrows.left,a),t(a.c.find(".tp-rightarrow.tparrows"),a.navigation.arrows.right,a)),m(a.navigation.thumbnails)&&e(a.c.parent().find(".tp-thumbs"),a.navigation.thumbnails),m(a.navigation.tabs)&&e(a.c.parent().find(".tp-tabs"),a.navigation.tabs)},createNavigation:function(a,f){if("stop"===b.compare_version(d).check)return!1;var g=a.parent(),j=f.navigation.arrows,n=f.navigation.bullets,r=f.navigation.thumbnails,s=f.navigation.tabs,t=m(j),v=m(n),x=m(r),y=m(s);h(a,f),i(a,f),t&&q(a,j,f),f.li.each(function(b){var c=jQuery(f.li[f.li.length-1-b]),d=jQuery(this);v&&(f.navigation.bullets.rtl?u(a,n,c,f):u(a,n,d,f)),x&&(f.navigation.thumbnails.rtl?w(a,r,c,"tp-thumb",f):w(a,r,d,"tp-thumb",f)),y&&(f.navigation.tabs.rtl?w(a,s,c,"tp-tab",f):w(a,s,d,"tp-tab",f))}),a.bind("revolution.slide.onafterswap revolution.nextslide.waiting",function(){var b=0==a.find(".next-revslide").length?a.find(".active-revslide").data("index"):a.find(".next-revslide").data("index");a.find(".tp-bullet").each(function(){var a=jQuery(this);a.data("liref")===b?a.addClass("selected"):a.removeClass("selected")}),g.find(".tp-thumb, .tp-tab").each(function(){var a=jQuery(this);a.data("liref")===b?(a.addClass("selected"),a.hasClass("tp-tab")?e(g.find(".tp-tabs"),s):e(g.find(".tp-thumbs"),r)):a.removeClass("selected")});var c=0,d=!1;f.thumbs&&jQuery.each(f.thumbs,function(a,e){c=!1===d?a:c,d=e.id===b||a===b||d});var h=c>0?c-1:f.slideamount-1,i=c+1==f.slideamount?0:c+1;if(!0===j.enable){var k=j.tmp;if(void 0!=f.thumbs[h]&&jQuery.each(f.thumbs[h].params,function(a,b){k=k.replace(b.from,b.to)}),j.left.j.html(k),k=j.tmp,i>f.slideamount)return;jQuery.each(f.thumbs[i].params,function(a,b){k=k.replace(b.from,b.to)}),j.right.j.html(k),j.rtl?(punchgs.TweenLite.set(j.left.j.find(".tp-arr-imgholder"),{backgroundImage:"url("+f.thumbs[i].src+")"}),punchgs.TweenLite.set(j.right.j.find(".tp-arr-imgholder"),{backgroundImage:"url("+f.thumbs[h].src+")"})):(punchgs.TweenLite.set(j.left.j.find(".tp-arr-imgholder"),{backgroundImage:"url("+f.thumbs[h].src+")"}),punchgs.TweenLite.set(j.right.j.find(".tp-arr-imgholder"),{backgroundImage:"url("+f.thumbs[i].src+")"}))}}),l(j),l(n),l(r),l(s),g.on("mouseenter mousemove",function(){g.hasClass("tp-mouseover")||(g.addClass("tp-mouseover"),punchgs.TweenLite.killDelayedCallsTo(p),t&&j.hide_onleave&&p(g.find(".tparrows"),j,"show"),v&&n.hide_onleave&&p(g.find(".tp-bullets"),n,"show"),x&&r.hide_onleave&&p(g.find(".tp-thumbs"),r,"show"),y&&s.hide_onleave&&p(g.find(".tp-tabs"),s,"show"),c&&(g.removeClass("tp-mouseover"),o(a,f)))}),g.on("mouseleave",function(){g.removeClass("tp-mouseover"),o(a,f)}),t&&j.hide_onleave&&p(g.find(".tparrows"),j,"hide",0),v&&n.hide_onleave&&p(g.find(".tp-bullets"),n,"hide",0),x&&r.hide_onleave&&p(g.find(".tp-thumbs"),r,"hide",0),y&&s.hide_onleave&&p(g.find(".tp-tabs"),s,"hide",0),x&&k(g.find(".tp-thumbs"),f),y&&k(g.find(".tp-tabs"),f),"carousel"===f.sliderType&&k(a,f,!0),("on"===f.navigation.touch.touchOnDesktop||"on"==f.navigation.touch.touchenabled&&c)&&k(a,f,"swipebased")}});var e=function(a,b){var d=(a.hasClass("tp-thumbs"),a.hasClass("tp-thumbs")?".tp-thumb-mask":".tp-tab-mask"),e=a.hasClass("tp-thumbs")?".tp-thumbs-inner-wrapper":".tp-tabs-inner-wrapper",f=a.hasClass("tp-thumbs")?".tp-thumb":".tp-tab",g=a.find(d),h=g.find(e),i=b.direction,j="vertical"===i?g.find(f).first().outerHeight(!0)+b.space:g.find(f).first().outerWidth(!0)+b.space,k="vertical"===i?g.height():g.width(),l=parseInt(g.find(f+".selected").data("liindex"),0),m=k/j,n="vertical"===i?g.height():g.width(),o=0-l*j,p="vertical"===i?h.height():h.width(),q=o<0-(p-n)?0-(p-n):q>0?0:o,r=h.data("offset");m>2&&(q=o-(r+j)<=0?o-(r+j)<0-j?r:q+j:q,q=o-j+r+k0?0:q,"vertical"!==i&&g.width()>=h.width()&&(q=0),"vertical"===i&&g.height()>=h.height()&&(q=0),a.hasClass("dragged")||("vertical"===i?h.data("tmmove",punchgs.TweenLite.to(h,.5,{top:q+"px",ease:punchgs.Power3.easeInOut})):h.data("tmmove",punchgs.TweenLite.to(h,.5,{left:q+"px",ease:punchgs.Power3.easeInOut})),h.data("offset",q))},f=function(a,b,c,d,e,f){var g=c.parent().find(".tp-"+f+"s"),h=g.find(".tp-"+f+"s-inner-wrapper"),i=g.find(".tp-"+f+"-mask"),j=d.width*a300||e<-300)&&(e/=10),{spinX:b,spinY:c,pixelX:d,pixelY:e}},h=function(a,c){"on"===c.navigation.keyboardNavigation&&jQuery(document).keydown(function(d){("horizontal"==c.navigation.keyboard_direction&&39==d.keyCode||"vertical"==c.navigation.keyboard_direction&&40==d.keyCode)&&(c.sc_indicator="arrow",c.sc_indicator_dir=0,b.callingNewSlide(a,1)),("horizontal"==c.navigation.keyboard_direction&&37==d.keyCode||"vertical"==c.navigation.keyboard_direction&&38==d.keyCode)&&(c.sc_indicator="arrow",c.sc_indicator_dir=1,b.callingNewSlide(a,-1))})},i=function(a,c){if("on"===c.navigation.mouseScrollNavigation||"carousel"===c.navigation.mouseScrollNavigation){c.isIEEleven=!!navigator.userAgent.match(/Trident.*rv\:11\./),c.isSafari=!!navigator.userAgent.match(/safari/i),c.ischrome=!!navigator.userAgent.match(/chrome/i);var d=c.ischrome?-49:c.isIEEleven||c.isSafari?-9:navigator.userAgent.match(/mozilla/i)?-29:-49,e=c.ischrome?49:c.isIEEleven||c.isSafari?9:navigator.userAgent.match(/mozilla/i)?29:49;a.on("mousewheel DOMMouseScroll",function(f){var h=g(f.originalEvent),i=a.find(".tp-revslider-slidesli.active-revslide").index(),j=a.find(".tp-revslider-slidesli.processing-revslide").index(),k=-1!=i&&0==i||-1!=j&&0==j,l=-1!=i&&i==c.slideamount-1||1!=j&&j==c.slideamount-1,m=!0;"carousel"==c.navigation.mouseScrollNavigation&&(k=l=!1),-1==j?h.pixelYe&&(l||(c.sc_indicator="arrow","reverse"!==c.navigation.mouseScrollReverse&&(c.sc_indicator_dir=0,b.callingNewSlide(a,1)),m=!1),k||(c.sc_indicator="arrow","reverse"===c.navigation.mouseScrollReverse&&(c.sc_indicator_dir=1,b.callingNewSlide(a,-1)),m=!1)):m=!1;var n=c.c.offset().top-jQuery("body").scrollTop(),o=n+c.c.height();return"carousel"!=c.navigation.mouseScrollNavigation?("reverse"!==c.navigation.mouseScrollReverse&&(n>0&&h.pixelY>0||ojQuery(window).height()&&h.pixelY>0)&&(m=!0)):m=!1,0==m?(f.preventDefault(f),!1):void 0})}},j=function(a,b,d){return a=c?jQuery(d.target).closest("."+a).length||jQuery(d.srcElement).closest("."+a).length:jQuery(d.toElement).closest("."+a).length||jQuery(d.originalTarget).closest("."+a).length,!0===a||1===a?1:0},k=function(a,d,e){var f=d.carousel;jQuery(".bullet, .bullets, .tp-bullets, .tparrows").addClass("noSwipe"),f.Limit="endless";var h=(c||b.get_browser(),a),i="vertical"===d.navigation.thumbnails.direction||"vertical"===d.navigation.tabs.direction?"none":"vertical",k=d.navigation.touch.swipe_direction||"horizontal";i="swipebased"==e&&"vertical"==k?"none":e?"vertical":i,jQuery.fn.swipetp||(jQuery.fn.swipetp=jQuery.fn.swipe),jQuery.fn.swipetp.defaults&&jQuery.fn.swipetp.defaults.excludedElements||jQuery.fn.swipetp.defaults||(jQuery.fn.swipetp.defaults=new Object),jQuery.fn.swipetp.defaults.excludedElements="label, button, input, select, textarea, .noSwipe",h.swipetp({allowPageScroll:i,triggerOnTouchLeave:!0,treshold:d.navigation.touch.swipe_treshold,fingers:d.navigation.touch.swipe_min_touches,excludeElements:jQuery.fn.swipetp.defaults.excludedElements,swipeStatus:function(e,g,h,i,l,m,n){var o=j("rev_slider_wrapper",a,e),p=j("tp-thumbs",a,e),q=j("tp-tabs",a,e),r=jQuery(this).attr("class"),s=!!r.match(/tp-tabs|tp-thumb/gi);if("carousel"===d.sliderType&&(("move"===g||"end"===g||"cancel"==g)&&d.dragStartedOverSlider&&!d.dragStartedOverThumbs&&!d.dragStartedOverTabs||"start"===g&&o>0&&0===p&&0===q)){if(c&&("up"===h||"down"===h))return;switch(d.dragStartedOverSlider=!0,i=h&&h.match(/left|up/g)?Math.round(-1*i):i=Math.round(1*i),g){case"start":void 0!==f.positionanim&&(f.positionanim.kill(),f.slide_globaloffset="off"===f.infinity?f.slide_offset:b.simp(f.slide_offset,f.maxwidth)),f.overpull="none",f.wrap.addClass("dragged");break;case"move":if(d.c.find(".tp-withaction").addClass("tp-temporarydisabled"),f.slide_offset="off"===f.infinity?f.slide_globaloffset+i:b.simp(f.slide_globaloffset+i,f.maxwidth),"off"===f.infinity){var t="center"===f.horizontal_align?(f.wrapwidth/2-f.slide_width/2-f.slide_offset)/f.slide_width:(0-f.slide_offset)/f.slide_width;"none"!==f.overpull&&0!==f.overpull||!(t<0||t>d.slideamount-1)?t>=0&&t<=d.slideamount-1&&(t>=0&&i>f.overpull||t<=d.slideamount-1&&id.slideamount-1?f.slide_offset+(f.overpull-i)/1.1-Math.sqrt(Math.abs((f.overpull-i)/1.1)):f.slide_offset}b.organiseCarousel(d,h,!0,!0);break;case"end":case"cancel":f.slide_globaloffset=f.slide_offset,f.wrap.removeClass("dragged"),b.carouselToEvalPosition(d,h),d.dragStartedOverSlider=!1,d.dragStartedOverThumbs=!1,d.dragStartedOverTabs=!1,setTimeout(function(){d.c.find(".tp-withaction").removeClass("tp-temporarydisabled")},19)}}else{if(("move"!==g&&"end"!==g&&"cancel"!=g||d.dragStartedOverSlider||!d.dragStartedOverThumbs&&!d.dragStartedOverTabs)&&!("start"===g&&o>0&&(p>0||q>0))){if("end"==g&&!s){if(d.sc_indicator="arrow","horizontal"==k&&"left"==h||"vertical"==k&&"up"==h)return d.sc_indicator_dir=0,b.callingNewSlide(d.c,1),!1;if("horizontal"==k&&"right"==h||"vertical"==k&&"down"==h)return d.sc_indicator_dir=1,b.callingNewSlide(d.c,-1),!1}return d.dragStartedOverSlider=!1,d.dragStartedOverThumbs=!1,d.dragStartedOverTabs=!1,!0}p>0&&(d.dragStartedOverThumbs=!0),q>0&&(d.dragStartedOverTabs=!0);var u=d.dragStartedOverThumbs?".tp-thumbs":".tp-tabs",v=d.dragStartedOverThumbs?".tp-thumb-mask":".tp-tab-mask",w=d.dragStartedOverThumbs?".tp-thumbs-inner-wrapper":".tp-tabs-inner-wrapper",x=d.dragStartedOverThumbs?".tp-thumb":".tp-tab",y=d.dragStartedOverThumbs?d.navigation.thumbnails:d.navigation.tabs;i=h&&h.match(/left|up/g)?Math.round(-1*i):i=Math.round(1*i);var z=a.parent().find(v),A=z.find(w),B=y.direction,C="vertical"===B?A.height():A.width(),D="vertical"===B?z.height():z.width(),E="vertical"===B?z.find(x).first().outerHeight(!0)+y.space:z.find(x).first().outerWidth(!0)+y.space,F=void 0===A.data("offset")?0:parseInt(A.data("offset"),0),G=0;switch(g){case"start":a.parent().find(u).addClass("dragged"),F="vertical"===B?A.position().top:A.position().left,A.data("offset",F),A.data("tmmove")&&A.data("tmmove").pause();break;case"move":if(C<=D)return!1;G=F+i,G=G>0?"horizontal"===B?G-A.width()*(G/A.width()*G/A.width()):G-A.height()*(G/A.height()*G/A.height()):G;var H="vertical"===B?0-(A.height()-z.height()):0-(A.width()-z.width());G=G0?0:G,G=Math.abs(i)>E/10?i<=0?Math.floor(G/E)*E:Math.ceil(G/E)*E:i<0?Math.ceil(G/E)*E:Math.floor(G/E)*E,G="vertical"===B?G<0-(A.height()-z.height())?0-(A.height()-z.height()):G:G<0-(A.width()-z.width())?0-(A.width()-z.width()):G,G=G>0?0:G,"vertical"===B?punchgs.TweenLite.to(A,.5,{top:G+"px",ease:punchgs.Power3.easeOut}):punchgs.TweenLite.to(A,.5,{left:G+"px",ease:punchgs.Power3.easeOut}),G=G||("vertical"===B?A.position().top:A.position().left),A.data("offset",G),A.data("distance",i),setTimeout(function(){d.dragStartedOverSlider=!1,d.dragStartedOverThumbs=!1,d.dragStartedOverTabs=!1},100),a.parent().find(u).removeClass("dragged"),!1}}}})},l=function(a){a.hide_delay=jQuery.isNumeric(parseInt(a.hide_delay,0))?a.hide_delay/1e3:.2,a.hide_delay_mobile=jQuery.isNumeric(parseInt(a.hide_delay_mobile,0))?a.hide_delay_mobile/1e3:.2},m=function(a){return a&&a.enable},n=function(a){return a&&a.enable&&!0===a.hide_onleave&&(void 0===a.position||!a.position.match(/outer/g))},o=function(a,b){var d=a.parent();n(b.navigation.arrows)&&punchgs.TweenLite.delayedCall(c?b.navigation.arrows.hide_delay_mobile:b.navigation.arrows.hide_delay,p,[d.find(".tparrows"),b.navigation.arrows,"hide"]),n(b.navigation.bullets)&&punchgs.TweenLite.delayedCall(c?b.navigation.bullets.hide_delay_mobile:b.navigation.bullets.hide_delay,p,[d.find(".tp-bullets"),b.navigation.bullets,"hide"]),n(b.navigation.thumbnails)&&punchgs.TweenLite.delayedCall(c?b.navigation.thumbnails.hide_delay_mobile:b.navigation.thumbnails.hide_delay,p,[d.find(".tp-thumbs"),b.navigation.thumbnails,"hide"]),n(b.navigation.tabs)&&punchgs.TweenLite.delayedCall(c?b.navigation.tabs.hide_delay_mobile:b.navigation.tabs.hide_delay,p,[d.find(".tp-tabs"),b.navigation.tabs,"hide"])},p=function(a,b,c,d){switch(d=void 0===d?.5:d,c){case"show":punchgs.TweenLite.to(a,d,{autoAlpha:1,ease:punchgs.Power3.easeInOut,overwrite:"auto"});break;case"hide":punchgs.TweenLite.to(a,d,{autoAlpha:0,ease:punchgs.Power3.easeInOu,overwrite:"auto"})}},q=function(a,b,c){b.style=void 0===b.style?"":b.style,b.left.style=void 0===b.left.style?"":b.left.style,b.right.style=void 0===b.right.style?"":b.right.style,0===a.find(".tp-leftarrow.tparrows").length&&a.append('
    '+b.tmp+"
    "),0===a.find(".tp-rightarrow.tparrows").length&&a.append('
    '+b.tmp+"
    ");var d=a.find(".tp-leftarrow.tparrows"),e=a.find(".tp-rightarrow.tparrows");b.rtl?(d.click(function(){c.sc_indicator="arrow",c.sc_indicator_dir=0,a.revnext()}),e.click(function(){c.sc_indicator="arrow",c.sc_indicator_dir=1,a.revprev()})):(e.click(function(){c.sc_indicator="arrow",c.sc_indicator_dir=0,a.revnext()}),d.click(function(){c.sc_indicator="arrow",c.sc_indicator_dir=1,a.revprev()})),b.right.j=a.find(".tp-rightarrow.tparrows"),b.left.j=a.find(".tp-leftarrow.tparrows"),b.padding_top=parseInt(c.carousel.padding_top||0,0),b.padding_bottom=parseInt(c.carousel.padding_bottom||0,0),t(d,b.left,c),t(e,b.right,c),b.left.opt=c,b.right.opt=c,"outer-left"!=b.position&&"outer-right"!=b.position||(c.outernav=!0)},r=function(a,b,c){var d=a.outerHeight(!0),f=(a.outerWidth(!0),void 0==b.opt?0:0==c.conh?c.height:c.conh),g="layergrid"==b.container?"fullscreen"==c.sliderLayout?c.height/2-c.gridheight[c.curWinRange]*c.bh/2:"on"==c.autoHeight||void 0!=c.minHeight&&c.minHeight>0?f/2-c.gridheight[c.curWinRange]*c.bh/2:0:0,h="top"===b.v_align?{top:"0px",y:Math.round(b.v_offset+g)+"px"}:"center"===b.v_align?{top:"50%",y:Math.round(0-d/2+b.v_offset)+"px"}:{top:"100%",y:Math.round(0-(d+b.v_offset+g))+"px"};a.hasClass("outer-bottom")||punchgs.TweenLite.set(a,h)},s=function(a,b,c){var e=(a.outerHeight(!0),a.outerWidth(!0)),f="layergrid"==b.container?"carousel"===c.sliderType?0:c.width/2-c.gridwidth[c.curWinRange]*c.bw/2:0,g="left"===b.h_align?{left:"0px",x:Math.round(b.h_offset+f)+"px"}:"center"===b.h_align?{left:"50%",x:Math.round(0-e/2+b.h_offset)+"px"}:{left:"100%",x:Math.round(0-(e+b.h_offset+f))+"px"};punchgs.TweenLite.set(a,g)},t=function(a,b,c){var d=a.closest(".tp-simpleresponsive").length>0?a.closest(".tp-simpleresponsive"):a.closest(".tp-revslider-mainul").length>0?a.closest(".tp-revslider-mainul"):a.closest(".rev_slider_wrapper").length>0?a.closest(".rev_slider_wrapper"):a.parent().find(".tp-revslider-mainul"),e=d.width(),f=d.height();if(r(a,b,c),s(a,b,c),"outer-left"!==b.position||"fullwidth"!=b.sliderLayout&&"fullscreen"!=b.sliderLayout?"outer-right"!==b.position||"fullwidth"!=b.sliderLayout&&"fullscreen"!=b.sliderLayout||punchgs.TweenLite.set(a,{right:0-a.outerWidth()+"px",x:b.h_offset+"px"}):punchgs.TweenLite.set(a,{left:0-a.outerWidth()+"px",x:b.h_offset+"px"}),a.hasClass("tp-thumbs")||a.hasClass("tp-tabs")){var g=a.data("wr_padding"),h=a.data("maxw"),i=a.data("maxh"),j=a.hasClass("tp-thumbs")?a.find(".tp-thumb-mask"):a.find(".tp-tab-mask"),k=parseInt(b.padding_top||0,0),l=parseInt(b.padding_bottom||0,0);h>e&&"outer-left"!==b.position&&"outer-right"!==b.position?(punchgs.TweenLite.set(a,{left:"0px",x:0,maxWidth:e-2*g+"px"}),punchgs.TweenLite.set(j,{maxWidth:e-2*g+"px"})):(punchgs.TweenLite.set(a,{maxWidth:h+"px"}),punchgs.TweenLite.set(j,{maxWidth:h+"px"})),i+2*g>f&&"outer-bottom"!==b.position&&"outer-top"!==b.position?(punchgs.TweenLite.set(a,{top:"0px",y:0,maxHeight:k+l+(f-2*g)+"px"}),punchgs.TweenLite.set(j,{maxHeight:k+l+(f-2*g)+"px"})):(punchgs.TweenLite.set(a,{maxHeight:i+"px"}),punchgs.TweenLite.set(j,{maxHeight:i+"px"})),"outer-left"!==b.position&&"outer-right"!==b.position&&(k=0,l=0),!0===b.span&&"vertical"===b.direction?(punchgs.TweenLite.set(a,{maxHeight:k+l+(f-2*g)+"px",height:k+l+(f-2*g)+"px",top:0-k,y:0}),r(j,b,c)):!0===b.span&&"horizontal"===b.direction&&(punchgs.TweenLite.set(a,{maxWidth:"100%",width:e-2*g+"px",left:0,x:0}),s(j,b,c))}},u=function(a,b,c,d){0===a.find(".tp-bullets").length&&(b.style=void 0===b.style?"":b.style,a.append('
    '));var e=a.find(".tp-bullets"),f=c.data("index"),g=b.tmp;jQuery.each(d.thumbs[c.index()].params,function(a,b){g=g.replace(b.from,b.to)}),e.append('
    '+g+"
    ");var h=a.find(".justaddedbullet"),i=a.find(".tp-bullet").length,j=h.outerWidth()+parseInt(void 0===b.space?0:b.space,0),k=h.outerHeight()+parseInt(void 0===b.space?0:b.space,0);"vertical"===b.direction?(h.css({top:(i-1)*k+"px",left:"0px"}),e.css({height:(i-1)*k+h.outerHeight(),width:h.outerWidth()})):(h.css({left:(i-1)*j+"px",top:"0px"}),e.css({width:(i-1)*j+h.outerWidth(),height:h.outerHeight()})),h.find(".tp-bullet-image").css({backgroundImage:"url("+d.thumbs[c.index()].src+")"}),h.data("liref",f),h.click(function(){d.sc_indicator="bullet",a.revcallslidewithid(f),a.find(".tp-bullet").removeClass("selected"),jQuery(this).addClass("selected")}),h.removeClass("justaddedbullet"),b.padding_top=parseInt(d.carousel.padding_top||0,0),b.padding_bottom=parseInt(d.carousel.padding_bottom||0,0),b.opt=d,"outer-left"!=b.position&&"outer-right"!=b.position||(d.outernav=!0),e.addClass("nav-pos-hor-"+b.h_align),e.addClass("nav-pos-ver-"+b.v_align),e.addClass("nav-dir-"+b.direction),t(e,b,d)},w=function(a,b,c,d,e){var f="tp-thumb"===d?".tp-thumbs":".tp-tabs",g="tp-thumb"===d?".tp-thumb-mask":".tp-tab-mask",h="tp-thumb"===d?".tp-thumbs-inner-wrapper":".tp-tabs-inner-wrapper",i="tp-thumb"===d?".tp-thumb":".tp-tab",j="tp-thumb"===d?".tp-thumb-image":".tp-tab-image";if(b.visibleAmount=b.visibleAmount>e.slideamount?e.slideamount:b.visibleAmount,b.sliderLayout=e.sliderLayout,0===a.parent().find(f).length){b.style=void 0===b.style?"":b.style;var k=!0===b.span?"tp-span-wrapper":"",l='
    ';"outer-top"===b.position?a.parent().prepend(l):"outer-bottom"===b.position?a.after(l):a.append(l),b.padding_top=parseInt(e.carousel.padding_top||0,0),b.padding_bottom=parseInt(e.carousel.padding_bottom||0,0),"outer-left"!=b.position&&"outer-right"!=b.position||(e.outernav=!0)}var m=c.data("index"),n=a.parent().find(f),o=n.find(g),p=o.find(h),q="horizontal"===b.direction?b.width*b.visibleAmount+b.space*(b.visibleAmount-1):b.width,r="horizontal"===b.direction?b.height:b.height*b.visibleAmount+b.space*(b.visibleAmount-1),s=b.tmp;jQuery.each(e.thumbs[c.index()].params,function(a,b){s=s.replace(b.from,b.to)}),p.append('
    '+s+"
    ");var u=n.find(".justaddedthumb"),v=n.find(i).length,w=u.outerWidth()+parseInt(void 0===b.space?0:b.space,0),x=u.outerHeight()+parseInt(void 0===b.space?0:b.space,0);u.find(j).css({backgroundImage:"url("+e.thumbs[c.index()].src+")"}),"vertical"===b.direction?(u.css({top:(v-1)*x+"px",left:"0px"}),p.css({height:(v-1)*x+u.outerHeight(),width:u.outerWidth()})):(u.css({left:(v-1)*w+"px",top:"0px"}),p.css({width:(v-1)*w+u.outerWidth(),height:u.outerHeight()})),n.data("maxw",q),n.data("maxh",r),n.data("wr_padding",b.wrapper_padding);var y="outer-top"===b.position||"outer-bottom"===b.position?"relative":"absolute";"outer-top"!==b.position&&"outer-bottom"!==b.position||b.h_align;o.css({maxWidth:q+"px",maxHeight:r+"px",overflow:"hidden",position:"relative"}),n.css({maxWidth:q+"px",maxHeight:r+"px",overflow:"visible",position:y,background:b.wrapper_color,padding:b.wrapper_padding+"px",boxSizing:"contet-box"}),u.click(function(){e.sc_indicator="bullet";var b=a.parent().find(h).data("distance");b=void 0===b?0:b,Math.abs(b)<10&&(a.revcallslidewithid(m),a.parent().find(f).removeClass("selected"),jQuery(this).addClass("selected"))}),u.removeClass("justaddedthumb"),b.opt=e,n.addClass("nav-pos-hor-"+b.h_align),n.addClass("nav-pos-ver-"+b.v_align),n.addClass("nav-dir-"+b.direction),t(n,b,e)},x=function(a){var b=a.c.parent().find(".outer-top"),c=a.c.parent().find(".outer-bottom");a.top_outer=b.hasClass("tp-forcenotvisible")?0:b.outerHeight()||0,a.bottom_outer=c.hasClass("tp-forcenotvisible")?0:c.outerHeight()||0},y=function(a,b,c,d){b>c||c>d?a.addClass("tp-forcenotvisible"):a.removeClass("tp-forcenotvisible")}}(jQuery); \ No newline at end of file diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/js/extensions/revolution.extension.navigation.min.js b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/js/extensions/revolution.extension.navigation.min.js new file mode 100644 index 00000000..0c8c8642 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/js/extensions/revolution.extension.navigation.min.js @@ -0,0 +1,7 @@ +/******************************************** + * REVOLUTION 5.4.8 EXTENSION - NAVIGATION + * @version: 1.3.5 (06.04.2017) + * @requires jquery.themepunch.revolution.js + * @author ThemePunch +*********************************************/ +!function(a){"use strict";var b=jQuery.fn.revolution,c=b.is_mobile(),d={alias:"Navigation Min JS",name:"revolution.extensions.navigation.min.js",min_core:"5.4.0",version:"1.3.5"};jQuery.extend(!0,b,{hideUnHideNav:function(a){var b=a.c.width(),c=a.navigation.arrows,d=a.navigation.bullets,e=a.navigation.thumbnails,f=a.navigation.tabs;m(c)&&y(a.c.find(".tparrows"),c.hide_under,b,c.hide_over),m(d)&&y(a.c.find(".tp-bullets"),d.hide_under,b,d.hide_over),m(e)&&y(a.c.parent().find(".tp-thumbs"),e.hide_under,b,e.hide_over),m(f)&&y(a.c.parent().find(".tp-tabs"),f.hide_under,b,f.hide_over),x(a)},resizeThumbsTabs:function(a,b){if(a.navigation&&a.navigation.tabs.enable||a.navigation&&a.navigation.thumbnails.enable){var c=(jQuery(window).width()-480)/500,d=new punchgs.TimelineLite,e=a.navigation.tabs,g=a.navigation.thumbnails,h=a.navigation.bullets;if(d.pause(),c=c>1?1:c<0?0:c,m(e)&&(b||e.width>e.min_width)&&f(c,d,a.c,e,a.slideamount,"tab"),m(g)&&(b||g.width>g.min_width)&&f(c,d,a.c,g,a.slideamount,"thumb"),m(h)&&b){var i=a.c.find(".tp-bullets");i.find(".tp-bullet").each(function(a){var b=jQuery(this),c=a+1,d=b.outerWidth()+parseInt(void 0===h.space?0:h.space,0),e=b.outerHeight()+parseInt(void 0===h.space?0:h.space,0);"vertical"===h.direction?(b.css({top:(c-1)*e+"px",left:"0px"}),i.css({height:(c-1)*e+b.outerHeight(),width:b.outerWidth()})):(b.css({left:(c-1)*d+"px",top:"0px"}),i.css({width:(c-1)*d+b.outerWidth(),height:b.outerHeight()}))})}d.play(),x(a)}return!0},updateNavIndexes:function(a){function d(a){c.find(a).lenght>0&&c.find(a).each(function(a){jQuery(this).data("liindex",a)})}var c=a.c;d(".tp-tab"),d(".tp-bullet"),d(".tp-thumb"),b.resizeThumbsTabs(a,!0),b.manageNavigation(a)},manageNavigation:function(a){var c=b.getHorizontalOffset(a.c.parent(),"left"),d=b.getHorizontalOffset(a.c.parent(),"right");m(a.navigation.bullets)&&("fullscreen"!=a.sliderLayout&&"fullwidth"!=a.sliderLayout&&(a.navigation.bullets.h_offset_old=void 0===a.navigation.bullets.h_offset_old?a.navigation.bullets.h_offset:a.navigation.bullets.h_offset_old,a.navigation.bullets.h_offset="center"===a.navigation.bullets.h_align?a.navigation.bullets.h_offset_old+c/2-d/2:a.navigation.bullets.h_offset_old+c-d),t(a.c.find(".tp-bullets"),a.navigation.bullets,a)),m(a.navigation.thumbnails)&&t(a.c.parent().find(".tp-thumbs"),a.navigation.thumbnails,a),m(a.navigation.tabs)&&t(a.c.parent().find(".tp-tabs"),a.navigation.tabs,a),m(a.navigation.arrows)&&("fullscreen"!=a.sliderLayout&&"fullwidth"!=a.sliderLayout&&(a.navigation.arrows.left.h_offset_old=void 0===a.navigation.arrows.left.h_offset_old?a.navigation.arrows.left.h_offset:a.navigation.arrows.left.h_offset_old,a.navigation.arrows.left.h_offset="right"===a.navigation.arrows.left.h_align?a.navigation.arrows.left.h_offset_old+d:a.navigation.arrows.left.h_offset_old+c,a.navigation.arrows.right.h_offset_old=void 0===a.navigation.arrows.right.h_offset_old?a.navigation.arrows.right.h_offset:a.navigation.arrows.right.h_offset_old,a.navigation.arrows.right.h_offset="right"===a.navigation.arrows.right.h_align?a.navigation.arrows.right.h_offset_old+d:a.navigation.arrows.right.h_offset_old+c),t(a.c.find(".tp-leftarrow.tparrows"),a.navigation.arrows.left,a),t(a.c.find(".tp-rightarrow.tparrows"),a.navigation.arrows.right,a)),m(a.navigation.thumbnails)&&e(a.c.parent().find(".tp-thumbs"),a.navigation.thumbnails),m(a.navigation.tabs)&&e(a.c.parent().find(".tp-tabs"),a.navigation.tabs)},createNavigation:function(a,f){if("stop"===b.compare_version(d).check)return!1;var g=a.parent(),j=f.navigation.arrows,n=f.navigation.bullets,r=f.navigation.thumbnails,s=f.navigation.tabs,t=m(j),v=m(n),x=m(r),y=m(s);h(a,f),i(a,f),t&&q(a,j,f),f.li.each(function(b){var c=jQuery(f.li[f.li.length-1-b]),d=jQuery(this);v&&(f.navigation.bullets.rtl?u(a,n,c,f):u(a,n,d,f)),x&&(f.navigation.thumbnails.rtl?w(a,r,c,"tp-thumb",f):w(a,r,d,"tp-thumb",f)),y&&(f.navigation.tabs.rtl?w(a,s,c,"tp-tab",f):w(a,s,d,"tp-tab",f))}),a.bind("revolution.slide.onafterswap revolution.nextslide.waiting",function(){var b=0==a.find(".next-revslide").length?a.find(".active-revslide").data("index"):a.find(".next-revslide").data("index");a.find(".tp-bullet").each(function(){var a=jQuery(this);a.data("liref")===b?a.addClass("selected"):a.removeClass("selected")}),g.find(".tp-thumb, .tp-tab").each(function(){var a=jQuery(this);a.data("liref")===b?(a.addClass("selected"),a.hasClass("tp-tab")?e(g.find(".tp-tabs"),s):e(g.find(".tp-thumbs"),r)):a.removeClass("selected")});var c=0,d=!1;f.thumbs&&jQuery.each(f.thumbs,function(a,e){c=!1===d?a:c,d=e.id===b||a===b||d});var h=c>0?c-1:f.slideamount-1,i=c+1==f.slideamount?0:c+1;if(!0===j.enable){var k=j.tmp;if(void 0!=f.thumbs[h]&&jQuery.each(f.thumbs[h].params,function(a,b){k=k.replace(b.from,b.to)}),j.left.j.html(k),k=j.tmp,i>f.slideamount)return;jQuery.each(f.thumbs[i].params,function(a,b){k=k.replace(b.from,b.to)}),j.right.j.html(k),j.rtl?(punchgs.TweenLite.set(j.left.j.find(".tp-arr-imgholder"),{backgroundImage:"url("+f.thumbs[i].src+")"}),punchgs.TweenLite.set(j.right.j.find(".tp-arr-imgholder"),{backgroundImage:"url("+f.thumbs[h].src+")"})):(punchgs.TweenLite.set(j.left.j.find(".tp-arr-imgholder"),{backgroundImage:"url("+f.thumbs[h].src+")"}),punchgs.TweenLite.set(j.right.j.find(".tp-arr-imgholder"),{backgroundImage:"url("+f.thumbs[i].src+")"}))}}),l(j),l(n),l(r),l(s),g.on("mouseenter mousemove",function(){g.hasClass("tp-mouseover")||(g.addClass("tp-mouseover"),punchgs.TweenLite.killDelayedCallsTo(p),t&&j.hide_onleave&&p(g.find(".tparrows"),j,"show"),v&&n.hide_onleave&&p(g.find(".tp-bullets"),n,"show"),x&&r.hide_onleave&&p(g.find(".tp-thumbs"),r,"show"),y&&s.hide_onleave&&p(g.find(".tp-tabs"),s,"show"),c&&(g.removeClass("tp-mouseover"),o(a,f)))}),g.on("mouseleave",function(){g.removeClass("tp-mouseover"),o(a,f)}),t&&j.hide_onleave&&p(g.find(".tparrows"),j,"hide",0),v&&n.hide_onleave&&p(g.find(".tp-bullets"),n,"hide",0),x&&r.hide_onleave&&p(g.find(".tp-thumbs"),r,"hide",0),y&&s.hide_onleave&&p(g.find(".tp-tabs"),s,"hide",0),x&&k(g.find(".tp-thumbs"),f),y&&k(g.find(".tp-tabs"),f),"carousel"===f.sliderType&&k(a,f,!0),("on"===f.navigation.touch.touchOnDesktop||"on"==f.navigation.touch.touchenabled&&c)&&k(a,f,"swipebased")}});var e=function(a,b){var d=(a.hasClass("tp-thumbs"),a.hasClass("tp-thumbs")?".tp-thumb-mask":".tp-tab-mask"),e=a.hasClass("tp-thumbs")?".tp-thumbs-inner-wrapper":".tp-tabs-inner-wrapper",f=a.hasClass("tp-thumbs")?".tp-thumb":".tp-tab",g=a.find(d),h=g.find(e),i=b.direction,j="vertical"===i?g.find(f).first().outerHeight(!0)+b.space:g.find(f).first().outerWidth(!0)+b.space,k="vertical"===i?g.height():g.width(),l=parseInt(g.find(f+".selected").data("liindex"),0),m=k/j,n="vertical"===i?g.height():g.width(),o=0-l*j,p="vertical"===i?h.height():h.width(),q=o<0-(p-n)?0-(p-n):q>0?0:o,r=h.data("offset");m>2&&(q=o-(r+j)<=0?o-(r+j)<0-j?r:q+j:q,q=o-j+r+k0?0:q,"vertical"!==i&&g.width()>=h.width()&&(q=0),"vertical"===i&&g.height()>=h.height()&&(q=0),a.hasClass("dragged")||("vertical"===i?h.data("tmmove",punchgs.TweenLite.to(h,.5,{top:q+"px",ease:punchgs.Power3.easeInOut})):h.data("tmmove",punchgs.TweenLite.to(h,.5,{left:q+"px",ease:punchgs.Power3.easeInOut})),h.data("offset",q))},f=function(a,b,c,d,e,f){var g=c.parent().find(".tp-"+f+"s"),h=g.find(".tp-"+f+"s-inner-wrapper"),i=g.find(".tp-"+f+"-mask"),j=d.width*a300||e<-300)&&(e/=10),{spinX:b,spinY:c,pixelX:d,pixelY:e}},h=function(a,c){"on"===c.navigation.keyboardNavigation&&jQuery(document).keydown(function(d){("horizontal"==c.navigation.keyboard_direction&&39==d.keyCode||"vertical"==c.navigation.keyboard_direction&&40==d.keyCode)&&(c.sc_indicator="arrow",c.sc_indicator_dir=0,b.callingNewSlide(a,1)),("horizontal"==c.navigation.keyboard_direction&&37==d.keyCode||"vertical"==c.navigation.keyboard_direction&&38==d.keyCode)&&(c.sc_indicator="arrow",c.sc_indicator_dir=1,b.callingNewSlide(a,-1))})},i=function(a,c){if("on"===c.navigation.mouseScrollNavigation||"carousel"===c.navigation.mouseScrollNavigation){c.isIEEleven=!!navigator.userAgent.match(/Trident.*rv\:11\./),c.isSafari=!!navigator.userAgent.match(/safari/i),c.ischrome=!!navigator.userAgent.match(/chrome/i);var d=c.ischrome?-49:c.isIEEleven||c.isSafari?-9:navigator.userAgent.match(/mozilla/i)?-29:-49,e=c.ischrome?49:c.isIEEleven||c.isSafari?9:navigator.userAgent.match(/mozilla/i)?29:49;a.on("mousewheel DOMMouseScroll",function(f){var h=g(f.originalEvent),i=a.find(".tp-revslider-slidesli.active-revslide").index(),j=a.find(".tp-revslider-slidesli.processing-revslide").index(),k=-1!=i&&0==i||-1!=j&&0==j,l=-1!=i&&i==c.slideamount-1||1!=j&&j==c.slideamount-1,m=!0;"carousel"==c.navigation.mouseScrollNavigation&&(k=l=!1),-1==j?h.pixelYe&&(l||(c.sc_indicator="arrow","reverse"!==c.navigation.mouseScrollReverse&&(c.sc_indicator_dir=0,b.callingNewSlide(a,1)),m=!1),k||(c.sc_indicator="arrow","reverse"===c.navigation.mouseScrollReverse&&(c.sc_indicator_dir=1,b.callingNewSlide(a,-1)),m=!1)):m=!1;var n=c.c.offset().top-jQuery("body").scrollTop(),o=n+c.c.height();return"carousel"!=c.navigation.mouseScrollNavigation?("reverse"!==c.navigation.mouseScrollReverse&&(n>0&&h.pixelY>0||ojQuery(window).height()&&h.pixelY>0)&&(m=!0)):m=!1,0==m?(f.preventDefault(f),!1):void 0})}},j=function(a,b,d){return a=c?jQuery(d.target).closest("."+a).length||jQuery(d.srcElement).closest("."+a).length:jQuery(d.toElement).closest("."+a).length||jQuery(d.originalTarget).closest("."+a).length,!0===a||1===a?1:0},k=function(a,d,e){var f=d.carousel;jQuery(".bullet, .bullets, .tp-bullets, .tparrows").addClass("noSwipe"),f.Limit="endless";var h=(c||b.get_browser(),a),i="vertical"===d.navigation.thumbnails.direction||"vertical"===d.navigation.tabs.direction?"none":"vertical",k=d.navigation.touch.swipe_direction||"horizontal";i="swipebased"==e&&"vertical"==k?"none":e?"vertical":i,jQuery.fn.swipetp||(jQuery.fn.swipetp=jQuery.fn.swipe),jQuery.fn.swipetp.defaults&&jQuery.fn.swipetp.defaults.excludedElements||jQuery.fn.swipetp.defaults||(jQuery.fn.swipetp.defaults=new Object),jQuery.fn.swipetp.defaults.excludedElements="label, button, input, select, textarea, .noSwipe",h.swipetp({allowPageScroll:i,triggerOnTouchLeave:!0,treshold:d.navigation.touch.swipe_treshold,fingers:d.navigation.touch.swipe_min_touches,excludeElements:jQuery.fn.swipetp.defaults.excludedElements,swipeStatus:function(e,g,h,i,l,m,n){var o=j("rev_slider_wrapper",a,e),p=j("tp-thumbs",a,e),q=j("tp-tabs",a,e),r=jQuery(this).attr("class"),s=!!r.match(/tp-tabs|tp-thumb/gi);if("carousel"===d.sliderType&&(("move"===g||"end"===g||"cancel"==g)&&d.dragStartedOverSlider&&!d.dragStartedOverThumbs&&!d.dragStartedOverTabs||"start"===g&&o>0&&0===p&&0===q)){if(c&&("up"===h||"down"===h))return;switch(d.dragStartedOverSlider=!0,i=h&&h.match(/left|up/g)?Math.round(-1*i):i=Math.round(1*i),g){case"start":void 0!==f.positionanim&&(f.positionanim.kill(),f.slide_globaloffset="off"===f.infinity?f.slide_offset:b.simp(f.slide_offset,f.maxwidth)),f.overpull="none",f.wrap.addClass("dragged");break;case"move":if(d.c.find(".tp-withaction").addClass("tp-temporarydisabled"),f.slide_offset="off"===f.infinity?f.slide_globaloffset+i:b.simp(f.slide_globaloffset+i,f.maxwidth),"off"===f.infinity){var t="center"===f.horizontal_align?(f.wrapwidth/2-f.slide_width/2-f.slide_offset)/f.slide_width:(0-f.slide_offset)/f.slide_width;"none"!==f.overpull&&0!==f.overpull||!(t<0||t>d.slideamount-1)?t>=0&&t<=d.slideamount-1&&(t>=0&&i>f.overpull||t<=d.slideamount-1&&id.slideamount-1?f.slide_offset+(f.overpull-i)/1.1-Math.sqrt(Math.abs((f.overpull-i)/1.1)):f.slide_offset}b.organiseCarousel(d,h,!0,!0);break;case"end":case"cancel":f.slide_globaloffset=f.slide_offset,f.wrap.removeClass("dragged"),b.carouselToEvalPosition(d,h),d.dragStartedOverSlider=!1,d.dragStartedOverThumbs=!1,d.dragStartedOverTabs=!1,setTimeout(function(){d.c.find(".tp-withaction").removeClass("tp-temporarydisabled")},19)}}else{if(("move"!==g&&"end"!==g&&"cancel"!=g||d.dragStartedOverSlider||!d.dragStartedOverThumbs&&!d.dragStartedOverTabs)&&!("start"===g&&o>0&&(p>0||q>0))){if("end"==g&&!s){if(d.sc_indicator="arrow","horizontal"==k&&"left"==h||"vertical"==k&&"up"==h)return d.sc_indicator_dir=0,b.callingNewSlide(d.c,1),!1;if("horizontal"==k&&"right"==h||"vertical"==k&&"down"==h)return d.sc_indicator_dir=1,b.callingNewSlide(d.c,-1),!1}return d.dragStartedOverSlider=!1,d.dragStartedOverThumbs=!1,d.dragStartedOverTabs=!1,!0}p>0&&(d.dragStartedOverThumbs=!0),q>0&&(d.dragStartedOverTabs=!0);var u=d.dragStartedOverThumbs?".tp-thumbs":".tp-tabs",v=d.dragStartedOverThumbs?".tp-thumb-mask":".tp-tab-mask",w=d.dragStartedOverThumbs?".tp-thumbs-inner-wrapper":".tp-tabs-inner-wrapper",x=d.dragStartedOverThumbs?".tp-thumb":".tp-tab",y=d.dragStartedOverThumbs?d.navigation.thumbnails:d.navigation.tabs;i=h&&h.match(/left|up/g)?Math.round(-1*i):i=Math.round(1*i);var z=a.parent().find(v),A=z.find(w),B=y.direction,C="vertical"===B?A.height():A.width(),D="vertical"===B?z.height():z.width(),E="vertical"===B?z.find(x).first().outerHeight(!0)+y.space:z.find(x).first().outerWidth(!0)+y.space,F=void 0===A.data("offset")?0:parseInt(A.data("offset"),0),G=0;switch(g){case"start":a.parent().find(u).addClass("dragged"),F="vertical"===B?A.position().top:A.position().left,A.data("offset",F),A.data("tmmove")&&A.data("tmmove").pause();break;case"move":if(C<=D)return!1;G=F+i,G=G>0?"horizontal"===B?G-A.width()*(G/A.width()*G/A.width()):G-A.height()*(G/A.height()*G/A.height()):G;var H="vertical"===B?0-(A.height()-z.height()):0-(A.width()-z.width());G=G0?0:G,G=Math.abs(i)>E/10?i<=0?Math.floor(G/E)*E:Math.ceil(G/E)*E:i<0?Math.ceil(G/E)*E:Math.floor(G/E)*E,G="vertical"===B?G<0-(A.height()-z.height())?0-(A.height()-z.height()):G:G<0-(A.width()-z.width())?0-(A.width()-z.width()):G,G=G>0?0:G,"vertical"===B?punchgs.TweenLite.to(A,.5,{top:G+"px",ease:punchgs.Power3.easeOut}):punchgs.TweenLite.to(A,.5,{left:G+"px",ease:punchgs.Power3.easeOut}),G=G||("vertical"===B?A.position().top:A.position().left),A.data("offset",G),A.data("distance",i),setTimeout(function(){d.dragStartedOverSlider=!1,d.dragStartedOverThumbs=!1,d.dragStartedOverTabs=!1},100),a.parent().find(u).removeClass("dragged"),!1}}}})},l=function(a){a.hide_delay=jQuery.isNumeric(parseInt(a.hide_delay,0))?a.hide_delay/1e3:.2,a.hide_delay_mobile=jQuery.isNumeric(parseInt(a.hide_delay_mobile,0))?a.hide_delay_mobile/1e3:.2},m=function(a){return a&&a.enable},n=function(a){return a&&a.enable&&!0===a.hide_onleave&&(void 0===a.position||!a.position.match(/outer/g))},o=function(a,b){var d=a.parent();n(b.navigation.arrows)&&punchgs.TweenLite.delayedCall(c?b.navigation.arrows.hide_delay_mobile:b.navigation.arrows.hide_delay,p,[d.find(".tparrows"),b.navigation.arrows,"hide"]),n(b.navigation.bullets)&&punchgs.TweenLite.delayedCall(c?b.navigation.bullets.hide_delay_mobile:b.navigation.bullets.hide_delay,p,[d.find(".tp-bullets"),b.navigation.bullets,"hide"]),n(b.navigation.thumbnails)&&punchgs.TweenLite.delayedCall(c?b.navigation.thumbnails.hide_delay_mobile:b.navigation.thumbnails.hide_delay,p,[d.find(".tp-thumbs"),b.navigation.thumbnails,"hide"]),n(b.navigation.tabs)&&punchgs.TweenLite.delayedCall(c?b.navigation.tabs.hide_delay_mobile:b.navigation.tabs.hide_delay,p,[d.find(".tp-tabs"),b.navigation.tabs,"hide"])},p=function(a,b,c,d){switch(d=void 0===d?.5:d,c){case"show":punchgs.TweenLite.to(a,d,{autoAlpha:1,ease:punchgs.Power3.easeInOut,overwrite:"auto"});break;case"hide":punchgs.TweenLite.to(a,d,{autoAlpha:0,ease:punchgs.Power3.easeInOu,overwrite:"auto"})}},q=function(a,b,c){b.style=void 0===b.style?"":b.style,b.left.style=void 0===b.left.style?"":b.left.style,b.right.style=void 0===b.right.style?"":b.right.style,0===a.find(".tp-leftarrow.tparrows").length&&a.append('
    '+b.tmp+"
    "),0===a.find(".tp-rightarrow.tparrows").length&&a.append('
    '+b.tmp+"
    ");var d=a.find(".tp-leftarrow.tparrows"),e=a.find(".tp-rightarrow.tparrows");b.rtl?(d.click(function(){c.sc_indicator="arrow",c.sc_indicator_dir=0,a.revnext()}),e.click(function(){c.sc_indicator="arrow",c.sc_indicator_dir=1,a.revprev()})):(e.click(function(){c.sc_indicator="arrow",c.sc_indicator_dir=0,a.revnext()}),d.click(function(){c.sc_indicator="arrow",c.sc_indicator_dir=1,a.revprev()})),b.right.j=a.find(".tp-rightarrow.tparrows"),b.left.j=a.find(".tp-leftarrow.tparrows"),b.padding_top=parseInt(c.carousel.padding_top||0,0),b.padding_bottom=parseInt(c.carousel.padding_bottom||0,0),t(d,b.left,c),t(e,b.right,c),b.left.opt=c,b.right.opt=c,"outer-left"!=b.position&&"outer-right"!=b.position||(c.outernav=!0)},r=function(a,b,c){var d=a.outerHeight(!0),f=(a.outerWidth(!0),void 0==b.opt?0:0==c.conh?c.height:c.conh),g="layergrid"==b.container?"fullscreen"==c.sliderLayout?c.height/2-c.gridheight[c.curWinRange]*c.bh/2:"on"==c.autoHeight||void 0!=c.minHeight&&c.minHeight>0?f/2-c.gridheight[c.curWinRange]*c.bh/2:0:0,h="top"===b.v_align?{top:"0px",y:Math.round(b.v_offset+g)+"px"}:"center"===b.v_align?{top:"50%",y:Math.round(0-d/2+b.v_offset)+"px"}:{top:"100%",y:Math.round(0-(d+b.v_offset+g))+"px"};a.hasClass("outer-bottom")||punchgs.TweenLite.set(a,h)},s=function(a,b,c){var e=(a.outerHeight(!0),a.outerWidth(!0)),f="layergrid"==b.container?"carousel"===c.sliderType?0:c.width/2-c.gridwidth[c.curWinRange]*c.bw/2:0,g="left"===b.h_align?{left:"0px",x:Math.round(b.h_offset+f)+"px"}:"center"===b.h_align?{left:"50%",x:Math.round(0-e/2+b.h_offset)+"px"}:{left:"100%",x:Math.round(0-(e+b.h_offset+f))+"px"};punchgs.TweenLite.set(a,g)},t=function(a,b,c){var d=a.closest(".tp-simpleresponsive").length>0?a.closest(".tp-simpleresponsive"):a.closest(".tp-revslider-mainul").length>0?a.closest(".tp-revslider-mainul"):a.closest(".rev_slider_wrapper").length>0?a.closest(".rev_slider_wrapper"):a.parent().find(".tp-revslider-mainul"),e=d.width(),f=d.height();if(r(a,b,c),s(a,b,c),"outer-left"!==b.position||"fullwidth"!=b.sliderLayout&&"fullscreen"!=b.sliderLayout?"outer-right"!==b.position||"fullwidth"!=b.sliderLayout&&"fullscreen"!=b.sliderLayout||punchgs.TweenLite.set(a,{right:0-a.outerWidth()+"px",x:b.h_offset+"px"}):punchgs.TweenLite.set(a,{left:0-a.outerWidth()+"px",x:b.h_offset+"px"}),a.hasClass("tp-thumbs")||a.hasClass("tp-tabs")){var g=a.data("wr_padding"),h=a.data("maxw"),i=a.data("maxh"),j=a.hasClass("tp-thumbs")?a.find(".tp-thumb-mask"):a.find(".tp-tab-mask"),k=parseInt(b.padding_top||0,0),l=parseInt(b.padding_bottom||0,0);h>e&&"outer-left"!==b.position&&"outer-right"!==b.position?(punchgs.TweenLite.set(a,{left:"0px",x:0,maxWidth:e-2*g+"px"}),punchgs.TweenLite.set(j,{maxWidth:e-2*g+"px"})):(punchgs.TweenLite.set(a,{maxWidth:h+"px"}),punchgs.TweenLite.set(j,{maxWidth:h+"px"})),i+2*g>f&&"outer-bottom"!==b.position&&"outer-top"!==b.position?(punchgs.TweenLite.set(a,{top:"0px",y:0,maxHeight:k+l+(f-2*g)+"px"}),punchgs.TweenLite.set(j,{maxHeight:k+l+(f-2*g)+"px"})):(punchgs.TweenLite.set(a,{maxHeight:i+"px"}),punchgs.TweenLite.set(j,{maxHeight:i+"px"})),"outer-left"!==b.position&&"outer-right"!==b.position&&(k=0,l=0),!0===b.span&&"vertical"===b.direction?(punchgs.TweenLite.set(a,{maxHeight:k+l+(f-2*g)+"px",height:k+l+(f-2*g)+"px",top:0-k,y:0}),r(j,b,c)):!0===b.span&&"horizontal"===b.direction&&(punchgs.TweenLite.set(a,{maxWidth:"100%",width:e-2*g+"px",left:0,x:0}),s(j,b,c))}},u=function(a,b,c,d){0===a.find(".tp-bullets").length&&(b.style=void 0===b.style?"":b.style,a.append('
    '));var e=a.find(".tp-bullets"),f=c.data("index"),g=b.tmp;jQuery.each(d.thumbs[c.index()].params,function(a,b){g=g.replace(b.from,b.to)}),e.append('
    '+g+"
    ");var h=a.find(".justaddedbullet"),i=a.find(".tp-bullet").length,j=h.outerWidth()+parseInt(void 0===b.space?0:b.space,0),k=h.outerHeight()+parseInt(void 0===b.space?0:b.space,0);"vertical"===b.direction?(h.css({top:(i-1)*k+"px",left:"0px"}),e.css({height:(i-1)*k+h.outerHeight(),width:h.outerWidth()})):(h.css({left:(i-1)*j+"px",top:"0px"}),e.css({width:(i-1)*j+h.outerWidth(),height:h.outerHeight()})),h.find(".tp-bullet-image").css({backgroundImage:"url("+d.thumbs[c.index()].src+")"}),h.data("liref",f),h.click(function(){d.sc_indicator="bullet",a.revcallslidewithid(f),a.find(".tp-bullet").removeClass("selected"),jQuery(this).addClass("selected")}),h.removeClass("justaddedbullet"),b.padding_top=parseInt(d.carousel.padding_top||0,0),b.padding_bottom=parseInt(d.carousel.padding_bottom||0,0),b.opt=d,"outer-left"!=b.position&&"outer-right"!=b.position||(d.outernav=!0),e.addClass("nav-pos-hor-"+b.h_align),e.addClass("nav-pos-ver-"+b.v_align),e.addClass("nav-dir-"+b.direction),t(e,b,d)},w=function(a,b,c,d,e){var f="tp-thumb"===d?".tp-thumbs":".tp-tabs",g="tp-thumb"===d?".tp-thumb-mask":".tp-tab-mask",h="tp-thumb"===d?".tp-thumbs-inner-wrapper":".tp-tabs-inner-wrapper",i="tp-thumb"===d?".tp-thumb":".tp-tab",j="tp-thumb"===d?".tp-thumb-image":".tp-tab-image";if(b.visibleAmount=b.visibleAmount>e.slideamount?e.slideamount:b.visibleAmount,b.sliderLayout=e.sliderLayout,0===a.parent().find(f).length){b.style=void 0===b.style?"":b.style;var k=!0===b.span?"tp-span-wrapper":"",l='
    ';"outer-top"===b.position?a.parent().prepend(l):"outer-bottom"===b.position?a.after(l):a.append(l),b.padding_top=parseInt(e.carousel.padding_top||0,0),b.padding_bottom=parseInt(e.carousel.padding_bottom||0,0),"outer-left"!=b.position&&"outer-right"!=b.position||(e.outernav=!0)}var m=c.data("index"),n=a.parent().find(f),o=n.find(g),p=o.find(h),q="horizontal"===b.direction?b.width*b.visibleAmount+b.space*(b.visibleAmount-1):b.width,r="horizontal"===b.direction?b.height:b.height*b.visibleAmount+b.space*(b.visibleAmount-1),s=b.tmp;jQuery.each(e.thumbs[c.index()].params,function(a,b){s=s.replace(b.from,b.to)}),p.append('
    '+s+"
    ");var u=n.find(".justaddedthumb"),v=n.find(i).length,w=u.outerWidth()+parseInt(void 0===b.space?0:b.space,0),x=u.outerHeight()+parseInt(void 0===b.space?0:b.space,0);u.find(j).css({backgroundImage:"url("+e.thumbs[c.index()].src+")"}),"vertical"===b.direction?(u.css({top:(v-1)*x+"px",left:"0px"}),p.css({height:(v-1)*x+u.outerHeight(),width:u.outerWidth()})):(u.css({left:(v-1)*w+"px",top:"0px"}),p.css({width:(v-1)*w+u.outerWidth(),height:u.outerHeight()})),n.data("maxw",q),n.data("maxh",r),n.data("wr_padding",b.wrapper_padding);var y="outer-top"===b.position||"outer-bottom"===b.position?"relative":"absolute";"outer-top"!==b.position&&"outer-bottom"!==b.position||b.h_align;o.css({maxWidth:q+"px",maxHeight:r+"px",overflow:"hidden",position:"relative"}),n.css({maxWidth:q+"px",maxHeight:r+"px",overflow:"visible",position:y,background:b.wrapper_color,padding:b.wrapper_padding+"px",boxSizing:"contet-box"}),u.click(function(){e.sc_indicator="bullet";var b=a.parent().find(h).data("distance");b=void 0===b?0:b,Math.abs(b)<10&&(a.revcallslidewithid(m),a.parent().find(f).removeClass("selected"),jQuery(this).addClass("selected"))}),u.removeClass("justaddedthumb"),b.opt=e,n.addClass("nav-pos-hor-"+b.h_align),n.addClass("nav-pos-ver-"+b.v_align),n.addClass("nav-dir-"+b.direction),t(n,b,e)},x=function(a){var b=a.c.parent().find(".outer-top"),c=a.c.parent().find(".outer-bottom");a.top_outer=b.hasClass("tp-forcenotvisible")?0:b.outerHeight()||0,a.bottom_outer=c.hasClass("tp-forcenotvisible")?0:c.outerHeight()||0},y=function(a,b,c,d){b>c||c>d?a.addClass("tp-forcenotvisible"):a.removeClass("tp-forcenotvisible")}}(jQuery); \ No newline at end of file diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/js/extensions/revolution.extension.parallax.min.js b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/js/extensions/revolution.extension.parallax.min.js new file mode 100644 index 00000000..136394d8 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/js/extensions/revolution.extension.parallax.min.js @@ -0,0 +1,7 @@ +/******************************************** + * REVOLUTION 5.4.8 EXTENSION - PARALLAX + * @version: 2.2.3 (17.05.2017) + * @requires jquery.themepunch.revolution.js + * @author ThemePunch +*********************************************/ +!function(a){"use strict";function e(a,b){a.lastscrolltop=b}var b=jQuery.fn.revolution,c=b.is_mobile(),d={alias:"Parallax Min JS",name:"revolution.extensions.parallax.min.js",min_core:"5.4.5",version:"2.2.3"};jQuery.extend(!0,b,{checkForParallax:function(a,e){function g(a){if("3D"==f.type||"3d"==f.type){a.find(".slotholder").wrapAll('
    '),a.find(".tp-parallax-wrap").wrapAll('
    '),a.find(".rs-parallaxlevel-tobggroup").closest(".tp-parallax-wrap").wrapAll('
    ');var b=a.find(".dddwrapper"),c=a.find(".dddwrapper-layer");a.find(".dddwrapper-layertobggroup").appendTo(b),"carousel"==e.sliderType&&("on"==f.ddd_shadow&&b.addClass("dddwrappershadow"),punchgs.TweenLite.set(b,{borderRadius:e.carousel.border_radius})),punchgs.TweenLite.set(a,{overflow:"visible",transformStyle:"preserve-3d",perspective:1600}),punchgs.TweenLite.set(b,{force3D:"auto",transformOrigin:"50% 50%"}),punchgs.TweenLite.set(c,{force3D:"auto",transformOrigin:"50% 50%",zIndex:5}),punchgs.TweenLite.set(e.ul,{transformStyle:"preserve-3d",transformPerspective:1600})}}if("stop"===b.compare_version(d).check)return!1;var f=e.parallax;if(!f.done){if(f.done=!0,c&&"on"==f.disable_onmobile)return!1;"3D"!=f.type&&"3d"!=f.type||(punchgs.TweenLite.set(e.c,{overflow:f.ddd_overflow}),punchgs.TweenLite.set(e.ul,{overflow:f.ddd_overflow}),"carousel"!=e.sliderType&&"on"==f.ddd_shadow&&(e.c.prepend('
    '),punchgs.TweenLite.set(e.c.find(".dddwrappershadow"),{force3D:"auto",transformPerspective:1600,transformOrigin:"50% 50%",width:"100%",height:"100%",position:"absolute",top:0,left:0,zIndex:0}))),e.li.each(function(){g(jQuery(this))}),("3D"==f.type||"3d"==f.type)&&e.c.find(".tp-static-layers").length>0&&(punchgs.TweenLite.set(e.c.find(".tp-static-layers"),{top:0,left:0,width:"100%",height:"100%"}),g(e.c.find(".tp-static-layers"))),f.pcontainers=new Array,f.pcontainer_depths=new Array,f.bgcontainers=new Array,f.bgcontainer_depths=new Array,e.c.find(".tp-revslider-slidesli .slotholder, .tp-revslider-slidesli .rs-background-video-layer").each(function(){var a=jQuery(this),b=a.data("bgparallax")||e.parallax.bgparallax;void 0!==(b="on"==b?1:b)&&"off"!==b&&(f.bgcontainers.push(a),f.bgcontainer_depths.push(e.parallax.levels[parseInt(b,0)-1]/100))});for(var h=1;h<=f.levels.length;h++)e.c.find(".rs-parallaxlevel-"+h).each(function(){var a=jQuery(this),b=a.closest(".tp-parallax-wrap");b.data("parallaxlevel",f.levels[h-1]),b.addClass("tp-parallax-container"),f.pcontainers.push(b),f.pcontainer_depths.push(f.levels[h-1])});"mouse"!=f.type&&"scroll+mouse"!=f.type&&"mouse+scroll"!=f.type&&"3D"!=f.type&&"3d"!=f.type||(a.mouseenter(function(b){var c=a.find(".active-revslide"),d=a.offset().top,e=a.offset().left,f=b.pageX-e,g=b.pageY-d;c.data("enterx",f),c.data("entery",g)}),a.on("mousemove.hoverdir, mouseleave.hoverdir, trigger3dpath",function(b,c){var d=c&&c.li?c.li:a.find(".active-revslide");if("enterpoint"==f.origo){var g=a.offset().top,h=a.offset().left;void 0==d.data("enterx")&&d.data("enterx",b.pageX-h),void 0==d.data("entery")&&d.data("entery",b.pageY-g);var i=d.data("enterx")||b.pageX-h,j=d.data("entery")||b.pageY-g,k=i-(b.pageX-h),l=j-(b.pageY-g),m=f.speed/1e3||.4}else var g=a.offset().top,h=a.offset().left,k=e.conw/2-(b.pageX-h),l=e.conh/2-(b.pageY-g),m=f.speed/1e3||3;"mouseleave"==b.type&&(k=f.ddd_lasth||0,l=f.ddd_lastv||0,m=1.5);for(var n=0;njQuery(window).height()){var h=d;d=c,c=h}var i=a.width(),j=a.height(),k=360/i*d,l=180/j*c,m=f.speed/1e3||3,n=[];if(g.find(".tp-parallax-container").each(function(a){n.push(jQuery(this))}),a.find(".tp-static-layers .tp-parallax-container").each(function(){n.push(jQuery(this))}),jQuery.each(n,function(){var a=jQuery(this),b=parseInt(a.data("parallaxlevel"),0),c=b/100,d=k*c*2,e=l*c*4;punchgs.TweenLite.to(a,m,{force3D:"auto",x:d,y:e,ease:punchgs.Power3.easeOut,overwrite:"all"})}),"3D"==f.type||"3d"==f.type){var o=".tp-revslider-slidesli .dddwrapper, .dddwrappershadow, .tp-revslider-slidesli .dddwrapper-layer, .tp-static-layers .dddwrapper-layer";"carousel"===e.sliderType&&(o=".tp-revslider-slidesli .dddwrapper, .tp-revslider-slidesli .dddwrapper-layer, .tp-static-layers .dddwrapper-layer"),e.c.find(o).each(function(){var a=jQuery(this),c=f.levels[f.levels.length-1]/200,d=k*c,g=l*c*3,h=0==e.conw?0:Math.round(k/e.conw*c*500)||0,i=0==e.conh?0:Math.round(l/e.conh*c*700)||0,j=a.closest("li"),n=0,o=!1;a.hasClass("dddwrapper-layer")&&(n=f.ddd_z_correction||65,o=!0),a.hasClass("dddwrapper-layer")&&(d=0,g=0),j.hasClass("active-revslide")||"carousel"!=e.sliderType?"on"!=f.ddd_bgfreeze||o?punchgs.TweenLite.to(a,m,{rotationX:i,rotationY:-h,x:d,z:n,y:g,ease:punchgs.Power3.easeOut,overwrite:"all"}):punchgs.TweenLite.to(a,.5,{force3D:"auto",rotationY:0,rotationX:0,z:0,ease:punchgs.Power3.easeOut,overwrite:"all"}):punchgs.TweenLite.to(a,.5,{force3D:"auto",rotationY:0,z:0,x:0,y:0,rotationX:0,ease:punchgs.Power3.easeOut,overwrite:"all"}),"mouseleave"==b.type&&punchgs.TweenLite.to(jQuery(this),3.8,{z:0,ease:punchgs.Power3.easeOut})})}}));var i=e.scrolleffect;if(i.bgs=new Array,i.on){if("on"===i.on_slidebg)for(var h=0;ha.lastwindowheight?g.top/g.height:g.bottom>a.lastwindowheight?(g.bottom-a.lastwindowheight)/g.height:0;if(a.scrollproc=j,b.callBackHandling&&b.callBackHandling(a,"parallax","start"),h.enable){var k=1-Math.abs(j);k=k<0?0:k,jQuery.isNumeric(h.visible_area)||-1!==h.visible_area.indexOf("%")&&(h.visible_area=parseInt(h.visible_area)/100),1-h.visible_area<=k?a.inviewport||(a.inviewport=!0,b.enterInViewPort(a)):a.inviewport&&(a.inviewport=!1,b.leaveViewPort(a))}if(c&&"on"==i.disable_onmobile)return!1;if("3d"!=i.type&&"3D"!=i.type){if(("scroll"==i.type||"scroll+mouse"==i.type||"mouse+scroll"==i.type)&&i.pcontainers)for(var l=0;l0){var m=i.pcontainers[l],n=i.pcontainer_depths[l]/100,o=Math.round(j*(-n*a.conh)*10)/10||0,p=void 0!==f?f:i.speedls/1e3||0;m.data("parallaxoffset",o),punchgs.TweenLite.to(m,p,{overwrite:"auto",force3D:"auto",y:o})}if(i.bgcontainers)for(var l=0;l=0&&(u=1),"bottom"==s.direction&&j<=0&&(u=1),u=u>1?1:u<0?0:u,"on"===s.fade&&(v.opacity=u),"on"===s.scale){var w=u;v.scale=1-w+1}if("on"===s.blur){var x=(1-u)*s.maxblur;v["-webkit-filter"]="blur("+x+"px)",v.filter="blur("+x+"px)"}if("on"===s.grayscale){var y=100*(1-u),z="grayscale("+y+"%)";v["-webkit-filter"]=void 0===v["-webkit-filter"]?z:v["-webkit-filter"]+" "+z,v.filter=void 0===v.filter?z:v.filter+" "+z}punchgs.TweenLite.set(s.layers,v)}if(!1!==s.bgs){var u=1-t*s.multiplicator,v={backfaceVisibility:"hidden",force3D:"true"};if("top"==s.direction&&j>=0&&(u=1),"bottom"==s.direction&&j<=0&&(u=1),u=u>1?1:u<0?0:u,"on"===s.fade&&(v.opacity=u),"on"===s.scale){var w=u;punchgs.TweenLite.set(jQuery(".tp-kbimg-wrap"),{transformOrigin:"50% 50%",scale:w,force3D:!0})}if("on"===s.blur){var x=(1-u)*s.maxblur;v["-webkit-filter"]="blur("+x+"px)",v.filter="blur("+x+"px)"}if("on"===s.grayscale){var y=100*(1-u),z="grayscale("+y+"%)";v["-webkit-filter"]=void 0===v["-webkit-filter"]?z:v["-webkit-filter"]+" "+z,v.filter=void 0===v.filter?z:v.filter+" "+z}punchgs.TweenLite.set(s.bgs,v)}}b.callBackHandling&&b.callBackHandling(a,"parallax","end")}})}(jQuery); \ No newline at end of file diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/js/extensions/revolution.extension.slideanims.min.js b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/js/extensions/revolution.extension.slideanims.min.js new file mode 100644 index 00000000..13987e96 --- /dev/null +++ b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/revslider/js/extensions/revolution.extension.slideanims.min.js @@ -0,0 +1,7 @@ +/************************************************ + * REVOLUTION 5.4.8 EXTENSION - SLIDE ANIMATIONS + * @version: 1.8 (17.05.2017) + * @requires jquery.themepunch.revolution.js + * @author ThemePunch +************************************************/ +!function(t){"use strict";var L=jQuery.fn.revolution,l={alias:"SlideAnimations Min JS",name:"revolution.extensions.slideanims.min.js",min_core:"5.4.5",version:"1.8"};jQuery.extend(!0,L,{animateSlide:function(t,e,o,a,i,n,r,s){return"stop"===L.compare_version(l).check?s:d(t,e,o,a,i,n,r,s)}});var ct=function(t,e,o,a){var i=t,n=i.find(".defaultimg"),r=n.data("mediafilter"),s=i.data("zoomstart"),l=i.data("rotationstart");null!=n.data("currotate")&&(l=n.data("currotate")),null!=n.data("curscale")&&"box"==a?s=100*n.data("curscale"):null!=n.data("curscale")&&(s=n.data("curscale")),L.slotSize(n,e);var d=n.attr("src"),h=n.data("bgcolor"),f=e.width,c=e.height,u=n.data("fxof");void 0===h&&(h=n.css("backgroundColor")),"on"==e.autoHeight&&(c=e.c.height()),null==u&&(u=0);var p=0,g=n.data("bgfit"),w=n.data("bgrepeat"),m=n.data("bgposition");null==g&&(g="cover"),null==w&&(w="no-repeat"),null==m&&(m="center center");var v="";switch(v=void 0!==h&&0<=h.indexOf("gradient")?"background:"+h:"background-color:"+h+";background-image:url("+d+");background-repeat:"+w+";background-size:"+g+";background-position:"+m,a){case"box":for(var y=0,x=0,T=0;T
    '),x+=e.sloth,null!=s&&null!=l&&punchgs.TweenLite.set(i.find(".slot").last(),{rotationZ:l});y+=e.slotw}break;case"vertical":case"horizontal":if("horizontal"==a){if(!o)p=0-e.slotw;for(z=0;z
    '),null!=s&&null!=l&&punchgs.TweenLite.set(i.find(".slot").last(),{rotationZ:l})}else{if(!o)p=0-e.sloth;for(z=0;z
    '),null!=s&&null!=l&&punchgs.TweenLite.set(i.find(".slot").last(),{rotationZ:l})}}};var ut=function(t,e){return null==e||jQuery.isNumeric(t)?t:null==t?t:t.split(",")[e]},d=function(a,t,e,o,i,n,r,s){var l=e[0].opt,d=i.index(),h=o.index()l.delay?l.delay:g,g+=c[4],l.slots=ut(o.data("slotamount"),p),l.slots=null==l.slots||"default"==l.slots?c[12]:"random"==l.slots?Math.round(12*Math.random()+4):l.slots,l.slots=l.slots<1?"boxslide"==t?Math.round(6*Math.random()+3):"flyin"==t?Math.round(4*Math.random()+1):l.slots:l.slots,l.slots=(4==a||5==a||6==a)&&l.slots<3?3:l.slots,l.slots=0!=c[3]?Math.min(l.slots,c[3]):l.slots,l.slots=9==a?l.width/l.slots:10==a?l.height/l.slots:l.slots,l.rotate=ut(o.data("rotate"),p),l.rotate=null==l.rotate||"default"==l.rotate?0:999==l.rotate||"random"==l.rotate?Math.round(360*Math.random()):l.rotate,l.rotate=l.ie||l.ie9?0:l.rotate,11!=a&&(null!=c[7]&&ct(r,l,c[7],c[5]),null!=c[6]&&ct(n,l,c[6],c[5])),s.add(punchgs.TweenLite.set(n.find(".defaultvid"),{y:0,x:0,top:0,left:0,scale:1}),0),s.add(punchgs.TweenLite.set(r.find(".defaultvid"),{y:0,x:0,top:0,left:0,scale:1}),0),s.add(punchgs.TweenLite.set(n.find(".defaultvid"),{y:"+0%",x:"+0%"}),0),s.add(punchgs.TweenLite.set(r.find(".defaultvid"),{y:"+0%",x:"+0%"}),0),s.add(punchgs.TweenLite.set(n,{autoAlpha:1,y:"+0%",x:"+0%"}),0),s.add(punchgs.TweenLite.set(r,{autoAlpha:1,y:"+0%",x:"+0%"}),0),s.add(punchgs.TweenLite.set(n.parent(),{backgroundColor:"transparent"}),0),s.add(punchgs.TweenLite.set(r.parent(),{backgroundColor:"transparent"}),0);var w=ut(o.data("easein"),p),m=ut(o.data("easeout"),p);if(w="default"===w?c[9]||punchgs.Power2.easeInOut:w||c[9]||punchgs.Power2.easeInOut,m="default"===m?c[10]||punchgs.Power2.easeInOut:m||c[10]||punchgs.Power2.easeInOut,0==a){var v=Math.ceil(l.height/l.sloth),y=0;n.find(".slotslide").each(function(t){var e=jQuery(this);(y+=1)==v&&(y=0),s.add(punchgs.TweenLite.from(e,g/600,{opacity:0,top:0-l.sloth,left:0-l.slotw,rotation:l.rotate,force3D:"auto",ease:w}),(15*t+30*y)/1500)})}if(1==a){var x;n.find(".slotslide").each(function(t){var e=jQuery(this),o=Math.random()*g+300,a=500*Math.random()+200;xl.delay&&(g=l.delay);T=new punchgs.TimelineLite;setTimeout(function(){r.find(".defaultimg").css({opacity:0})},100),r.find(".slotslide").each(function(){var t=jQuery(this).find("div");T.add(punchgs.TweenLite.to(t,g/1e3,{left:0-l.slotw/2+"px",top:0-l.height/2+"px",width:2*l.slotw+"px",height:2*l.height+"px",opacity:0,rotation:l.rotate,force3D:"auto",ease:w}),0),s.add(T,0)}),n.find(".slotslide").each(function(t){var e=jQuery(this).find("div");T.add(punchgs.TweenLite.fromTo(e,g/1e3,{left:0,top:0,opacity:0,transformPerspective:600},{left:0-t*l.slotw+"px",ease:m,force3D:"auto",top:"0px",width:l.width,height:l.height,opacity:1,rotation:0,delay:.1}),0),s.add(T,0)})}if(8==a){(g*=3)>l.delay&&(g=l.delay);T=new punchgs.TimelineLite;r.find(".slotslide").each(function(){var t=jQuery(this).find("div");T.add(punchgs.TweenLite.to(t,g/1e3,{left:0-l.width/2+"px",top:0-l.sloth/2+"px",width:2*l.width+"px",height:2*l.sloth+"px",force3D:"auto",ease:w,opacity:0,rotation:l.rotate}),0),s.add(T,0)}),n.find(".slotslide").each(function(t){var e=jQuery(this).find("div");T.add(punchgs.TweenLite.fromTo(e,g/1e3,{left:0,top:0,opacity:0,force3D:"auto"},{left:"0px",top:0-t*l.sloth+"px",width:n.find(".defaultimg").data("neww")+"px",height:n.find(".defaultimg").data("newh")+"px",opacity:1,ease:m,rotation:0}),0),s.add(T,0)})}if(9==a||10==a){n.find(".slotslide").each(function(t){var e=jQuery(this);0,s.add(punchgs.TweenLite.fromTo(e,g/2e3,{autoAlpha:0,force3D:"auto",transformPerspective:600},{autoAlpha:1,ease:w,delay:t*l.slots/100/2e3}),0)})}if(27==a||28==a||29==a||30==a){var L=n.find(".slot"),b=27==a||29==a?"-100%":"+100%",A=27==a||29==a?"+100%":"-100%",D=27==a||29==a?"-80%":"80%",j=27==a||29==a?"+80%":"-80%",Q=27==a||29==a?"+10%":"-10%",M={overwrite:"all"},P={autoAlpha:0,zIndex:1,force3D:"auto",ease:w},k={position:"inherit",autoAlpha:0,overwrite:"all",zIndex:1},O={autoAlpha:1,force3D:"auto",ease:m},I={overwrite:"all",zIndex:2,opacity:1,autoAlpha:1},X={autoAlpha:1,force3D:"auto",overwrite:"all",ease:w},Y={overwrite:"all",zIndex:2,autoAlpha:1},S={autoAlpha:1,force3D:"auto",ease:w},_=1==(27==a||28==a?1:2)?"y":"x";M[_]="0px",P[_]=b,k[_]=Q,O[_]="0%",I[_]=A,X[_]=b,Y[_]=D,S[_]=j,L.append(''),s.add(punchgs.TweenLite.fromTo(r,g/1e3,M,P),0),s.add(punchgs.TweenLite.fromTo(n.find(".defaultimg"),g/2e3,k,O),g/2e3),s.add(punchgs.TweenLite.fromTo(L,g/1e3,I,X),0),s.add(punchgs.TweenLite.fromTo(L.find(".slotslide div"),g/1e3,Y,S),0)}if(31==a||32==a||33==a||34==a){g=6e3,w=punchgs.Power3.easeInOut;var C=g/1e3;mas=C-C/5,_nt=a,fy=31==_nt?"+100%":32==_nt?"-100%":"0%",fx=33==_nt?"+100%":34==_nt?"-100%":"0%",ty=31==_nt?"-100%":32==_nt?"+100%":"0%",tx=33==_nt?"-100%":34==_nt?"+100%":"0%",s.add(punchgs.TweenLite.fromTo(r,C-.2*C,{y:0,x:0},{y:ty,x:tx,ease:m}),.2*C),s.add(punchgs.TweenLite.fromTo(n,C,{y:fy,x:fx},{y:"0%",x:"0%",ease:w}),0),n.find(".slot").remove(),n.find(".defaultimg").clone().appendTo(n).addClass("slot"),function(t,f,c,e,u){var o=t.find(".slot"),p=[2,1.2,.9,.7,.55,.42],g=t.width(),w=t.height();o.wrap('
    ');for(var a=0;a<6;a++)o.parent().clone(!1).appendTo(nextsh);t.find(".slot-circle-wrapper").each(function(t){if(t<6){var e=jQuery(this),o=e.find(".slot"),a=wl.delay&&(g=l.delay),setTimeout(function(){punchgs.TweenLite.set(r.find(".defaultimg"),{autoAlpha:0})},100);var J=l.width,N=l.height,R=n.find(".slotslide, .defaultvid"),q=0,B=0,E=1,F=1,G=1,K=g/1e3,U=K;"fullwidth"!=l.sliderLayout&&"fullscreen"!=l.sliderLayout||(J=R.width(),N=R.height()),12==a?q=J:15==a?q=0-J:13==a?B=N:14==a&&(B=0-N),1==u&&(E=0),2==u&&(E=0),3==u&&(K=g/1300),4!=u&&5!=u||(F=.6),6==u&&(F=1.4),5!=u&&6!=u||(G=1.4,B=q=N=J=E=0),6==u&&(G=.6);7==u&&(N=J=0);var W=n.find(".slotslide"),$=r.find(".slotslide, .defaultvid");if(s.add(punchgs.TweenLite.set(i,{zIndex:15}),0),s.add(punchgs.TweenLite.set(o,{zIndex:20}),0),8==u?(s.add(punchgs.TweenLite.set(i,{zIndex:20}),0),s.add(punchgs.TweenLite.set(o,{zIndex:15}),0),s.add(punchgs.TweenLite.set(W,{left:0,top:0,scale:1,opacity:1,rotation:0,ease:w,force3D:"auto"}),0)):s.add(punchgs.TweenLite.from(W,K,{left:q,top:B,scale:G,opacity:E,rotation:l.rotate,ease:w,force3D:"auto"}),0),4!=u&&5!=u||(N=J=0),1!=u)switch(a){case 12:s.add(punchgs.TweenLite.to($,U,{left:0-J+"px",force3D:"auto",scale:F,opacity:E,rotation:l.rotate,ease:m}),0);break;case 15:s.add(punchgs.TweenLite.to($,U,{left:J+"px",force3D:"auto",scale:F,opacity:E,rotation:l.rotate,ease:m}),0);break;case 13:s.add(punchgs.TweenLite.to($,U,{top:0-N+"px",force3D:"auto",scale:F,opacity:E,rotation:l.rotate,ease:m}),0);break;case 14:s.add(punchgs.TweenLite.to($,U,{top:N+"px",force3D:"auto",scale:F,opacity:E,rotation:l.rotate,ease:m}),0)}}if(16==a){T=new punchgs.TimelineLite;s.add(punchgs.TweenLite.set(i,{position:"absolute","z-index":20}),0),s.add(punchgs.TweenLite.set(o,{position:"absolute","z-index":15}),0),i.wrapInner('
    '),i.find(".tp-half-one").clone(!0).appendTo(i).addClass("tp-half-two"),i.find(".tp-half-two").removeClass("tp-half-one");J=l.width,N=l.height;"on"==l.autoHeight&&(N=e.height()),i.find(".tp-half-one .defaultimg").wrap('
    '),i.find(".tp-half-two .defaultimg").wrap('
    '),i.find(".tp-half-two .defaultimg").css({position:"absolute",top:"-50%"}),i.find(".tp-half-two .tp-caption").wrapAll('
    '),s.add(punchgs.TweenLite.set(i.find(".tp-half-two"),{width:J,height:N,overflow:"hidden",zIndex:15,position:"absolute",top:N/2,left:"0px",transformPerspective:600,transformOrigin:"center bottom"}),0),s.add(punchgs.TweenLite.set(i.find(".tp-half-one"),{width:J,height:N/2,overflow:"visible",zIndex:10,position:"absolute",top:"0px",left:"0px",transformPerspective:600,transformOrigin:"center top"}),0);i.find(".defaultimg");var tt=Math.round(20*Math.random()-10),et=Math.round(20*Math.random()-10),ot=Math.round(20*Math.random()-10),at=.4*Math.random()-.2,it=.4*Math.random()-.2,nt=1*Math.random()+1,rt=1*Math.random()+1,st=.3*Math.random()+.3;s.add(punchgs.TweenLite.set(i.find(".tp-half-one"),{overflow:"hidden"}),0),s.add(punchgs.TweenLite.fromTo(i.find(".tp-half-one"),g/800,{width:J,height:N/2,position:"absolute",top:"0px",left:"0px",force3D:"auto",transformOrigin:"center top"},{scale:nt,rotation:tt,y:0-N-N/4,autoAlpha:0,ease:w}),0),s.add(punchgs.TweenLite.fromTo(i.find(".tp-half-two"),g/800,{width:J,height:N,overflow:"hidden",position:"absolute",top:N/2,left:"0px",force3D:"auto",transformOrigin:"center bottom"},{scale:rt,rotation:et,y:N+N/4,ease:w,autoAlpha:0,onComplete:function(){punchgs.TweenLite.set(i,{position:"absolute","z-index":15}),punchgs.TweenLite.set(o,{position:"absolute","z-index":20}),0a.vd?punchgs.TweenLite.set(a.ifr,{height:d+"%",width:"100%",top:-(d-100)/2+"%",left:"0px",position:"absolute"}):punchgs.TweenLite.set(a.ifr,{width:n+"%",height:"100%",left:-(n-100)/2+"%",top:"0px",position:"absolute"}),a.ifr.hasClass("resizelistener")||(a.ifr.addClass("resizelistener"),jQuery(window).resize(function(){I.prepareCoveredVideo(e,t),clearTimeout(a.ifr.data("resizelistener")),a.ifr.data("resizelistener",setTimeout(function(){I.prepareCoveredVideo(e,t)},90))}))}},checkVideoApis:function(e,t,a){location.protocol;if((null!=e.data("ytid")||0';"auto"==l&&(o.mediapreload=!0),"video"===f?(null!=u&&"firefox"==I.get_browser().toLowerCase()&&(w=w+''),null!=s&&(w=w+''),null!=p&&(w=w+'')):"audio"===f&&(null!=s&&(w=w+''),null!=p&&(w=w+'')),w=w+"";var T="";"true"!==v&&!0!==v||(T='
    '),"controls"==c&&(w=w+'
    '+T+"
    "),i.data("videomarkup",w),i.append(w),(_&&1==i.data("disablevideoonmobile")||I.isIE(8))&&i.find(f).remove(),i.find(f).each(function(e){var t,a=jQuery(this);a.parent().hasClass("html5vid")||a.wrap('
    '),1!=a.parent().data("metaloaded")&&A(this,"loadedmetadata",(Q(t=i,o),void I.resetVideo(t,o)))});break;case"youtube":m="https","none"==c&&-1==(d=d.replace("controls=1","controls=0")).toLowerCase().indexOf("controls")&&(d+="&controls=0"),(!0===a.videoinline||"true"===a.videoinline||1===a.videoinline||i.hasClass("rs-background-video-layer")||"on"===i.data("autoplay"))&&(d+="&playsinline=1");var k=j(i.data("videostartat")),x=j(i.data("videoendat"));-1!=k&&(d=d+"&start="+k),-1!=x&&(d=d+"&end="+x);var V=d.split("origin="+m+"://"),L="";1');break;case"vimeo":m="https",i.data("videomarkup",'')}var P=_&&"on"==i.data("noposteronmobile");if(null!=a.videoposter&&2'),0==i.find("iframe").length&&i.find(".tp-videoposter").click(function(){if(I.playVideo(i,o),_){if(1==i.data("disablevideoonmobile"))return!1;punchgs.TweenLite.to(i.find(".tp-videoposter"),.3,{autoAlpha:0,force3D:"auto",ease:punchgs.Power3.easeInOut}),punchgs.TweenLite.to(i.find("iframe"),.3,{autoAlpha:1,display:"block",ease:punchgs.Power3.easeInOut})}});else{if(_&&1==i.data("disablevideoonmobile"))return!1;0!=i.find("iframe").length||"youtube"!=y&&"vimeo"!=y||(i.removeData("vimeoplayer"),i.append(i.data("videomarkup")),O(i,o,!1))}"none"!=i.data("dottedoverlay")&&null!=i.data("dottedoverlay")&&1!=i.find(".tp-dottedoverlay").length&&i.append('
    '),i.addClass("HasListener"),1==i.data("bgvideo")&&(i.data("ytid")?punchgs.TweenLite.set(i.find("iframe"),{opacity:0}):punchgs.TweenLite.set(i.find("video, iframe"),{autoAlpha:0}))}});var A=function(e,t,a){e.addEventListener?e.addEventListener(t,a,{capture:!1,passive:!0}):e.attachEvent(t,a,{capture:!1,passive:!0})},b=function(e,t,a){var i={};return i.video=e,i.videotype=t,i.settings=a,i},w=function(e,t){if(1==t.data("bgvideo")||1==t.data("forcecover")){1===t.data("forcecover")&&t.removeClass("fullscreenvideo").addClass("coverscreenvideo");var a=t.data("aspectratio");void 0===a&&a.split(":").length<=1&&t.data("aspectratio","16:9"),I.prepareCoveredVideo(e,t)}},O=function(r,o,e){var l=r.data(),t=r.find("iframe"),a="iframe"+Math.round(1e5*Math.random()+1),d=l.videoloop,n="loopandnoslidestop"!=d;if(d="loop"==d||"loopandnoslidestop"==d,w(o,r),t.attr("id",a),e&&r.data("startvideonow",!0),1!==r.data("videolistenerexist"))switch(l.videotype){case"youtube":var s=new YT.Player(a,{events:{onStateChange:function(e){var t=r.closest(".tp-simpleresponsive"),a=(l.videorate,r.data("videostart"),k());if(e.data==YT.PlayerState.PLAYING)punchgs.TweenLite.to(r.find(".tp-videoposter"),.3,{autoAlpha:0,force3D:"auto",ease:punchgs.Power3.easeInOut}),punchgs.TweenLite.to(r.find("iframe"),.3,{autoAlpha:1,display:"block",ease:punchgs.Power3.easeInOut}),"mute"==r.data("volume")||I.lastToggleState(r.data("videomutetoggledby"))||!0===o.globalmute?s.mute():(s.unMute(),s.setVolume(parseInt(r.data("volume"),0)||75)),o.videoplaying=!0,x(r,o),n?o.c.trigger("stoptimer"):o.videoplaying=!1,o.c.trigger("revolution.slide.onvideoplay",b(s,"youtube",r.data())),I.toggleState(l.videotoggledby);else{if(0==e.data&&d){var i=j(r.data("videostartat"));-1!=i&&s.seekTo(i),s.playVideo(),I.toggleState(l.videotoggledby)}a||0!=e.data&&2!=e.data||!("on"==r.data("showcoveronpause")&&0e.seconds&&1!=r.data("nextslidecalled"))if(d){h.play();var a=j(r.data("videostartat"));-1!=a&&h.setCurrentTime(a)}else 1==r.data("nextslideatend")&&(r.data("nextslideatend-triggered",1),r.data("nextslidecalled",1),o.c.revnext()),h.pause()}),h.on("ended",function(e){V(r,o),o.videoplaying=!1,o.c.trigger("starttimer"),o.c.trigger("revolution.slide.onvideostop",b(h,"vimeo",r.data())),1==r.data("nextslideatend")&&(r.data("nextslideatend-triggered",1),o.c.revnext()),null!=o.currentLayerVideoIsPlaying&&o.currentLayerVideoIsPlaying.attr("id")!=r.attr("id")||I.unToggleState(l.videotoggledby)}),h.on("pause",function(e){("on"==r.data("showcoveronpause")&&0 '),o.find("video, .tp-poster, .tp-video-play-button").click(function(){o.hasClass("videoisplaying")?r.pause():r.play()})),1==o.data("forcecover")||o.hasClass("fullscreenvideo")||1==o.data("bgvideo"))if(1==o.data("forcecover")||1==o.data("bgvideo")){i.addClass("fullcoveredvideo");var u=o.data("aspectratio");void 0!==u&&1!=u.split(":").length||o.data("aspectratio","16:9"),I.prepareCoveredVideo(d,o)}else i.addClass("fullscreenvideo");var p=o.find(".tp-vid-play-pause")[0],v=o.find(".tp-vid-mute")[0],c=o.find(".tp-vid-full-screen")[0],m=o.find(".tp-seek-bar")[0],g=o.find(".tp-volume-bar")[0];null!=p&&A(p,"click",function(){1==r.paused?r.play():r.pause()}),null!=v&&A(v,"click",function(){0==r.muted?(r.muted=!0,v.innerHTML="Unmute"):(r.muted=!1,v.innerHTML="Mute")}),null!=c&&c&&A(c,"click",function(){r.requestFullscreen?r.requestFullscreen():r.mozRequestFullScreen?r.mozRequestFullScreen():r.webkitRequestFullscreen&&r.webkitRequestFullscreen()}),null!=m&&(A(m,"change",function(){var e=r.duration*(m.value/100);r.currentTime=e}),A(m,"mousedown",function(){o.addClass("seekbardragged"),r.pause()}),A(m,"mouseup",function(){o.removeClass("seekbardragged"),r.play()})),A(r,"canplaythrough",function(){I.preLoadAudioDone(o,d,"canplaythrough")}),A(r,"canplay",function(){I.preLoadAudioDone(o,d,"canplay")}),A(r,"progress",function(){I.preLoadAudioDone(o,d,"progress")}),A(r,"timeupdate",function(){var e=100/r.duration*r.currentTime,t=j(o.data("videoendat")),a=r.currentTime;if(null!=m&&(m.value=e),0!=t&&-1!=t&&Math.abs(t-a)<=.3&&a'},thumbnails:{container:"slider",rtl:!1,style:"",enable:!1,width:100,height:50,min_width:100,wrapper_padding:2,wrapper_color:"#f5f5f5",wrapper_opacity:1,tmp:'',visibleAmount:5,hide_onmobile:!1,hide_onleave:!0,hide_delay:200,hide_delay_mobile:1200,hide_under:0,hide_over:9999,direction:"horizontal",span:!1,position:"inner",space:2,h_align:"left",v_align:"center",h_offset:20,v_offset:0},tabs:{container:"slider",rtl:!1,style:"",enable:!1,width:100,min_width:100,height:50,wrapper_padding:10,wrapper_color:"#f5f5f5",wrapper_opacity:1,tmp:'',visibleAmount:5,hide_onmobile:!1,hide_onleave:!0,hide_delay:200,hide_delay_mobile:1200,hide_under:0,hide_over:9999,direction:"horizontal",span:!1,space:0,position:"inner",h_align:"left",v_align:"center",h_offset:20,v_offset:0}},extensions:"extensions/",extensions_suffix:".min.js",debugMode:!1};return i=jQuery.extend(!0,{},e,i),this.each(function(){var e=jQuery(this);i.minHeight=i.minHeight!=undefined?parseInt(i.minHeight,0):i.minHeight,i.scrolleffect.on="on"===i.scrolleffect.fade||"on"===i.scrolleffect.scale||"on"===i.scrolleffect.blur||"on"===i.scrolleffect.grayscale,"hero"==i.sliderType&&e.find(">ul>li").each(function(e){0!! Error at loading Slider Revolution 5.0 Extrensions.'+i.errorm+"").show(),!1;_R.migration!=undefined&&(i=_R.migration(e,i)),punchgs.force3D=!0,"on"!==i.simplifyAll&&punchgs.TweenLite.lagSmoothing(1e3,16),prepareOptions(e,i),initSlider(e,i)}),e[0].opt=i,waitForScripts(e,i)})},getRSVersion:function(e){if(!0===e)return jQuery("body").data("tp_rs_version");var i=jQuery("body").data("tp_rs_version"),t="";for(var a in t+="---------------------------------------------------------\n",t+=" Currently Loaded Slider Revolution & SR Modules :\n",t+="---------------------------------------------------------\n",i)t+=i[a].alias+": "+i[a].ver+"\n";return t+="---------------------------------------------------------\n"},revremoveslide:function(r){return this.each(function(){var e=jQuery(this),i=e[0].opt;if(!(r<0||r>i.slideamount)&&e!=undefined&&0ul"),runSlider(e,e[0].opt),!0)},revnext:function(){return this.each(function(){var e=jQuery(this);e!=undefined&&0li").length},revcurrentslide:function(){var e=jQuery(this);if(e!=undefined&&0li").length},revshowslide:function(i){return this.each(function(){var e=jQuery(this);e!=undefined&&0').appendTo(jQuery("body"));t.html("\x3c!--[if "+(i||"")+" IE "+(e||"")+"]> =n.slideamount?0:a:(i=jQuery.isNumeric(i)?i:parseInt(i.split("to")[1],0))<0?0:i>n.slideamount-1?n.slideamount-1:i,e.find(".tp-revslider-slidesli:eq("+a+")").addClass("next-revslide")):i&&e.find(".tp-revslider-slidesli").each(function(){var e=jQuery(this);e.data("index")===i&&e.addClass("next-revslide")}),a=e.find(".next-revslide").index(),e.trigger("revolution.nextslide.waiting"),t===a&&t===n.last_shown_slide||a!==t&&-1!=a?swapSlide(e):e.find(".next-revslide").removeClass("next-revslide")},slotSize:function(e,i){i.slotw=Math.ceil(i.width/i.slots),"fullscreen"==i.sliderLayout?i.sloth=Math.ceil(jQuery(window).height()/i.slots):i.sloth=Math.ceil(i.height/i.slots),"on"==i.autoHeight&&e!==undefined&&""!==e&&(i.sloth=Math.ceil(e.height()/i.slots))},setSize:function(e){var i=(e.top_outer||0)+(e.bottom_outer||0),t=parseInt(e.carousel.padding_top||0,0),a=parseInt(e.carousel.padding_bottom||0,0),n=e.gridheight[e.curWinRange],r=0,o=-1===e.nextSlide||e.nextSlide===undefined?0:e.nextSlide;if(e.paddings=e.paddings===undefined?{top:parseInt(e.c.parent().css("paddingTop"),0)||0,bottom:parseInt(e.c.parent().css("paddingBottom"),0)||0}:e.paddings,e.rowzones&&0e.gridheight[e.curWinRange]&&"on"!=e.autoHeight&&(e.height=e.gridheight[e.curWinRange]),"fullscreen"==e.sliderLayout||e.infullscreenmode){e.height=e.bw*e.gridheight[e.curWinRange];e.c.parent().width();var l=jQuery(window).height();if(e.fullScreenOffsetContainer!=undefined){try{var d=e.fullScreenOffsetContainer.split(",");d&&jQuery.each(d,function(e,i){l=0parseInt(e.height,0)?r:e.height}else e.minHeight!=undefined&&e.heightparseInt(e.height,0)?r:e.height,e.c.height(e.height);var c={height:t+a+i+e.height+e.paddings.top+e.paddings.bottom};e.c.closest(".forcefullwidth_wrapper_tp_banner").find(".tp-fullwidth-forcer").css(c),e.c.closest(".rev_slider_wrapper").css(c),setScale(e)},enterInViewPort:function(t){t.waitForCountDown&&(countDown(t.c,t),t.waitForCountDown=!1),t.waitForFirstSlide&&(swapSlide(t.c),t.waitForFirstSlide=!1,setTimeout(function(){t.c.removeClass("tp-waitforfirststart")},500)),"playing"!=t.sliderlaststatus&&t.sliderlaststatus!=undefined||t.c.trigger("starttimer"),t.lastplayedvideos!=undefined&&0Local Filesystem Detected !
    Put this to your header:"),console.warn("Local Filesystem detected !"),t.errorm=t.errorm+'
    <script type="text/javascript" src="'+t.jsFileLocation+i+t.extensions_suffix+'"></script>',console.warn(t.jsFileLocation+i+t.extensions_suffix+" could not be loaded !"),console.warn("Please use a local Server or work online or make sure that you load all needed Libraries manually in your Document."),console.log(" "),!(t.modulesfailing=!0)):(jQuery.ajax({url:t.jsFileLocation+i+t.extensions_suffix+"?version="+version.core,dataType:"script",cache:!0,error:function(e){console.warn("Slider Revolution 5.0 Error !"),console.error("Failure at Loading:"+i+t.extensions_suffix+" on Path:"+t.jsFileLocation),console.info(e)}}),void jQuery("body").data(i,!0)))},getNeededScripts=function(t,e){var i=new Object,a=t.navigation;return i.kenburns=!1,i.parallax=!1,i.carousel=!1,i.navigation=!1,i.videos=!1,i.actions=!1,i.layeranim=!1,i.migration=!1,e.data("version")&&e.data("version").toString().match(/5./gi)?(e.find("img").each(function(){"on"==jQuery(this).data("kenburns")&&(i.kenburns=!0)}),("carousel"==t.sliderType||"on"==a.keyboardNavigation||"on"==a.mouseScrollNavigation||"on"==a.touch.touchenabled||a.arrows.enable||a.bullets.enable||a.thumbnails.enable||a.tabs.enable)&&(i.navigation=!0),e.find(".tp-caption, .tp-static-layer, .rs-background-video-layer").each(function(){var e=jQuery(this);(e.data("ytid")!=undefined||0'),container.find(">ul").addClass("tp-revslider-mainul"),opt.c=container,opt.ul=container.find(".tp-revslider-mainul"),opt.ul.find(">li").each(function(e){var i=jQuery(this);"on"==i.data("hideslideonmobile")&&_ISM&&i.remove(),(i.data("invisible")||!0===i.data("invisible"))&&(i.addClass("tp-invisible-slide"),i.appendTo(opt.ul))}),opt.addons!=undefined&&0li").not(".tp-invisible-slide").length,opt.realslideamount=opt.ul.find(">li").length,opt.slayers=container.find(".tp-static-layers"),opt.slayers.data("index","staticlayers"),1!=opt.waitForInit&&(container[0].opt=opt,runSlider(container,opt))},onFullScreenChange=function(){jQuery("body").data("rs-fullScreenMode",!jQuery("body").data("rs-fullScreenMode")),jQuery("body").data("rs-fullScreenMode")&&setTimeout(function(){jQuery(window).trigger("resize")},200)},runSlider=function(t,x){if(x.sliderisrunning=!0,x.ul.find(">li").each(function(e){jQuery(this).data("originalindex",e)}),x.allli=x.ul.find(">li"),jQuery.each(x.allli,function(e,i){(i=jQuery(i)).data("origindex",i.index())}),x.li=x.ul.find(">li").not(".tp-invisible-slide"),"on"==x.shuffle){var e=new Object,i=x.ul.find(">li:first-child");e.fstransition=i.data("fstransition"),e.fsmasterspeed=i.data("fsmasterspeed"),e.fsslotamount=i.data("fsslotamount");for(var a=0;ali:eq("+n+")").prependTo(x.ul)}var r=x.ul.find(">li:first-child");r.data("fstransition",e.fstransition),r.data("fsmasterspeed",e.fsmasterspeed),r.data("fsslotamount",e.fsslotamount),x.allli=x.ul.find(">li"),x.li=x.ul.find(">li").not(".tp-invisible-slide")}if(x.inli=x.ul.find(">li.tp-invisible-slide"),x.thumbs=new Array,x.slots=4,x.act=-1,x.firststart=1,x.loadqueue=new Array,x.syncload=0,x.conw=t.width(),x.conh=t.height(),1":c+"data-actions='"+("scroll_under"===l?'[{"event":"click","action":"scrollbelow","offset":"100px","delay":"0"}]':"prev"===l?'[{"event":"click","action":"jumptoslide","slide":"prev","delay":"0.2"}]':"next"===l?'[{"event":"click","action":"jumptoslide","slide":"next","delay":"0.2"}]':'[{"event":"click","action":"jumptoslide","slide":"'+l+'","delay":"0.2"}]')+"'"+u+" >",c+='img").first()).data("kenburns","off")})),x.desktop=!navigator.userAgent.match(/(iPhone|iPod|iPad|Android|BlackBerry|BB10|mobi|tablet|opera mini|nexus 7)/i),x.autoHeight="fullscreen"==x.sliderLayout?"on":x.autoHeight,"fullwidth"==x.sliderLayout&&"off"==x.autoHeight&&t.css({maxHeight:x.gridheight[x.curWinRange]+"px"}),"auto"!=x.sliderLayout&&0==t.closest(".forcefullwidth_wrapper_tp_banner").length&&("fullscreen"!==x.sliderLayout||"on"!=x.fullScreenAutoWidth)){var o=t.parent(),s=o.css("marginBottom"),l=o.css("marginTop"),d=t.attr("id")+"_forcefullwidth";s=s===undefined?0:s,l=l===undefined?0:l,o.wrap('
    '),t.closest(".forcefullwidth_wrapper_tp_banner").append('
    '),t.parent().css({marginTop:"0px",marginBottom:"0px"}),t.parent().css({position:"absolute"})}if(x.shadow!==undefined&&0'),t.parent().find(".tp-shadowcover").css({backgroundColor:t.parent().css("backgroundColor"),backgroundImage:t.parent().css("backgroundImage")})),setCurWinRange(x),setCurWinRange(x,!0),!t.hasClass("revslider-initialised")){t.addClass("revslider-initialised"),t.addClass("tp-simpleresponsive"),t.attr("id")==undefined&&t.attr("id","revslider-"+Math.round(1e3*Math.random()+5)),checkIDS(x,t),x.firefox13=!1,x.ie=!jQuery.support.opacity,x.ie9=9==document.documentMode,x.origcd=x.delay;var c=jQuery.fn.jquery.split("."),u=parseFloat(c[0]),p=parseFloat(c[1]);parseFloat(c[2]||"0");1==u&&p<7&&t.html('
    The Current Version of jQuery:'+c+"
    Please update your jQuery Version to min. 1.7 in Case you wish to use the Revolution Slider Plugin
    "),1
    '),s&&x.scrolleffect.on&&("on"===x.scrolleffect.on_parallax_layers&&i.isparallaxlayer||"on"===x.scrolleffect.on_layers&&!i.isparallaxlayer)&&x.scrolleffect.layers.push(n.parent()),l&&x.scrolleffect.layers.push(n.parent()),"column"===h&&(n.append(''),n.closest(".tp-parallax-wrap").append('
    '));var b=n.closest(".tp-loop-wrap");jQuery.each(["pendulum","rotate","slideloop","pulse","wave"],function(e,i){var t=n.find(".rs-"+i),a=t.data()||"";""!=a&&(b.data(a),b.addClass("rs-"+i),t.children(0).unwrap(),n.data("loopanimation","on"))}),n.attr("id")===undefined&&n.attr("id","layer-"+Math.round(999999999*Math.random())),checkIDS(x,n),punchgs.TweenLite.set(n,{visibility:"hidden"})}var _=n.data("actions");_!==undefined&&_R.checkActions(n,x,_),checkHoverDependencies(n,x),_R.checkVideoApis&&(j=_R.checkVideoApis(n,x,j)),r||1!=t&&"true"!=t&&"1sttime"!=a||"loopandnoslidestop"==o||n.closest("li.tp-revslider-slidesli").addClass("rs-pause-timer-once"),r||1!=a&&"true"!=a&&"on"!=a&&"no1sttime"!=a||"loopandnoslidestop"==o||n.closest("li.tp-revslider-slidesli").addClass("rs-pause-timer-always")}),t[0].addEventListener("mouseenter",function(){t.trigger("tp-mouseenter"),x.overcontainer=!0},{passive:!0}),t[0].addEventListener("mouseover",function(){t.trigger("tp-mouseover"),x.overcontainer=!0},{passive:!0}),t[0].addEventListener("mouseleave",function(){t.trigger("tp-mouseleft"),x.overcontainer=!1},{passive:!0}),t.find(".tp-caption video").each(function(e){var i=jQuery(this);i.removeClass("video-js vjs-default-skin"),i.attr("preload",""),i.css({display:"none"})}),"standard"!==x.sliderType&&(x.lazyType="all"),loadImages(t.find(".tp-static-layers"),x,0,!0),waitForCurrentImages(t.find(".tp-static-layers"),x,function(){t.find(".tp-static-layers img").each(function(){var e=jQuery(this),i=e.data("lazyload")!=undefined?e.data("lazyload"):e.attr("src"),t=getLoadObj(x,i);e.attr("src",t.src)})}),x.rowzones=[],x.allli.each(function(e){var i=jQuery(this);x.rowzones[e]=[],i.find(".rev_row_zone").each(function(){x.rowzones[e].push(jQuery(this))}),"all"!=x.lazyType&&("smart"!=x.lazyType||0!=e&&1!=e&&e!=x.slideamount&&e!=x.slideamount-1)||(loadImages(i,x,e),waitForCurrentImages(i,x,function(){}))});var f=getUrlVars("#")[0];if(f.length<9&&1x.slideamount&&(h=x.slideamount),x.startWithSlide=h-1}t.append('
    '),x.loader=t.find(".tp-loader"),0===t.find(".tp-bannertimer").length&&t.append(''),t.find(".tp-bannertimer").css({width:"0%"}),x.ul.css({display:"block"}),prepareSlides(t,x),("off"!==x.parallax.type||x.scrolleffect.on)&&_R.checkForParallax&&_R.checkForParallax(t,x),_R.setSize(x),"hero"!==x.sliderType&&_R.createNavigation&&_R.createNavigation(t,x),_R.resizeThumbsTabs&&_R.resizeThumbsTabs&&_R.resizeThumbsTabs(x),contWidthManager(x);var g=x.viewPort;x.inviewport=!1,g!=undefined&&g.enable&&(jQuery.isNumeric(g.visible_area)||-1!==g.visible_area.indexOf("%")&&(g.visible_area=parseInt(g.visible_area)/100),_R.scrollTicker&&_R.scrollTicker(x,t)),"carousel"===x.sliderType&&_R.prepareCarousel&&(punchgs.TweenLite.set(x.ul,{opacity:0}),_R.prepareCarousel(x,new punchgs.TimelineLite,undefined,0),x.onlyPreparedSlide=!0),setTimeout(function(){if(!g.enable||g.enable&&x.inviewport||g.enable&&!x.inviewport&&"wait"==!g.outof)swapSlide(t);else if(x.c.addClass("tp-waitforfirststart"),x.waitForFirstSlide=!0,g.presize){var e=jQuery(x.li[0]);loadImages(e,x,0,!0),waitForCurrentImages(e.find(".tp-layers"),x,function(){_R.animateTheCaptions({slide:e,opt:x,preset:!0})})}_R.manageNavigation&&_R.manageNavigation(x),1x.fallbacks.ignoreHeightChangesSize):e=i!=x.lastwindowheight}(t.outerWidth(!0)!=x.width||t.is(":hidden")||e)&&(x.lastwindowheight=jQuery(window).height(),containerResized(t,x))}),hideSliderUnder(t,x),contWidthManager(x),x.fallbacks.disableFocusListener||"true"==x.fallbacks.disableFocusListener||!0===x.fallbacks.disableFocusListener||(t.addClass("rev_redraw_on_blurfocus"),tabBlurringCheck())}},cArray=function(e,i){if(!jQuery.isArray(e)){var t=e;(e=new Array).push(t)}if(e.lengthe.bw?e.bh=e.bw:e.bw=e.bh,(1');var i='
    ';u.c.parent().prepend(i),u.c.parent().append(i),_R.prepareCarousel(u)}e.parent().css({overflow:"visible"}),u.allli.find(">img").each(function(e){var i=jQuery(this),t=i.closest("li"),a=t.find(".rs-background-video-layer");a.addClass("defaultvid").css({zIndex:30}),i.addClass("defaultimg"),"on"==u.fallbacks.panZoomDisableOnMobile&&_ISM&&(i.data("kenburns","off"),i.data("bgfit","cover"));var n=t.data("mediafilter");n="none"===n||n===undefined?"":n,i.wrap('
    '),a.appendTo(t.find(".slotholder"));var r=i.data();i.closest(".slotholder").data(r),0');var o=i.attr("src");r.src=o,r.bgfit=r.bgfit||"cover",r.bgrepeat=r.bgrepeat||"no-repeat",r.bgposition=r.bgposition||"center center";i.closest(".slotholder");var s=i.data("bgcolor"),l="";l=s!==undefined&&0<=s.indexOf("gradient")?'"background:'+s+';width:100%;height:100%;"':'"background-color:'+s+";background-repeat:"+r.bgrepeat+";background-image:url("+o+");background-size:"+r.bgfit+";background-position:"+r.bgposition+';width:100%;height:100%;"',i.data("mediafilter",n),n="on"===i.data("kenburns")?"":n;var d=jQuery('
    ')}),u.allslotholder=u.c.find(".slotholder_fadeoutwrap"))},removeSlots=function(e,i,t,a){i.removePrepare=i.removePrepare+a,t.find(".slot, .slot-circle-wrapper").each(function(){jQuery(this).remove()}),i.transition=0,i.removePrepare=0},cutParams=function(e){var i=e;return e!=undefined&&0'),e.find(".tp-svg-innercontainer").append(t.innerHTML));e.data("loaded",!0)}if(t&&t.progress&&t.progress.match(/inprogress|inload|prepared/g)&&(!t.error&&jQuery.now()-e.data("start-to-load")<5e3?l=!0:(t.progress="failed",t.reported_img||(t.reported_img=!0,console.warn(i+" Could not be loaded !")))),1==s.youtubeapineeded&&(!window.YT||YT.Player==undefined)&&(l=!0,5e3'+r+"")}if(1==s.vimeoapineeded&&!window.Vimeo&&(l=!0,5e3'+r+"")}}),!_ISM&&s.audioqueue&&0')}),swapSlideProgress(n,e)})},swapSlideProgress=function(e,i){var t=i.find(".active-revslide"),a=i.find(".processing-revslide"),n=t.find(".slotholder"),r=a.find(".slotholder"),o=i[0].opt;o.tonpause=!1,o.cd=0,clearTimeout(o.loadertimer),o.loader!==undefined&&o.loader.css({display:"none"}),_R.setSize(o),_R.slotSize(e,o),_R.manageNavigation&&_R.manageNavigation(o);var s={};s.nextslide=a,s.currentslide=t,i.trigger("revolution.slide.onbeforeswap",s),o.transition=1,o.videoplaying=!1,a.data("delay")!=undefined?(o.cd=0,o.delay=a.data("delay")):o.delay=o.origcd,"true"==a.data("ssop")||!0===a.data("ssop")?o.ssop=!0:o.ssop=!1,i.trigger("nulltimer");var l=t.index(),d=a.index();o.sdir=do.rowzones.length?o.rowzones.length:p),o.rowzones!=undefined&&0i.hideSliderAtLimit&&1!=i.tonpause&&1!=i.overnav&&1!=i.ssop&&(1===i.noloopanymore||i.viewPort.enable&&!i.inviewport||(t.css({visibility:"visible"}),t[0].tween.resume(),i.sliderstatus="playing")),"on"==i.disableProgressBar&&t.css({visibility:"hidden"}),_R.toggleState(i.slidertoggledby))}),e.on("restarttimer",function(){if(!i.forcepause_viatoggle){var e=jQuery(this).find(".tp-bannertimer");if(i.mouseoncontainer&&"on"==i.navigation.onHoverStop&&!_ISM)return!1;1===i.noloopanymore||i.viewPort.enable&&!i.inviewport||1==i.ssop||(e.css({visibility:"visible"}),e[0].tween.kill(),e[0].tween=punchgs.TweenLite.fromTo(e,i.delay/1e3,{width:"0%"},{force3D:"auto",width:"100%",ease:punchgs.Linear.easeNone,onComplete:a,delay:1}),i.sliderstatus="playing"),"on"==i.disableProgressBar&&e.css({visibility:"hidden"}),_R.toggleState(i.slidertoggledby)}}),e.on("nulltimer",function(){t[0].tween.kill(),t[0].tween=punchgs.TweenLite.fromTo(t,i.delay/1e3,{width:"0%"},{force3D:"auto",width:"100%",ease:punchgs.Linear.easeNone,onComplete:a,delay:1}),t[0].tween.pause(0),"on"==i.disableProgressBar&&t.css({visibility:"hidden"}),i.sliderstatus="paused"});var a=function(){0==jQuery("body").find(e).length&&(removeAllListeners(e,i),clearInterval(i.cdint)),e.trigger("revolution.slide.slideatend"),1==e.data("conthover-changed")&&(i.conthover=e.data("conthover"),e.data("conthover-changed",0)),_R.callingNewSlide(e,1)};t[0].tween=punchgs.TweenLite.fromTo(t,i.delay/1e3,{width:"0%"},{force3D:"auto",width:"100%",ease:punchgs.Linear.easeNone,onComplete:a,delay:1}),10){return}var bf=be.originalEvent?be.originalEvent:be;var bd,bg=bf.touches,bc=bg?bg[0]:bf;aa=g;if(bg){X=bg.length}else{be.preventDefault()}ah=0;aQ=null;aK=null;ac=0;a2=0;a0=0;H=1;ar=0;aR=ak();N=ab();S();if(!bg||(X===aw.fingers||aw.fingers===i)||aY()){aj(0,bc);U=au();if(X==2){aj(1,bg[1]);a2=a0=av(aR[0].start,aR[1].start)}if(aw.swipeStatus||aw.pinchStatus){bd=P(bf,aa)}}else{bd=false}if(bd===false){aa=q;P(bf,aa);return bd}else{if(aw.hold){ag=setTimeout(f.proxy(function(){aS.trigger("hold",[bf.target]);if(aw.hold){bd=aw.hold.call(aS,bf,bf.target)}},this),aw.longTapThreshold)}ap(true)}return null}function a4(bf){var bi=bf.originalEvent?bf.originalEvent:bf;if(aa===h||aa===q||an()){return}var be,bj=bi.touches,bd=bj?bj[0]:bi;var bg=aI(bd);a3=au();if(bj){X=bj.length}if(aw.hold){clearTimeout(ag)}aa=k;if(X==2){if(a2==0){aj(1,bj[1]);a2=a0=av(aR[0].start,aR[1].start)}else{aI(bj[1]);a0=av(aR[0].end,aR[1].end);aK=at(aR[0].end,aR[1].end)}H=a8(a2,a0);ar=Math.abs(a2-a0)}if((X===aw.fingers||aw.fingers===i)||!bj||aY()){aQ=aM(bg.start,bg.end);am(bf,aQ);ah=aT(bg.start,bg.end);ac=aN();aJ(aQ,ah);if(aw.swipeStatus||aw.pinchStatus){be=P(bi,aa)}if(!aw.triggerOnTouchEnd||aw.triggerOnTouchLeave){var bc=true;if(aw.triggerOnTouchLeave){var bh=aZ(this);bc=F(bg.end,bh)}if(!aw.triggerOnTouchEnd&&bc){aa=aD(k)}else{if(aw.triggerOnTouchLeave&&!bc){aa=aD(h)}}if(aa==q||aa==h){P(bi,aa)}}}else{aa=q;P(bi,aa)}if(be===false){aa=q;P(bi,aa)}}function M(bc){var bd=bc.originalEvent?bc.originalEvent:bc,be=bd.touches;if(be){if(be.length){G();return true}}if(an()){X=ae}a3=au();ac=aN();if(bb()||!ao()){aa=q;P(bd,aa)}else{if(aw.triggerOnTouchEnd||(aw.triggerOnTouchEnd==false&&aa===k)){bc.preventDefault();aa=h;P(bd,aa)}else{if(!aw.triggerOnTouchEnd&&a7()){aa=h;aG(bd,aa,B)}else{if(aa===k){aa=q;P(bd,aa)}}}}ap(false);return null}function ba(){X=0;a3=0;U=0;a2=0;a0=0;H=1;S();ap(false)}function L(bc){var bd=bc.originalEvent?bc.originalEvent:bc;if(aw.triggerOnTouchLeave){aa=aD(h);P(bd,aa)}}function aL(){aS.unbind(K,aO);aS.unbind(aE,ba);aS.unbind(az,a4);aS.unbind(V,M);if(T){aS.unbind(T,L)}ap(false)}function aD(bg){var bf=bg;var be=aB();var bd=ao();var bc=bb();if(!be||bc){bf=q}else{if(bd&&bg==k&&(!aw.triggerOnTouchEnd||aw.triggerOnTouchLeave)){bf=h}else{if(!bd&&bg==h&&aw.triggerOnTouchLeave){bf=q}}}return bf}function P(be,bc){var bd,bf=be.touches;if((J()||W())||(Q()||aY())){if(J()||W()){bd=aG(be,bc,l)}if((Q()||aY())&&bd!==false){bd=aG(be,bc,t)}}else{if(aH()&&bd!==false){bd=aG(be,bc,j)}else{if(aq()&&bd!==false){bd=aG(be,bc,b)}else{if(ai()&&bd!==false){bd=aG(be,bc,B)}}}}if(bc===q){ba(be)}if(bc===h){if(bf){if(!bf.length){ba(be)}}else{ba(be)}}return bd}function aG(bf,bc,be){var bd;if(be==l){aS.trigger("swipeStatus",[bc,aQ||null,ah||0,ac||0,X,aR]);if(aw.swipeStatus){bd=aw.swipeStatus.call(aS,bf,bc,aQ||null,ah||0,ac||0,X,aR);if(bd===false){return false}}if(bc==h&&aW()){aS.trigger("swipe",[aQ,ah,ac,X,aR]);if(aw.swipe){bd=aw.swipe.call(aS,bf,aQ,ah,ac,X,aR);if(bd===false){return false}}switch(aQ){case p:aS.trigger("swipeLeft",[aQ,ah,ac,X,aR]);if(aw.swipeLeft){bd=aw.swipeLeft.call(aS,bf,aQ,ah,ac,X,aR)}break;case o:aS.trigger("swipeRight",[aQ,ah,ac,X,aR]);if(aw.swipeRight){bd=aw.swipeRight.call(aS,bf,aQ,ah,ac,X,aR)}break;case e:aS.trigger("swipeUp",[aQ,ah,ac,X,aR]);if(aw.swipeUp){bd=aw.swipeUp.call(aS,bf,aQ,ah,ac,X,aR)}break;case x:aS.trigger("swipeDown",[aQ,ah,ac,X,aR]);if(aw.swipeDown){bd=aw.swipeDown.call(aS,bf,aQ,ah,ac,X,aR)}break}}}if(be==t){aS.trigger("pinchStatus",[bc,aK||null,ar||0,ac||0,X,H,aR]);if(aw.pinchStatus){bd=aw.pinchStatus.call(aS,bf,bc,aK||null,ar||0,ac||0,X,H,aR);if(bd===false){return false}}if(bc==h&&a9()){switch(aK){case c:aS.trigger("pinchIn",[aK||null,ar||0,ac||0,X,H,aR]);if(aw.pinchIn){bd=aw.pinchIn.call(aS,bf,aK||null,ar||0,ac||0,X,H,aR)}break;case A:aS.trigger("pinchOut",[aK||null,ar||0,ac||0,X,H,aR]);if(aw.pinchOut){bd=aw.pinchOut.call(aS,bf,aK||null,ar||0,ac||0,X,H,aR)}break}}}if(be==B){if(bc===q||bc===h){clearTimeout(aX);clearTimeout(ag);if(Z()&&!I()){O=au();aX=setTimeout(f.proxy(function(){O=null;aS.trigger("tap",[bf.target]);if(aw.tap){bd=aw.tap.call(aS,bf,bf.target)}},this),aw.doubleTapThreshold)}else{O=null;aS.trigger("tap",[bf.target]);if(aw.tap){bd=aw.tap.call(aS,bf,bf.target)}}}}else{if(be==j){if(bc===q||bc===h){clearTimeout(aX);O=null;aS.trigger("doubletap",[bf.target]);if(aw.doubleTap){bd=aw.doubleTap.call(aS,bf,bf.target)}}}else{if(be==b){if(bc===q||bc===h){clearTimeout(aX);O=null;aS.trigger("longtap",[bf.target]);if(aw.longTap){bd=aw.longTap.call(aS,bf,bf.target)}}}}}return bd}function ao(){var bc=true;if(aw.threshold!==null){bc=ah>=aw.threshold}return bc}function bb(){var bc=false;if(aw.cancelThreshold!==null&&aQ!==null){bc=(aU(aQ)-ah)>=aw.cancelThreshold}return bc}function af(){if(aw.pinchThreshold!==null){return ar>=aw.pinchThreshold}return true}function aB(){var bc;if(aw.maxTimeThreshold){if(ac>=aw.maxTimeThreshold){bc=false}else{bc=true}}else{bc=true}return bc}function am(bc,bd){if(aw.preventDefaultEvents===false){return}if(aw.allowPageScroll===m){bc.preventDefault()}else{var be=aw.allowPageScroll===s;switch(bd){case p:if((aw.swipeLeft&&be)||(!be&&aw.allowPageScroll!=E)){bc.preventDefault()}break;case o:if((aw.swipeRight&&be)||(!be&&aw.allowPageScroll!=E)){bc.preventDefault()}break;case e:if((aw.swipeUp&&be)||(!be&&aw.allowPageScroll!=u)){bc.preventDefault()}break;case x:if((aw.swipeDown&&be)||(!be&&aw.allowPageScroll!=u)){bc.preventDefault()}break}}}function a9(){var bd=aP();var bc=Y();var be=af();return bd&&bc&&be}function aY(){return !!(aw.pinchStatus||aw.pinchIn||aw.pinchOut)}function Q(){return !!(a9()&&aY())}function aW(){var bf=aB();var bh=ao();var be=aP();var bc=Y();var bd=bb();var bg=!bd&&bc&&be&&bh&&bf;return bg}function W(){return !!(aw.swipe||aw.swipeStatus||aw.swipeLeft||aw.swipeRight||aw.swipeUp||aw.swipeDown)}function J(){return !!(aW()&&W())}function aP(){return((X===aw.fingers||aw.fingers===i)||!a)}function Y(){return aR[0].end.x!==0}function a7(){return !!(aw.tap)}function Z(){return !!(aw.doubleTap)}function aV(){return !!(aw.longTap)}function R(){if(O==null){return false}var bc=au();return(Z()&&((bc-O)<=aw.doubleTapThreshold))}function I(){return R()}function ay(){return((X===1||!a)&&(isNaN(ah)||ahaw.longTapThreshold)&&(ah=0)){return p}else{if((be<=360)&&(be>=315)){return p}else{if((be>=135)&&(be<=225)){return o}else{if((be>45)&&(be<135)){return x}else{return e}}}}}function au(){var bc=new Date();return bc.getTime()}function aZ(bc){bc=f(bc);var be=bc.offset();var bd={left:be.left,right:be.left+bc.outerWidth(),top:be.top,bottom:be.top+bc.outerHeight()};return bd}function F(bc,bd){return(bc.x>bd.left&&bc.xbd.top&&bc.y-1;)(l=q[f[s]]||new r(f[s],[])).gsClass?(i[s]=l.gsClass,t--):j&&l.sc.push(this);if(0===t&&g){if(m=("com.greensock."+d).split("."),n=m.pop(),o=k(m.join("."))[n]=this.gsClass=g.apply(g,i),h)if(e[n]=c[n]=o,p="undefined"!=typeof module&&module.exports,!p&&"function"==typeof define&&define.amd)define((a.GreenSockAMDPath?a.GreenSockAMDPath+"/":"")+d.split(".").pop(),[],function(){return o});else if(p)if(d===b){module.exports=c[b]=o;for(s in c)o[s]=c[s]}else c[b]&&(c[b][n]=o);for(s=0;s-1;)for(f=i[j],e=d?t("easing."+f,null,!0):l.easing[f]||{},g=k.length;--g>-1;)h=k[g],w[f+"."+h]=w[h+f]=e[h]=a.getRatio?a:a[h]||new a};for(h=v.prototype,h._calcEnd=!1,h.getRatio=function(a){if(this._func)return this._params[0]=a,this._func.apply(null,this._params);var b=this._type,c=this._power,d=1===b?1-a:2===b?a:.5>a?2*a:2*(1-a);return 1===c?d*=d:2===c?d*=d*d:3===c?d*=d*d*d:4===c&&(d*=d*d*d*d),1===b?1-d:2===b?d:.5>a?d/2:1-d/2},f=["Linear","Quad","Cubic","Quart","Quint,Strong"],g=f.length;--g>-1;)h=f[g]+",Power"+g,x(new v(null,null,1,g),h,"easeOut",!0),x(new v(null,null,2,g),h,"easeIn"+(0===g?",easeNone":"")),x(new v(null,null,3,g),h,"easeInOut");w.linear=l.easing.Linear.easeIn,w.swing=l.easing.Quad.easeInOut;var y=t("events.EventDispatcher",function(a){this._listeners={},this._eventTarget=a||this});h=y.prototype,h.addEventListener=function(a,b,c,d,e){e=e||0;var f,g,h=this._listeners[a],k=0;for(this!==i||j||i.wake(),null==h&&(this._listeners[a]=h=[]),g=h.length;--g>-1;)f=h[g],f.c===b&&f.s===c?h.splice(g,1):0===k&&f.pr-1;)if(d[c].c===b)return void d.splice(c,1)},h.dispatchEvent=function(a){var b,c,d,e=this._listeners[a];if(e)for(b=e.length,b>1&&(e=e.slice(0)),c=this._eventTarget;--b>-1;)d=e[b],d&&(d.up?d.c.call(d.s||c,{type:a,target:c}):d.c.call(d.s||c))};var z=a.requestAnimationFrame,A=a.cancelAnimationFrame,B=Date.now||function(){return(new Date).getTime()},C=B();for(f=["ms","moz","webkit","o"],g=f.length;--g>-1&&!z;)z=a[f[g]+"RequestAnimationFrame"],A=a[f[g]+"CancelAnimationFrame"]||a[f[g]+"CancelRequestAnimationFrame"];t("Ticker",function(a,b){var c,e,f,g,h,k=this,l=B(),n=b!==!1&&z?"auto":!1,p=500,q=33,r="tick",s=function(a){var b,d,i=B()-C;i>p&&(l+=i-q),C+=i,k.time=(C-l)/1e3,b=k.time-h,(!c||b>0||a===!0)&&(k.frame++,h+=b+(b>=g?.004:g-b),d=!0),a!==!0&&(f=e(s)),d&&k.dispatchEvent(r)};y.call(k),k.time=k.frame=0,k.tick=function(){s(!0)},k.lagSmoothing=function(a,b){p=a||1/m,q=Math.min(b,p,0)},k.sleep=function(){null!=f&&(n&&A?A(f):clearTimeout(f),e=o,f=null,k===i&&(j=!1))},k.wake=function(a){null!==f?k.sleep():a?l+=-C+(C=B()):k.frame>10&&(C=B()-p+5),e=0===c?o:n&&z?z:function(a){return setTimeout(a,1e3*(h-k.time)+1|0)},k===i&&(j=!0),s(2)},k.fps=function(a){return arguments.length?(c=a,g=1/(c||60),h=this.time+g,void k.wake()):c},k.useRAF=function(a){return arguments.length?(k.sleep(),n=a,void k.fps(c)):n},k.fps(a),setTimeout(function(){"auto"===n&&k.frame<5&&"hidden"!==d.visibilityState&&k.useRAF(!1)},1500)}),h=l.Ticker.prototype=new l.events.EventDispatcher,h.constructor=l.Ticker;var D=t("core.Animation",function(a,b){if(this.vars=b=b||{},this._duration=this._totalDuration=a||0,this._delay=Number(b.delay)||0,this._timeScale=1,this._active=b.immediateRender===!0,this.data=b.data,this._reversed=b.reversed===!0,W){j||i.wake();var c=this.vars.useFrames?V:W;c.add(this,c._time),this.vars.paused&&this.paused(!0)}});i=D.ticker=new l.Ticker,h=D.prototype,h._dirty=h._gc=h._initted=h._paused=!1,h._totalTime=h._time=0,h._rawPrevTime=-1,h._next=h._last=h._onUpdate=h._timeline=h.timeline=null,h._paused=!1;var E=function(){j&&B()-C>2e3&&i.wake(),setTimeout(E,2e3)};E(),h.play=function(a,b){return null!=a&&this.seek(a,b),this.reversed(!1).paused(!1)},h.pause=function(a,b){return null!=a&&this.seek(a,b),this.paused(!0)},h.resume=function(a,b){return null!=a&&this.seek(a,b),this.paused(!1)},h.seek=function(a,b){return this.totalTime(Number(a),b!==!1)},h.restart=function(a,b){return this.reversed(!1).paused(!1).totalTime(a?-this._delay:0,b!==!1,!0)},h.reverse=function(a,b){return null!=a&&this.seek(a||this.totalDuration(),b),this.reversed(!0).paused(!1)},h.render=function(a,b,c){},h.invalidate=function(){return this._time=this._totalTime=0,this._initted=this._gc=!1,this._rawPrevTime=-1,(this._gc||!this.timeline)&&this._enabled(!0),this},h.isActive=function(){var a,b=this._timeline,c=this._startTime;return!b||!this._gc&&!this._paused&&b.isActive()&&(a=b.rawTime(!0))>=c&&a-1;)"{self}"===a[b]&&(c[b]=this);return c},h._callback=function(a){var b=this.vars,c=b[a],d=b[a+"Params"],e=b[a+"Scope"]||b.callbackScope||this,f=d?d.length:0;switch(f){case 0:c.call(e);break;case 1:c.call(e,d[0]);break;case 2:c.call(e,d[0],d[1]);break;default:c.apply(e,d)}},h.eventCallback=function(a,b,c,d){if("on"===(a||"").substr(0,2)){var e=this.vars;if(1===arguments.length)return e[a];null==b?delete e[a]:(e[a]=b,e[a+"Params"]=p(c)&&-1!==c.join("").indexOf("{self}")?this._swapSelfInParams(c):c,e[a+"Scope"]=d),"onUpdate"===a&&(this._onUpdate=b)}return this},h.delay=function(a){return arguments.length?(this._timeline.smoothChildTiming&&this.startTime(this._startTime+a-this._delay),this._delay=a,this):this._delay},h.duration=function(a){return arguments.length?(this._duration=this._totalDuration=a,this._uncache(!0),this._timeline.smoothChildTiming&&this._time>0&&this._timethis._duration?this._duration:a,b)):this._time},h.totalTime=function(a,b,c){if(j||i.wake(),!arguments.length)return this._totalTime;if(this._timeline){if(0>a&&!c&&(a+=this.totalDuration()),this._timeline.smoothChildTiming){this._dirty&&this.totalDuration();var d=this._totalDuration,e=this._timeline;if(a>d&&!c&&(a=d),this._startTime=(this._paused?this._pauseTime:e._time)-(this._reversed?d-a:a)/this._timeScale,e._dirty||this._uncache(!1),e._timeline)for(;e._timeline;)e._timeline._time!==(e._startTime+e._totalTime)/e._timeScale&&e.totalTime(e._totalTime,!0),e=e._timeline}this._gc&&this._enabled(!0,!1),(this._totalTime!==a||0===this._duration)&&(J.length&&Y(),this.render(a,b,!1),J.length&&Y())}return this},h.progress=h.totalProgress=function(a,b){var c=this.duration();return arguments.length?this.totalTime(c*a,b):c?this._time/c:this.ratio},h.startTime=function(a){return arguments.length?(a!==this._startTime&&(this._startTime=a,this.timeline&&this.timeline._sortChildren&&this.timeline.add(this,a-this._delay)),this):this._startTime},h.endTime=function(a){return this._startTime+(0!=a?this.totalDuration():this.duration())/this._timeScale},h.timeScale=function(a){if(!arguments.length)return this._timeScale;if(a=a||m,this._timeline&&this._timeline.smoothChildTiming){var b=this._pauseTime,c=b||0===b?b:this._timeline.totalTime();this._startTime=c-(c-this._startTime)*this._timeScale/a}return this._timeScale=a,this._uncache(!1)},h.reversed=function(a){return arguments.length?(a!=this._reversed&&(this._reversed=a,this.totalTime(this._timeline&&!this._timeline.smoothChildTiming?this.totalDuration()-this._totalTime:this._totalTime,!0)),this):this._reversed},h.paused=function(a){if(!arguments.length)return this._paused;var b,c,d=this._timeline;return a!=this._paused&&d&&(j||a||i.wake(),b=d.rawTime(),c=b-this._pauseTime,!a&&d.smoothChildTiming&&(this._startTime+=c,this._uncache(!1)),this._pauseTime=a?b:null,this._paused=a,this._active=this.isActive(),!a&&0!==c&&this._initted&&this.duration()&&(b=d.smoothChildTiming?this._totalTime:(b-this._startTime)/this._timeScale,this.render(b,b===this._totalTime,!0))),this._gc&&!a&&this._enabled(!0,!1),this};var F=t("core.SimpleTimeline",function(a){D.call(this,0,a),this.autoRemoveChildren=this.smoothChildTiming=!0});h=F.prototype=new D,h.constructor=F,h.kill()._gc=!1,h._first=h._last=h._recent=null,h._sortChildren=!1,h.add=h.insert=function(a,b,c,d){var e,f;if(a._startTime=Number(b||0)+a._delay,a._paused&&this!==a._timeline&&(a._pauseTime=a._startTime+(this.rawTime()-a._startTime)/a._timeScale),a.timeline&&a.timeline._remove(a,!0),a.timeline=a._timeline=this,a._gc&&a._enabled(!0,!0),e=this._last,this._sortChildren)for(f=a._startTime;e&&e._startTime>f;)e=e._prev;return e?(a._next=e._next,e._next=a):(a._next=this._first,this._first=a),a._next?a._next._prev=a:this._last=a,a._prev=e,this._recent=a,this._timeline&&this._uncache(!0),this},h._remove=function(a,b){return a.timeline===this&&(b||a._enabled(!1,!0),a._prev?a._prev._next=a._next:this._first===a&&(this._first=a._next),a._next?a._next._prev=a._prev:this._last===a&&(this._last=a._prev),a._next=a._prev=a.timeline=null,a===this._recent&&(this._recent=this._last),this._timeline&&this._uncache(!0)),this},h.render=function(a,b,c){var d,e=this._first;for(this._totalTime=this._time=this._rawPrevTime=a;e;)d=e._next,(e._active||a>=e._startTime&&!e._paused)&&(e._reversed?e.render((e._dirty?e.totalDuration():e._totalDuration)-(a-e._startTime)*e._timeScale,b,c):e.render((a-e._startTime)*e._timeScale,b,c)),e=d},h.rawTime=function(){return j||i.wake(),this._totalTime};var G=t("TweenLite",function(b,c,d){if(D.call(this,c,d),this.render=G.prototype.render,null==b)throw"Cannot tween a null target.";this.target=b="string"!=typeof b?b:G.selector(b)||b;var e,f,g,h=b.jquery||b.length&&b!==a&&b[0]&&(b[0]===a||b[0].nodeType&&b[0].style&&!b.nodeType),i=this.vars.overwrite;if(this._overwrite=i=null==i?U[G.defaultOverwrite]:"number"==typeof i?i>>0:U[i],(h||b instanceof Array||b.push&&p(b))&&"number"!=typeof b[0])for(this._targets=g=n(b),this._propLookup=[],this._siblings=[],e=0;e1&&_(f,this,null,1,this._siblings[e])):(f=g[e--]=G.selector(f),"string"==typeof f&&g.splice(e+1,1)):g.splice(e--,1);else this._propLookup={},this._siblings=Z(b,this,!1),1===i&&this._siblings.length>1&&_(b,this,null,1,this._siblings);(this.vars.immediateRender||0===c&&0===this._delay&&this.vars.immediateRender!==!1)&&(this._time=-m,this.render(Math.min(0,-this._delay)))},!0),H=function(b){return b&&b.length&&b!==a&&b[0]&&(b[0]===a||b[0].nodeType&&b[0].style&&!b.nodeType)},I=function(a,b){var c,d={};for(c in a)T[c]||c in b&&"transform"!==c&&"x"!==c&&"y"!==c&&"width"!==c&&"height"!==c&&"className"!==c&&"border"!==c||!(!Q[c]||Q[c]&&Q[c]._autoCSS)||(d[c]=a[c],delete a[c]);a.css=d};h=G.prototype=new D,h.constructor=G,h.kill()._gc=!1,h.ratio=0,h._firstPT=h._targets=h._overwrittenProps=h._startAt=null,h._notifyPluginsOfEnabled=h._lazy=!1,G.version="1.19.1",G.defaultEase=h._ease=new v(null,null,1,1),G.defaultOverwrite="auto",G.ticker=i,G.autoSleep=120,G.lagSmoothing=function(a,b){i.lagSmoothing(a,b)},G.selector=a.$||a.jQuery||function(b){var c=a.$||a.jQuery;return c?(G.selector=c,c(b)):"undefined"==typeof d?b:d.querySelectorAll?d.querySelectorAll(b):d.getElementById("#"===b.charAt(0)?b.substr(1):b)};var J=[],K={},L=/(?:(-|-=|\+=)?\d*\.?\d*(?:e[\-+]?\d+)?)[0-9]/gi,M=function(a){for(var b,c=this._firstPT,d=1e-6;c;)b=c.blob?1===a?this.end:a?this.join(""):this.start:c.c*a+c.s,c.m?b=c.m(b,this._target||c.t):d>b&&b>-d&&!c.blob&&(b=0),c.f?c.fp?c.t[c.p](c.fp,b):c.t[c.p](b):c.t[c.p]=b,c=c._next},N=function(a,b,c,d){var e,f,g,h,i,j,k,l=[],m=0,n="",o=0;for(l.start=a,l.end=b,a=l[0]=a+"",b=l[1]=b+"",c&&(c(l),a=l[0],b=l[1]),l.length=0,e=a.match(L)||[],f=b.match(L)||[],d&&(d._next=null,d.blob=1,l._firstPT=l._applyPT=d),i=f.length,h=0;i>h;h++)k=f[h],j=b.substr(m,b.indexOf(k,m)-m),n+=j||!h?j:",",m+=j.length,o?o=(o+1)%5:"rgba("===j.substr(-5)&&(o=1),k===e[h]||e.length<=h?n+=k:(n&&(l.push(n),n=""),g=parseFloat(e[h]),l.push(g),l._firstPT={_next:l._firstPT,t:l,p:l.length-1,s:g,c:("="===k.charAt(1)?parseInt(k.charAt(0)+"1",10)*parseFloat(k.substr(2)):parseFloat(k)-g)||0,f:0,m:o&&4>o?Math.round:0}),m+=k.length;return n+=b.substr(m),n&&l.push(n),l.setRatio=M,l},O=function(a,b,c,d,e,f,g,h,i){"function"==typeof d&&(d=d(i||0,a));var j,k=typeof a[b],l="function"!==k?"":b.indexOf("set")||"function"!=typeof a["get"+b.substr(3)]?b:"get"+b.substr(3),m="get"!==c?c:l?g?a[l](g):a[l]():a[b],n="string"==typeof d&&"="===d.charAt(1),o={t:a,p:b,s:m,f:"function"===k,pg:0,n:e||b,m:f?"function"==typeof f?f:Math.round:0,pr:0,c:n?parseInt(d.charAt(0)+"1",10)*parseFloat(d.substr(2)):parseFloat(d)-m||0};return("number"!=typeof m||"number"!=typeof d&&!n)&&(g||isNaN(m)||!n&&isNaN(d)||"boolean"==typeof m||"boolean"==typeof d?(o.fp=g,j=N(m,n?o.s+o.c:d,h||G.defaultStringFilter,o),o={t:j,p:"setRatio",s:0,c:1,f:2,pg:0,n:e||b,pr:0,m:0}):(o.s=parseFloat(m),n||(o.c=parseFloat(d)-o.s||0))),o.c?((o._next=this._firstPT)&&(o._next._prev=o),this._firstPT=o,o):void 0},P=G._internals={isArray:p,isSelector:H,lazyTweens:J,blobDif:N},Q=G._plugins={},R=P.tweenLookup={},S=0,T=P.reservedProps={ease:1,delay:1,overwrite:1,onComplete:1,onCompleteParams:1,onCompleteScope:1,useFrames:1,runBackwards:1,startAt:1,onUpdate:1,onUpdateParams:1,onUpdateScope:1,onStart:1,onStartParams:1,onStartScope:1,onReverseComplete:1,onReverseCompleteParams:1,onReverseCompleteScope:1,onRepeat:1,onRepeatParams:1,onRepeatScope:1,easeParams:1,yoyo:1,immediateRender:1,repeat:1,repeatDelay:1,data:1,paused:1,reversed:1,autoCSS:1,lazy:1,onOverwrite:1,callbackScope:1,stringFilter:1,id:1},U={none:0,all:1,auto:2,concurrent:3,allOnStart:4,preexisting:5,"true":1,"false":0},V=D._rootFramesTimeline=new F,W=D._rootTimeline=new F,X=30,Y=P.lazyRender=function(){var a,b=J.length;for(K={};--b>-1;)a=J[b],a&&a._lazy!==!1&&(a.render(a._lazy[0],a._lazy[1],!0),a._lazy=!1);J.length=0};W._startTime=i.time,V._startTime=i.frame,W._active=V._active=!0,setTimeout(Y,1),D._updateRoot=G.render=function(){var a,b,c;if(J.length&&Y(),W.render((i.time-W._startTime)*W._timeScale,!1,!1),V.render((i.frame-V._startTime)*V._timeScale,!1,!1),J.length&&Y(),i.frame>=X){X=i.frame+(parseInt(G.autoSleep,10)||120);for(c in R){for(b=R[c].tweens,a=b.length;--a>-1;)b[a]._gc&&b.splice(a,1);0===b.length&&delete R[c]}if(c=W._first,(!c||c._paused)&&G.autoSleep&&!V._first&&1===i._listeners.tick.length){for(;c&&c._paused;)c=c._next;c||i.sleep()}}},i.addEventListener("tick",D._updateRoot);var Z=function(a,b,c){var d,e,f=a._gsTweenID;if(R[f||(a._gsTweenID=f="t"+S++)]||(R[f]={target:a,tweens:[]}),b&&(d=R[f].tweens,d[e=d.length]=b,c))for(;--e>-1;)d[e]===b&&d.splice(e,1);return R[f].tweens},$=function(a,b,c,d){var e,f,g=a.vars.onOverwrite;return g&&(e=g(a,b,c,d)),g=G.onOverwrite,g&&(f=g(a,b,c,d)),e!==!1&&f!==!1},_=function(a,b,c,d,e){var f,g,h,i;if(1===d||d>=4){for(i=e.length,f=0;i>f;f++)if((h=e[f])!==b)h._gc||h._kill(null,a,b)&&(g=!0);else if(5===d)break;return g}var j,k=b._startTime+m,l=[],n=0,o=0===b._duration;for(f=e.length;--f>-1;)(h=e[f])===b||h._gc||h._paused||(h._timeline!==b._timeline?(j=j||aa(b,0,o),0===aa(h,j,o)&&(l[n++]=h)):h._startTime<=k&&h._startTime+h.totalDuration()/h._timeScale>k&&((o||!h._initted)&&k-h._startTime<=2e-10||(l[n++]=h)));for(f=n;--f>-1;)if(h=l[f],2===d&&h._kill(c,a,b)&&(g=!0),2!==d||!h._firstPT&&h._initted){if(2!==d&&!$(h,b))continue;h._enabled(!1,!1)&&(g=!0)}return g},aa=function(a,b,c){for(var d=a._timeline,e=d._timeScale,f=a._startTime;d._timeline;){if(f+=d._startTime,e*=d._timeScale,d._paused)return-100;d=d._timeline}return f/=e,f>b?f-b:c&&f===b||!a._initted&&2*m>f-b?m:(f+=a.totalDuration()/a._timeScale/e)>b+m?0:f-b-m};h._init=function(){var a,b,c,d,e,f,g=this.vars,h=this._overwrittenProps,i=this._duration,j=!!g.immediateRender,k=g.ease;if(g.startAt){this._startAt&&(this._startAt.render(-1,!0),this._startAt.kill()),e={};for(d in g.startAt)e[d]=g.startAt[d];if(e.overwrite=!1,e.immediateRender=!0,e.lazy=j&&g.lazy!==!1,e.startAt=e.delay=null,this._startAt=G.to(this.target,0,e),j)if(this._time>0)this._startAt=null;else if(0!==i)return}else if(g.runBackwards&&0!==i)if(this._startAt)this._startAt.render(-1,!0),this._startAt.kill(),this._startAt=null;else{0!==this._time&&(j=!1),c={};for(d in g)T[d]&&"autoCSS"!==d||(c[d]=g[d]);if(c.overwrite=0,c.data="isFromStart",c.lazy=j&&g.lazy!==!1,c.immediateRender=j,this._startAt=G.to(this.target,0,c),j){if(0===this._time)return}else this._startAt._init(),this._startAt._enabled(!1),this.vars.immediateRender&&(this._startAt=null)}if(this._ease=k=k?k instanceof v?k:"function"==typeof k?new v(k,g.easeParams):w[k]||G.defaultEase:G.defaultEase,g.easeParams instanceof Array&&k.config&&(this._ease=k.config.apply(k,g.easeParams)),this._easeType=this._ease._type,this._easePower=this._ease._power,this._firstPT=null,this._targets)for(f=this._targets.length,a=0;f>a;a++)this._initProps(this._targets[a],this._propLookup[a]={},this._siblings[a],h?h[a]:null,a)&&(b=!0);else b=this._initProps(this.target,this._propLookup,this._siblings,h,0);if(b&&G._onPluginEvent("_onInitAllProps",this),h&&(this._firstPT||"function"!=typeof this.target&&this._enabled(!1,!1)),g.runBackwards)for(c=this._firstPT;c;)c.s+=c.c,c.c=-c.c,c=c._next;this._onUpdate=g.onUpdate,this._initted=!0},h._initProps=function(b,c,d,e,f){var g,h,i,j,k,l;if(null==b)return!1;K[b._gsTweenID]&&Y(),this.vars.css||b.style&&b!==a&&b.nodeType&&Q.css&&this.vars.autoCSS!==!1&&I(this.vars,b);for(g in this.vars)if(l=this.vars[g],T[g])l&&(l instanceof Array||l.push&&p(l))&&-1!==l.join("").indexOf("{self}")&&(this.vars[g]=l=this._swapSelfInParams(l,this));else if(Q[g]&&(j=new Q[g])._onInitTween(b,this.vars[g],this,f)){for(this._firstPT=k={_next:this._firstPT,t:j,p:"setRatio",s:0,c:1,f:1,n:g,pg:1,pr:j._priority,m:0},h=j._overwriteProps.length;--h>-1;)c[j._overwriteProps[h]]=this._firstPT;(j._priority||j._onInitAllProps)&&(i=!0),(j._onDisable||j._onEnable)&&(this._notifyPluginsOfEnabled=!0),k._next&&(k._next._prev=k)}else c[g]=O.call(this,b,g,"get",l,g,0,null,this.vars.stringFilter,f);return e&&this._kill(e,b)?this._initProps(b,c,d,e,f):this._overwrite>1&&this._firstPT&&d.length>1&&_(b,this,c,this._overwrite,d)?(this._kill(c,b),this._initProps(b,c,d,e,f)):(this._firstPT&&(this.vars.lazy!==!1&&this._duration||this.vars.lazy&&!this._duration)&&(K[b._gsTweenID]=!0),i)},h.render=function(a,b,c){var d,e,f,g,h=this._time,i=this._duration,j=this._rawPrevTime;if(a>=i-1e-7&&a>=0)this._totalTime=this._time=i,this.ratio=this._ease._calcEnd?this._ease.getRatio(1):1,this._reversed||(d=!0,e="onComplete",c=c||this._timeline.autoRemoveChildren),0===i&&(this._initted||!this.vars.lazy||c)&&(this._startTime===this._timeline._duration&&(a=0),(0>j||0>=a&&a>=-1e-7||j===m&&"isPause"!==this.data)&&j!==a&&(c=!0,j>m&&(e="onReverseComplete")),this._rawPrevTime=g=!b||a||j===a?a:m);else if(1e-7>a)this._totalTime=this._time=0,this.ratio=this._ease._calcEnd?this._ease.getRatio(0):0,(0!==h||0===i&&j>0)&&(e="onReverseComplete",d=this._reversed),0>a&&(this._active=!1,0===i&&(this._initted||!this.vars.lazy||c)&&(j>=0&&(j!==m||"isPause"!==this.data)&&(c=!0),this._rawPrevTime=g=!b||a||j===a?a:m)),this._initted||(c=!0);else if(this._totalTime=this._time=a,this._easeType){var k=a/i,l=this._easeType,n=this._easePower;(1===l||3===l&&k>=.5)&&(k=1-k),3===l&&(k*=2),1===n?k*=k:2===n?k*=k*k:3===n?k*=k*k*k:4===n&&(k*=k*k*k*k),1===l?this.ratio=1-k:2===l?this.ratio=k:.5>a/i?this.ratio=k/2:this.ratio=1-k/2}else this.ratio=this._ease.getRatio(a/i);if(this._time!==h||c){if(!this._initted){if(this._init(),!this._initted||this._gc)return;if(!c&&this._firstPT&&(this.vars.lazy!==!1&&this._duration||this.vars.lazy&&!this._duration))return this._time=this._totalTime=h,this._rawPrevTime=j,J.push(this),void(this._lazy=[a,b]);this._time&&!d?this.ratio=this._ease.getRatio(this._time/i):d&&this._ease._calcEnd&&(this.ratio=this._ease.getRatio(0===this._time?0:1))}for(this._lazy!==!1&&(this._lazy=!1),this._active||!this._paused&&this._time!==h&&a>=0&&(this._active=!0),0===h&&(this._startAt&&(a>=0?this._startAt.render(a,b,c):e||(e="_dummyGS")),this.vars.onStart&&(0!==this._time||0===i)&&(b||this._callback("onStart"))),f=this._firstPT;f;)f.f?f.t[f.p](f.c*this.ratio+f.s):f.t[f.p]=f.c*this.ratio+f.s,f=f._next;this._onUpdate&&(0>a&&this._startAt&&a!==-1e-4&&this._startAt.render(a,b,c),b||(this._time!==h||d||c)&&this._callback("onUpdate")),e&&(!this._gc||c)&&(0>a&&this._startAt&&!this._onUpdate&&a!==-1e-4&&this._startAt.render(a,b,c),d&&(this._timeline.autoRemoveChildren&&this._enabled(!1,!1),this._active=!1),!b&&this.vars[e]&&this._callback(e),0===i&&this._rawPrevTime===m&&g!==m&&(this._rawPrevTime=0))}},h._kill=function(a,b,c){if("all"===a&&(a=null),null==a&&(null==b||b===this.target))return this._lazy=!1,this._enabled(!1,!1);b="string"!=typeof b?b||this._targets||this.target:G.selector(b)||b;var d,e,f,g,h,i,j,k,l,m=c&&this._time&&c._startTime===this._startTime&&this._timeline===c._timeline;if((p(b)||H(b))&&"number"!=typeof b[0])for(d=b.length;--d>-1;)this._kill(a,b[d],c)&&(i=!0);else{if(this._targets){for(d=this._targets.length;--d>-1;)if(b===this._targets[d]){h=this._propLookup[d]||{},this._overwrittenProps=this._overwrittenProps||[],e=this._overwrittenProps[d]=a?this._overwrittenProps[d]||{}:"all";break}}else{if(b!==this.target)return!1;h=this._propLookup,e=this._overwrittenProps=a?this._overwrittenProps||{}:"all"}if(h){if(j=a||h,k=a!==e&&"all"!==e&&a!==h&&("object"!=typeof a||!a._tempKill),c&&(G.onOverwrite||this.vars.onOverwrite)){for(f in j)h[f]&&(l||(l=[]),l.push(f));if((l||!a)&&!$(this,c,b,l))return!1}for(f in j)(g=h[f])&&(m&&(g.f?g.t[g.p](g.s):g.t[g.p]=g.s,i=!0),g.pg&&g.t._kill(j)&&(i=!0),g.pg&&0!==g.t._overwriteProps.length||(g._prev?g._prev._next=g._next:g===this._firstPT&&(this._firstPT=g._next),g._next&&(g._next._prev=g._prev),g._next=g._prev=null),delete h[f]),k&&(e[f]=1);!this._firstPT&&this._initted&&this._enabled(!1,!1)}}return i},h.invalidate=function(){return this._notifyPluginsOfEnabled&&G._onPluginEvent("_onDisable",this),this._firstPT=this._overwrittenProps=this._startAt=this._onUpdate=null,this._notifyPluginsOfEnabled=this._active=this._lazy=!1,this._propLookup=this._targets?{}:[],D.prototype.invalidate.call(this),this.vars.immediateRender&&(this._time=-m,this.render(Math.min(0,-this._delay))),this},h._enabled=function(a,b){if(j||i.wake(),a&&this._gc){var c,d=this._targets;if(d)for(c=d.length;--c>-1;)this._siblings[c]=Z(d[c],this,!0);else this._siblings=Z(this.target,this,!0)}return D.prototype._enabled.call(this,a,b),this._notifyPluginsOfEnabled&&this._firstPT?G._onPluginEvent(a?"_onEnable":"_onDisable",this):!1},G.to=function(a,b,c){return new G(a,b,c)},G.from=function(a,b,c){return c.runBackwards=!0,c.immediateRender=0!=c.immediateRender,new G(a,b,c)},G.fromTo=function(a,b,c,d){return d.startAt=c,d.immediateRender=0!=d.immediateRender&&0!=c.immediateRender,new G(a,b,d)},G.delayedCall=function(a,b,c,d,e){return new G(b,0,{delay:a,onComplete:b,onCompleteParams:c,callbackScope:d,onReverseComplete:b,onReverseCompleteParams:c,immediateRender:!1,lazy:!1,useFrames:e,overwrite:0})},G.set=function(a,b){return new G(a,0,b)},G.getTweensOf=function(a,b){if(null==a)return[];a="string"!=typeof a?a:G.selector(a)||a;var c,d,e,f;if((p(a)||H(a))&&"number"!=typeof a[0]){for(c=a.length,d=[];--c>-1;)d=d.concat(G.getTweensOf(a[c],b));for(c=d.length;--c>-1;)for(f=d[c],e=c;--e>-1;)f===d[e]&&d.splice(c,1)}else for(d=Z(a).concat(),c=d.length;--c>-1;)(d[c]._gc||b&&!d[c].isActive())&&d.splice(c,1);return d},G.killTweensOf=G.killDelayedCallsTo=function(a,b,c){"object"==typeof b&&(c=b,b=!1);for(var d=G.getTweensOf(a,b),e=d.length;--e>-1;)d[e]._kill(c,a)};var ba=t("plugins.TweenPlugin",function(a,b){this._overwriteProps=(a||"").split(","),this._propName=this._overwriteProps[0],this._priority=b||0,this._super=ba.prototype},!0);if(h=ba.prototype,ba.version="1.19.0",ba.API=2,h._firstPT=null,h._addTween=O,h.setRatio=M,h._kill=function(a){var b,c=this._overwriteProps,d=this._firstPT;if(null!=a[this._propName])this._overwriteProps=[];else for(b=c.length;--b>-1;)null!=a[c[b]]&&c.splice(b,1);for(;d;)null!=a[d.n]&&(d._next&&(d._next._prev=d._prev),d._prev?(d._prev._next=d._next,d._prev=null):this._firstPT===d&&(this._firstPT=d._next)),d=d._next;return!1},h._mod=h._roundProps=function(a){for(var b,c=this._firstPT;c;)b=a[this._propName]||null!=c.n&&a[c.n.split(this._propName+"_").join("")],b&&"function"==typeof b&&(2===c.f?c.t._applyPT.m=b:c.m=b),c=c._next},G._onPluginEvent=function(a,b){var c,d,e,f,g,h=b._firstPT;if("_onInitAllProps"===a){for(;h;){for(g=h._next,d=e;d&&d.pr>h.pr;)d=d._next;(h._prev=d?d._prev:f)?h._prev._next=h:e=h,(h._next=d)?d._prev=h:f=h,h=g}h=b._firstPT=e}for(;h;)h.pg&&"function"==typeof h.t[a]&&h.t[a]()&&(c=!0),h=h._next;return c},ba.activate=function(a){for(var b=a.length;--b>-1;)a[b].API===ba.API&&(Q[(new a[b])._propName]=a[b]);return!0},s.plugin=function(a){if(!(a&&a.propName&&a.init&&a.API))throw"illegal plugin definition.";var b,c=a.propName,d=a.priority||0,e=a.overwriteProps,f={init:"_onInitTween",set:"setRatio",kill:"_kill",round:"_mod",mod:"_mod",initAll:"_onInitAllProps"},g=t("plugins."+c.charAt(0).toUpperCase()+c.substr(1)+"Plugin",function(){ba.call(this,c,d),this._overwriteProps=e||[]},a.global===!0),h=g.prototype=new ba(c);h.constructor=g,g.API=a.API;for(b in f)"function"==typeof a[b]&&(h[f[b]]=a[b]);return g.version=a.version,ba.activate([g]),g},f=a._gsQueue){for(g=0;gt._rawPrevTime||0===t._rawPrevTime&&a._reversed,_=l?0:r,f=l?r:0;if(e||!this._forcingPlayhead){for(a.pause(h),n=t._prev;n&&n._startTime===h;)n._rawPrevTime=f,n=n._prev;for(n=t._next;n&&n._startTime===h;)n._rawPrevTime=_,n=n._next;e&&e.apply(s||a.vars.callbackScope||a,i||u),(this._forcingPlayhead||!a._paused)&&a.seek(o)}},m=function(t){var e,i=[],s=t.length;for(e=0;e!==s;i.push(t[e++]));return i},d=s.prototype=new e;return s.version="1.17.0",d.constructor=s,d.kill()._gc=d._forcingPlayhead=!1,d.to=function(t,e,s,r){var n=s.repeat&&f.TweenMax||i;return e?this.add(new n(t,e,s),r):this.set(t,s,r)},d.from=function(t,e,s,r){return this.add((s.repeat&&f.TweenMax||i).from(t,e,s),r)},d.fromTo=function(t,e,s,r,n){var a=r.repeat&&f.TweenMax||i;return e?this.add(a.fromTo(t,e,s,r),n):this.set(t,r,n)},d.staggerTo=function(t,e,r,n,a,h,l,_){var u,f=new s({onComplete:h,onCompleteParams:l,callbackScope:_,smoothChildTiming:this.smoothChildTiming});for("string"==typeof t&&(t=i.selector(t)||t),t=t||[],o(t)&&(t=m(t)),n=n||0,0>n&&(t=m(t),t.reverse(),n*=-1),u=0;t.length>u;u++)r.startAt&&(r.startAt=c(r.startAt)),f.to(t[u],e,c(r),u*n);return this.add(f,a)},d.staggerFrom=function(t,e,i,s,r,n,a,o){return i.immediateRender=0!=i.immediateRender,i.runBackwards=!0,this.staggerTo(t,e,i,s,r,n,a,o)},d.staggerFromTo=function(t,e,i,s,r,n,a,o,h){return s.startAt=i,s.immediateRender=0!=s.immediateRender&&0!=i.immediateRender,this.staggerTo(t,e,s,r,n,a,o,h)},d.call=function(t,e,s,r){return this.add(i.delayedCall(0,t,e,s),r)},d.set=function(t,e,s){return s=this._parseTimeOrLabel(s,0,!0),null==e.immediateRender&&(e.immediateRender=s===this._time&&!this._paused),this.add(new i(t,0,e),s)},s.exportRoot=function(t,e){t=t||{},null==t.smoothChildTiming&&(t.smoothChildTiming=!0);var r,n,a=new s(t),o=a._timeline;for(null==e&&(e=!0),o._remove(a,!0),a._startTime=0,a._rawPrevTime=a._time=a._totalTime=o._time,r=o._first;r;)n=r._next,e&&r instanceof i&&r.target===r.vars.onComplete||a.add(r,r._startTime-r._delay),r=n;return o.add(a,0),a},d.add=function(r,n,a,o){var l,_,u,f,c,p;if("number"!=typeof n&&(n=this._parseTimeOrLabel(n,0,!0,r)),!(r instanceof t)){if(r instanceof Array||r&&r.push&&h(r)){for(a=a||"normal",o=o||0,l=n,_=r.length,u=0;_>u;u++)h(f=r[u])&&(f=new s({tweens:f})),this.add(f,l),"string"!=typeof f&&"function"!=typeof f&&("sequence"===a?l=f._startTime+f.totalDuration()/f._timeScale:"start"===a&&(f._startTime-=f.delay())),l+=o;return this._uncache(!0)}if("string"==typeof r)return this.addLabel(r,n);if("function"!=typeof r)throw"Cannot add "+r+" into the timeline; it is not a tween, timeline, function, or string.";r=i.delayedCall(0,r)}if(e.prototype.add.call(this,r,n),(this._gc||this._time===this._duration)&&!this._paused&&this._durationr._startTime;c._timeline;)p&&c._timeline.smoothChildTiming?c.totalTime(c._totalTime,!0):c._gc&&c._enabled(!0,!1),c=c._timeline;return this},d.remove=function(e){if(e instanceof t)return this._remove(e,!1);if(e instanceof Array||e&&e.push&&h(e)){for(var i=e.length;--i>-1;)this.remove(e[i]);return this}return"string"==typeof e?this.removeLabel(e):this.kill(null,e)},d._remove=function(t,i){e.prototype._remove.call(this,t,i);var s=this._last;return s?this._time>s._startTime+s._totalDuration/s._timeScale&&(this._time=this.duration(),this._totalTime=this._totalDuration):this._time=this._totalTime=this._duration=this._totalDuration=0,this},d.append=function(t,e){return this.add(t,this._parseTimeOrLabel(null,e,!0,t))},d.insert=d.insertMultiple=function(t,e,i,s){return this.add(t,e||0,i,s)},d.appendMultiple=function(t,e,i,s){return this.add(t,this._parseTimeOrLabel(null,e,!0,t),i,s)},d.addLabel=function(t,e){return this._labels[t]=this._parseTimeOrLabel(e),this},d.addPause=function(t,e,s,r){var n=i.delayedCall(0,p,["{self}",e,s,r],this);return n.data="isPause",this.add(n,t)},d.removeLabel=function(t){return delete this._labels[t],this},d.getLabelTime=function(t){return null!=this._labels[t]?this._labels[t]:-1},d._parseTimeOrLabel=function(e,i,s,r){var n;if(r instanceof t&&r.timeline===this)this.remove(r);else if(r&&(r instanceof Array||r.push&&h(r)))for(n=r.length;--n>-1;)r[n]instanceof t&&r[n].timeline===this&&this.remove(r[n]);if("string"==typeof i)return this._parseTimeOrLabel(i,s&&"number"==typeof e&&null==this._labels[i]?e-this.duration():0,s);if(i=i||0,"string"!=typeof e||!isNaN(e)&&null==this._labels[e])null==e&&(e=this.duration());else{if(n=e.indexOf("="),-1===n)return null==this._labels[e]?s?this._labels[e]=this.duration()+i:i:this._labels[e]+i;i=parseInt(e.charAt(n-1)+"1",10)*Number(e.substr(n+1)),e=n>1?this._parseTimeOrLabel(e.substr(0,n-1),0,s):this.duration()}return Number(e)+i},d.seek=function(t,e){return this.totalTime("number"==typeof t?t:this._parseTimeOrLabel(t),e!==!1)},d.stop=function(){return this.paused(!0)},d.gotoAndPlay=function(t,e){return this.play(t,e)},d.gotoAndStop=function(t,e){return this.pause(t,e)},d.render=function(t,e,i){this._gc&&this._enabled(!0,!1);var s,n,a,o,h,u=this._dirty?this.totalDuration():this._totalDuration,f=this._time,c=this._startTime,p=this._timeScale,m=this._paused;if(t>=u)this._totalTime=this._time=u,this._reversed||this._hasPausedChild()||(n=!0,o="onComplete",h=!!this._timeline.autoRemoveChildren,0===this._duration&&(0===t||0>this._rawPrevTime||this._rawPrevTime===r)&&this._rawPrevTime!==t&&this._first&&(h=!0,this._rawPrevTime>r&&(o="onReverseComplete"))),this._rawPrevTime=this._duration||!e||t||this._rawPrevTime===t?t:r,t=u+1e-4;else if(1e-7>t)if(this._totalTime=this._time=0,(0!==f||0===this._duration&&this._rawPrevTime!==r&&(this._rawPrevTime>0||0>t&&this._rawPrevTime>=0))&&(o="onReverseComplete",n=this._reversed),0>t)this._active=!1,this._timeline.autoRemoveChildren&&this._reversed?(h=n=!0,o="onReverseComplete"):this._rawPrevTime>=0&&this._first&&(h=!0),this._rawPrevTime=t;else{if(this._rawPrevTime=this._duration||!e||t||this._rawPrevTime===t?t:r,0===t&&n)for(s=this._first;s&&0===s._startTime;)s._duration||(n=!1),s=s._next;t=0,this._initted||(h=!0)}else this._totalTime=this._time=this._rawPrevTime=t;if(this._time!==f&&this._first||i||h){if(this._initted||(this._initted=!0),this._active||!this._paused&&this._time!==f&&t>0&&(this._active=!0),0===f&&this.vars.onStart&&0!==this._time&&(e||this._callback("onStart")),this._time>=f)for(s=this._first;s&&(a=s._next,!this._paused||m);)(s._active||s._startTime<=this._time&&!s._paused&&!s._gc)&&(s._reversed?s.render((s._dirty?s.totalDuration():s._totalDuration)-(t-s._startTime)*s._timeScale,e,i):s.render((t-s._startTime)*s._timeScale,e,i)),s=a;else for(s=this._last;s&&(a=s._prev,!this._paused||m);)(s._active||f>=s._startTime&&!s._paused&&!s._gc)&&(s._reversed?s.render((s._dirty?s.totalDuration():s._totalDuration)-(t-s._startTime)*s._timeScale,e,i):s.render((t-s._startTime)*s._timeScale,e,i)),s=a;this._onUpdate&&(e||(l.length&&_(),this._callback("onUpdate"))),o&&(this._gc||(c===this._startTime||p!==this._timeScale)&&(0===this._time||u>=this.totalDuration())&&(n&&(l.length&&_(),this._timeline.autoRemoveChildren&&this._enabled(!1,!1),this._active=!1),!e&&this.vars[o]&&this._callback(o)))}},d._hasPausedChild=function(){for(var t=this._first;t;){if(t._paused||t instanceof s&&t._hasPausedChild())return!0;t=t._next}return!1},d.getChildren=function(t,e,s,r){r=r||-9999999999;for(var n=[],a=this._first,o=0;a;)r>a._startTime||(a instanceof i?e!==!1&&(n[o++]=a):(s!==!1&&(n[o++]=a),t!==!1&&(n=n.concat(a.getChildren(!0,e,s)),o=n.length))),a=a._next;return n},d.getTweensOf=function(t,e){var s,r,n=this._gc,a=[],o=0;for(n&&this._enabled(!0,!0),s=i.getTweensOf(t),r=s.length;--r>-1;)(s[r].timeline===this||e&&this._contains(s[r]))&&(a[o++]=s[r]);return n&&this._enabled(!1,!0),a},d.recent=function(){return this._recent},d._contains=function(t){for(var e=t.timeline;e;){if(e===this)return!0;e=e.timeline}return!1},d.shiftChildren=function(t,e,i){i=i||0;for(var s,r=this._first,n=this._labels;r;)r._startTime>=i&&(r._startTime+=t),r=r._next;if(e)for(s in n)n[s]>=i&&(n[s]+=t);return this._uncache(!0)},d._kill=function(t,e){if(!t&&!e)return this._enabled(!1,!1);for(var i=e?this.getTweensOf(e):this.getChildren(!0,!0,!1),s=i.length,r=!1;--s>-1;)i[s]._kill(t,e)&&(r=!0);return r},d.clear=function(t){var e=this.getChildren(!1,!0,!0),i=e.length;for(this._time=this._totalTime=0;--i>-1;)e[i]._enabled(!1,!1);return t!==!1&&(this._labels={}),this._uncache(!0)},d.invalidate=function(){for(var e=this._first;e;)e.invalidate(),e=e._next;return t.prototype.invalidate.call(this)},d._enabled=function(t,i){if(t===this._gc)for(var s=this._first;s;)s._enabled(t,!0),s=s._next;return e.prototype._enabled.call(this,t,i)},d.totalTime=function(){this._forcingPlayhead=!0;var e=t.prototype.totalTime.apply(this,arguments);return this._forcingPlayhead=!1,e},d.duration=function(t){return arguments.length?(0!==this.duration()&&0!==t&&this.timeScale(this._duration/t),this):(this._dirty&&this.totalDuration(),this._duration)},d.totalDuration=function(t){if(!arguments.length){if(this._dirty){for(var e,i,s=0,r=this._last,n=999999999999;r;)e=r._prev,r._dirty&&r.totalDuration(),r._startTime>n&&this._sortChildren&&!r._paused?this.add(r,r._startTime-r._delay):n=r._startTime,0>r._startTime&&!r._paused&&(s-=r._startTime,this._timeline.smoothChildTiming&&(this._startTime+=r._startTime/this._timeScale),this.shiftChildren(-r._startTime,!1,-9999999999),n=0),i=r._startTime+r._totalDuration/r._timeScale,i>s&&(s=i),r=e;this._duration=this._totalDuration=s,this._dirty=!1}return this._totalDuration}return 0!==this.totalDuration()&&0!==t&&this.timeScale(this._totalDuration/t),this},d.paused=function(e){if(!e)for(var i=this._first,s=this._time;i;)i._startTime===s&&"isPause"===i.data&&(i._rawPrevTime=0),i=i._next;return t.prototype.paused.apply(this,arguments)},d.usesFrames=function(){for(var e=this._timeline;e._timeline;)e=e._timeline;return e===t._rootFramesTimeline},d.rawTime=function(){return this._paused?this._totalTime:(this._timeline.rawTime()-this._startTime)*this._timeScale},s},!0)}),_gsScope._gsDefine&&_gsScope._gsQueue.pop()(),function(t){"use strict";var e=function(){return(_gsScope.GreenSockGlobals||_gsScope)[t]};"function"==typeof define&&define.amd?define(["TweenLite"],e):"undefined"!=typeof module&&module.exports&&(require("./TweenLite.js"),module.exports=e())}("TimelineLite"); + + +/* EASING PLUGIN*/ +/*! + * VERSION: 1.15.5 + * DATE: 2016-07-08 + * UPDATES AND DOCS AT: http://greensock.com + * + * @license Copyright (c) 2008-2016, GreenSock. All rights reserved. + * This work is subject to the terms at http://greensock.com/standard-license or for + * Club GreenSock members, the software agreement that was issued with your membership. + * + * @author: Jack Doyle, jack@greensock.com + **/ +var _gsScope="undefined"!=typeof module&&module.exports&&"undefined"!=typeof global?global:this||window;(_gsScope._gsQueue||(_gsScope._gsQueue=[])).push(function(){"use strict";_gsScope._gsDefine("easing.Back",["easing.Ease"],function(a){var b,c,d,e=_gsScope.GreenSockGlobals||_gsScope,f=e.com.greensock,g=2*Math.PI,h=Math.PI/2,i=f._class,j=function(b,c){var d=i("easing."+b,function(){},!0),e=d.prototype=new a;return e.constructor=d,e.getRatio=c,d},k=a.register||function(){},l=function(a,b,c,d,e){var f=i("easing."+a,{easeOut:new b,easeIn:new c,easeInOut:new d},!0);return k(f,a),f},m=function(a,b,c){this.t=a,this.v=b,c&&(this.next=c,c.prev=this,this.c=c.v-b,this.gap=c.t-a)},n=function(b,c){var d=i("easing."+b,function(a){this._p1=a||0===a?a:1.70158,this._p2=1.525*this._p1},!0),e=d.prototype=new a;return e.constructor=d,e.getRatio=c,e.config=function(a){return new d(a)},d},o=l("Back",n("BackOut",function(a){return(a-=1)*a*((this._p1+1)*a+this._p1)+1}),n("BackIn",function(a){return a*a*((this._p1+1)*a-this._p1)}),n("BackInOut",function(a){return(a*=2)<1?.5*a*a*((this._p2+1)*a-this._p2):.5*((a-=2)*a*((this._p2+1)*a+this._p2)+2)})),p=i("easing.SlowMo",function(a,b,c){b=b||0===b?b:.7,null==a?a=.7:a>1&&(a=1),this._p=1!==a?b:0,this._p1=(1-a)/2,this._p2=a,this._p3=this._p1+this._p2,this._calcEnd=c===!0},!0),q=p.prototype=new a;return q.constructor=p,q.getRatio=function(a){var b=a+(.5-a)*this._p;return athis._p3?this._calcEnd?1-(a=(a-this._p3)/this._p1)*a:b+(a-b)*(a=(a-this._p3)/this._p1)*a*a*a:this._calcEnd?1:b},p.ease=new p(.7,.7),q.config=p.config=function(a,b,c){return new p(a,b,c)},b=i("easing.SteppedEase",function(a){a=a||1,this._p1=1/a,this._p2=a+1},!0),q=b.prototype=new a,q.constructor=b,q.getRatio=function(a){return 0>a?a=0:a>=1&&(a=.999999999),(this._p2*a>>0)*this._p1},q.config=b.config=function(a){return new b(a)},c=i("easing.RoughEase",function(b){b=b||{};for(var c,d,e,f,g,h,i=b.taper||"none",j=[],k=0,l=0|(b.points||20),n=l,o=b.randomize!==!1,p=b.clamp===!0,q=b.template instanceof a?b.template:null,r="number"==typeof b.strength?.4*b.strength:.4;--n>-1;)c=o?Math.random():1/l*n,d=q?q.getRatio(c):c,"none"===i?e=r:"out"===i?(f=1-c,e=f*f*r):"in"===i?e=c*c*r:.5>c?(f=2*c,e=f*f*.5*r):(f=2*(1-c),e=f*f*.5*r),o?d+=Math.random()*e-.5*e:n%2?d+=.5*e:d-=.5*e,p&&(d>1?d=1:0>d&&(d=0)),j[k++]={x:c,y:d};for(j.sort(function(a,b){return a.x-b.x}),h=new m(1,1,null),n=l;--n>-1;)g=j[n],h=new m(g.x,g.y,h);this._prev=new m(0,0,0!==h.t?h:h.next)},!0),q=c.prototype=new a,q.constructor=c,q.getRatio=function(a){var b=this._prev;if(a>b.t){for(;b.next&&a>=b.t;)b=b.next;b=b.prev}else for(;b.prev&&a<=b.t;)b=b.prev;return this._prev=b,b.v+(a-b.t)/b.gap*b.c},q.config=function(a){return new c(a)},c.ease=new c,l("Bounce",j("BounceOut",function(a){return 1/2.75>a?7.5625*a*a:2/2.75>a?7.5625*(a-=1.5/2.75)*a+.75:2.5/2.75>a?7.5625*(a-=2.25/2.75)*a+.9375:7.5625*(a-=2.625/2.75)*a+.984375}),j("BounceIn",function(a){return(a=1-a)<1/2.75?1-7.5625*a*a:2/2.75>a?1-(7.5625*(a-=1.5/2.75)*a+.75):2.5/2.75>a?1-(7.5625*(a-=2.25/2.75)*a+.9375):1-(7.5625*(a-=2.625/2.75)*a+.984375)}),j("BounceInOut",function(a){var b=.5>a;return a=b?1-2*a:2*a-1,a=1/2.75>a?7.5625*a*a:2/2.75>a?7.5625*(a-=1.5/2.75)*a+.75:2.5/2.75>a?7.5625*(a-=2.25/2.75)*a+.9375:7.5625*(a-=2.625/2.75)*a+.984375,b?.5*(1-a):.5*a+.5})),l("Circ",j("CircOut",function(a){return Math.sqrt(1-(a-=1)*a)}),j("CircIn",function(a){return-(Math.sqrt(1-a*a)-1)}),j("CircInOut",function(a){return(a*=2)<1?-.5*(Math.sqrt(1-a*a)-1):.5*(Math.sqrt(1-(a-=2)*a)+1)})),d=function(b,c,d){var e=i("easing."+b,function(a,b){this._p1=a>=1?a:1,this._p2=(b||d)/(1>a?a:1),this._p3=this._p2/g*(Math.asin(1/this._p1)||0),this._p2=g/this._p2},!0),f=e.prototype=new a;return f.constructor=e,f.getRatio=c,f.config=function(a,b){return new e(a,b)},e},l("Elastic",d("ElasticOut",function(a){return this._p1*Math.pow(2,-10*a)*Math.sin((a-this._p3)*this._p2)+1},.3),d("ElasticIn",function(a){return-(this._p1*Math.pow(2,10*(a-=1))*Math.sin((a-this._p3)*this._p2))},.3),d("ElasticInOut",function(a){return(a*=2)<1?-.5*(this._p1*Math.pow(2,10*(a-=1))*Math.sin((a-this._p3)*this._p2)):this._p1*Math.pow(2,-10*(a-=1))*Math.sin((a-this._p3)*this._p2)*.5+1},.45)),l("Expo",j("ExpoOut",function(a){return 1-Math.pow(2,-10*a)}),j("ExpoIn",function(a){return Math.pow(2,10*(a-1))-.001}),j("ExpoInOut",function(a){return(a*=2)<1?.5*Math.pow(2,10*(a-1)):.5*(2-Math.pow(2,-10*(a-1)))})),l("Sine",j("SineOut",function(a){return Math.sin(a*h)}),j("SineIn",function(a){return-Math.cos(a*h)+1}),j("SineInOut",function(a){return-.5*(Math.cos(Math.PI*a)-1)})),i("easing.EaseLookup",{find:function(b){return a.map[b]}},!0),k(e.SlowMo,"SlowMo","ease,"),k(c,"RoughEase","ease,"),k(b,"SteppedEase","ease,"),o},!0)}),_gsScope._gsDefine&&_gsScope._gsQueue.pop()(),function(){"use strict";var a=function(){return _gsScope.GreenSockGlobals||_gsScope};"function"==typeof define&&define.amd?define(["TweenLite"],a):"undefined"!=typeof module&&module.exports&&(require("../TweenLite.js"),module.exports=a())}(); + + +/* CSS PLUGIN */ +/*! + * VERSION: 1.19.1 + * DATE: 2017-01-17 + * UPDATES AND DOCS AT: http://greensock.com + * + * @license Copyright (c) 2008-2017, GreenSock. All rights reserved. + * This work is subject to the terms at http://greensock.com/standard-license or for + * Club GreenSock members, the software agreement that was issued with your membership. + * + * @author: Jack Doyle, jack@greensock.com + */ +var _gsScope="undefined"!=typeof module&&module.exports&&"undefined"!=typeof global?global:this||window;(_gsScope._gsQueue||(_gsScope._gsQueue=[])).push(function(){"use strict";_gsScope._gsDefine("plugins.CSSPlugin",["plugins.TweenPlugin","TweenLite"],function(a,b){var c,d,e,f,g=function(){a.call(this,"css"),this._overwriteProps.length=0,this.setRatio=g.prototype.setRatio},h=_gsScope._gsDefine.globals,i={},j=g.prototype=new a("css");j.constructor=g,g.version="1.19.1",g.API=2,g.defaultTransformPerspective=0,g.defaultSkewType="compensated",g.defaultSmoothOrigin=!0,j="px",g.suffixMap={top:j,right:j,bottom:j,left:j,width:j,height:j,fontSize:j,padding:j,margin:j,perspective:j,lineHeight:""};var k,l,m,n,o,p,q,r,s=/(?:\-|\.|\b)(\d|\.|e\-)+/g,t=/(?:\d|\-\d|\.\d|\-\.\d|\+=\d|\-=\d|\+=.\d|\-=\.\d)+/g,u=/(?:\+=|\-=|\-|\b)[\d\-\.]+[a-zA-Z0-9]*(?:%|\b)/gi,v=/(?![+-]?\d*\.?\d+|[+-]|e[+-]\d+)[^0-9]/g,w=/(?:\d|\-|\+|=|#|\.)*/g,x=/opacity *= *([^)]*)/i,y=/opacity:([^;]*)/i,z=/alpha\(opacity *=.+?\)/i,A=/^(rgb|hsl)/,B=/([A-Z])/g,C=/-([a-z])/gi,D=/(^(?:url\(\"|url\())|(?:(\"\))$|\)$)/gi,E=function(a,b){return b.toUpperCase()},F=/(?:Left|Right|Width)/i,G=/(M11|M12|M21|M22)=[\d\-\.e]+/gi,H=/progid\:DXImageTransform\.Microsoft\.Matrix\(.+?\)/i,I=/,(?=[^\)]*(?:\(|$))/gi,J=/[\s,\(]/i,K=Math.PI/180,L=180/Math.PI,M={},N={style:{}},O=_gsScope.document||{createElement:function(){return N}},P=function(a,b){return O.createElementNS?O.createElementNS(b||"http://www.w3.org/1999/xhtml",a):O.createElement(a)},Q=P("div"),R=P("img"),S=g._internals={_specialProps:i},T=(_gsScope.navigator||{}).userAgent||"",U=function(){var a=T.indexOf("Android"),b=P("a");return m=-1!==T.indexOf("Safari")&&-1===T.indexOf("Chrome")&&(-1===a||parseFloat(T.substr(a+8,2))>3),o=m&&parseFloat(T.substr(T.indexOf("Version/")+8,2))<6,n=-1!==T.indexOf("Firefox"),(/MSIE ([0-9]{1,}[\.0-9]{0,})/.exec(T)||/Trident\/.*rv:([0-9]{1,}[\.0-9]{0,})/.exec(T))&&(p=parseFloat(RegExp.$1)),b?(b.style.cssText="top:1px;opacity:.55;",/^0.55/.test(b.style.opacity)):!1}(),V=function(a){return x.test("string"==typeof a?a:(a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100:1},W=function(a){_gsScope.console&&console.log(a)},X="",Y="",Z=function(a,b){b=b||Q;var c,d,e=b.style;if(void 0!==e[a])return a;for(a=a.charAt(0).toUpperCase()+a.substr(1),c=["O","Moz","ms","Ms","Webkit"],d=5;--d>-1&&void 0===e[c[d]+a];);return d>=0?(Y=3===d?"ms":c[d],X="-"+Y.toLowerCase()+"-",Y+a):null},$=O.defaultView?O.defaultView.getComputedStyle:function(){},_=g.getStyle=function(a,b,c,d,e){var f;return U||"opacity"!==b?(!d&&a.style[b]?f=a.style[b]:(c=c||$(a))?f=c[b]||c.getPropertyValue(b)||c.getPropertyValue(b.replace(B,"-$1").toLowerCase()):a.currentStyle&&(f=a.currentStyle[b]),null==e||f&&"none"!==f&&"auto"!==f&&"auto auto"!==f?f:e):V(a)},aa=S.convertToPixels=function(a,c,d,e,f){if("px"===e||!e)return d;if("auto"===e||!d)return 0;var h,i,j,k=F.test(c),l=a,m=Q.style,n=0>d,o=1===d;if(n&&(d=-d),o&&(d*=100),"%"===e&&-1!==c.indexOf("border"))h=d/100*(k?a.clientWidth:a.clientHeight);else{if(m.cssText="border:0 solid red;position:"+_(a,"position")+";line-height:0;","%"!==e&&l.appendChild&&"v"!==e.charAt(0)&&"rem"!==e)m[k?"borderLeftWidth":"borderTopWidth"]=d+e;else{if(l=a.parentNode||O.body,i=l._gsCache,j=b.ticker.frame,i&&k&&i.time===j)return i.width*d/100;m[k?"width":"height"]=d+e}l.appendChild(Q),h=parseFloat(Q[k?"offsetWidth":"offsetHeight"]),l.removeChild(Q),k&&"%"===e&&g.cacheWidths!==!1&&(i=l._gsCache=l._gsCache||{},i.time=j,i.width=h/d*100),0!==h||f||(h=aa(a,c,d,e,!0))}return o&&(h/=100),n?-h:h},ba=S.calculateOffset=function(a,b,c){if("absolute"!==_(a,"position",c))return 0;var d="left"===b?"Left":"Top",e=_(a,"margin"+d,c);return a["offset"+d]-(aa(a,b,parseFloat(e),e.replace(w,""))||0)},ca=function(a,b){var c,d,e,f={};if(b=b||$(a,null))if(c=b.length)for(;--c>-1;)e=b[c],(-1===e.indexOf("-transform")||Da===e)&&(f[e.replace(C,E)]=b.getPropertyValue(e));else for(c in b)(-1===c.indexOf("Transform")||Ca===c)&&(f[c]=b[c]);else if(b=a.currentStyle||a.style)for(c in b)"string"==typeof c&&void 0===f[c]&&(f[c.replace(C,E)]=b[c]);return U||(f.opacity=V(a)),d=Ra(a,b,!1),f.rotation=d.rotation,f.skewX=d.skewX,f.scaleX=d.scaleX,f.scaleY=d.scaleY,f.x=d.x,f.y=d.y,Fa&&(f.z=d.z,f.rotationX=d.rotationX,f.rotationY=d.rotationY,f.scaleZ=d.scaleZ),f.filters&&delete f.filters,f},da=function(a,b,c,d,e){var f,g,h,i={},j=a.style;for(g in c)"cssText"!==g&&"length"!==g&&isNaN(g)&&(b[g]!==(f=c[g])||e&&e[g])&&-1===g.indexOf("Origin")&&("number"==typeof f||"string"==typeof f)&&(i[g]="auto"!==f||"left"!==g&&"top"!==g?""!==f&&"auto"!==f&&"none"!==f||"string"!=typeof b[g]||""===b[g].replace(v,"")?f:0:ba(a,g),void 0!==j[g]&&(h=new sa(j,g,j[g],h)));if(d)for(g in d)"className"!==g&&(i[g]=d[g]);return{difs:i,firstMPT:h}},ea={width:["Left","Right"],height:["Top","Bottom"]},fa=["marginLeft","marginRight","marginTop","marginBottom"],ga=function(a,b,c){if("svg"===(a.nodeName+"").toLowerCase())return(c||$(a))[b]||0;if(a.getCTM&&Oa(a))return a.getBBox()[b]||0;var d=parseFloat("width"===b?a.offsetWidth:a.offsetHeight),e=ea[b],f=e.length;for(c=c||$(a,null);--f>-1;)d-=parseFloat(_(a,"padding"+e[f],c,!0))||0,d-=parseFloat(_(a,"border"+e[f]+"Width",c,!0))||0;return d},ha=function(a,b){if("contain"===a||"auto"===a||"auto auto"===a)return a+" ";(null==a||""===a)&&(a="0 0");var c,d=a.split(" "),e=-1!==a.indexOf("left")?"0%":-1!==a.indexOf("right")?"100%":d[0],f=-1!==a.indexOf("top")?"0%":-1!==a.indexOf("bottom")?"100%":d[1];if(d.length>3&&!b){for(d=a.split(", ").join(",").split(","),a=[],c=0;c2?" "+d[2]:""),b&&(b.oxp=-1!==e.indexOf("%"),b.oyp=-1!==f.indexOf("%"),b.oxr="="===e.charAt(1),b.oyr="="===f.charAt(1),b.ox=parseFloat(e.replace(v,"")),b.oy=parseFloat(f.replace(v,"")),b.v=a),b||a},ia=function(a,b){return"function"==typeof a&&(a=a(r,q)),"string"==typeof a&&"="===a.charAt(1)?parseInt(a.charAt(0)+"1",10)*parseFloat(a.substr(2)):parseFloat(a)-parseFloat(b)||0},ja=function(a,b){return"function"==typeof a&&(a=a(r,q)),null==a?b:"string"==typeof a&&"="===a.charAt(1)?parseInt(a.charAt(0)+"1",10)*parseFloat(a.substr(2))+b:parseFloat(a)||0},ka=function(a,b,c,d){var e,f,g,h,i,j=1e-6;return"function"==typeof a&&(a=a(r,q)),null==a?h=b:"number"==typeof a?h=a:(e=360,f=a.split("_"),i="="===a.charAt(1),g=(i?parseInt(a.charAt(0)+"1",10)*parseFloat(f[0].substr(2)):parseFloat(f[0]))*(-1===a.indexOf("rad")?1:L)-(i?0:b),f.length&&(d&&(d[c]=b+g),-1!==a.indexOf("short")&&(g%=e,g!==g%(e/2)&&(g=0>g?g+e:g-e)),-1!==a.indexOf("_cw")&&0>g?g=(g+9999999999*e)%e-(g/e|0)*e:-1!==a.indexOf("ccw")&&g>0&&(g=(g-9999999999*e)%e-(g/e|0)*e)),h=b+g),j>h&&h>-j&&(h=0),h},la={aqua:[0,255,255],lime:[0,255,0],silver:[192,192,192],black:[0,0,0],maroon:[128,0,0],teal:[0,128,128],blue:[0,0,255],navy:[0,0,128],white:[255,255,255],fuchsia:[255,0,255],olive:[128,128,0],yellow:[255,255,0],orange:[255,165,0],gray:[128,128,128],purple:[128,0,128],green:[0,128,0],red:[255,0,0],pink:[255,192,203],cyan:[0,255,255],transparent:[255,255,255,0]},ma=function(a,b,c){return a=0>a?a+1:a>1?a-1:a,255*(1>6*a?b+(c-b)*a*6:.5>a?c:2>3*a?b+(c-b)*(2/3-a)*6:b)+.5|0},na=g.parseColor=function(a,b){var c,d,e,f,g,h,i,j,k,l,m;if(a)if("number"==typeof a)c=[a>>16,a>>8&255,255&a];else{if(","===a.charAt(a.length-1)&&(a=a.substr(0,a.length-1)),la[a])c=la[a];else if("#"===a.charAt(0))4===a.length&&(d=a.charAt(1),e=a.charAt(2),f=a.charAt(3),a="#"+d+d+e+e+f+f),a=parseInt(a.substr(1),16),c=[a>>16,a>>8&255,255&a];else if("hsl"===a.substr(0,3))if(c=m=a.match(s),b){if(-1!==a.indexOf("="))return a.match(t)}else g=Number(c[0])%360/360,h=Number(c[1])/100,i=Number(c[2])/100,e=.5>=i?i*(h+1):i+h-i*h,d=2*i-e,c.length>3&&(c[3]=Number(a[3])),c[0]=ma(g+1/3,d,e),c[1]=ma(g,d,e),c[2]=ma(g-1/3,d,e);else c=a.match(s)||la.transparent;c[0]=Number(c[0]),c[1]=Number(c[1]),c[2]=Number(c[2]),c.length>3&&(c[3]=Number(c[3]))}else c=la.black;return b&&!m&&(d=c[0]/255,e=c[1]/255,f=c[2]/255,j=Math.max(d,e,f),k=Math.min(d,e,f),i=(j+k)/2,j===k?g=h=0:(l=j-k,h=i>.5?l/(2-j-k):l/(j+k),g=j===d?(e-f)/l+(f>e?6:0):j===e?(f-d)/l+2:(d-e)/l+4,g*=60),c[0]=g+.5|0,c[1]=100*h+.5|0,c[2]=100*i+.5|0),c},oa=function(a,b){var c,d,e,f=a.match(pa)||[],g=0,h=f.length?"":a;for(c=0;c0?g[0].replace(s,""):"";return k?e=b?function(a){var b,m,n,o;if("number"==typeof a)a+=l;else if(d&&I.test(a)){for(o=a.replace(I,"|").split("|"),n=0;nn--)for(;++nm--)for(;++mi;i++)h[a[i]]=j[i]=j[i]||j[(i-1)/2>>0];return e.parse(b,h,f,g)}},sa=(S._setPluginRatio=function(a){this.plugin.setRatio(a);for(var b,c,d,e,f,g=this.data,h=g.proxy,i=g.firstMPT,j=1e-6;i;)b=h[i.v],i.r?b=Math.round(b):j>b&&b>-j&&(b=0),i.t[i.p]=b,i=i._next;if(g.autoRotate&&(g.autoRotate.rotation=g.mod?g.mod(h.rotation,this.t):h.rotation),1===a||0===a)for(i=g.firstMPT,f=1===a?"e":"b";i;){if(c=i.t,c.type){if(1===c.type){for(e=c.xs0+c.s+c.xs1,d=1;d0;)i="xn"+g,h=d.p+"_"+i,n[h]=d.data[i],m[h]=d[i],f||(j=new sa(d,i,h,j,d.rxp[i]));d=d._next}return{proxy:m,end:n,firstMPT:j,pt:k}},S.CSSPropTween=function(a,b,d,e,g,h,i,j,k,l,m){this.t=a,this.p=b,this.s=d,this.c=e,this.n=i||b,a instanceof ta||f.push(this.n),this.r=j,this.type=h||0,k&&(this.pr=k,c=!0),this.b=void 0===l?d:l,this.e=void 0===m?d+e:m,g&&(this._next=g,g._prev=this)}),ua=function(a,b,c,d,e,f){var g=new ta(a,b,c,d-c,e,-1,f);return g.b=c,g.e=g.xs0=d,g},va=g.parseComplex=function(a,b,c,d,e,f,h,i,j,l){c=c||f||"","function"==typeof d&&(d=d(r,q)),h=new ta(a,b,0,0,h,l?2:1,null,!1,i,c,d),d+="",e&&pa.test(d+c)&&(d=[c,d],g.colorStringFilter(d),c=d[0],d=d[1]);var m,n,o,p,u,v,w,x,y,z,A,B,C,D=c.split(", ").join(",").split(" "),E=d.split(", ").join(",").split(" "),F=D.length,G=k!==!1;for((-1!==d.indexOf(",")||-1!==c.indexOf(","))&&(D=D.join(" ").replace(I,", ").split(" "),E=E.join(" ").replace(I,", ").split(" "),F=D.length),F!==E.length&&(D=(f||"").split(" "),F=D.length),h.plugin=j,h.setRatio=l,pa.lastIndex=0,m=0;F>m;m++)if(p=D[m],u=E[m],x=parseFloat(p),x||0===x)h.appendXtra("",x,ia(u,x),u.replace(t,""),G&&-1!==u.indexOf("px"),!0);else if(e&&pa.test(p))B=u.indexOf(")")+1,B=")"+(B?u.substr(B):""),C=-1!==u.indexOf("hsl")&&U,p=na(p,C),u=na(u,C),y=p.length+u.length>6,y&&!U&&0===u[3]?(h["xs"+h.l]+=h.l?" transparent":"transparent",h.e=h.e.split(E[m]).join("transparent")):(U||(y=!1),C?h.appendXtra(y?"hsla(":"hsl(",p[0],ia(u[0],p[0]),",",!1,!0).appendXtra("",p[1],ia(u[1],p[1]),"%,",!1).appendXtra("",p[2],ia(u[2],p[2]),y?"%,":"%"+B,!1):h.appendXtra(y?"rgba(":"rgb(",p[0],u[0]-p[0],",",!0,!0).appendXtra("",p[1],u[1]-p[1],",",!0).appendXtra("",p[2],u[2]-p[2],y?",":B,!0),y&&(p=p.length<4?1:p[3],h.appendXtra("",p,(u.length<4?1:u[3])-p,B,!1))),pa.lastIndex=0;else if(v=p.match(s)){if(w=u.match(t),!w||w.length!==v.length)return h;for(o=0,n=0;n0;)j["xn"+wa]=0,j["xs"+wa]="";j.xs0="",j._next=j._prev=j.xfirst=j.data=j.plugin=j.setRatio=j.rxp=null,j.appendXtra=function(a,b,c,d,e,f){var g=this,h=g.l;return g["xs"+h]+=f&&(h||g["xs"+h])?" "+a:a||"",c||0===h||g.plugin?(g.l++,g.type=g.setRatio?2:1,g["xs"+g.l]=d||"",h>0?(g.data["xn"+h]=b+c,g.rxp["xn"+h]=e,g["xn"+h]=b,g.plugin||(g.xfirst=new ta(g,"xn"+h,b,c,g.xfirst||g,0,g.n,e,g.pr),g.xfirst.xs0=0),g):(g.data={s:b+c},g.rxp={},g.s=b,g.c=c,g.r=e,g)):(g["xs"+h]+=b+(d||""),g)};var xa=function(a,b){b=b||{},this.p=b.prefix?Z(a)||a:a,i[a]=i[this.p]=this,this.format=b.formatter||qa(b.defaultValue,b.color,b.collapsible,b.multi),b.parser&&(this.parse=b.parser),this.clrs=b.color,this.multi=b.multi,this.keyword=b.keyword,this.dflt=b.defaultValue,this.pr=b.priority||0},ya=S._registerComplexSpecialProp=function(a,b,c){"object"!=typeof b&&(b={parser:c});var d,e,f=a.split(","),g=b.defaultValue;for(c=c||[g],d=0;dh.length?i.length:h.length,g=0;j>g;g++)b=h[g]=h[g]||this.dflt,c=i[g]=i[g]||this.dflt,m&&(k=b.indexOf(m),l=c.indexOf(m),k!==l&&(-1===l?h[g]=h[g].split(m).join(""):-1===k&&(h[g]+=" "+m)));b=h.join(", "),c=i.join(", ")}return va(a,this.p,b,c,this.clrs,this.dflt,d,this.pr,e,f)},j.parse=function(a,b,c,d,f,g,h){return this.parseComplex(a.style,this.format(_(a,this.p,e,!1,this.dflt)),this.format(b),f,g)},g.registerSpecialProp=function(a,b,c){ya(a,{parser:function(a,d,e,f,g,h,i){var j=new ta(a,e,0,0,g,2,e,!1,c);return j.plugin=h,j.setRatio=b(a,d,f._tween,e),j},priority:c})},g.useSVGTransformAttr=!0;var Aa,Ba="scaleX,scaleY,scaleZ,x,y,z,skewX,skewY,rotation,rotationX,rotationY,perspective,xPercent,yPercent".split(","),Ca=Z("transform"),Da=X+"transform",Ea=Z("transformOrigin"),Fa=null!==Z("perspective"),Ga=S.Transform=function(){this.perspective=parseFloat(g.defaultTransformPerspective)||0,this.force3D=g.defaultForce3D!==!1&&Fa?g.defaultForce3D||"auto":!1},Ha=_gsScope.SVGElement,Ia=function(a,b,c){var d,e=O.createElementNS("http://www.w3.org/2000/svg",a),f=/([a-z])([A-Z])/g;for(d in c)e.setAttributeNS(null,d.replace(f,"$1-$2").toLowerCase(),c[d]);return b.appendChild(e),e},Ja=O.documentElement||{},Ka=function(){var a,b,c,d=p||/Android/i.test(T)&&!_gsScope.chrome;return O.createElementNS&&!d&&(a=Ia("svg",Ja),b=Ia("rect",a,{width:100,height:50,x:100}),c=b.getBoundingClientRect().width,b.style[Ea]="50% 50%",b.style[Ca]="scaleX(0.5)",d=c===b.getBoundingClientRect().width&&!(n&&Fa),Ja.removeChild(a)),d}(),La=function(a,b,c,d,e,f){var h,i,j,k,l,m,n,o,p,q,r,s,t,u,v=a._gsTransform,w=Qa(a,!0);v&&(t=v.xOrigin,u=v.yOrigin),(!d||(h=d.split(" ")).length<2)&&(n=a.getBBox(),0===n.x&&0===n.y&&n.width+n.height===0&&(n={x:parseFloat(a.hasAttribute("x")?a.getAttribute("x"):a.hasAttribute("cx")?a.getAttribute("cx"):0)||0,y:parseFloat(a.hasAttribute("y")?a.getAttribute("y"):a.hasAttribute("cy")?a.getAttribute("cy"):0)||0,width:0,height:0}),b=ha(b).split(" "),h=[(-1!==b[0].indexOf("%")?parseFloat(b[0])/100*n.width:parseFloat(b[0]))+n.x,(-1!==b[1].indexOf("%")?parseFloat(b[1])/100*n.height:parseFloat(b[1]))+n.y]),c.xOrigin=k=parseFloat(h[0]),c.yOrigin=l=parseFloat(h[1]),d&&w!==Pa&&(m=w[0],n=w[1],o=w[2],p=w[3],q=w[4],r=w[5],s=m*p-n*o,s&&(i=k*(p/s)+l*(-o/s)+(o*r-p*q)/s,j=k*(-n/s)+l*(m/s)-(m*r-n*q)/s,k=c.xOrigin=h[0]=i,l=c.yOrigin=h[1]=j)),v&&(f&&(c.xOffset=v.xOffset,c.yOffset=v.yOffset,v=c),e||e!==!1&&g.defaultSmoothOrigin!==!1?(i=k-t,j=l-u,v.xOffset+=i*w[0]+j*w[2]-i,v.yOffset+=i*w[1]+j*w[3]-j):v.xOffset=v.yOffset=0),f||a.setAttribute("data-svg-origin",h.join(" "))},Ma=function(a){var b,c=P("svg",this.ownerSVGElement.getAttribute("xmlns")||"http://www.w3.org/2000/svg"),d=this.parentNode,e=this.nextSibling,f=this.style.cssText;if(Ja.appendChild(c),c.appendChild(this),this.style.display="block",a)try{b=this.getBBox(),this._originalGetBBox=this.getBBox,this.getBBox=Ma}catch(g){}else this._originalGetBBox&&(b=this._originalGetBBox());return e?d.insertBefore(this,e):d.appendChild(this),Ja.removeChild(c),this.style.cssText=f,b},Na=function(a){try{return a.getBBox()}catch(b){return Ma.call(a,!0)}},Oa=function(a){return!(!(Ha&&a.getCTM&&Na(a))||a.parentNode&&!a.ownerSVGElement)},Pa=[1,0,0,1,0,0],Qa=function(a,b){var c,d,e,f,g,h,i=a._gsTransform||new Ga,j=1e5,k=a.style;if(Ca?d=_(a,Da,null,!0):a.currentStyle&&(d=a.currentStyle.filter.match(G),d=d&&4===d.length?[d[0].substr(4),Number(d[2].substr(4)),Number(d[1].substr(4)),d[3].substr(4),i.x||0,i.y||0].join(","):""),c=!d||"none"===d||"matrix(1, 0, 0, 1, 0, 0)"===d,c&&Ca&&((h="none"===$(a).display)||!a.parentNode)&&(h&&(f=k.display,k.display="block"),a.parentNode||(g=1,Ja.appendChild(a)),d=_(a,Da,null,!0),c=!d||"none"===d||"matrix(1, 0, 0, 1, 0, 0)"===d,f?k.display=f:h&&Va(k,"display"),g&&Ja.removeChild(a)),(i.svg||a.getCTM&&Oa(a))&&(c&&-1!==(k[Ca]+"").indexOf("matrix")&&(d=k[Ca],c=0),e=a.getAttribute("transform"),c&&e&&(-1!==e.indexOf("matrix")?(d=e,c=0):-1!==e.indexOf("translate")&&(d="matrix(1,0,0,1,"+e.match(/(?:\-|\b)[\d\-\.e]+\b/gi).join(",")+")",c=0))),c)return Pa;for(e=(d||"").match(s)||[],wa=e.length;--wa>-1;)f=Number(e[wa]),e[wa]=(g=f-(f|=0))?(g*j+(0>g?-.5:.5)|0)/j+f:f;return b&&e.length>6?[e[0],e[1],e[4],e[5],e[12],e[13]]:e},Ra=S.getTransform=function(a,c,d,e){if(a._gsTransform&&d&&!e)return a._gsTransform;var f,h,i,j,k,l,m=d?a._gsTransform||new Ga:new Ga,n=m.scaleX<0,o=2e-5,p=1e5,q=Fa?parseFloat(_(a,Ea,c,!1,"0 0 0").split(" ")[2])||m.zOrigin||0:0,r=parseFloat(g.defaultTransformPerspective)||0;if(m.svg=!(!a.getCTM||!Oa(a)),m.svg&&(La(a,_(a,Ea,c,!1,"50% 50%")+"",m,a.getAttribute("data-svg-origin")),Aa=g.useSVGTransformAttr||Ka),f=Qa(a),f!==Pa){if(16===f.length){var s,t,u,v,w,x=f[0],y=f[1],z=f[2],A=f[3],B=f[4],C=f[5],D=f[6],E=f[7],F=f[8],G=f[9],H=f[10],I=f[12],J=f[13],K=f[14],M=f[11],N=Math.atan2(D,H);m.zOrigin&&(K=-m.zOrigin,I=F*K-f[12],J=G*K-f[13],K=H*K+m.zOrigin-f[14]),m.rotationX=N*L,N&&(v=Math.cos(-N),w=Math.sin(-N),s=B*v+F*w,t=C*v+G*w,u=D*v+H*w,F=B*-w+F*v,G=C*-w+G*v,H=D*-w+H*v,M=E*-w+M*v,B=s,C=t,D=u),N=Math.atan2(-z,H),m.rotationY=N*L,N&&(v=Math.cos(-N),w=Math.sin(-N),s=x*v-F*w,t=y*v-G*w,u=z*v-H*w,G=y*w+G*v,H=z*w+H*v,M=A*w+M*v,x=s,y=t,z=u),N=Math.atan2(y,x),m.rotation=N*L,N&&(v=Math.cos(-N),w=Math.sin(-N),x=x*v+B*w,t=y*v+C*w,C=y*-w+C*v,D=z*-w+D*v,y=t),m.rotationX&&Math.abs(m.rotationX)+Math.abs(m.rotation)>359.9&&(m.rotationX=m.rotation=0,m.rotationY=180-m.rotationY),m.scaleX=(Math.sqrt(x*x+y*y)*p+.5|0)/p,m.scaleY=(Math.sqrt(C*C+G*G)*p+.5|0)/p,m.scaleZ=(Math.sqrt(D*D+H*H)*p+.5|0)/p,m.rotationX||m.rotationY?m.skewX=0:(m.skewX=B||C?Math.atan2(B,C)*L+m.rotation:m.skewX||0,Math.abs(m.skewX)>90&&Math.abs(m.skewX)<270&&(n?(m.scaleX*=-1,m.skewX+=m.rotation<=0?180:-180,m.rotation+=m.rotation<=0?180:-180):(m.scaleY*=-1,m.skewX+=m.skewX<=0?180:-180))),m.perspective=M?1/(0>M?-M:M):0,m.x=I,m.y=J,m.z=K,m.svg&&(m.x-=m.xOrigin-(m.xOrigin*x-m.yOrigin*B),m.y-=m.yOrigin-(m.yOrigin*y-m.xOrigin*C))}else if(!Fa||e||!f.length||m.x!==f[4]||m.y!==f[5]||!m.rotationX&&!m.rotationY){var O=f.length>=6,P=O?f[0]:1,Q=f[1]||0,R=f[2]||0,S=O?f[3]:1;m.x=f[4]||0,m.y=f[5]||0,i=Math.sqrt(P*P+Q*Q),j=Math.sqrt(S*S+R*R),k=P||Q?Math.atan2(Q,P)*L:m.rotation||0,l=R||S?Math.atan2(R,S)*L+k:m.skewX||0,Math.abs(l)>90&&Math.abs(l)<270&&(n?(i*=-1,l+=0>=k?180:-180,k+=0>=k?180:-180):(j*=-1,l+=0>=l?180:-180)),m.scaleX=i,m.scaleY=j,m.rotation=k,m.skewX=l,Fa&&(m.rotationX=m.rotationY=m.z=0,m.perspective=r,m.scaleZ=1),m.svg&&(m.x-=m.xOrigin-(m.xOrigin*P+m.yOrigin*R),m.y-=m.yOrigin-(m.xOrigin*Q+m.yOrigin*S))}m.zOrigin=q;for(h in m)m[h]-o&&(m[h]=0)}return d&&(a._gsTransform=m,m.svg&&(Aa&&a.style[Ca]?b.delayedCall(.001,function(){Va(a.style,Ca)}):!Aa&&a.getAttribute("transform")&&b.delayedCall(.001,function(){a.removeAttribute("transform")}))),m},Sa=function(a){var b,c,d=this.data,e=-d.rotation*K,f=e+d.skewX*K,g=1e5,h=(Math.cos(e)*d.scaleX*g|0)/g,i=(Math.sin(e)*d.scaleX*g|0)/g,j=(Math.sin(f)*-d.scaleY*g|0)/g,k=(Math.cos(f)*d.scaleY*g|0)/g,l=this.t.style,m=this.t.currentStyle;if(m){c=i,i=-j,j=-c,b=m.filter,l.filter="";var n,o,q=this.t.offsetWidth,r=this.t.offsetHeight,s="absolute"!==m.position,t="progid:DXImageTransform.Microsoft.Matrix(M11="+h+", M12="+i+", M21="+j+", M22="+k,u=d.x+q*d.xPercent/100,v=d.y+r*d.yPercent/100;if(null!=d.ox&&(n=(d.oxp?q*d.ox*.01:d.ox)-q/2,o=(d.oyp?r*d.oy*.01:d.oy)-r/2,u+=n-(n*h+o*i),v+=o-(n*j+o*k)),s?(n=q/2,o=r/2,t+=", Dx="+(n-(n*h+o*i)+u)+", Dy="+(o-(n*j+o*k)+v)+")"):t+=", sizingMethod='auto expand')",-1!==b.indexOf("DXImageTransform.Microsoft.Matrix(")?l.filter=b.replace(H,t):l.filter=t+" "+b,(0===a||1===a)&&1===h&&0===i&&0===j&&1===k&&(s&&-1===t.indexOf("Dx=0, Dy=0")||x.test(b)&&100!==parseFloat(RegExp.$1)||-1===b.indexOf(b.indexOf("Alpha"))&&l.removeAttribute("filter")),!s){var y,z,A,B=8>p?1:-1;for(n=d.ieOffsetX||0,o=d.ieOffsetY||0,d.ieOffsetX=Math.round((q-((0>h?-h:h)*q+(0>i?-i:i)*r))/2+u),d.ieOffsetY=Math.round((r-((0>k?-k:k)*r+(0>j?-j:j)*q))/2+v),wa=0;4>wa;wa++)z=fa[wa],y=m[z],c=-1!==y.indexOf("px")?parseFloat(y):aa(this.t,z,parseFloat(y),y.replace(w,""))||0,A=c!==d[z]?2>wa?-d.ieOffsetX:-d.ieOffsetY:2>wa?n-d.ieOffsetX:o-d.ieOffsetY,l[z]=(d[z]=Math.round(c-A*(0===wa||2===wa?1:B)))+"px"}}},Ta=S.set3DTransformRatio=S.setTransformRatio=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,o,p,q,r,s,t,u,v,w,x,y,z=this.data,A=this.t.style,B=z.rotation,C=z.rotationX,D=z.rotationY,E=z.scaleX,F=z.scaleY,G=z.scaleZ,H=z.x,I=z.y,J=z.z,L=z.svg,M=z.perspective,N=z.force3D,O=z.skewY,P=z.skewX;if(O&&(P+=O,B+=O),((1===a||0===a)&&"auto"===N&&(this.tween._totalTime===this.tween._totalDuration||!this.tween._totalTime)||!N)&&!J&&!M&&!D&&!C&&1===G||Aa&&L||!Fa)return void(B||P||L?(B*=K,x=P*K,y=1e5,c=Math.cos(B)*E,f=Math.sin(B)*E,d=Math.sin(B-x)*-F,g=Math.cos(B-x)*F,x&&"simple"===z.skewType&&(b=Math.tan(x-O*K),b=Math.sqrt(1+b*b),d*=b,g*=b,O&&(b=Math.tan(O*K),b=Math.sqrt(1+b*b),c*=b,f*=b)),L&&(H+=z.xOrigin-(z.xOrigin*c+z.yOrigin*d)+z.xOffset,I+=z.yOrigin-(z.xOrigin*f+z.yOrigin*g)+z.yOffset,Aa&&(z.xPercent||z.yPercent)&&(q=this.t.getBBox(),H+=.01*z.xPercent*q.width,I+=.01*z.yPercent*q.height),q=1e-6,q>H&&H>-q&&(H=0),q>I&&I>-q&&(I=0)),u=(c*y|0)/y+","+(f*y|0)/y+","+(d*y|0)/y+","+(g*y|0)/y+","+H+","+I+")",L&&Aa?this.t.setAttribute("transform","matrix("+u):A[Ca]=(z.xPercent||z.yPercent?"translate("+z.xPercent+"%,"+z.yPercent+"%) matrix(":"matrix(")+u):A[Ca]=(z.xPercent||z.yPercent?"translate("+z.xPercent+"%,"+z.yPercent+"%) matrix(":"matrix(")+E+",0,0,"+F+","+H+","+I+")");if(n&&(q=1e-4,q>E&&E>-q&&(E=G=2e-5),q>F&&F>-q&&(F=G=2e-5),!M||z.z||z.rotationX||z.rotationY||(M=0)),B||P)B*=K,r=c=Math.cos(B),s=f=Math.sin(B),P&&(B-=P*K,r=Math.cos(B),s=Math.sin(B),"simple"===z.skewType&&(b=Math.tan((P-O)*K),b=Math.sqrt(1+b*b),r*=b,s*=b,z.skewY&&(b=Math.tan(O*K),b=Math.sqrt(1+b*b),c*=b,f*=b))),d=-s,g=r;else{if(!(D||C||1!==G||M||L))return void(A[Ca]=(z.xPercent||z.yPercent?"translate("+z.xPercent+"%,"+z.yPercent+"%) translate3d(":"translate3d(")+H+"px,"+I+"px,"+J+"px)"+(1!==E||1!==F?" scale("+E+","+F+")":""));c=g=1,d=f=0}k=1,e=h=i=j=l=m=0,o=M?-1/M:0,p=z.zOrigin,q=1e-6,v=",",w="0",B=D*K,B&&(r=Math.cos(B),s=Math.sin(B),i=-s,l=o*-s,e=c*s,h=f*s,k=r,o*=r,c*=r,f*=r),B=C*K,B&&(r=Math.cos(B),s=Math.sin(B),b=d*r+e*s,t=g*r+h*s,j=k*s,m=o*s,e=d*-s+e*r,h=g*-s+h*r,k*=r,o*=r,d=b,g=t),1!==G&&(e*=G,h*=G,k*=G,o*=G),1!==F&&(d*=F,g*=F,j*=F,m*=F),1!==E&&(c*=E,f*=E,i*=E,l*=E),(p||L)&&(p&&(H+=e*-p,I+=h*-p,J+=k*-p+p),L&&(H+=z.xOrigin-(z.xOrigin*c+z.yOrigin*d)+z.xOffset,I+=z.yOrigin-(z.xOrigin*f+z.yOrigin*g)+z.yOffset),q>H&&H>-q&&(H=w),q>I&&I>-q&&(I=w),q>J&&J>-q&&(J=0)),u=z.xPercent||z.yPercent?"translate("+z.xPercent+"%,"+z.yPercent+"%) matrix3d(":"matrix3d(",u+=(q>c&&c>-q?w:c)+v+(q>f&&f>-q?w:f)+v+(q>i&&i>-q?w:i),u+=v+(q>l&&l>-q?w:l)+v+(q>d&&d>-q?w:d)+v+(q>g&&g>-q?w:g),C||D||1!==G?(u+=v+(q>j&&j>-q?w:j)+v+(q>m&&m>-q?w:m)+v+(q>e&&e>-q?w:e),u+=v+(q>h&&h>-q?w:h)+v+(q>k&&k>-q?w:k)+v+(q>o&&o>-q?w:o)+v):u+=",0,0,0,0,1,0,",u+=H+v+I+v+J+v+(M?1+-J/M:1)+")",A[Ca]=u};j=Ga.prototype,j.x=j.y=j.z=j.skewX=j.skewY=j.rotation=j.rotationX=j.rotationY=j.zOrigin=j.xPercent=j.yPercent=j.xOffset=j.yOffset=0,j.scaleX=j.scaleY=j.scaleZ=1,ya("transform,scale,scaleX,scaleY,scaleZ,x,y,z,rotation,rotationX,rotationY,rotationZ,skewX,skewY,shortRotation,shortRotationX,shortRotationY,shortRotationZ,transformOrigin,svgOrigin,transformPerspective,directionalRotation,parseTransform,force3D,skewType,xPercent,yPercent,smoothOrigin",{parser:function(a,b,c,d,f,h,i){if(d._lastParsedTransform===i)return f;d._lastParsedTransform=i;var j,k=i.scale&&"function"==typeof i.scale?i.scale:0;"function"==typeof i[c]&&(j=i[c],i[c]=b),k&&(i.scale=k(r,a));var l,m,n,o,p,s,t,u,v,w=a._gsTransform,x=a.style,y=1e-6,z=Ba.length,A=i,B={},C="transformOrigin",D=Ra(a,e,!0,A.parseTransform),E=A.transform&&("function"==typeof A.transform?A.transform(r,q):A.transform);if(d._transform=D,E&&"string"==typeof E&&Ca)m=Q.style,m[Ca]=E,m.display="block",m.position="absolute",O.body.appendChild(Q),l=Ra(Q,null,!1),D.svg&&(s=D.xOrigin,t=D.yOrigin,l.x-=D.xOffset,l.y-=D.yOffset,(A.transformOrigin||A.svgOrigin)&&(E={},La(a,ha(A.transformOrigin),E,A.svgOrigin,A.smoothOrigin,!0),s=E.xOrigin,t=E.yOrigin,l.x-=E.xOffset-D.xOffset,l.y-=E.yOffset-D.yOffset),(s||t)&&(u=Qa(Q,!0),l.x-=s-(s*u[0]+t*u[2]),l.y-=t-(s*u[1]+t*u[3]))),O.body.removeChild(Q),l.perspective||(l.perspective=D.perspective),null!=A.xPercent&&(l.xPercent=ja(A.xPercent,D.xPercent)),null!=A.yPercent&&(l.yPercent=ja(A.yPercent,D.yPercent));else if("object"==typeof A){if(l={scaleX:ja(null!=A.scaleX?A.scaleX:A.scale,D.scaleX),scaleY:ja(null!=A.scaleY?A.scaleY:A.scale,D.scaleY),scaleZ:ja(A.scaleZ,D.scaleZ),x:ja(A.x,D.x),y:ja(A.y,D.y),z:ja(A.z,D.z),xPercent:ja(A.xPercent,D.xPercent),yPercent:ja(A.yPercent,D.yPercent),perspective:ja(A.transformPerspective,D.perspective)},p=A.directionalRotation,null!=p)if("object"==typeof p)for(m in p)A[m]=p[m];else A.rotation=p;"string"==typeof A.x&&-1!==A.x.indexOf("%")&&(l.x=0,l.xPercent=ja(A.x,D.xPercent)),"string"==typeof A.y&&-1!==A.y.indexOf("%")&&(l.y=0,l.yPercent=ja(A.y,D.yPercent)),l.rotation=ka("rotation"in A?A.rotation:"shortRotation"in A?A.shortRotation+"_short":"rotationZ"in A?A.rotationZ:D.rotation,D.rotation,"rotation",B),Fa&&(l.rotationX=ka("rotationX"in A?A.rotationX:"shortRotationX"in A?A.shortRotationX+"_short":D.rotationX||0,D.rotationX,"rotationX",B),l.rotationY=ka("rotationY"in A?A.rotationY:"shortRotationY"in A?A.shortRotationY+"_short":D.rotationY||0,D.rotationY,"rotationY",B)),l.skewX=ka(A.skewX,D.skewX),l.skewY=ka(A.skewY,D.skewY)}for(Fa&&null!=A.force3D&&(D.force3D=A.force3D,o=!0),D.skewType=A.skewType||D.skewType||g.defaultSkewType,n=D.force3D||D.z||D.rotationX||D.rotationY||l.z||l.rotationX||l.rotationY||l.perspective,n||null==A.scale||(l.scaleZ=1);--z>-1;)v=Ba[z],E=l[v]-D[v],(E>y||-y>E||null!=A[v]||null!=M[v])&&(o=!0,f=new ta(D,v,D[v],E,f),v in B&&(f.e=B[v]),f.xs0=0,f.plugin=h,d._overwriteProps.push(f.n));return E=A.transformOrigin,D.svg&&(E||A.svgOrigin)&&(s=D.xOffset,t=D.yOffset,La(a,ha(E),l,A.svgOrigin,A.smoothOrigin),f=ua(D,"xOrigin",(w?D:l).xOrigin,l.xOrigin,f,C),f=ua(D,"yOrigin",(w?D:l).yOrigin,l.yOrigin,f,C),(s!==D.xOffset||t!==D.yOffset)&&(f=ua(D,"xOffset",w?s:D.xOffset,D.xOffset,f,C),f=ua(D,"yOffset",w?t:D.yOffset,D.yOffset,f,C)),E="0px 0px"),(E||Fa&&n&&D.zOrigin)&&(Ca?(o=!0,v=Ea,E=(E||_(a,v,e,!1,"50% 50%"))+"",f=new ta(x,v,0,0,f,-1,C),f.b=x[v],f.plugin=h,Fa?(m=D.zOrigin,E=E.split(" "),D.zOrigin=(E.length>2&&(0===m||"0px"!==E[2])?parseFloat(E[2]):m)||0,f.xs0=f.e=E[0]+" "+(E[1]||"50%")+" 0px",f=new ta(D,"zOrigin",0,0,f,-1,f.n),f.b=m,f.xs0=f.e=D.zOrigin):f.xs0=f.e=E):ha(E+"",D)),o&&(d._transformType=D.svg&&Aa||!n&&3!==this._transformType?2:3),j&&(i[c]=j),k&&(i.scale=k),f},prefix:!0}),ya("boxShadow",{defaultValue:"0px 0px 0px 0px #999",prefix:!0,color:!0,multi:!0,keyword:"inset"}),ya("borderRadius",{defaultValue:"0px",parser:function(a,b,c,f,g,h){b=this.format(b);var i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y=["borderTopLeftRadius","borderTopRightRadius","borderBottomRightRadius","borderBottomLeftRadius"],z=a.style;for(q=parseFloat(a.offsetWidth),r=parseFloat(a.offsetHeight),i=b.split(" "),j=0;jp?1:0))||""):(p=parseFloat(n),s=n.substr((p+"").length)),""===s&&(s=d[c]||t),s!==t&&(v=aa(a,"borderLeft",o,t),w=aa(a,"borderTop",o,t),"%"===s?(m=v/q*100+"%",l=w/r*100+"%"):"em"===s?(x=aa(a,"borderLeft",1,"em"),m=v/x+"em",l=w/x+"em"):(m=v+"px",l=w+"px"),u&&(n=parseFloat(m)+p+s,k=parseFloat(l)+p+s)),g=va(z,y[j],m+" "+l,n+" "+k,!1,"0px",g);return g},prefix:!0,formatter:qa("0px 0px 0px 0px",!1,!0)}),ya("borderBottomLeftRadius,borderBottomRightRadius,borderTopLeftRadius,borderTopRightRadius",{defaultValue:"0px",parser:function(a,b,c,d,f,g){return va(a.style,c,this.format(_(a,c,e,!1,"0px 0px")),this.format(b),!1,"0px",f)},prefix:!0,formatter:qa("0px 0px",!1,!0)}),ya("backgroundPosition",{defaultValue:"0 0",parser:function(a,b,c,d,f,g){var h,i,j,k,l,m,n="background-position",o=e||$(a,null),q=this.format((o?p?o.getPropertyValue(n+"-x")+" "+o.getPropertyValue(n+"-y"):o.getPropertyValue(n):a.currentStyle.backgroundPositionX+" "+a.currentStyle.backgroundPositionY)||"0 0"),r=this.format(b);if(-1!==q.indexOf("%")!=(-1!==r.indexOf("%"))&&r.split(",").length<2&&(m=_(a,"backgroundImage").replace(D,""),m&&"none"!==m)){for(h=q.split(" "),i=r.split(" "),R.setAttribute("src",m),j=2;--j>-1;)q=h[j],k=-1!==q.indexOf("%"),k!==(-1!==i[j].indexOf("%"))&&(l=0===j?a.offsetWidth-R.width:a.offsetHeight-R.height,h[j]=k?parseFloat(q)/100*l+"px":parseFloat(q)/l*100+"%");q=h.join(" ")}return this.parseComplex(a.style,q,r,f,g)},formatter:ha}),ya("backgroundSize",{defaultValue:"0 0",formatter:function(a){return a+="",ha(-1===a.indexOf(" ")?a+" "+a:a)}}),ya("perspective",{defaultValue:"0px",prefix:!0}),ya("perspectiveOrigin",{defaultValue:"50% 50%",prefix:!0}),ya("transformStyle",{prefix:!0}),ya("backfaceVisibility",{prefix:!0}),ya("userSelect",{prefix:!0}),ya("margin",{parser:ra("marginTop,marginRight,marginBottom,marginLeft")}),ya("padding",{parser:ra("paddingTop,paddingRight,paddingBottom,paddingLeft")}),ya("clip",{defaultValue:"rect(0px,0px,0px,0px)",parser:function(a,b,c,d,f,g){var h,i,j;return 9>p?(i=a.currentStyle,j=8>p?" ":",",h="rect("+i.clipTop+j+i.clipRight+j+i.clipBottom+j+i.clipLeft+")", +b=this.format(b).split(",").join(j)):(h=this.format(_(a,this.p,e,!1,this.dflt)),b=this.format(b)),this.parseComplex(a.style,h,b,f,g)}}),ya("textShadow",{defaultValue:"0px 0px 0px #999",color:!0,multi:!0}),ya("autoRound,strictUnits",{parser:function(a,b,c,d,e){return e}}),ya("border",{defaultValue:"0px solid #000",parser:function(a,b,c,d,f,g){var h=_(a,"borderTopWidth",e,!1,"0px"),i=this.format(b).split(" "),j=i[0].replace(w,"");return"px"!==j&&(h=parseFloat(h)/aa(a,"borderTopWidth",1,j)+j),this.parseComplex(a.style,this.format(h+" "+_(a,"borderTopStyle",e,!1,"solid")+" "+_(a,"borderTopColor",e,!1,"#000")),i.join(" "),f,g)},color:!0,formatter:function(a){var b=a.split(" ");return b[0]+" "+(b[1]||"solid")+" "+(a.match(pa)||["#000"])[0]}}),ya("borderWidth",{parser:ra("borderTopWidth,borderRightWidth,borderBottomWidth,borderLeftWidth")}),ya("float,cssFloat,styleFloat",{parser:function(a,b,c,d,e,f){var g=a.style,h="cssFloat"in g?"cssFloat":"styleFloat";return new ta(g,h,0,0,e,-1,c,!1,0,g[h],b)}});var Ua=function(a){var b,c=this.t,d=c.filter||_(this.data,"filter")||"",e=this.s+this.c*a|0;100===e&&(-1===d.indexOf("atrix(")&&-1===d.indexOf("radient(")&&-1===d.indexOf("oader(")?(c.removeAttribute("filter"),b=!_(this.data,"filter")):(c.filter=d.replace(z,""),b=!0)),b||(this.xn1&&(c.filter=d=d||"alpha(opacity="+e+")"),-1===d.indexOf("pacity")?0===e&&this.xn1||(c.filter=d+" alpha(opacity="+e+")"):c.filter=d.replace(x,"opacity="+e))};ya("opacity,alpha,autoAlpha",{defaultValue:"1",parser:function(a,b,c,d,f,g){var h=parseFloat(_(a,"opacity",e,!1,"1")),i=a.style,j="autoAlpha"===c;return"string"==typeof b&&"="===b.charAt(1)&&(b=("-"===b.charAt(0)?-1:1)*parseFloat(b.substr(2))+h),j&&1===h&&"hidden"===_(a,"visibility",e)&&0!==b&&(h=0),U?f=new ta(i,"opacity",h,b-h,f):(f=new ta(i,"opacity",100*h,100*(b-h),f),f.xn1=j?1:0,i.zoom=1,f.type=2,f.b="alpha(opacity="+f.s+")",f.e="alpha(opacity="+(f.s+f.c)+")",f.data=a,f.plugin=g,f.setRatio=Ua),j&&(f=new ta(i,"visibility",0,0,f,-1,null,!1,0,0!==h?"inherit":"hidden",0===b?"hidden":"inherit"),f.xs0="inherit",d._overwriteProps.push(f.n),d._overwriteProps.push(c)),f}});var Va=function(a,b){b&&(a.removeProperty?(("ms"===b.substr(0,2)||"webkit"===b.substr(0,6))&&(b="-"+b),a.removeProperty(b.replace(B,"-$1").toLowerCase())):a.removeAttribute(b))},Wa=function(a){if(this.t._gsClassPT=this,1===a||0===a){this.t.setAttribute("class",0===a?this.b:this.e);for(var b=this.data,c=this.t.style;b;)b.v?c[b.p]=b.v:Va(c,b.p),b=b._next;1===a&&this.t._gsClassPT===this&&(this.t._gsClassPT=null)}else this.t.getAttribute("class")!==this.e&&this.t.setAttribute("class",this.e)};ya("className",{parser:function(a,b,d,f,g,h,i){var j,k,l,m,n,o=a.getAttribute("class")||"",p=a.style.cssText;if(g=f._classNamePT=new ta(a,d,0,0,g,2),g.setRatio=Wa,g.pr=-11,c=!0,g.b=o,k=ca(a,e),l=a._gsClassPT){for(m={},n=l.data;n;)m[n.p]=1,n=n._next;l.setRatio(1)}return a._gsClassPT=g,g.e="="!==b.charAt(1)?b:o.replace(new RegExp("(?:\\s|^)"+b.substr(2)+"(?![\\w-])"),"")+("+"===b.charAt(0)?" "+b.substr(2):""),a.setAttribute("class",g.e),j=da(a,k,ca(a),i,m),a.setAttribute("class",o),g.data=j.firstMPT,a.style.cssText=p,g=g.xfirst=f.parse(a,j.difs,g,h)}});var Xa=function(a){if((1===a||0===a)&&this.data._totalTime===this.data._totalDuration&&"isFromStart"!==this.data.data){var b,c,d,e,f,g=this.t.style,h=i.transform.parse;if("all"===this.e)g.cssText="",e=!0;else for(b=this.e.split(" ").join("").split(","),d=b.length;--d>-1;)c=b[d],i[c]&&(i[c].parse===h?e=!0:c="transformOrigin"===c?Ea:i[c].p),Va(g,c);e&&(Va(g,Ca),f=this.t._gsTransform,f&&(f.svg&&(this.t.removeAttribute("data-svg-origin"),this.t.removeAttribute("transform")),delete this.t._gsTransform))}};for(ya("clearProps",{parser:function(a,b,d,e,f){return f=new ta(a,d,0,0,f,2),f.setRatio=Xa,f.e=b,f.pr=-10,f.data=e._tween,c=!0,f}}),j="bezier,throwProps,physicsProps,physics2D".split(","),wa=j.length;wa--;)za(j[wa]);j=g.prototype,j._firstPT=j._lastParsedTransform=j._transform=null,j._onInitTween=function(a,b,h,j){if(!a.nodeType)return!1;this._target=q=a,this._tween=h,this._vars=b,r=j,k=b.autoRound,c=!1,d=b.suffixMap||g.suffixMap,e=$(a,""),f=this._overwriteProps;var n,p,s,t,u,v,w,x,z,A=a.style;if(l&&""===A.zIndex&&(n=_(a,"zIndex",e),("auto"===n||""===n)&&this._addLazySet(A,"zIndex",0)),"string"==typeof b&&(t=A.cssText,n=ca(a,e),A.cssText=t+";"+b,n=da(a,n,ca(a)).difs,!U&&y.test(b)&&(n.opacity=parseFloat(RegExp.$1)),b=n,A.cssText=t),b.className?this._firstPT=p=i.className.parse(a,b.className,"className",this,null,null,b):this._firstPT=p=this.parse(a,b,null),this._transformType){for(z=3===this._transformType,Ca?m&&(l=!0,""===A.zIndex&&(w=_(a,"zIndex",e),("auto"===w||""===w)&&this._addLazySet(A,"zIndex",0)),o&&this._addLazySet(A,"WebkitBackfaceVisibility",this._vars.WebkitBackfaceVisibility||(z?"visible":"hidden"))):A.zoom=1,s=p;s&&s._next;)s=s._next;x=new ta(a,"transform",0,0,null,2),this._linkCSSP(x,null,s),x.setRatio=Ca?Ta:Sa,x.data=this._transform||Ra(a,e,!0),x.tween=h,x.pr=-1,f.pop()}if(c){for(;p;){for(v=p._next,s=t;s&&s.pr>p.pr;)s=s._next;(p._prev=s?s._prev:u)?p._prev._next=p:t=p,(p._next=s)?s._prev=p:u=p,p=v}this._firstPT=t}return!0},j.parse=function(a,b,c,f){var g,h,j,l,m,n,o,p,s,t,u=a.style;for(g in b)n=b[g],"function"==typeof n&&(n=n(r,q)),h=i[g],h?c=h.parse(a,n,g,this,c,f,b):(m=_(a,g,e)+"",s="string"==typeof n,"color"===g||"fill"===g||"stroke"===g||-1!==g.indexOf("Color")||s&&A.test(n)?(s||(n=na(n),n=(n.length>3?"rgba(":"rgb(")+n.join(",")+")"),c=va(u,g,m,n,!0,"transparent",c,0,f)):s&&J.test(n)?c=va(u,g,m,n,!0,null,c,0,f):(j=parseFloat(m),o=j||0===j?m.substr((j+"").length):"",(""===m||"auto"===m)&&("width"===g||"height"===g?(j=ga(a,g,e),o="px"):"left"===g||"top"===g?(j=ba(a,g,e),o="px"):(j="opacity"!==g?0:1,o="")),t=s&&"="===n.charAt(1),t?(l=parseInt(n.charAt(0)+"1",10),n=n.substr(2),l*=parseFloat(n),p=n.replace(w,"")):(l=parseFloat(n),p=s?n.replace(w,""):""),""===p&&(p=g in d?d[g]:o),n=l||0===l?(t?l+j:l)+p:b[g],o!==p&&""!==p&&(l||0===l)&&j&&(j=aa(a,g,j,o),"%"===p?(j/=aa(a,g,100,"%")/100,b.strictUnits!==!0&&(m=j+"%")):"em"===p||"rem"===p||"vw"===p||"vh"===p?j/=aa(a,g,1,p):"px"!==p&&(l=aa(a,g,l,p),p="px"),t&&(l||0===l)&&(n=l+j+p)),t&&(l+=j),!j&&0!==j||!l&&0!==l?void 0!==u[g]&&(n||n+""!="NaN"&&null!=n)?(c=new ta(u,g,l||j||0,0,c,-1,g,!1,0,m,n),c.xs0="none"!==n||"display"!==g&&-1===g.indexOf("Style")?n:m):W("invalid "+g+" tween value: "+b[g]):(c=new ta(u,g,j,l-j,c,0,g,k!==!1&&("px"===p||"zIndex"===g),0,m,n),c.xs0=p))),f&&c&&!c.plugin&&(c.plugin=f);return c},j.setRatio=function(a){var b,c,d,e=this._firstPT,f=1e-6;if(1!==a||this._tween._time!==this._tween._duration&&0!==this._tween._time)if(a||this._tween._time!==this._tween._duration&&0!==this._tween._time||this._tween._rawPrevTime===-1e-6)for(;e;){if(b=e.c*a+e.s,e.r?b=Math.round(b):f>b&&b>-f&&(b=0),e.type)if(1===e.type)if(d=e.l,2===d)e.t[e.p]=e.xs0+b+e.xs1+e.xn1+e.xs2;else if(3===d)e.t[e.p]=e.xs0+b+e.xs1+e.xn1+e.xs2+e.xn2+e.xs3;else if(4===d)e.t[e.p]=e.xs0+b+e.xs1+e.xn1+e.xs2+e.xn2+e.xs3+e.xn3+e.xs4;else if(5===d)e.t[e.p]=e.xs0+b+e.xs1+e.xn1+e.xs2+e.xn2+e.xs3+e.xn3+e.xs4+e.xn4+e.xs5;else{for(c=e.xs0+b+e.xs1,d=1;d-1;)Za(a[e],b,c);else for(d=a.childNodes,e=d.length;--e>-1;)f=d[e],g=f.type,f.style&&(b.push(ca(f)),c&&c.push(f)),1!==g&&9!==g&&11!==g||!f.childNodes.length||Za(f,b,c)};return g.cascadeTo=function(a,c,d){var e,f,g,h,i=b.to(a,c,d),j=[i],k=[],l=[],m=[],n=b._internals.reservedProps;for(a=i._targets||i.target,Za(a,k,m),i.render(c,!0,!0),Za(a,l),i.render(0,!0,!0),i._enabled(!0),e=m.length;--e>-1;)if(f=da(m[e],k[e],l[e]),f.firstMPT){f=f.difs;for(g in d)n[g]&&(f[g]=d[g]);h={};for(g in f)h[g]=k[e][g];j.push(b.fromTo(m[e],c,h,f))}return j},a.activate([g]),g},!0)}),_gsScope._gsDefine&&_gsScope._gsQueue.pop()(),function(a){"use strict";var b=function(){return(_gsScope.GreenSockGlobals||_gsScope)[a]};"function"==typeof define&&define.amd?define(["TweenLite"],b):"undefined"!=typeof module&&module.exports&&(require("../TweenLite.js"),module.exports=b())}("CSSPlugin"); + + +/* SPLIT TEXT UTIL */ +/*! + * VERSION: 0.5.6 + * DATE: 2017-01-17 + * UPDATES AND DOCS AT: http://greensock.com + * + * @license Copyright (c) 2008-2017, GreenSock. All rights reserved. + * SplitText is a Club GreenSock membership benefit; You must have a valid membership to use + * this code without violating the terms of use. Visit http://greensock.com/club/ to sign up or get more details. + * This work is subject to the software agreement that was issued with your membership. + * + * @author: Jack Doyle, jack@greensock.com + */ +var _gsScope="undefined"!=typeof module&&module.exports&&"undefined"!=typeof global?global:this||window;!function(a){"use strict";var b=a.GreenSockGlobals||a,c=function(a){var c,d=a.split("."),e=b;for(c=0;cb;b++)if(c=a[b],j(c))for(d=c.length,d=0;d":">")}},y=d.SplitText=b.SplitText=function(a,b){if("string"==typeof a&&(a=y.selector(a)),!a)throw"cannot split a null element.";this.elements=j(a)?k(a):[a],this.chars=[],this.words=[],this.lines=[],this._originals=[],this.vars=b||{},this.split(b)},z=function(a,b,c){var d=a.nodeType;if(1===d||9===d||11===d)for(a=a.firstChild;a;a=a.nextSibling)z(a,b,c);else(3===d||4===d)&&(a.nodeValue=a.nodeValue.split(b).join(c))},A=function(a,b){for(var c=b.length;--c>-1;)a.push(b[c])},B=function(a){var b,c=[],d=a.length;for(b=0;b!==d;c.push(a[b++]));return c},C=function(a,b,c){for(var d;a&&a!==b;){if(d=a._next||a.nextSibling)return d.textContent.charAt(0)===c;a=a.parentNode||a._parent}return!1},D=function(a){var b,c,d=B(a.childNodes),e=d.length;for(b=0;e>b;b++)c=d[b],c._isSplit?D(c):(b&&3===c.previousSibling.nodeType?c.previousSibling.nodeValue+=3===c.nodeType?c.nodeValue:c.firstChild.nodeValue:3!==c.nodeType&&a.insertBefore(c.firstChild,c),a.removeChild(c))},E=function(a,b,c,d,e,h,j){var k,l,m,n,o,p,q,r,s,t,u,v,w=g(a),x=i(a,"paddingLeft",w),y=-999,B=i(a,"borderBottomWidth",w)+i(a,"borderTopWidth",w),E=i(a,"borderLeftWidth",w)+i(a,"borderRightWidth",w),F=i(a,"paddingTop",w)+i(a,"paddingBottom",w),G=i(a,"paddingLeft",w)+i(a,"paddingRight",w),H=.2*i(a,"fontSize"),I=i(a,"textAlign",w,!0),J=[],K=[],L=[],M=b.wordDelimiter||" ",N=b.span?"span":"div",O=b.type||b.split||"chars,words,lines",P=e&&-1!==O.indexOf("lines")?[]:null,Q=-1!==O.indexOf("words"),R=-1!==O.indexOf("chars"),S="absolute"===b.position||b.absolute===!0,T=b.linesClass,U=-1!==(T||"").indexOf("++"),V=[];for(P&&1===a.children.length&&a.children[0]._isSplit&&(a=a.children[0]),U&&(T=T.split("++").join("")),l=a.getElementsByTagName("*"),m=l.length,o=[],k=0;m>k;k++)o[k]=l[k];if(P||S)for(k=0;m>k;k++)n=o[k],p=n.parentNode===a,(p||S||R&&!Q)&&(v=n.offsetTop,P&&p&&Math.abs(v-y)>H&&"BR"!==n.nodeName&&(q=[],P.push(q),y=v),S&&(n._x=n.offsetLeft,n._y=v,n._w=n.offsetWidth,n._h=n.offsetHeight),P&&((n._isSplit&&p||!R&&p||Q&&p||!Q&&n.parentNode.parentNode===a&&!n.parentNode._isSplit)&&(q.push(n),n._x-=x,C(n,a,M)&&(n._wordEnd=!0)),"BR"===n.nodeName&&n.nextSibling&&"BR"===n.nextSibling.nodeName&&P.push([])));for(k=0;m>k;k++)n=o[k],p=n.parentNode===a,"BR"!==n.nodeName?(S&&(s=n.style,Q||p||(n._x+=n.parentNode._x,n._y+=n.parentNode._y),s.left=n._x+"px",s.top=n._y+"px",s.position="absolute",s.display="block",s.width=n._w+1+"px",s.height=n._h+"px"),!Q&&R?n._isSplit?(n._next=n.nextSibling,n.parentNode.appendChild(n)):n.parentNode._isSplit?(n._parent=n.parentNode,!n.previousSibling&&n.firstChild&&(n.firstChild._isFirst=!0),n.nextSibling&&" "===n.nextSibling.textContent&&!n.nextSibling.nextSibling&&V.push(n.nextSibling),n._next=n.nextSibling&&n.nextSibling._isFirst?null:n.nextSibling,n.parentNode.removeChild(n),o.splice(k--,1),m--):p||(v=!n.nextSibling&&C(n.parentNode,a,M),n.parentNode._parent&&n.parentNode._parent.appendChild(n),v&&n.parentNode.appendChild(f.createTextNode(" ")),b.span&&(n.style.display="inline"),J.push(n)):n.parentNode._isSplit&&!n._isSplit&&""!==n.innerHTML?K.push(n):R&&!n._isSplit&&(b.span&&(n.style.display="inline"),J.push(n))):P||S?(n.parentNode&&n.parentNode.removeChild(n),o.splice(k--,1),m--):Q||a.appendChild(n);for(k=V.length;--k>-1;)V[k].parentNode.removeChild(V[k]);if(P){for(S&&(t=f.createElement(N),a.appendChild(t),u=t.offsetWidth+"px",v=t.offsetParent===a?0:a.offsetLeft,a.removeChild(t)),s=a.style.cssText,a.style.cssText="display:none;";a.firstChild;)a.removeChild(a.firstChild);for(r=" "===M&&(!S||!Q&&!R),k=0;kl;l++)"BR"!==q[l].nodeName&&(n=q[l],t.appendChild(n),r&&n._wordEnd&&t.appendChild(f.createTextNode(" ")),S&&(0===l&&(t.style.top=n._y+"px",t.style.left=x+v+"px"),n.style.top="0px",v&&(n.style.left=n._x-v+"px")));0===m?t.innerHTML=" ":Q||R||(D(t),z(t,String.fromCharCode(160)," ")),S&&(t.style.width=u,t.style.height=n._h+"px"),a.appendChild(t)}a.style.cssText=s}S&&(j>a.clientHeight&&(a.style.height=j-F+"px",a.clientHeighta.clientWidth&&(a.style.width=h-G+"px",a.clientWidth":"",G=!0,H=f.createElement("div"),I=a.parentNode;for(I.insertBefore(H,a),H.textContent=a.nodeValue,I.removeChild(a),a=H,g=e(a),v=-1!==g.indexOf("<"),b.reduceWhiteSpace!==!1&&(g=g.replace(m," ").replace(l,"")),v&&(g=g.split("<").join("{{LT}}")),k=g.length,h=(" "===g.charAt(0)?E:"")+c(),i=0;k>i;i++)if(p=g.charAt(i),p===D&&g.charAt(i-1)!==D&&i){for(h+=G?F:"",G=!1;g.charAt(i+1)===D;)h+=E,i++;i===k-1?h+=E:")"!==g.charAt(i+1)&&(h+=E+c(),G=!0)}else"{"===p&&"{{LT}}"===g.substr(i,6)?(h+=B?d()+"{{LT}}":"{{LT}}",i+=5):p.charCodeAt(0)>=n&&p.charCodeAt(0)<=o||g.charCodeAt(i+1)>=65024&&g.charCodeAt(i+1)<=65039?(w=u(g.substr(i,2)),x=u(g.substr(i+2,2)),j=w>=q&&r>=w&&x>=q&&r>=x||x>=s&&t>=x?4:2,h+=B&&" "!==p?d()+g.substr(i,j)+"":g.substr(i,j),i+=j-1):h+=B&&" "!==p?d()+p+"":p;a.outerHTML=h+(G?F:""),v&&z(I,"{{LT}}","<")},G=function(a,b,c,d){var e,f,g=B(a.childNodes),h=g.length,j="absolute"===b.position||b.absolute===!0;if(3!==a.nodeType||h>1){for(b.absolute=!1,e=0;h>e;e++)f=g[e],(3!==f.nodeType||/\S+/.test(f.nodeValue))&&(j&&3!==f.nodeType&&"inline"===i(f,"display",null,!0)&&(f.style.display="inline-block",f.style.position="relative"),f._isSplit=!0,G(f,b,c,d));return b.absolute=j,void(a._isSplit=!0)}F(a,b,c,d)},H=y.prototype;H.split=function(a){this.isSplit&&this.revert(),this.vars=a=a||this.vars,this._originals.length=this.chars.length=this.words.length=this.lines.length=0;for(var b,c,d,e=this.elements.length,f=a.span?"span":"div",g=("absolute"===a.position||a.absolute===!0,x(a.wordsClass,f)),h=x(a.charsClass,f);--e>-1;)d=this.elements[e],this._originals[e]=d.innerHTML,b=d.clientHeight,c=d.clientWidth,G(d,a,g,h),E(d,a,this.chars,this.words,this.lines,c,b);return this.chars.reverse(),this.words.reverse(),this.lines.reverse(),this.isSplit=!0,this},H.revert=function(){if(!this._originals)throw"revert() call wasn't scoped properly.";for(var a=this._originals.length;--a>-1;)this.elements[a].innerHTML=this._originals[a];return this.chars=[],this.words=[],this.lines=[],this.isSplit=!1,this},y.selector=a.$||a.jQuery||function(b){var c=a.$||a.jQuery;return c?(y.selector=c,c(b)):"undefined"==typeof document?b:document.querySelectorAll?document.querySelectorAll(b):document.getElementById("#"===b.charAt(0)?b.substr(1):b)},y.version="0.5.6"}(_gsScope),function(a){"use strict";var b=function(){return(_gsScope.GreenSockGlobals||_gsScope)[a]};"function"==typeof define&&define.amd?define([],b):"undefined"!=typeof module&&module.exports&&(module.exports=b())}("SplitText"); + + +try{ + window.GreenSockGlobals = null; + window._gsQueue = null; + window._gsDefine = null; + + delete(window.GreenSockGlobals); + delete(window._gsQueue); + delete(window._gsDefine); + } catch(e) {} + +try{ + window.GreenSockGlobals = oldgs; + window._gsQueue = oldgs_queue; + } catch(e) {} + +if (window.tplogs==true) + try { + console.groupEnd(); + } catch(e) {} + +(function(e,t){ + e.waitForImages={hasImageProperties:["backgroundImage","listStyleImage","borderImage","borderCornerImage"]};e.expr[":"].uncached=function(t){var n=document.createElement("img");n.src=t.src;return e(t).is('img[src!=""]')&&!n.complete};e.fn.waitForImages=function(t,n,r){if(e.isPlainObject(arguments[0])){n=t.each;r=t.waitForAll;t=t.finished}t=t||e.noop;n=n||e.noop;r=!!r;if(!e.isFunction(t)||!e.isFunction(n)){throw new TypeError("An invalid callback was supplied.")}return this.each(function(){var i=e(this),s=[];if(r){var o=e.waitForImages.hasImageProperties||[],u=/url\((['"]?)(.*?)\1\)/g;i.find("*").each(function(){var t=e(this);if(t.is("img:uncached")){s.push({src:t.attr("src"),element:t[0]})}e.each(o,function(e,n){var r=t.css(n);if(!r){return true}var i;while(i=u.exec(r)){s.push({src:i[2],element:t[0]})}})})}else{i.find("img:uncached").each(function(){s.push({src:this.src,element:this})})}var f=s.length,l=0;if(f==0){t.call(i[0])}e.each(s,function(r,s){var o=new Image;e(o).bind("load error",function(e){l++;n.call(s.element,l,f,e.type=="load");if(l==f){t.call(i[0]);return false}});o.src=s.src})})}; +})(jQuery); diff --git a/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/saas-bg.png b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/saas-bg.png new file mode 100644 index 00000000..76a25bc8 Binary files /dev/null and b/DepartureBoardWeb/ClientApp/src/assets/sofbox-sass-black/saas-bg.png differ diff --git a/DepartureBoardWeb/ClientApp/src/environments/environment.ts b/DepartureBoardWeb/ClientApp/src/environments/environment.ts index ffc4cfe6..9b04b93d 100644 --- a/DepartureBoardWeb/ClientApp/src/environments/environment.ts +++ b/DepartureBoardWeb/ClientApp/src/environments/environment.ts @@ -4,7 +4,7 @@ export const environment = { production: false, - apiBaseUrl: "", + apiBaseUrl: "https://api.leddepartureboard.com", enablePWA: false }; diff --git a/DepartureBoardWeb/ClientApp/src/index.html b/DepartureBoardWeb/ClientApp/src/index.html index 6129c6d0..42fa456d 100644 --- a/DepartureBoardWeb/ClientApp/src/index.html +++ b/DepartureBoardWeb/ClientApp/src/index.html @@ -26,8 +26,10 @@ - + + + diff --git a/DepartureBoardWeb/ClientApp/src/styles.css b/DepartureBoardWeb/ClientApp/src/styles.css index e2c13b3e..ab7746de 100644 --- a/DepartureBoardWeb/ClientApp/src/styles.css +++ b/DepartureBoardWeb/ClientApp/src/styles.css @@ -1,9 +1,18 @@ +@import url('assets/sofbox-sass-black/css/flaticon.css'); +@import url('assets/sofbox-sass-black/css/typography.css'); +@import url('assets/sofbox-sass-black/revslider/css/settings.css'); +@import url('assets/sofbox-sass-black/css/style.css'); +@import url('assets/sofbox-sass-black/css/responsive.css'); +.main-bg{ + background-size: cover; +} + /* You can add global styles to this file, and also import other style files */ html, body { background-color: var(--backgroundColour); - scrollbar-width: none; - -ms-overflow-style: none; + /* scrollbar-width: none; */ + /* -ms-overflow-style: none; */ } body { @@ -14,15 +23,19 @@ html { overflow-x: hidden; } -tui-root > tui-scroll-controls { +/* tui-root > tui-scroll-controls { display: none; -} +} */ .led { font-family: "LEDBOARD3", Arial, sans-serif; color: var(--mainColour); } +.led-font { + font-family: "LEDBOARD3", Arial, sans-serif; +} + .led-bold { font-family: "LEDBOARD3-BOLD", Arial, sans-serif; color: var(--mainColour); @@ -102,7 +115,3 @@ tui-root > tui-scroll-controls { border-color: var(--mainColour); color: var(--mainColour); } - -::-webkit-scrollbar { - display: none; /* Chrome Safari */ -} diff --git a/DepartureBoardWeb/ClientApp/tsconfig.json b/DepartureBoardWeb/ClientApp/tsconfig.json index 5ce3ec51..62cc992f 100644 --- a/DepartureBoardWeb/ClientApp/tsconfig.json +++ b/DepartureBoardWeb/ClientApp/tsconfig.json @@ -15,7 +15,7 @@ ], "lib": [ "es2017", - "ES2015", + "es2015", "dom" ], "skipLibCheck": true diff --git a/DepartureBoardWeb/DepartureBoardWeb.csproj b/DepartureBoardWeb/DepartureBoardWeb.csproj index 196ba308..7033817f 100644 --- a/DepartureBoardWeb/DepartureBoardWeb.csproj +++ b/DepartureBoardWeb/DepartureBoardWeb.csproj @@ -18,7 +18,6 @@ - diff --git a/DepartureBoardWeb/Startup.cs b/DepartureBoardWeb/Startup.cs index 93c8cb5c..f3537306 100644 --- a/DepartureBoardWeb/Startup.cs +++ b/DepartureBoardWeb/Startup.cs @@ -1,6 +1,3 @@ -using System.Collections.Generic; -using AspNetCoreRateLimit; -using DepartureBoardCore; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Server.Kestrel.Core; @@ -9,8 +6,6 @@ using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; -using Moesif.Middleware; -using Prometheus; using Serilog; using Serilog.Events; using TrainDataAPI.Services; @@ -74,11 +69,11 @@ public void ConfigureServices(IServiceCollection services) services.AddMemoryCache(); services.AddResponseCaching(); - services.Configure(Configuration.GetSection("IpRateLimiting")); - services.AddSingleton(); - services.AddSingleton(); - services.AddSingleton(); - services.AddSingleton(); + // services.Configure(Configuration.GetSection("IpRateLimiting")); + // services.AddSingleton(); + // services.AddSingleton(); + // services.AddSingleton(); + // services.AddSingleton(); services.Configure(options => { options.AllowSynchronousIO = true; }); @@ -97,12 +92,6 @@ public void Configure(IApplicationBuilder app, IWebHostEnvironment env) app.UseExceptionHandler("/Error"); } - if (!string.IsNullOrEmpty(ConfigService.MoesifApplicationId)) - app.UseMiddleware(new Dictionary - { - { "ApplicationId", ConfigService.MoesifApplicationId } - }); - var provider = new FileExtensionContentTypeProvider(); provider.Mappings[".webmanifest"] = "application/manifest+json"; @@ -156,27 +145,5 @@ public void Configure(IApplicationBuilder app, IWebHostEnvironment env) }); } } - - private void ConfigurePrometheusMetrics(IApplicationBuilder app) - { - if (!ConfigService.PrometheusPort.HasValue) - return; - - // Custom Metrics to count requests for each endpoint and the method - var counter = Metrics.CreateCounter("departureboard_path_counter", "Counts requests to the API endpoints", new CounterConfiguration - { - LabelNames = new[] {"method", "endpoint", "status"} - }); - app.Use((context, next) => - { - if (!context.Request.Path.StartsWithSegments("/api")) - return next(); - counter.WithLabels(context.Request.Method, context.Request.Path, context.Response.StatusCode.ToString()).Inc(); - return next(); - }); - - app.UseMetricServer(); - //app.UseHttpMetrics(); - } } } diff --git a/Dockerfile b/Dockerfile index facbd245..473fb93b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,9 +5,10 @@ RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - \ && apt install -y nodejs WORKDIR /app -# Copy csproj and restore +ENV CYPRESS_INSTALL_BINARY=0 ARG RTT_Token=[INSERT_REALTIMETRAINS_TOKEN_HERE] +# Copy csproj and restore COPY ./ ./ WORKDIR /app/DepartureBoardWeb/ RUN dotnet restore diff --git a/TrainDataAPI/DataSource/RealTimeTrainsAPI.cs b/TrainDataAPI/DataSource/RealTimeTrainsAPI.cs index b34ef9d5..610c5dae 100644 --- a/TrainDataAPI/DataSource/RealTimeTrainsAPI.cs +++ b/TrainDataAPI/DataSource/RealTimeTrainsAPI.cs @@ -222,12 +222,10 @@ public class Location { public string name { get; set; } public string crs { get; set; } - public string tiploc { get; set; } } public class Origin { - public string tiploc { get; set; } public string description { get; set; } public string workingTime { get; set; } public string publicTime { get; set; } @@ -235,7 +233,6 @@ public class Origin public class Destination { - public string tiploc { get; set; } public string description { get; set; } public string workingTime { get; set; } public string publicTime { get; set; } @@ -244,7 +241,6 @@ public class Destination public class LocationDetail { public bool realtimeActivated { get; set; } - public string tiploc { get; set; } public string crs { get; set; } public string description { get; set; } public string gbttBookedArrival { get; set; } @@ -296,7 +292,6 @@ public class RealTimeTrainsServiceDetailsResponse public class Origin { - public string tiploc { get; set; } public string description { get; set; } public string workingTime { get; set; } public string publicTime { get; set; } @@ -304,7 +299,6 @@ public class Origin public class Destination { - public string tiploc { get; set; } public string description { get; set; } public string workingTime { get; set; } public string publicTime { get; set; } @@ -312,7 +306,6 @@ public class Destination public class Location { - public string tiploc { get; set; } public string crs { get; set; } public string description { get; set; } public string gbttBookedDeparture { get; set; } diff --git a/TrainDataAPI/TrainDataAPI.csproj b/TrainDataAPI/TrainDataAPI.csproj index 35b71530..61db92fc 100644 --- a/TrainDataAPI/TrainDataAPI.csproj +++ b/TrainDataAPI/TrainDataAPI.csproj @@ -5,14 +5,14 @@ - - - + + + - - - - + + + + diff --git a/TrainDataAPITests/TrainDataAPITests.csproj b/TrainDataAPITests/TrainDataAPITests.csproj index 75bcb294..8b85a262 100644 --- a/TrainDataAPITests/TrainDataAPITests.csproj +++ b/TrainDataAPITests/TrainDataAPITests.csproj @@ -7,13 +7,13 @@ - - - + + + - +