From 50ce7a7322e99a057e8624528e305e4d2af3dd11 Mon Sep 17 00:00:00 2001 From: mravula Date: Wed, 18 Sep 2019 11:03:19 -0400 Subject: Raptor form fields tab in report wizard. Removed package-lock.json and uncommented angular build tags in pom.xml Issue-ID: PORTAL-725 Change-Id: I9b03dbdc9f12e4e7f84190b779cfe79d919bdd66 Signed-off-by: mravula --- ecomp-sdk/epsdk-app-os/ngapp/package-lock.json | 10972 --------- .../ngapp/src/app/pages/pages-routing.module.ts | 3 +- .../ngapp/src/environments/environment.ts | 42 +- ecomp-sdk/epsdk-app-os/pom.xml | 3 +- .../columns/column-list/column-list.component.html | 21 +- .../columns/column-list/column-list.component.ts | 106 +- .../Report_List/Report/columns/column.service.ts | 12 + .../columns-edit.component.css | 3 +- .../edit-drill-down-link.component.css | 9802 ++++++++ .../edit-drill-down-link.component.html | 54 + .../edit-drill-down-link.component.spec.ts | 25 + .../edit-drill-down-link.component.ts | 118 + .../Report/columns/columns.component.html | 6 +- .../definition-save-dialog.component.css | 3 +- .../Report/definition/definition.component.css | 29 +- .../form-fields-add-edit.component.css | 11906 ++++++++++ .../form-fields-add-edit.component.html | 5 + .../form-fields-add-edit.component.spec.ts | 25 + .../form-fields-add-edit.component.ts | 30 + .../Report/form-fields/form-fields.component.css | 23162 +++++++++---------- .../Report/form-fields/form-fields.component.html | 195 + .../Report/form-fields/form-fields.component.ts | 481 +- .../Report/form-fields/form-fields.service.spec.ts | 12 + .../Report/form-fields/form-fields.service.ts | 42 + .../Report/pilot-page/pilot-page.component.css | 11866 ---------- .../Report/pilot-page/pilot-page.component.html | 302 - .../Report/pilot-page/pilot-page.component.spec.ts | 25 - .../Report/pilot-page/pilot-page.component.ts | 573 - .../pilot-window-modal-component.component.css | 44 - .../pilot-window-modal-component.component.html | 5 - .../pilot-window-modal-component.component.spec.ts | 25 - .../pilot-window-modal-component.component.ts | 31 - .../run-report-form-fields.component.css | 11868 ++++++++++ .../run-report-form-fields.component.html | 55 + .../run-report-form-fields.component.spec.ts | 25 + .../run-report-form-fields.component.ts | 129 + .../run-report-result-set.component.ts | 2 + .../Report/run/run-report/run-report-datasource.ts | 3 + .../Report/run/run-report/run-report.component.css | 40 + .../run/run-report/run-report.component.html | 18 +- .../Report/run/run-report/run-report.component.ts | 159 +- .../Report_List/Report/run/run.component.html | 4 +- .../Report_List/Report/run/run.component.ts | 2 +- .../Report_List/Report/run/run.service.ts | 12 +- .../sql-save-changes-dialog.component.css | 3 +- .../sql-validate-changes-dialog.component.css | 3 +- .../sql-validate-error-dialog.component.ts | 2 + .../Report_List/Report/sql/sql.component.css | 5 + .../Report_List/Report/sql/sql.component.html | 2 +- .../header-tabs.component.html | 16 +- .../analytics/Report_List/report-list.component.ts | 4 +- .../webapp/ngapp/src/app/pages/pages.module.ts | 10 + 52 files changed, 46731 insertions(+), 35559 deletions(-) delete mode 100644 ecomp-sdk/epsdk-app-os/ngapp/package-lock.json create mode 100644 ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/columns-edit-component/edit-drill-down-link/edit-drill-down-link.component.css create mode 100644 ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/columns-edit-component/edit-drill-down-link/edit-drill-down-link.component.html create mode 100644 ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/columns-edit-component/edit-drill-down-link/edit-drill-down-link.component.spec.ts create mode 100644 ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/columns-edit-component/edit-drill-down-link/edit-drill-down-link.component.ts create mode 100644 ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields-add-edit/form-fields-add-edit.component.css create mode 100644 ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields-add-edit/form-fields-add-edit.component.html create mode 100644 ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields-add-edit/form-fields-add-edit.component.spec.ts create mode 100644 ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields-add-edit/form-fields-add-edit.component.ts create mode 100644 ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields.service.spec.ts create mode 100644 ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields.service.ts delete mode 100644 ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-page.component.css delete mode 100644 ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-page.component.html delete mode 100644 ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-page.component.spec.ts delete mode 100644 ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-page.component.ts delete mode 100644 ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-window-modal-component/pilot-window-modal-component.component.css delete mode 100644 ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-window-modal-component/pilot-window-modal-component.component.html delete mode 100644 ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-window-modal-component/pilot-window-modal-component.component.spec.ts delete mode 100644 ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-window-modal-component/pilot-window-modal-component.component.ts create mode 100644 ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report-form-fields/run-report-form-fields.component.css create mode 100644 ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report-form-fields/run-report-form-fields.component.html create mode 100644 ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report-form-fields/run-report-form-fields.component.spec.ts create mode 100644 ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report-form-fields/run-report-form-fields.component.ts (limited to 'ecomp-sdk') diff --git a/ecomp-sdk/epsdk-app-os/ngapp/package-lock.json b/ecomp-sdk/epsdk-app-os/ngapp/package-lock.json deleted file mode 100644 index 709ac996..00000000 --- a/ecomp-sdk/epsdk-app-os/ngapp/package-lock.json +++ /dev/null @@ -1,10972 +0,0 @@ -{ - "name": "portal-sdk-ng", - "version": "7.0.0", - "lockfileVersion": 1, - "requires": true, - "dependencies": { - "@angular-devkit/architect": { - "version": "0.10.7", - "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.10.7.tgz", - "integrity": "sha512-S49LSslNRxIflHzrIrEgK7mGQ7HzETr/FU0fyTbB0vubcmfzMoYTsgYdK7SUz583lovc+UvASoUAhPJI3e35ng==", - "dev": true, - "requires": { - "@angular-devkit/core": "7.0.7", - "rxjs": "6.3.3" - } - }, - "@angular-devkit/build-angular": { - "version": "0.10.7", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-0.10.7.tgz", - "integrity": "sha512-wjhlMWWkGSSkdwd9elKfeeEgyig/eZGyF2wY5kZmWPBdeK/GfdBLyO15qh4ppRYI2SjyRvzl0tWDOA2Y0hKL0w==", - "dev": true, - "requires": { - "@angular-devkit/architect": "0.10.7", - "@angular-devkit/build-optimizer": "0.10.7", - "@angular-devkit/build-webpack": "0.10.7", - "@angular-devkit/core": "7.0.7", - "@ngtools/webpack": "7.0.7", - "ajv": "6.5.3", - "autoprefixer": "9.1.5", - "circular-dependency-plugin": "5.0.2", - "clean-css": "4.2.1", - "copy-webpack-plugin": "4.5.4", - "file-loader": "2.0.0", - "glob": "7.1.3", - "istanbul": "0.4.5", - "istanbul-instrumenter-loader": "3.0.1", - "karma-source-map-support": "1.3.0", - "less": "3.8.1", - "less-loader": "4.1.0", - "license-webpack-plugin": "2.0.2", - "loader-utils": "1.1.0", - "mini-css-extract-plugin": "0.4.3", - "minimatch": "3.0.4", - "node-sass": "4.9.3", - "opn": "5.3.0", - "parse5": "4.0.0", - "portfinder": "1.0.17", - "postcss": "7.0.5", - "postcss-import": "12.0.0", - "postcss-loader": "3.0.0", - "raw-loader": "0.5.1", - "rxjs": "6.3.3", - "sass-loader": "7.1.0", - "semver": "5.5.1", - "source-map-loader": "0.2.4", - "source-map-support": "0.5.9", - "speed-measure-webpack-plugin": "^1.2.3", - "stats-webpack-plugin": "0.7.0", - "style-loader": "0.23.0", - "stylus": "0.54.5", - "stylus-loader": "3.0.2", - "terser-webpack-plugin": "1.1.0", - "tree-kill": "1.2.0", - "webpack": "4.19.1", - "webpack-dev-middleware": "3.3.0", - "webpack-dev-server": "3.1.8", - "webpack-merge": "4.1.4", - "webpack-sources": "1.2.0", - "webpack-subresource-integrity": "1.1.0-rc.6" - }, - "dependencies": { - "ajv": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.3.tgz", - "integrity": "sha512-LqZ9wY+fx3UMiiPd741yB2pj3hhil+hQc8taf4o2QGRFpWgZ2V5C8HA165DY9sS3fJwsk7uT7ZlFEyC3Ig3lLg==", - "dev": true, - "requires": { - "fast-deep-equal": "^2.0.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "semver": { - "version": "5.5.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.1.tgz", - "integrity": "sha512-PqpAxfrEhlSUWge8dwIp4tZnQ25DIOthpiaHNIthsjEFQD6EvqUKUDM7L8O2rShkFccYo1VjJR0coWfNkCubRw==", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "source-map-support": { - "version": "0.5.9", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.9.tgz", - "integrity": "sha512-gR6Rw4MvUlYy83vP0vxoVNzM6t8MUXqNuRsuBmBHQDu1Fh6X015FrLdgoDKcNdkwGubozq0P4N0Q37UyFVr1EA==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - } - } - }, - "@angular-devkit/build-optimizer": { - "version": "0.10.7", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-optimizer/-/build-optimizer-0.10.7.tgz", - "integrity": "sha512-Ztj2U21B8zRO2csQS8mLv/+WKPPLePzaqJDk53Ou2r2HV+kh9GzYvgu1UFeGf/RyEeJi+9KnJGG2wPaeNqDNxg==", - "dev": true, - "requires": { - "loader-utils": "1.1.0", - "source-map": "0.5.6", - "typescript": "3.1.6", - "webpack-sources": "1.2.0" - }, - "dependencies": { - "source-map": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", - "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=", - "dev": true - } - } - }, - "@angular-devkit/build-webpack": { - "version": "0.10.7", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.10.7.tgz", - "integrity": "sha512-sUzgIhm5yWHvRo3GF6mc1J58PCuY5nJDF2vlE8Jhlwkq+/VbJ/NVfTDYRQCeqI1jLcdMaVrVQXnXAWc4KpFNig==", - "dev": true, - "requires": { - "@angular-devkit/architect": "0.10.7", - "@angular-devkit/core": "7.0.7", - "rxjs": "6.3.3" - } - }, - "@angular-devkit/core": { - "version": "7.0.7", - "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-7.0.7.tgz", - "integrity": "sha512-M8tTT9r3nUtWI3YyiyynHIQn+lQQgeKkxVZ+rdxvyvgE3U9+wn0yep5HkFLQETTuJetu9ARRRD94sD2XL3F/3A==", - "dev": true, - "requires": { - "ajv": "6.5.3", - "chokidar": "2.0.4", - "fast-json-stable-stringify": "2.0.0", - "rxjs": "6.3.3", - "source-map": "0.7.3" - }, - "dependencies": { - "ajv": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.3.tgz", - "integrity": "sha512-LqZ9wY+fx3UMiiPd741yB2pj3hhil+hQc8taf4o2QGRFpWgZ2V5C8HA165DY9sS3fJwsk7uT7ZlFEyC3Ig3lLg==", - "dev": true, - "requires": { - "fast-deep-equal": "^2.0.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - } - } - }, - "@angular-devkit/schematics": { - "version": "7.0.7", - "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-7.0.7.tgz", - "integrity": "sha512-E6GHu4257PvymRjFDtpGc0ykdcIcpFIfXr73lq8qxo1SBkqH7Y1/C670elDg9nrCte8PhnhJVNiwNgNS/ZTAzQ==", - "dev": true, - "requires": { - "@angular-devkit/core": "7.0.7", - "rxjs": "6.3.3" - } - }, - "@angular/animations": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/@angular/animations/-/animations-7.0.4.tgz", - "integrity": "sha512-QfFikT0FzYNMjdVg0LWTBijdu9JDJyzejnhCFlXxv+KR4zolpRK98/rU7CFW1Fg2jjL3/yL9PT1sf5I0fTJZYA==", - "requires": { - "tslib": "^1.9.0" - } - }, - "@angular/cdk": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-7.0.4.tgz", - "integrity": "sha512-4KbuiVLonwNwzwgJqKOvjqXfXKrdboPzFwk4vGruQV/EhGh6L8V4gy+ESS4seUuYYsMA9k+ijEeO9xUX+pAcZw==", - "requires": { - "parse5": "^5.0.0", - "tslib": "^1.7.1" - }, - "dependencies": { - "parse5": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.0.tgz", - "integrity": "sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ==", - "optional": true - } - } - }, - "@angular/cli": { - "version": "7.0.7", - "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-7.0.7.tgz", - "integrity": "sha512-SV3CcHa2oxDKwhOvHqZtysVRRT9pkO04Kv0Z1HEhlgIwqHyIU201R9/mo1gYmBHTNGxowKdvsGLsHQNpsHmQJw==", - "dev": true, - "requires": { - "@angular-devkit/architect": "0.10.7", - "@angular-devkit/core": "7.0.7", - "@angular-devkit/schematics": "7.0.7", - "@schematics/angular": "7.0.7", - "@schematics/update": "0.10.7", - "inquirer": "6.2.0", - "opn": "5.3.0", - "rxjs": "6.3.3", - "semver": "5.5.1", - "symbol-observable": "1.2.0" - }, - "dependencies": { - "semver": { - "version": "5.5.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.1.tgz", - "integrity": "sha512-PqpAxfrEhlSUWge8dwIp4tZnQ25DIOthpiaHNIthsjEFQD6EvqUKUDM7L8O2rShkFccYo1VjJR0coWfNkCubRw==", - "dev": true - } - } - }, - "@angular/common": { - "version": "7.2.15", - "resolved": "https://registry.npmjs.org/@angular/common/-/common-7.2.15.tgz", - "integrity": "sha512-2b5JY2HWVHCf3D1GZjmde7jdAXSTXkYtmjLtA9tQkjOOTr80eHpNSujQqnzb97dk9VT9OjfjqTQd7K3pxZz8jw==", - "requires": { - "tslib": "^1.9.0" - } - }, - "@angular/compiler": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-7.0.4.tgz", - "integrity": "sha512-ExDhH1cJkuJkUsgNRZyZBse0a7wWkQyG5O8HONi3Rzig9dalFEuve9jD04zfA1Jx1GTXhovqtGnF72x4kw0V8Q==", - "requires": { - "tslib": "^1.9.0" - } - }, - "@angular/compiler-cli": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-7.0.4.tgz", - "integrity": "sha512-kvhWt6OTb1Uduns9Vm+Dwd/UUBNSEU6Jgu+QOPeHr7lg+4NTyr9uQLU0DtfBP0ljOlds8esmfii5IIFTeUQw1Q==", - "dev": true, - "requires": { - "canonical-path": "1.0.0", - "chokidar": "^1.4.2", - "convert-source-map": "^1.5.1", - "dependency-graph": "^0.7.2", - "magic-string": "^0.25.0", - "minimist": "^1.2.0", - "reflect-metadata": "^0.1.2", - "shelljs": "^0.8.1", - "source-map": "^0.6.1", - "tslib": "^1.9.0", - "yargs": "9.0.1" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "anymatch": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz", - "integrity": "sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA==", - "dev": true, - "requires": { - "micromatch": "^2.1.5", - "normalize-path": "^2.0.0" - } - }, - "arr-diff": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", - "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", - "dev": true, - "requires": { - "arr-flatten": "^1.0.1" - } - }, - "array-unique": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", - "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=", - "dev": true - }, - "braces": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", - "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", - "dev": true, - "requires": { - "expand-range": "^1.8.1", - "preserve": "^0.2.0", - "repeat-element": "^1.1.2" - } - }, - "camelcase": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", - "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", - "dev": true - }, - "chokidar": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz", - "integrity": "sha1-eY5ol3gVHIB2tLNg5e3SjNortGg=", - "dev": true, - "requires": { - "anymatch": "^1.3.0", - "async-each": "^1.0.0", - "fsevents": "^1.0.0", - "glob-parent": "^2.0.0", - "inherits": "^2.0.1", - "is-binary-path": "^1.0.0", - "is-glob": "^2.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.0.0" - } - }, - "cross-spawn": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", - "dev": true, - "requires": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "execa": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", - "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", - "dev": true, - "requires": { - "cross-spawn": "^5.0.1", - "get-stream": "^3.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - } - }, - "expand-brackets": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", - "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", - "dev": true, - "requires": { - "is-posix-bracket": "^0.1.0" - } - }, - "extglob": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", - "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", - "dev": true, - "requires": { - "is-extglob": "^1.0.0" - } - }, - "glob-parent": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", - "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", - "dev": true, - "requires": { - "is-glob": "^2.0.0" - } - }, - "is-extglob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "is-glob": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", - "dev": true, - "requires": { - "is-extglob": "^1.0.0" - } - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - }, - "load-json-file": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", - "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^2.2.0", - "pify": "^2.0.0", - "strip-bom": "^3.0.0" - } - }, - "mem": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/mem/-/mem-1.1.0.tgz", - "integrity": "sha1-Xt1StIXKHZAP5kiVUFOZoN+kX3Y=", - "dev": true, - "requires": { - "mimic-fn": "^1.0.0" - } - }, - "micromatch": { - "version": "2.3.11", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", - "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", - "dev": true, - "requires": { - "arr-diff": "^2.0.0", - "array-unique": "^0.2.1", - "braces": "^1.8.2", - "expand-brackets": "^0.1.4", - "extglob": "^0.3.1", - "filename-regex": "^2.0.0", - "is-extglob": "^1.0.0", - "is-glob": "^2.0.1", - "kind-of": "^3.0.2", - "normalize-path": "^2.0.1", - "object.omit": "^2.0.0", - "parse-glob": "^3.0.4", - "regex-cache": "^0.4.2" - } - }, - "mimic-fn": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", - "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", - "dev": true - }, - "os-locale": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz", - "integrity": "sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA==", - "dev": true, - "requires": { - "execa": "^0.7.0", - "lcid": "^1.0.0", - "mem": "^1.1.0" - } - }, - "path-type": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", - "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=", - "dev": true, - "requires": { - "pify": "^2.0.0" - } - }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true - }, - "read-pkg": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", - "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=", - "dev": true, - "requires": { - "load-json-file": "^2.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^2.0.0" - } - }, - "read-pkg-up": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", - "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=", - "dev": true, - "requires": { - "find-up": "^2.0.0", - "read-pkg": "^2.0.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - }, - "which-module": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", - "dev": true - }, - "y18n": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", - "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=", - "dev": true - }, - "yargs": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-9.0.1.tgz", - "integrity": "sha1-UqzCP+7Kw0BCB47njAwAf1CF20w=", - "dev": true, - "requires": { - "camelcase": "^4.1.0", - "cliui": "^3.2.0", - "decamelize": "^1.1.1", - "get-caller-file": "^1.0.1", - "os-locale": "^2.0.0", - "read-pkg-up": "^2.0.0", - "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^2.0.0", - "which-module": "^2.0.0", - "y18n": "^3.2.1", - "yargs-parser": "^7.0.0" - } - }, - "yargs-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-7.0.0.tgz", - "integrity": "sha1-jQrELxbqVd69MyyvTEA4s+P139k=", - "dev": true, - "requires": { - "camelcase": "^4.1.0" - } - } - } - }, - "@angular/core": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/@angular/core/-/core-7.0.4.tgz", - "integrity": "sha512-17SSmCz1wQoZKnVHF/T8UkWYPpDm5kPyoc1okkTTv8ZA2EAMMuZFFnRSAxEL5i7mNB9z5CvRqF2tRx/DbgbIRA==", - "requires": { - "tslib": "^1.9.0" - } - }, - "@angular/forms": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-7.0.4.tgz", - "integrity": "sha512-W3nN9n1VY9On9+9f7PDRbzJUg+mMq1bjkhWsk/b7DfaYdmlzpG+Wd6OfArob2edsqGqH1dvTM8q8aGbWiFZ7dA==", - "requires": { - "tslib": "^1.9.0" - } - }, - "@angular/http": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/@angular/http/-/http-7.0.4.tgz", - "integrity": "sha512-oUGT7xS7FZYajuHq0DP6MgahacB5sJTRgxiUU4uhQ/mqV7aREODVJJgw7oHDhM7Cnyzzo0B9D0zpEljKmeCLWQ==", - "requires": { - "tslib": "^1.9.0" - } - }, - "@angular/language-service": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/@angular/language-service/-/language-service-7.0.4.tgz", - "integrity": "sha512-CuJ2Ii97sNoN1HOZOLxG1lEHsQFi8K/RSB/k2suWPKzdM53ldSkKoYRac38zW/uqNABYItgvxb7w0Vi7HhxLsg==", - "dev": true - }, - "@angular/material": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/@angular/material/-/material-7.0.4.tgz", - "integrity": "sha512-LoDtg6srT9WPEn4bsiJqU1uXJ6bd28FtSc7prDYaPb5ogTj1zaur4LWJ7GjPK1haq4rW4W2NMTuayIsqpdGfSA==", - "requires": { - "tslib": "^1.7.1" - } - }, - "@angular/platform-browser": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-7.0.4.tgz", - "integrity": "sha512-4brYZZgsCJk1/a6JoSwaiVWO9+/T4iyE27dAgstao1nOf/jrBNKW2HnZtkWZmCCBK0WIk15wlB0Xr87OZbjNVA==", - "requires": { - "tslib": "^1.9.0" - } - }, - "@angular/platform-browser-dynamic": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-7.0.4.tgz", - "integrity": "sha512-k1I53zIg8YWhtQizLfq/tWrUUdY5vHV8pGHyt0/UTGDqat5TORd6LDFfzCSux0r3qZujCOGNi9f4/AbyV8B9lw==", - "requires": { - "tslib": "^1.9.0" - } - }, - "@angular/router": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/@angular/router/-/router-7.0.4.tgz", - "integrity": "sha512-nt1jJsxN+JmYZ6URamMdULUpH4aHdnNVKjWtjDI0OpdZvPx7PMFD8cfc92q0tavy2KqqexcceIb4BIC965gtpA==", - "requires": { - "tslib": "^1.9.0" - } - }, - "@babel/code-frame": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz", - "integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==", - "dev": true, - "requires": { - "@babel/highlight": "^7.0.0" - } - }, - "@babel/generator": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.5.5.tgz", - "integrity": "sha512-ETI/4vyTSxTzGnU2c49XHv2zhExkv9JHLTwDAFz85kmcwuShvYG2H08FwgIguQf4JC75CBnXAUM5PqeF4fj0nQ==", - "dev": true, - "requires": { - "@babel/types": "^7.5.5", - "jsesc": "^2.5.1", - "lodash": "^4.17.13", - "source-map": "^0.5.0", - "trim-right": "^1.0.1" - }, - "dependencies": { - "jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "dev": true - }, - "lodash": { - "version": "4.17.15", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", - "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==", - "dev": true - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - } - } - }, - "@babel/helper-function-name": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz", - "integrity": "sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw==", - "dev": true, - "requires": { - "@babel/helper-get-function-arity": "^7.0.0", - "@babel/template": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "@babel/helper-get-function-arity": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz", - "integrity": "sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ==", - "dev": true, - "requires": { - "@babel/types": "^7.0.0" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz", - "integrity": "sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q==", - "dev": true, - "requires": { - "@babel/types": "^7.4.4" - } - }, - "@babel/highlight": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.5.0.tgz", - "integrity": "sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ==", - "dev": true, - "requires": { - "chalk": "^2.0.0", - "esutils": "^2.0.2", - "js-tokens": "^4.0.0" - }, - "dependencies": { - "js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true - } - } - }, - "@babel/parser": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.5.5.tgz", - "integrity": "sha512-E5BN68cqR7dhKan1SfqgPGhQ178bkVKpXTPEXnFJBrEt8/DKRZlybmy+IgYLTeN7tp1R5Ccmbm2rBk17sHYU3g==", - "dev": true - }, - "@babel/template": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.4.4.tgz", - "integrity": "sha512-CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.4.4", - "@babel/types": "^7.4.4" - } - }, - "@babel/traverse": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.5.5.tgz", - "integrity": "sha512-MqB0782whsfffYfSjH4TM+LMjrJnhCNEDMDIjeTpl+ASaUvxcjoiVCo/sM1GhS1pHOXYfWVCYneLjMckuUxDaQ==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.5.5", - "@babel/generator": "^7.5.5", - "@babel/helper-function-name": "^7.1.0", - "@babel/helper-split-export-declaration": "^7.4.4", - "@babel/parser": "^7.5.5", - "@babel/types": "^7.5.5", - "debug": "^4.1.0", - "globals": "^11.1.0", - "lodash": "^4.17.13" - }, - "dependencies": { - "debug": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", - "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "dev": true - }, - "lodash": { - "version": "4.17.15", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", - "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==", - "dev": true - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - } - } - }, - "@babel/types": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.5.5.tgz", - "integrity": "sha512-s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw==", - "dev": true, - "requires": { - "esutils": "^2.0.2", - "lodash": "^4.17.13", - "to-fast-properties": "^2.0.0" - }, - "dependencies": { - "lodash": { - "version": "4.17.15", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", - "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==", - "dev": true - }, - "to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", - "dev": true - } - } - }, - "@ng-bootstrap/ng-bootstrap": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/@ng-bootstrap/ng-bootstrap/-/ng-bootstrap-4.2.1.tgz", - "integrity": "sha512-7etP9X9jKIkbuDzU3ngI2jQhHQDZxIu0ErvlkHb7u7YH9akIOLVkXvz2mTMvcFABWZhze64UjFuEgR46b6WGSw==", - "requires": { - "tslib": "^1.9.0" - } - }, - "@ngtools/webpack": { - "version": "7.0.7", - "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-7.0.7.tgz", - "integrity": "sha512-ukZv/8vhiVWLsEEWF1uena8GHRVUpwbPJ+8AupW25d2nNpwfsDtTIXKzTzRYeIQFFCnHJxr04lK18CVsn1lFaQ==", - "dev": true, - "requires": { - "@angular-devkit/core": "7.0.7", - "enhanced-resolve": "4.1.0", - "rxjs": "6.3.3", - "tree-kill": "1.2.0", - "webpack-sources": "1.2.0" - } - }, - "@ngx-translate/core": { - "version": "11.0.1", - "resolved": "https://registry.npmjs.org/@ngx-translate/core/-/core-11.0.1.tgz", - "integrity": "sha512-nBCa1ZD9fAUY/3eskP3Lql2fNg8OMrYIej1/5GRsfcutx9tG/5fZLCv9m6UCw1aS+u4uK/vXjv1ctG/FdMvaWg==", - "requires": { - "tslib": "^1.9.0" - } - }, - "@ngx-translate/http-loader": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@ngx-translate/http-loader/-/http-loader-4.0.0.tgz", - "integrity": "sha512-x8LumqydWD7eX9yQTAVeoCM9gFUIGVTUjZqbxdAUavAA3qVnk9wCQux7iHLPXpydl8vyQmLoPQR+fFU+DUDOMA==", - "requires": { - "tslib": "^1.9.0" - } - }, - "@schematics/angular": { - "version": "7.0.7", - "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-7.0.7.tgz", - "integrity": "sha512-xDSMAtOdKNa5uqsEfbwBVHVCjpNSmIIcadi0Rki+5Nmobf5nnQWPly1/xj5aHzT6SKuV4BIMvsBG9UgI9Ss/Iw==", - "dev": true, - "requires": { - "@angular-devkit/core": "7.0.7", - "@angular-devkit/schematics": "7.0.7", - "typescript": "3.1.6" - } - }, - "@schematics/update": { - "version": "0.10.7", - "resolved": "https://registry.npmjs.org/@schematics/update/-/update-0.10.7.tgz", - "integrity": "sha512-E4txrdnIcNn1K0xFPmY4ywAnVj+hN2QB1wBijoAMezYTEjcKxW0g6thPfUv6qhIPcphxrCOqwl6cIELZjq2dtA==", - "dev": true, - "requires": { - "@angular-devkit/core": "7.0.7", - "@angular-devkit/schematics": "7.0.7", - "npm-registry-client": "8.6.0", - "rxjs": "6.3.3", - "semver": "5.5.1", - "semver-intersect": "1.4.0" - }, - "dependencies": { - "semver": { - "version": "5.5.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.1.tgz", - "integrity": "sha512-PqpAxfrEhlSUWge8dwIp4tZnQ25DIOthpiaHNIthsjEFQD6EvqUKUDM7L8O2rShkFccYo1VjJR0coWfNkCubRw==", - "dev": true - } - } - }, - "@types/jasmine": { - "version": "2.8.16", - "resolved": "https://registry.npmjs.org/@types/jasmine/-/jasmine-2.8.16.tgz", - "integrity": "sha512-056oRlBBp7MDzr+HoU5su099s/s7wjZ3KcHxLfv+Byqb9MwdLUvsfLgw1VS97hsh3ddxSPyQu+olHMnoVTUY6g==", - "dev": true - }, - "@types/jasminewd2": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@types/jasminewd2/-/jasminewd2-2.0.6.tgz", - "integrity": "sha512-2ZOKrxb8bKRmP/po5ObYnRDgFE4i+lQiEB27bAMmtMWLgJSqlIDqlLx6S0IRorpOmOPRQ6O80NujTmQAtBkeNw==", - "dev": true, - "requires": { - "@types/jasmine": "*" - } - }, - "@types/node": { - "version": "8.9.5", - "resolved": "https://registry.npmjs.org/@types/node/-/node-8.9.5.tgz", - "integrity": "sha512-jRHfWsvyMtXdbhnz5CVHxaBgnV6duZnPlQuRSo/dm/GnmikNcmZhxIES4E9OZjUmQ8C+HCl4KJux+cXN/ErGDQ==", - "dev": true - }, - "@types/q": { - "version": "0.0.32", - "resolved": "https://registry.npmjs.org/@types/q/-/q-0.0.32.tgz", - "integrity": "sha1-vShOV8hPEyXacCur/IKlMoGQwMU=", - "dev": true - }, - "@types/selenium-webdriver": { - "version": "3.0.16", - "resolved": "https://registry.npmjs.org/@types/selenium-webdriver/-/selenium-webdriver-3.0.16.tgz", - "integrity": "sha512-lMC2G0ItF2xv4UCiwbJGbnJlIuUixHrioOhNGHSCsYCJ8l4t9hMCUimCytvFv7qy6AfSzRxhRHoGa+UqaqwyeA==", - "dev": true - }, - "@webassemblyjs/ast": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.7.6.tgz", - "integrity": "sha512-8nkZS48EVsMUU0v6F1LCIOw4RYWLm2plMtbhFTjNgeXmsTNLuU3xTRtnljt9BFQB+iPbLRobkNrCWftWnNC7wQ==", - "dev": true, - "requires": { - "@webassemblyjs/helper-module-context": "1.7.6", - "@webassemblyjs/helper-wasm-bytecode": "1.7.6", - "@webassemblyjs/wast-parser": "1.7.6", - "mamacro": "^0.0.3" - } - }, - "@webassemblyjs/floating-point-hex-parser": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.7.6.tgz", - "integrity": "sha512-VBOZvaOyBSkPZdIt5VBMg3vPWxouuM13dPXGWI1cBh3oFLNcFJ8s9YA7S9l4mPI7+Q950QqOmqj06oa83hNWBA==", - "dev": true - }, - "@webassemblyjs/helper-api-error": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.7.6.tgz", - "integrity": "sha512-SCzhcQWHXfrfMSKcj8zHg1/kL9kb3aa5TN4plc/EREOs5Xop0ci5bdVBApbk2yfVi8aL+Ly4Qpp3/TRAUInjrg==", - "dev": true - }, - "@webassemblyjs/helper-buffer": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.7.6.tgz", - "integrity": "sha512-1/gW5NaGsEOZ02fjnFiU8/OEEXU1uVbv2um0pQ9YVL3IHSkyk6xOwokzyqqO1qDZQUAllb+V8irtClPWntbVqw==", - "dev": true - }, - "@webassemblyjs/helper-code-frame": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.7.6.tgz", - "integrity": "sha512-+suMJOkSn9+vEvDvgyWyrJo5vJsWSDXZmJAjtoUq4zS4eqHyXImpktvHOZwXp1XQjO5H+YQwsBgqTQEc0J/5zg==", - "dev": true, - "requires": { - "@webassemblyjs/wast-printer": "1.7.6" - } - }, - "@webassemblyjs/helper-fsm": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.7.6.tgz", - "integrity": "sha512-HCS6KN3wgxUihGBW7WFzEC/o8Eyvk0d56uazusnxXthDPnkWiMv+kGi9xXswL2cvfYfeK5yiM17z2K5BVlwypw==", - "dev": true - }, - "@webassemblyjs/helper-module-context": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.7.6.tgz", - "integrity": "sha512-e8/6GbY7OjLM+6OsN7f2krC2qYVNaSr0B0oe4lWdmq5sL++8dYDD1TFbD1TdAdWMRTYNr/Qq7ovXWzia2EbSjw==", - "dev": true, - "requires": { - "mamacro": "^0.0.3" - } - }, - "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.7.6.tgz", - "integrity": "sha512-PzYFCb7RjjSdAOljyvLWVqd6adAOabJW+8yRT+NWhXuf1nNZWH+igFZCUK9k7Cx7CsBbzIfXjJc7u56zZgFj9Q==", - "dev": true - }, - "@webassemblyjs/helper-wasm-section": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.7.6.tgz", - "integrity": "sha512-3GS628ppDPSuwcYlQ7cDCGr4W2n9c4hLzvnRKeuz+lGsJSmc/ADVoYpm1ts2vlB1tGHkjtQMni+yu8mHoMlKlA==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.7.6", - "@webassemblyjs/helper-buffer": "1.7.6", - "@webassemblyjs/helper-wasm-bytecode": "1.7.6", - "@webassemblyjs/wasm-gen": "1.7.6" - } - }, - "@webassemblyjs/ieee754": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.7.6.tgz", - "integrity": "sha512-V4cIp0ruyw+hawUHwQLn6o2mFEw4t50tk530oKsYXQhEzKR+xNGDxs/SFFuyTO7X3NzEu4usA3w5jzhl2RYyzQ==", - "dev": true, - "requires": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "@webassemblyjs/leb128": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.7.6.tgz", - "integrity": "sha512-ojdlG8WpM394lBow4ncTGJoIVZ4aAtNOWHhfAM7m7zprmkVcKK+2kK5YJ9Bmj6/ketTtOn7wGSHCtMt+LzqgYQ==", - "dev": true, - "requires": { - "@xtuc/long": "4.2.1" - } - }, - "@webassemblyjs/utf8": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.7.6.tgz", - "integrity": "sha512-oId+tLxQ+AeDC34ELRYNSqJRaScB0TClUU6KQfpB8rNT6oelYlz8axsPhf6yPTg7PBJ/Z5WcXmUYiHEWgbbHJw==", - "dev": true - }, - "@webassemblyjs/wasm-edit": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.7.6.tgz", - "integrity": "sha512-pTNjLO3o41v/Vz9VFLl+I3YLImpCSpodFW77pNoH4agn5I6GgSxXHXtvWDTvYJFty0jSeXZWLEmbaSIRUDlekg==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.7.6", - "@webassemblyjs/helper-buffer": "1.7.6", - "@webassemblyjs/helper-wasm-bytecode": "1.7.6", - "@webassemblyjs/helper-wasm-section": "1.7.6", - "@webassemblyjs/wasm-gen": "1.7.6", - "@webassemblyjs/wasm-opt": "1.7.6", - "@webassemblyjs/wasm-parser": "1.7.6", - "@webassemblyjs/wast-printer": "1.7.6" - } - }, - "@webassemblyjs/wasm-gen": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.7.6.tgz", - "integrity": "sha512-mQvFJVumtmRKEUXMohwn8nSrtjJJl6oXwF3FotC5t6e2hlKMh8sIaW03Sck2MDzw9xPogZD7tdP5kjPlbH9EcQ==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.7.6", - "@webassemblyjs/helper-wasm-bytecode": "1.7.6", - "@webassemblyjs/ieee754": "1.7.6", - "@webassemblyjs/leb128": "1.7.6", - "@webassemblyjs/utf8": "1.7.6" - } - }, - "@webassemblyjs/wasm-opt": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.7.6.tgz", - "integrity": "sha512-go44K90fSIsDwRgtHhX14VtbdDPdK2sZQtZqUcMRvTojdozj5tLI0VVJAzLCfz51NOkFXezPeVTAYFqrZ6rI8Q==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.7.6", - "@webassemblyjs/helper-buffer": "1.7.6", - "@webassemblyjs/wasm-gen": "1.7.6", - "@webassemblyjs/wasm-parser": "1.7.6" - } - }, - "@webassemblyjs/wasm-parser": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.7.6.tgz", - "integrity": "sha512-t1T6TfwNY85pDA/HWPA8kB9xA4sp9ajlRg5W7EKikqrynTyFo+/qDzIpvdkOkOGjlS6d4n4SX59SPuIayR22Yg==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.7.6", - "@webassemblyjs/helper-api-error": "1.7.6", - "@webassemblyjs/helper-wasm-bytecode": "1.7.6", - "@webassemblyjs/ieee754": "1.7.6", - "@webassemblyjs/leb128": "1.7.6", - "@webassemblyjs/utf8": "1.7.6" - } - }, - "@webassemblyjs/wast-parser": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.7.6.tgz", - "integrity": "sha512-1MaWTErN0ziOsNUlLdvwS+NS1QWuI/kgJaAGAMHX8+fMJFgOJDmN/xsG4h/A1Gtf/tz5VyXQciaqHZqp2q0vfg==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.7.6", - "@webassemblyjs/floating-point-hex-parser": "1.7.6", - "@webassemblyjs/helper-api-error": "1.7.6", - "@webassemblyjs/helper-code-frame": "1.7.6", - "@webassemblyjs/helper-fsm": "1.7.6", - "@xtuc/long": "4.2.1", - "mamacro": "^0.0.3" - } - }, - "@webassemblyjs/wast-printer": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.7.6.tgz", - "integrity": "sha512-vHdHSK1tOetvDcl1IV1OdDeGNe/NDDQ+KzuZHMtqTVP1xO/tZ/IKNpj5BaGk1OYFdsDWQqb31PIwdEyPntOWRQ==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.7.6", - "@webassemblyjs/wast-parser": "1.7.6", - "@xtuc/long": "4.2.1" - } - }, - "@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "dev": true - }, - "@xtuc/long": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.1.tgz", - "integrity": "sha512-FZdkNBDqBRHKQ2MEbSC17xnPFOhZxeJ2YGSfr2BKf3sujG49Qe3bB+rGCwQfIaA7WHnGeGkSijX4FuBCdrzW/g==", - "dev": true - }, - "abbrev": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.0.9.tgz", - "integrity": "sha1-kbR5JYinc4wl813W9jdSovh3YTU=", - "dev": true - }, - "abs-components-bc": { - "version": "file:abs-components-bc", - "requires": { - "tslib": "^1.7.1" - } - }, - "accepts": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", - "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", - "dev": true, - "requires": { - "mime-types": "~2.1.24", - "negotiator": "0.6.2" - } - }, - "acorn": { - "version": "5.7.3", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz", - "integrity": "sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==", - "dev": true - }, - "acorn-dynamic-import": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-3.0.0.tgz", - "integrity": "sha512-zVWV8Z8lislJoOKKqdNMOB+s6+XV5WERty8MnKBeFgwA+19XJjJHs2RP5dzM57FftIs+jQnRToLiWazKr6sSWg==", - "dev": true, - "requires": { - "acorn": "^5.0.0" - } - }, - "adm-zip": { - "version": "0.4.13", - "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.13.tgz", - "integrity": "sha512-fERNJX8sOXfel6qCBCMPvZLzENBEhZTzKqg6vrOW5pvoEaQuJhRU4ndTAh6lHOxn1I6jnz2NHra56ZODM751uw==", - "dev": true - }, - "after": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/after/-/after-0.8.2.tgz", - "integrity": "sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8=", - "dev": true - }, - "agent-base": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz", - "integrity": "sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==", - "dev": true, - "requires": { - "es6-promisify": "^5.0.0" - } - }, - "ajv": { - "version": "6.10.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz", - "integrity": "sha512-nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg==", - "dev": true, - "requires": { - "fast-deep-equal": "^2.0.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ajv-errors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", - "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", - "dev": true - }, - "ajv-keywords": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.4.1.tgz", - "integrity": "sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==", - "dev": true - }, - "amdefine": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", - "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=", - "dev": true - }, - "ansi-colors": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", - "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", - "dev": true - }, - "ansi-escapes": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", - "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", - "dev": true - }, - "ansi-html": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", - "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=", - "dev": true - }, - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - }, - "dependencies": { - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", - "dev": true - } - } - }, - "anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "dev": true, - "requires": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - } - }, - "app-root-path": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/app-root-path/-/app-root-path-2.2.1.tgz", - "integrity": "sha512-91IFKeKk7FjfmezPKkwtaRvSpnUc4gDwPAjA1YZ9Gn0q0PPeW+vbeUsZuyDwjI7+QTHhcLen2v25fi/AmhvbJA==", - "dev": true - }, - "append-transform": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/append-transform/-/append-transform-1.0.0.tgz", - "integrity": "sha512-P009oYkeHyU742iSZJzZZywj4QRJdnTWffaKuJQLablCZ1uz6/cW4yaRgcDaoQ+uwOxxnt0gRUcwfsNP2ri0gw==", - "dev": true, - "requires": { - "default-require-extensions": "^2.0.0" - } - }, - "aproba": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", - "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", - "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==", - "dev": true, - "optional": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^2.0.6" - } - }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, - "requires": { - "sprintf-js": "~1.0.2" - } - }, - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", - "dev": true - }, - "arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", - "dev": true - }, - "arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", - "dev": true - }, - "array-find-index": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", - "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=", - "dev": true - }, - "array-flatten": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", - "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", - "dev": true - }, - "array-slice": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz", - "integrity": "sha1-3Tz7gO15c6dRF82sabC5nshhhvU=", - "dev": true - }, - "array-union": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", - "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", - "dev": true, - "requires": { - "array-uniq": "^1.0.1" - } - }, - "array-uniq": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", - "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", - "dev": true - }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", - "dev": true - }, - "arraybuffer.slice": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz", - "integrity": "sha512-wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog==", - "dev": true - }, - "arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", - "dev": true - }, - "asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=", - "dev": true, - "optional": true - }, - "asn1": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", - "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", - "dev": true, - "requires": { - "safer-buffer": "~2.1.0" - } - }, - "asn1.js": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz", - "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==", - "dev": true, - "requires": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } - }, - "assert": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", - "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", - "dev": true, - "requires": { - "object-assign": "^4.1.1", - "util": "0.10.3" - }, - "dependencies": { - "inherits": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", - "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=", - "dev": true - }, - "util": { - "version": "0.10.3", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", - "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", - "dev": true, - "requires": { - "inherits": "2.0.1" - } - } - } - }, - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", - "dev": true - }, - "assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", - "dev": true - }, - "async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.2.tgz", - "integrity": "sha512-H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg==", - "dev": true, - "requires": { - "lodash": "^4.17.11" - } - }, - "async-each": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", - "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", - "dev": true - }, - "async-foreach": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz", - "integrity": "sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI=", - "dev": true, - "optional": true - }, - "async-limiter": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz", - "integrity": "sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==", - "dev": true - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", - "dev": true - }, - "atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", - "dev": true - }, - "autoprefixer": { - "version": "9.1.5", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.1.5.tgz", - "integrity": "sha512-kk4Zb6RUc58ld7gdosERHMF3DzIYJc2fp5sX46qEsGXQQy5bXsu8qyLjoxuY1NuQ/cJuCYnx99BfjwnRggrYIw==", - "dev": true, - "requires": { - "browserslist": "^4.1.0", - "caniuse-lite": "^1.0.30000884", - "normalize-range": "^0.1.2", - "num2fraction": "^1.2.2", - "postcss": "^7.0.2", - "postcss-value-parser": "^3.2.3" - } - }, - "aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", - "dev": true - }, - "aws4": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz", - "integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==", - "dev": true - }, - "babel-code-frame": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", - "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=", - "dev": true, - "requires": { - "chalk": "^1.1.3", - "esutils": "^2.0.2", - "js-tokens": "^3.0.2" - }, - "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, - "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true - } - } - }, - "babel-generator": { - "version": "6.26.1", - "resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz", - "integrity": "sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==", - "dev": true, - "requires": { - "babel-messages": "^6.23.0", - "babel-runtime": "^6.26.0", - "babel-types": "^6.26.0", - "detect-indent": "^4.0.0", - "jsesc": "^1.3.0", - "lodash": "^4.17.4", - "source-map": "^0.5.7", - "trim-right": "^1.0.1" - }, - "dependencies": { - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - } - } - }, - "babel-messages": { - "version": "6.23.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz", - "integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=", - "dev": true, - "requires": { - "babel-runtime": "^6.22.0" - } - }, - "babel-runtime": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", - "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", - "dev": true, - "requires": { - "core-js": "^2.4.0", - "regenerator-runtime": "^0.11.0" - } - }, - "babel-template": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz", - "integrity": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=", - "dev": true, - "requires": { - "babel-runtime": "^6.26.0", - "babel-traverse": "^6.26.0", - "babel-types": "^6.26.0", - "babylon": "^6.18.0", - "lodash": "^4.17.4" - } - }, - "babel-traverse": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz", - "integrity": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=", - "dev": true, - "requires": { - "babel-code-frame": "^6.26.0", - "babel-messages": "^6.23.0", - "babel-runtime": "^6.26.0", - "babel-types": "^6.26.0", - "babylon": "^6.18.0", - "debug": "^2.6.8", - "globals": "^9.18.0", - "invariant": "^2.2.2", - "lodash": "^4.17.4" - } - }, - "babel-types": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz", - "integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=", - "dev": true, - "requires": { - "babel-runtime": "^6.26.0", - "esutils": "^2.0.2", - "lodash": "^4.17.4", - "to-fast-properties": "^1.0.3" - } - }, - "babylon": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", - "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==", - "dev": true - }, - "backo2": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz", - "integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc=", - "dev": true - }, - "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", - "dev": true - }, - "base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", - "dev": true, - "requires": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - } - } - }, - "base64-arraybuffer": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz", - "integrity": "sha1-c5JncZI7Whl0etZmqlzUv5xunOg=", - "dev": true - }, - "base64-js": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz", - "integrity": "sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw==", - "dev": true - }, - "base64id": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/base64id/-/base64id-1.0.0.tgz", - "integrity": "sha1-R2iMuZu2gE8OBtPnY7HDLlfY5rY=", - "dev": true - }, - "batch": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=", - "dev": true - }, - "bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", - "dev": true, - "requires": { - "tweetnacl": "^0.14.3" - } - }, - "better-assert": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz", - "integrity": "sha1-QIZrnhueC1W0gYlDEeaPr/rrxSI=", - "dev": true, - "requires": { - "callsite": "1.0.0" - } - }, - "big.js": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz", - "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==", - "dev": true - }, - "binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", - "dev": true - }, - "blob": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/blob/-/blob-0.0.5.tgz", - "integrity": "sha512-gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig==", - "dev": true - }, - "block-stream": { - "version": "0.0.9", - "resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz", - "integrity": "sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=", - "dev": true, - "optional": true, - "requires": { - "inherits": "~2.0.0" - } - }, - "blocking-proxy": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/blocking-proxy/-/blocking-proxy-1.0.1.tgz", - "integrity": "sha512-KE8NFMZr3mN2E0HcvCgRtX7DjhiIQrwle+nSVJVC/yqFb9+xznHl2ZcoBp2L9qzkI4t4cBFJ1efXF8Dwi132RA==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - }, - "bluebird": { - "version": "3.5.5", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.5.tgz", - "integrity": "sha512-5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w==", - "dev": true - }, - "bn.js": { - "version": "4.11.8", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz", - "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==", - "dev": true - }, - "body-parser": { - "version": "1.19.0", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", - "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", - "dev": true, - "requires": { - "bytes": "3.1.0", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "~1.1.2", - "http-errors": "1.7.2", - "iconv-lite": "0.4.24", - "on-finished": "~2.3.0", - "qs": "6.7.0", - "raw-body": "2.4.0", - "type-is": "~1.6.17" - }, - "dependencies": { - "bytes": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", - "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", - "dev": true - }, - "qs": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", - "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", - "dev": true - } - } - }, - "bonjour": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", - "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", - "dev": true, - "requires": { - "array-flatten": "^2.1.0", - "deep-equal": "^1.0.1", - "dns-equal": "^1.0.0", - "dns-txt": "^2.0.2", - "multicast-dns": "^6.0.1", - "multicast-dns-service-types": "^1.1.0" - } - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dev": true, - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", - "dev": true - }, - "browserify-aes": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", - "dev": true, - "requires": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "browserify-cipher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", - "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", - "dev": true, - "requires": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" - } - }, - "browserify-des": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", - "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", - "dev": true, - "requires": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "browserify-rsa": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", - "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", - "dev": true, - "requires": { - "bn.js": "^4.1.0", - "randombytes": "^2.0.1" - } - }, - "browserify-sign": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz", - "integrity": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=", - "dev": true, - "requires": { - "bn.js": "^4.1.1", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.2", - "elliptic": "^6.0.0", - "inherits": "^2.0.1", - "parse-asn1": "^5.0.0" - } - }, - "browserify-zlib": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", - "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", - "dev": true, - "requires": { - "pako": "~1.0.5" - } - }, - "browserslist": { - "version": "4.6.6", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.6.6.tgz", - "integrity": "sha512-D2Nk3W9JL9Fp/gIcWei8LrERCS+eXu9AM5cfXA8WEZ84lFks+ARnZ0q/R69m2SV3Wjma83QDDPxsNKXUwdIsyA==", - "dev": true, - "requires": { - "caniuse-lite": "^1.0.30000984", - "electron-to-chromium": "^1.3.191", - "node-releases": "^1.1.25" - } - }, - "browserstack": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/browserstack/-/browserstack-1.5.2.tgz", - "integrity": "sha512-+6AFt9HzhKykcPF79W6yjEUJcdvZOV0lIXdkORXMJftGrDl0OKWqRF4GHqpDNkxiceDT/uB7Fb/aDwktvXX7dg==", - "dev": true, - "requires": { - "https-proxy-agent": "^2.2.1" - } - }, - "buffer": { - "version": "4.9.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz", - "integrity": "sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg=", - "dev": true, - "requires": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4", - "isarray": "^1.0.0" - } - }, - "buffer-alloc": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", - "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", - "dev": true, - "requires": { - "buffer-alloc-unsafe": "^1.1.0", - "buffer-fill": "^1.0.0" - } - }, - "buffer-alloc-unsafe": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", - "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", - "dev": true - }, - "buffer-fill": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", - "integrity": "sha1-+PeLdniYiO858gXNY39o5wISKyw=", - "dev": true - }, - "buffer-from": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", - "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", - "dev": true - }, - "buffer-indexof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", - "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", - "dev": true - }, - "buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", - "dev": true - }, - "builtin-modules": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", - "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=", - "dev": true - }, - "builtin-status-codes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=", - "dev": true - }, - "builtins": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz", - "integrity": "sha1-y5T662HIaWRR2zZTThQi+U8K7og=", - "dev": true - }, - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", - "dev": true - }, - "cacache": { - "version": "10.0.4", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-10.0.4.tgz", - "integrity": "sha512-Dph0MzuH+rTQzGPNT9fAnrPmMmjKfST6trxJeK7NQuHRaVw24VzPRWTmg9MpcwOVQZO0E1FBICUlFeNaKPIfHA==", - "dev": true, - "requires": { - "bluebird": "^3.5.1", - "chownr": "^1.0.1", - "glob": "^7.1.2", - "graceful-fs": "^4.1.11", - "lru-cache": "^4.1.1", - "mississippi": "^2.0.0", - "mkdirp": "^0.5.1", - "move-concurrently": "^1.0.1", - "promise-inflight": "^1.0.1", - "rimraf": "^2.6.2", - "ssri": "^5.2.4", - "unique-filename": "^1.1.0", - "y18n": "^4.0.0" - } - }, - "cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", - "dev": true, - "requires": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" - } - }, - "caller-callsite": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", - "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", - "dev": true, - "requires": { - "callsites": "^2.0.0" - } - }, - "caller-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", - "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", - "dev": true, - "requires": { - "caller-callsite": "^2.0.0" - } - }, - "callsite": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz", - "integrity": "sha1-KAOY5dZkvXQDi28JBRU+borxvCA=", - "dev": true - }, - "callsites": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", - "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=", - "dev": true - }, - "camelcase": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", - "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=", - "dev": true, - "optional": true - }, - "camelcase-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", - "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", - "dev": true, - "optional": true, - "requires": { - "camelcase": "^2.0.0", - "map-obj": "^1.0.0" - } - }, - "caniuse-lite": { - "version": "1.0.30000986", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000986.tgz", - "integrity": "sha512-pM+LnkoAX0+QnIH3tpW5EnkmfpEoqOD8FAcoBvsl3Xh6DXkgctiCxeCbXphP/k3XJtJzm+zOAJbi6U6IVkpWZQ==", - "dev": true - }, - "canonical-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/canonical-path/-/canonical-path-1.0.0.tgz", - "integrity": "sha512-feylzsbDxi1gPZ1IjystzIQZagYYLvfKrSuygUCgf7z6x790VEzze5QEkdSV1U58RA7Hi0+v6fv4K54atOzATg==", - "dev": true - }, - "caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", - "dev": true - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "dependencies": { - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", - "dev": true - }, - "chokidar": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.0.4.tgz", - "integrity": "sha512-z9n7yt9rOvIJrMhvDtDictKrkFHeihkNl6uWMmZlmL6tJtX9Cs+87oK+teBx+JIgzvbX3yZHT3eF8vpbDxHJXQ==", - "dev": true, - "requires": { - "anymatch": "^2.0.0", - "async-each": "^1.0.0", - "braces": "^2.3.0", - "fsevents": "^1.2.2", - "glob-parent": "^3.1.0", - "inherits": "^2.0.1", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "lodash.debounce": "^4.0.8", - "normalize-path": "^2.1.1", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.0.0", - "upath": "^1.0.5" - } - }, - "chownr": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.2.tgz", - "integrity": "sha512-GkfeAQh+QNy3wquu9oIZr6SS5x7wGdSgNQvD10X3r+AZr1Oys22HW8kAmDMvNg2+Dm0TeGaEuO8gFwdBXxwO8A==", - "dev": true - }, - "chrome-trace-event": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz", - "integrity": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==", - "dev": true, - "requires": { - "tslib": "^1.9.0" - } - }, - "cipher-base": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", - "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "circular-dependency-plugin": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/circular-dependency-plugin/-/circular-dependency-plugin-5.0.2.tgz", - "integrity": "sha512-oC7/DVAyfcY3UWKm0sN/oVoDedQDQiw/vIiAnuTWTpE5s0zWf7l3WY417Xw/Fbi/QbAjctAkxgMiS9P0s3zkmA==", - "dev": true - }, - "circular-json": { - "version": "0.5.9", - "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.5.9.tgz", - "integrity": "sha512-4ivwqHpIFJZBuhN3g/pEcdbnGUywkBblloGbkglyloVjjR3uT6tieI89MVOfbP2tHX5sgb01FuLgAOzebNlJNQ==", - "dev": true - }, - "class-utils": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", - "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", - "dev": true, - "requires": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - } - } - }, - "clean-css": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.1.tgz", - "integrity": "sha512-4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g==", - "dev": true, - "requires": { - "source-map": "~0.6.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "cli-cursor": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", - "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", - "dev": true, - "requires": { - "restore-cursor": "^2.0.0" - } - }, - "cli-width": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz", - "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=", - "dev": true - }, - "cliui": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", - "dev": true, - "requires": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wrap-ansi": "^2.0.0" - } - }, - "clone": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", - "dev": true - }, - "clone-deep": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-2.0.2.tgz", - "integrity": "sha512-SZegPTKjCgpQH63E+eN6mVEEPdQBOUzjyJm5Pora4lrwWRFS8I0QAxV/KD6vV/i0WuijHZWQC1fMsPEdxfdVCQ==", - "dev": true, - "requires": { - "for-own": "^1.0.0", - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.0", - "shallow-clone": "^1.0.0" - } - }, - "co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", - "dev": true - }, - "code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", - "dev": true - }, - "codelyzer": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/codelyzer/-/codelyzer-4.5.0.tgz", - "integrity": "sha512-oO6vCkjqsVrEsmh58oNlnJkRXuA30hF8cdNAQV9DytEalDwyOFRvHMnlKFzmOStNerOmPGZU9GAHnBo4tGvtiQ==", - "dev": true, - "requires": { - "app-root-path": "^2.1.0", - "css-selector-tokenizer": "^0.7.0", - "cssauron": "^1.4.0", - "semver-dsl": "^1.0.1", - "source-map": "^0.5.7", - "sprintf-js": "^1.1.1" - }, - "dependencies": { - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - }, - "sprintf-js": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz", - "integrity": "sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==", - "dev": true - } - } - }, - "collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", - "dev": true, - "requires": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" - } - }, - "colors": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz", - "integrity": "sha1-FopHAXVran9RoSzgyXv6KMCE7WM=", - "dev": true - }, - "combine-lists": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/combine-lists/-/combine-lists-1.0.1.tgz", - "integrity": "sha1-RYwH4J4NkA/Ci3Cj/sLazR0st/Y=", - "dev": true, - "requires": { - "lodash": "^4.5.0" - } - }, - "combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dev": true, - "requires": { - "delayed-stream": "~1.0.0" - } - }, - "commander": { - "version": "2.20.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.0.tgz", - "integrity": "sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==", - "dev": true - }, - "commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", - "dev": true - }, - "compare-versions": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/compare-versions/-/compare-versions-3.5.0.tgz", - "integrity": "sha512-hX+4kt2Rcwu+x1U0SsEFCn1quURjEjPEGH/cPBlpME/IidGimAdwfMU+B+xDr7et/KTR7VH2+ZqWGerv4NGs2w==", - "dev": true - }, - "component-bind": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz", - "integrity": "sha1-AMYIq33Nk4l8AAllGx06jh5zu9E=", - "dev": true - }, - "component-emitter": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", - "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", - "dev": true - }, - "component-inherit": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz", - "integrity": "sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM=", - "dev": true - }, - "compressible": { - "version": "2.0.17", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.17.tgz", - "integrity": "sha512-BGHeLCK1GV7j1bSmQQAi26X+GgWcTjLr/0tzSvMCl3LH1w1IJ4PFSPoV5316b30cneTziC+B1a+3OjoSUcQYmw==", - "dev": true, - "requires": { - "mime-db": ">= 1.40.0 < 2" - } - }, - "compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", - "dev": true, - "requires": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", - "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", - "vary": "~1.1.2" - } - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "dev": true - }, - "concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - } - }, - "connect": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", - "integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", - "dev": true, - "requires": { - "debug": "2.6.9", - "finalhandler": "1.1.2", - "parseurl": "~1.3.3", - "utils-merge": "1.0.1" - } - }, - "connect-history-api-fallback": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", - "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", - "dev": true - }, - "console-browserify": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz", - "integrity": "sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA=", - "dev": true, - "requires": { - "date-now": "^0.1.4" - } - }, - "console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", - "dev": true, - "optional": true - }, - "constants-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=", - "dev": true - }, - "content-disposition": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", - "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", - "dev": true, - "requires": { - "safe-buffer": "5.1.2" - } - }, - "content-type": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", - "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", - "dev": true - }, - "convert-source-map": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz", - "integrity": "sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.1" - } - }, - "cookie": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", - "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==", - "dev": true - }, - "cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", - "dev": true - }, - "copy-concurrently": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", - "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", - "dev": true, - "requires": { - "aproba": "^1.1.1", - "fs-write-stream-atomic": "^1.0.8", - "iferr": "^0.1.5", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4", - "run-queue": "^1.0.0" - } - }, - "copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", - "dev": true - }, - "copy-webpack-plugin": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-4.5.4.tgz", - "integrity": "sha512-0lstlEyj74OAtYMrDxlNZsU7cwFijAI3Ofz2fD6Mpo9r4xCv4yegfa3uHIKvZY1NSuOtE9nvG6TAhJ+uz9gDaQ==", - "dev": true, - "requires": { - "cacache": "^10.0.4", - "find-cache-dir": "^1.0.0", - "globby": "^7.1.1", - "is-glob": "^4.0.0", - "loader-utils": "^1.1.0", - "minimatch": "^3.0.4", - "p-limit": "^1.0.0", - "serialize-javascript": "^1.4.0" - } - }, - "core-js": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.9.tgz", - "integrity": "sha512-HOpZf6eXmnl7la+cUdMnLvUxKNqLUzJvgIziQ0DiF3JwSImNphIqdGqzj6hIKyX04MmV0poclQ7+wjWvxQyR2A==" - }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", - "dev": true - }, - "cosmiconfig": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", - "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", - "dev": true, - "requires": { - "import-fresh": "^2.0.0", - "is-directory": "^0.3.1", - "js-yaml": "^3.13.1", - "parse-json": "^4.0.0" - }, - "dependencies": { - "parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", - "dev": true, - "requires": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - } - } - } - }, - "create-ecdh": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz", - "integrity": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==", - "dev": true, - "requires": { - "bn.js": "^4.1.0", - "elliptic": "^6.0.0" - } - }, - "create-hash": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", - "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", - "dev": true, - "requires": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" - } - }, - "create-hmac": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", - "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", - "dev": true, - "requires": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "cross-spawn": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-3.0.1.tgz", - "integrity": "sha1-ElYDfsufDF9549bvE14wdwGEuYI=", - "dev": true, - "optional": true, - "requires": { - "lru-cache": "^4.0.1", - "which": "^1.2.9" - } - }, - "crypto-browserify": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", - "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", - "dev": true, - "requires": { - "browserify-cipher": "^1.0.0", - "browserify-sign": "^4.0.0", - "create-ecdh": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.0", - "diffie-hellman": "^5.0.0", - "inherits": "^2.0.1", - "pbkdf2": "^3.0.3", - "public-encrypt": "^4.0.0", - "randombytes": "^2.0.0", - "randomfill": "^1.0.3" - } - }, - "css-parse": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/css-parse/-/css-parse-1.7.0.tgz", - "integrity": "sha1-Mh9s9zeCpv91ERE5D8BeLGV9jJs=", - "dev": true - }, - "css-selector-tokenizer": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.1.tgz", - "integrity": "sha512-xYL0AMZJ4gFzJQsHUKa5jiWWi2vH77WVNg7JYRyewwj6oPh4yb/y6Y9ZCw9dsj/9UauMhtuxR+ogQd//EdEVNA==", - "dev": true, - "requires": { - "cssesc": "^0.1.0", - "fastparse": "^1.1.1", - "regexpu-core": "^1.0.0" - } - }, - "cssauron": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/cssauron/-/cssauron-1.4.0.tgz", - "integrity": "sha1-pmAt/34EqDBtwNuaVR6S6LVmKtg=", - "dev": true, - "requires": { - "through": "X.X.X" - } - }, - "cssesc": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-0.1.0.tgz", - "integrity": "sha1-yBSQPkViM3GgR3tAEJqq++6t27Q=", - "dev": true - }, - "currently-unhandled": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", - "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", - "dev": true, - "requires": { - "array-find-index": "^1.0.1" - } - }, - "custom-event": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/custom-event/-/custom-event-1.0.1.tgz", - "integrity": "sha1-XQKkaFCt8bSjF5RqOSj8y1v9BCU=", - "dev": true - }, - "cyclist": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-0.2.2.tgz", - "integrity": "sha1-GzN5LhHpFKL9bW7WRHRkRE5fpkA=", - "dev": true - }, - "dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", - "dev": true, - "requires": { - "assert-plus": "^1.0.0" - } - }, - "date-format": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/date-format/-/date-format-1.2.0.tgz", - "integrity": "sha1-YV6CjiM90aubua4JUODOzPpuytg=", - "dev": true - }, - "date-now": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz", - "integrity": "sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=", - "dev": true - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", - "dev": true - }, - "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=", - "dev": true - }, - "deep-equal": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", - "integrity": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=", - "dev": true - }, - "deep-is": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", - "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", - "dev": true - }, - "default-gateway": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-2.7.2.tgz", - "integrity": "sha512-lAc4i9QJR0YHSDFdzeBQKfZ1SRDG3hsJNEkrpcZa8QhBfidLAilT60BDEIVUUGqosFp425KOgB3uYqcnQrWafQ==", - "dev": true, - "requires": { - "execa": "^0.10.0", - "ip-regex": "^2.1.0" - } - }, - "default-require-extensions": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-2.0.0.tgz", - "integrity": "sha1-9fj7sYp9bVCyH2QfZJ67Uiz+JPc=", - "dev": true, - "requires": { - "strip-bom": "^3.0.0" - } - }, - "define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "dev": true, - "requires": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "dependencies": { - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - } - } - }, - "del": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/del/-/del-3.0.0.tgz", - "integrity": "sha1-U+z2mf/LyzljdpGrE7rxYIGXZuU=", - "dev": true, - "requires": { - "globby": "^6.1.0", - "is-path-cwd": "^1.0.0", - "is-path-in-cwd": "^1.0.0", - "p-map": "^1.1.1", - "pify": "^3.0.0", - "rimraf": "^2.2.8" - }, - "dependencies": { - "globby": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", - "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", - "dev": true, - "requires": { - "array-union": "^1.0.1", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true - } - } - }, - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "dev": true - } - } - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", - "dev": true - }, - "delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", - "dev": true, - "optional": true - }, - "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", - "dev": true - }, - "dependency-graph": { - "version": "0.7.2", - "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.7.2.tgz", - "integrity": "sha512-KqtH4/EZdtdfWX0p6MGP9jljvxSY6msy/pRUD4jgNwVpv3v1QmNLlsB3LDSSUg79BRVSn7jI1QPRtArGABovAQ==", - "dev": true - }, - "des.js": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz", - "integrity": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } - }, - "destroy": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", - "dev": true - }, - "detect-indent": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz", - "integrity": "sha1-920GQ1LN9Docts5hnE7jqUdd4gg=", - "dev": true, - "requires": { - "repeating": "^2.0.0" - } - }, - "detect-node": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.4.tgz", - "integrity": "sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==", - "dev": true - }, - "di": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/di/-/di-0.0.1.tgz", - "integrity": "sha1-gGZJMmzqp8qjMG112YXqJ0i6kTw=", - "dev": true - }, - "diff": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz", - "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==", - "dev": true - }, - "diffie-hellman": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", - "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", - "dev": true, - "requires": { - "bn.js": "^4.1.0", - "miller-rabin": "^4.0.0", - "randombytes": "^2.0.0" - } - }, - "dir-glob": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.2.2.tgz", - "integrity": "sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==", - "dev": true, - "requires": { - "path-type": "^3.0.0" - } - }, - "dns-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", - "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=", - "dev": true - }, - "dns-packet": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz", - "integrity": "sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==", - "dev": true, - "requires": { - "ip": "^1.1.0", - "safe-buffer": "^5.0.1" - } - }, - "dns-txt": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", - "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", - "dev": true, - "requires": { - "buffer-indexof": "^1.0.0" - } - }, - "dom-serialize": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/dom-serialize/-/dom-serialize-2.2.1.tgz", - "integrity": "sha1-ViromZ9Evl6jB29UGdzVnrQ6yVs=", - "dev": true, - "requires": { - "custom-event": "~1.0.0", - "ent": "~2.2.0", - "extend": "^3.0.0", - "void-elements": "^2.0.0" - } - }, - "domain-browser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", - "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", - "dev": true - }, - "duplexify": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", - "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", - "dev": true, - "requires": { - "end-of-stream": "^1.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.0.0", - "stream-shift": "^1.0.0" - } - }, - "ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", - "dev": true, - "requires": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", - "dev": true - }, - "electron-to-chromium": { - "version": "1.3.204", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.204.tgz", - "integrity": "sha512-T0eXE6hfbtpzRUaI7aHI/HYJ29Ndk84aVSborRAmXfWvBvz2EuB2OWYUxNcUX9d+jtqEIjgZjWMdoxS0hp5j1g==", - "dev": true - }, - "elliptic": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.0.tgz", - "integrity": "sha512-eFOJTMyCYb7xtE/caJ6JJu+bhi67WCYNbkGSknu20pmM8Ke/bqOfdnZWxyoGN26JgfxTbXrsCkEw4KheCT/KGg==", - "dev": true, - "requires": { - "bn.js": "^4.4.0", - "brorand": "^1.0.1", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.0" - } - }, - "emojis-list": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", - "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", - "dev": true - }, - "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", - "dev": true - }, - "end-of-stream": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz", - "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==", - "dev": true, - "requires": { - "once": "^1.4.0" - } - }, - "engine.io": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-3.2.1.tgz", - "integrity": "sha512-+VlKzHzMhaU+GsCIg4AoXF1UdDFjHHwMmMKqMJNDNLlUlejz58FCy4LBqB2YVJskHGYl06BatYWKP2TVdVXE5w==", - "dev": true, - "requires": { - "accepts": "~1.3.4", - "base64id": "1.0.0", - "cookie": "0.3.1", - "debug": "~3.1.0", - "engine.io-parser": "~2.1.0", - "ws": "~3.3.1" - }, - "dependencies": { - "cookie": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", - "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=", - "dev": true - }, - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - } - } - }, - "engine.io-client": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.2.1.tgz", - "integrity": "sha512-y5AbkytWeM4jQr7m/koQLc5AxpRKC1hEVUb/s1FUAWEJq5AzJJ4NLvzuKPuxtDi5Mq755WuDvZ6Iv2rXj4PTzw==", - "dev": true, - "requires": { - "component-emitter": "1.2.1", - "component-inherit": "0.0.3", - "debug": "~3.1.0", - "engine.io-parser": "~2.1.1", - "has-cors": "1.1.0", - "indexof": "0.0.1", - "parseqs": "0.0.5", - "parseuri": "0.0.5", - "ws": "~3.3.1", - "xmlhttprequest-ssl": "~1.5.4", - "yeast": "0.1.2" - }, - "dependencies": { - "component-emitter": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", - "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=", - "dev": true - }, - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - } - } - }, - "engine.io-parser": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-2.1.3.tgz", - "integrity": "sha512-6HXPre2O4Houl7c4g7Ic/XzPnHBvaEmN90vtRO9uLmwtRqQmTOw0QMevL1TOfL2Cpu1VzsaTmMotQgMdkzGkVA==", - "dev": true, - "requires": { - "after": "0.8.2", - "arraybuffer.slice": "~0.0.7", - "base64-arraybuffer": "0.1.5", - "blob": "0.0.5", - "has-binary2": "~1.0.2" - } - }, - "enhanced-resolve": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz", - "integrity": "sha512-F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "memory-fs": "^0.4.0", - "tapable": "^1.0.0" - } - }, - "ent": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/ent/-/ent-2.2.0.tgz", - "integrity": "sha1-6WQhkyWiHQX0RGai9obtbOX13R0=", - "dev": true - }, - "errno": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz", - "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==", - "dev": true, - "requires": { - "prr": "~1.0.1" - } - }, - "error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dev": true, - "requires": { - "is-arrayish": "^0.2.1" - } - }, - "es6-promise": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", - "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==", - "dev": true - }, - "es6-promisify": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz", - "integrity": "sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM=", - "dev": true, - "requires": { - "es6-promise": "^4.0.3" - } - }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", - "dev": true - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", - "dev": true - }, - "escodegen": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.8.1.tgz", - "integrity": "sha1-WltTr0aTEQvrsIZ6o0MN07cKEBg=", - "dev": true, - "requires": { - "esprima": "^2.7.1", - "estraverse": "^1.9.1", - "esutils": "^2.0.2", - "optionator": "^0.8.1", - "source-map": "~0.2.0" - }, - "dependencies": { - "esprima": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz", - "integrity": "sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=", - "dev": true - }, - "source-map": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.2.0.tgz", - "integrity": "sha1-2rc/vPwrqBm03gO9b26qSBZLP50=", - "dev": true, - "optional": true, - "requires": { - "amdefine": ">=0.0.4" - } - } - } - }, - "eslint-scope": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", - "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", - "dev": true, - "requires": { - "esrecurse": "^4.1.0", - "estraverse": "^4.1.1" - }, - "dependencies": { - "estraverse": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", - "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=", - "dev": true - } - } - }, - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true - }, - "esrecurse": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz", - "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==", - "dev": true, - "requires": { - "estraverse": "^4.1.0" - }, - "dependencies": { - "estraverse": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", - "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=", - "dev": true - } - } - }, - "estraverse": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-1.9.3.tgz", - "integrity": "sha1-r2fy3JIlgkFZUJJgkaQAXSnJu0Q=", - "dev": true - }, - "esutils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", - "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", - "dev": true - }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", - "dev": true - }, - "eventemitter3": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz", - "integrity": "sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==", - "dev": true - }, - "events": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.0.0.tgz", - "integrity": "sha512-Dc381HFWJzEOhQ+d8pkNon++bk9h6cdAoAj4iE6Q4y6xgTzySWXlKn05/TVNpjnfRqi/X0EpJEJohPjNI3zpVA==", - "dev": true - }, - "eventsource": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-0.1.6.tgz", - "integrity": "sha1-Cs7ehJ7X3RzMMsgRuxG5RNTykjI=", - "dev": true, - "requires": { - "original": ">=0.0.5" - } - }, - "evp_bytestokey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", - "dev": true, - "requires": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" - } - }, - "execa": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.10.0.tgz", - "integrity": "sha512-7XOMnz8Ynx1gGo/3hyV9loYNPWM94jG3+3T3Y8tsfSstFmETmENCMU/A/zj8Lyaj1lkgEepKepvd6240tBRvlw==", - "dev": true, - "requires": { - "cross-spawn": "^6.0.0", - "get-stream": "^3.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, - "dependencies": { - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dev": true, - "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", - "dev": true - } - } - }, - "exit": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", - "dev": true - }, - "expand-braces": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/expand-braces/-/expand-braces-0.1.2.tgz", - "integrity": "sha1-SIsdHSRRyz06axks/AMPRMWFX+o=", - "dev": true, - "requires": { - "array-slice": "^0.2.3", - "array-unique": "^0.2.1", - "braces": "^0.1.2" - }, - "dependencies": { - "array-unique": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", - "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=", - "dev": true - }, - "braces": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/braces/-/braces-0.1.5.tgz", - "integrity": "sha1-wIVxEIUpHYt1/ddOqw+FlygHEeY=", - "dev": true, - "requires": { - "expand-range": "^0.1.0" - } - }, - "expand-range": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-0.1.1.tgz", - "integrity": "sha1-TLjtoJk8pW+k9B/ELzy7TMrf8EQ=", - "dev": true, - "requires": { - "is-number": "^0.1.1", - "repeat-string": "^0.2.2" - } - }, - "is-number": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-0.1.1.tgz", - "integrity": "sha1-aaevEWlj1HIG7JvZtIoUIW8eOAY=", - "dev": true - }, - "repeat-string": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-0.2.2.tgz", - "integrity": "sha1-x6jTI2BoNiBZp+RlH8aITosftK4=", - "dev": true - } - } - }, - "expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", - "dev": true, - "requires": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "expand-range": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", - "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", - "dev": true, - "requires": { - "fill-range": "^2.1.0" - }, - "dependencies": { - "fill-range": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz", - "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==", - "dev": true, - "requires": { - "is-number": "^2.1.0", - "isobject": "^2.0.0", - "randomatic": "^3.0.0", - "repeat-element": "^1.1.2", - "repeat-string": "^1.5.2" - } - }, - "is-number": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", - "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "dev": true, - "requires": { - "isarray": "1.0.0" - } - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "express": { - "version": "4.17.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", - "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", - "dev": true, - "requires": { - "accepts": "~1.3.7", - "array-flatten": "1.1.1", - "body-parser": "1.19.0", - "content-disposition": "0.5.3", - "content-type": "~1.0.4", - "cookie": "0.4.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "~1.1.2", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "~1.1.2", - "fresh": "0.5.2", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "~2.3.0", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.5", - "qs": "6.7.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.1.2", - "send": "0.17.1", - "serve-static": "1.14.1", - "setprototypeof": "1.1.1", - "statuses": "~1.5.0", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "dependencies": { - "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", - "dev": true - }, - "qs": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", - "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", - "dev": true - } - } - }, - "extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true - }, - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "dev": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - } - } - }, - "external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", - "dev": true, - "requires": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" - } - }, - "extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "dev": true, - "requires": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - } - } - }, - "extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", - "dev": true - }, - "fast-deep-equal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", - "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=", - "dev": true - }, - "fast-json-stable-stringify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", - "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=", - "dev": true - }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", - "dev": true - }, - "fastparse": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/fastparse/-/fastparse-1.1.2.tgz", - "integrity": "sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==", - "dev": true - }, - "faye-websocket": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz", - "integrity": "sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=", - "dev": true, - "requires": { - "websocket-driver": ">=0.5.1" - } - }, - "figgy-pudding": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.1.tgz", - "integrity": "sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w==", - "dev": true - }, - "figures": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", - "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", - "dev": true, - "requires": { - "escape-string-regexp": "^1.0.5" - } - }, - "file-loader": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-2.0.0.tgz", - "integrity": "sha512-YCsBfd1ZGCyonOKLxPiKPdu+8ld9HAaMEvJewzz+b2eTF7uL5Zm/HdBF6FjCrpCMRq25Mi0U1gl4pwn2TlH7hQ==", - "dev": true, - "requires": { - "loader-utils": "^1.0.2", - "schema-utils": "^1.0.0" - } - }, - "filename-regex": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz", - "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=", - "dev": true - }, - "fileset": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/fileset/-/fileset-2.0.3.tgz", - "integrity": "sha1-jnVIqW08wjJ+5eZ0FocjozO7oqA=", - "dev": true, - "requires": { - "glob": "^7.0.3", - "minimatch": "^3.0.3" - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "finalhandler": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", - "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", - "dev": true, - "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "~2.3.0", - "parseurl": "~1.3.3", - "statuses": "~1.5.0", - "unpipe": "~1.0.0" - } - }, - "find-cache-dir": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-1.0.0.tgz", - "integrity": "sha1-kojj6ePMN0hxfTnq3hfPcfww7m8=", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^1.0.0", - "pkg-dir": "^2.0.0" - }, - "dependencies": { - "make-dir": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", - "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", - "dev": true, - "requires": { - "pify": "^3.0.0" - } - }, - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "dev": true - } - } - }, - "find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "dev": true, - "requires": { - "locate-path": "^2.0.0" - } - }, - "flush-write-stream": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", - "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "readable-stream": "^2.3.6" - } - }, - "follow-redirects": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.7.0.tgz", - "integrity": "sha512-m/pZQy4Gj287eNy94nivy5wchN3Kp+Q5WgUPNy5lJSZ3sgkVKSYV/ZChMAQVIgx1SqfZ2zBZtPA2YlXIWxxJOQ==", - "dev": true, - "requires": { - "debug": "^3.2.6" - }, - "dependencies": { - "debug": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", - "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - } - } - }, - "font-awesome": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/font-awesome/-/font-awesome-4.7.0.tgz", - "integrity": "sha1-j6jPBBGhoxr9B7BtKQK7n8gVoTM=" - }, - "for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", - "dev": true - }, - "for-own": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", - "integrity": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=", - "dev": true, - "requires": { - "for-in": "^1.0.1" - } - }, - "forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", - "dev": true - }, - "form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", - "dev": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - } - }, - "forwarded": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", - "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=", - "dev": true - }, - "fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", - "dev": true, - "requires": { - "map-cache": "^0.2.2" - } - }, - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", - "dev": true - }, - "from2": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", - "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "readable-stream": "^2.0.0" - } - }, - "fs-access": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/fs-access/-/fs-access-1.0.1.tgz", - "integrity": "sha1-1qh/JiJxzv6+wwxVNAf7mV2od3o=", - "dev": true, - "requires": { - "null-check": "^1.0.0" - } - }, - "fs-write-stream-atomic": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", - "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "iferr": "^0.1.5", - "imurmurhash": "^0.1.4", - "readable-stream": "1 || 2" - } - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true - }, - "fsevents": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.9.tgz", - "integrity": "sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw==", - "dev": true, - "optional": true, - "requires": { - "nan": "^2.12.1", - "node-pre-gyp": "^0.12.0" - }, - "dependencies": { - "abbrev": { - "version": "1.1.1", - "bundled": true, - "dev": true, - "optional": true - }, - "ansi-regex": { - "version": "2.1.1", - "bundled": true, - "dev": true, - "optional": true - }, - "aproba": { - "version": "1.2.0", - "bundled": true, - "dev": true, - "optional": true - }, - "are-we-there-yet": { - "version": "1.1.5", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^2.0.6" - } - }, - "balanced-match": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "brace-expansion": { - "version": "1.1.11", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "chownr": { - "version": "1.1.1", - "bundled": true, - "dev": true, - "optional": true - }, - "code-point-at": { - "version": "1.1.0", - "bundled": true, - "dev": true, - "optional": true - }, - "concat-map": { - "version": "0.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "console-control-strings": { - "version": "1.1.0", - "bundled": true, - "dev": true, - "optional": true - }, - "core-util-is": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "debug": { - "version": "4.1.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "ms": "^2.1.1" - } - }, - "deep-extend": { - "version": "0.6.0", - "bundled": true, - "dev": true, - "optional": true - }, - "delegates": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "detect-libc": { - "version": "1.0.3", - "bundled": true, - "dev": true, - "optional": true - }, - "fs-minipass": { - "version": "1.2.5", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "minipass": "^2.2.1" - } - }, - "fs.realpath": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "gauge": { - "version": "2.7.4", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "aproba": "^1.0.3", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.0", - "object-assign": "^4.1.0", - "signal-exit": "^3.0.0", - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wide-align": "^1.1.0" - } - }, - "glob": { - "version": "7.1.3", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "has-unicode": { - "version": "2.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "iconv-lite": { - "version": "0.4.24", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "ignore-walk": { - "version": "3.0.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "minimatch": "^3.0.4" - } - }, - "inflight": { - "version": "1.0.6", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.3", - "bundled": true, - "dev": true, - "optional": true - }, - "ini": { - "version": "1.3.5", - "bundled": true, - "dev": true, - "optional": true - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "isarray": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "minimatch": { - "version": "3.0.4", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "0.0.8", - "bundled": true, - "dev": true, - "optional": true - }, - "minipass": { - "version": "2.3.5", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "safe-buffer": "^5.1.2", - "yallist": "^3.0.0" - } - }, - "minizlib": { - "version": "1.2.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "minipass": "^2.2.1" - } - }, - "mkdirp": { - "version": "0.5.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "minimist": "0.0.8" - } - }, - "ms": { - "version": "2.1.1", - "bundled": true, - "dev": true, - "optional": true - }, - "needle": { - "version": "2.3.0", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "debug": "^4.1.0", - "iconv-lite": "^0.4.4", - "sax": "^1.2.4" - } - }, - "node-pre-gyp": { - "version": "0.12.0", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "detect-libc": "^1.0.2", - "mkdirp": "^0.5.1", - "needle": "^2.2.1", - "nopt": "^4.0.1", - "npm-packlist": "^1.1.6", - "npmlog": "^4.0.2", - "rc": "^1.2.7", - "rimraf": "^2.6.1", - "semver": "^5.3.0", - "tar": "^4" - } - }, - "nopt": { - "version": "4.0.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "abbrev": "1", - "osenv": "^0.1.4" - } - }, - "npm-bundled": { - "version": "1.0.6", - "bundled": true, - "dev": true, - "optional": true - }, - "npm-packlist": { - "version": "1.4.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "ignore-walk": "^3.0.1", - "npm-bundled": "^1.0.1" - } - }, - "npmlog": { - "version": "4.1.2", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "are-we-there-yet": "~1.1.2", - "console-control-strings": "~1.1.0", - "gauge": "~2.7.3", - "set-blocking": "~2.0.0" - } - }, - "number-is-nan": { - "version": "1.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "object-assign": { - "version": "4.1.1", - "bundled": true, - "dev": true, - "optional": true - }, - "once": { - "version": "1.4.0", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "wrappy": "1" - } - }, - "os-homedir": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "os-tmpdir": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "osenv": { - "version": "0.1.5", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "os-homedir": "^1.0.0", - "os-tmpdir": "^1.0.0" - } - }, - "path-is-absolute": { - "version": "1.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "process-nextick-args": { - "version": "2.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "rc": { - "version": "1.2.8", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - }, - "dependencies": { - "minimist": { - "version": "1.2.0", - "bundled": true, - "dev": true, - "optional": true - } - } - }, - "readable-stream": { - "version": "2.3.6", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "rimraf": { - "version": "2.6.3", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "glob": "^7.1.3" - } - }, - "safe-buffer": { - "version": "5.1.2", - "bundled": true, - "dev": true, - "optional": true - }, - "safer-buffer": { - "version": "2.1.2", - "bundled": true, - "dev": true, - "optional": true - }, - "sax": { - "version": "1.2.4", - "bundled": true, - "dev": true, - "optional": true - }, - "semver": { - "version": "5.7.0", - "bundled": true, - "dev": true, - "optional": true - }, - "set-blocking": { - "version": "2.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "signal-exit": { - "version": "3.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "string-width": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - }, - "string_decoder": { - "version": "1.1.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "safe-buffer": "~5.1.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "strip-json-comments": { - "version": "2.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "tar": { - "version": "4.4.8", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "chownr": "^1.1.1", - "fs-minipass": "^1.2.5", - "minipass": "^2.3.4", - "minizlib": "^1.1.1", - "mkdirp": "^0.5.0", - "safe-buffer": "^5.1.2", - "yallist": "^3.0.2" - } - }, - "util-deprecate": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "wide-align": { - "version": "1.1.3", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "string-width": "^1.0.2 || 2" - } - }, - "wrappy": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "yallist": { - "version": "3.0.3", - "bundled": true, - "dev": true, - "optional": true - } - } - }, - "fstream": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz", - "integrity": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==", - "dev": true, - "optional": true, - "requires": { - "graceful-fs": "^4.1.2", - "inherits": "~2.0.0", - "mkdirp": ">=0.5 0", - "rimraf": "2" - } - }, - "gauge": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", - "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", - "dev": true, - "optional": true, - "requires": { - "aproba": "^1.0.3", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.0", - "object-assign": "^4.1.0", - "signal-exit": "^3.0.0", - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wide-align": "^1.1.0" - } - }, - "gaze": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz", - "integrity": "sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==", - "dev": true, - "optional": true, - "requires": { - "globule": "^1.0.0" - } - }, - "get-caller-file": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", - "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", - "dev": true - }, - "get-stdin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", - "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", - "dev": true, - "optional": true - }, - "get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", - "dev": true - }, - "get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", - "dev": true - }, - "getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", - "dev": true, - "requires": { - "assert-plus": "^1.0.0" - } - }, - "glob": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", - "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "glob-base": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz", - "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", - "dev": true, - "requires": { - "glob-parent": "^2.0.0", - "is-glob": "^2.0.0" - }, - "dependencies": { - "glob-parent": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", - "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", - "dev": true, - "requires": { - "is-glob": "^2.0.0" - } - }, - "is-extglob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", - "dev": true - }, - "is-glob": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", - "dev": true, - "requires": { - "is-extglob": "^1.0.0" - } - } - } - }, - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", - "dev": true, - "requires": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - }, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "dev": true, - "requires": { - "is-extglob": "^2.1.0" - } - } - } - }, - "globals": { - "version": "9.18.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz", - "integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==", - "dev": true - }, - "globby": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/globby/-/globby-7.1.1.tgz", - "integrity": "sha1-+yzP+UAfhgCUXfral0QMypcrhoA=", - "dev": true, - "requires": { - "array-union": "^1.0.1", - "dir-glob": "^2.0.0", - "glob": "^7.1.2", - "ignore": "^3.3.5", - "pify": "^3.0.0", - "slash": "^1.0.0" - }, - "dependencies": { - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "dev": true - } - } - }, - "globule": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/globule/-/globule-1.2.1.tgz", - "integrity": "sha512-g7QtgWF4uYSL5/dn71WxubOrS7JVGCnFPEnoeChJmBnyR9Mw8nGoEwOgJL/RC2Te0WhbsEUCejfH8SZNJ+adYQ==", - "dev": true, - "optional": true, - "requires": { - "glob": "~7.1.1", - "lodash": "~4.17.10", - "minimatch": "~3.0.2" - } - }, - "graceful-fs": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.0.tgz", - "integrity": "sha512-jpSvDPV4Cq/bgtpndIWbI5hmYxhQGHPC4d4cqBPb4DLniCfhJokdXhwhaDuLBGLQdvvRum/UiX6ECVIPvDXqdg==", - "dev": true - }, - "handle-thing": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-1.2.5.tgz", - "integrity": "sha1-/Xqtcmvxpf0W38KbL3pmAdJxOcQ=", - "dev": true - }, - "handlebars": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.1.2.tgz", - "integrity": "sha512-nvfrjqvt9xQ8Z/w0ijewdD/vvWDTOweBUm96NTr66Wfvo1mJenBLwcYmPs3TIBP5ruzYGD7Hx/DaM9RmhroGPw==", - "dev": true, - "requires": { - "neo-async": "^2.6.0", - "optimist": "^0.6.1", - "source-map": "^0.6.1", - "uglify-js": "^3.1.4" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", - "dev": true - }, - "har-validator": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz", - "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==", - "dev": true, - "requires": { - "ajv": "^6.5.5", - "har-schema": "^2.0.0" - } - }, - "has-ansi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "has-binary2": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-binary2/-/has-binary2-1.0.3.tgz", - "integrity": "sha512-G1LWKhDSvhGeAQ8mPVQlqNcOB2sJdwATtZKl2pDKKHfpf/rYj24lkinxf69blJbnsvtqqNU+L3SL50vzZhXOnw==", - "dev": true, - "requires": { - "isarray": "2.0.1" - }, - "dependencies": { - "isarray": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz", - "integrity": "sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4=", - "dev": true - } - } - }, - "has-cors": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz", - "integrity": "sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk=", - "dev": true - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", - "dev": true, - "optional": true - }, - "has-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", - "dev": true, - "requires": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" - } - }, - "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=", - "dev": true, - "requires": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" - }, - "dependencies": { - "kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "hash-base": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz", - "integrity": "sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "hash.js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", - "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" - } - }, - "hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", - "dev": true, - "requires": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "hosted-git-info": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz", - "integrity": "sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w==", - "dev": true - }, - "hpack.js": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", - "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "obuf": "^1.0.0", - "readable-stream": "^2.0.1", - "wbuf": "^1.1.0" - } - }, - "html-entities": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.2.1.tgz", - "integrity": "sha1-DfKTUfByEWNRXfueVUPl9u7VFi8=", - "dev": true - }, - "http-deceiver": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", - "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=", - "dev": true - }, - "http-errors": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", - "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", - "dev": true, - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.1", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.0" - }, - "dependencies": { - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", - "dev": true - } - } - }, - "http-parser-js": { - "version": "0.4.10", - "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.4.10.tgz", - "integrity": "sha1-ksnBN0w1CF912zWexWzCV8u5P6Q=", - "dev": true - }, - "http-proxy": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.17.0.tgz", - "integrity": "sha512-Taqn+3nNvYRfJ3bGvKfBSRwy1v6eePlm3oc/aWVxZp57DQr5Eq3xhKJi7Z4hZpS8PC3H4qI+Yly5EmFacGuA/g==", - "dev": true, - "requires": { - "eventemitter3": "^3.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - } - }, - "http-proxy-middleware": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.18.0.tgz", - "integrity": "sha512-Fs25KVMPAIIcgjMZkVHJoKg9VcXcC1C8yb9JUgeDvVXY0S/zgVIhMb+qVswDIgtJe2DfckMSY2d6TuTEutlk6Q==", - "dev": true, - "requires": { - "http-proxy": "^1.16.2", - "is-glob": "^4.0.0", - "lodash": "^4.17.5", - "micromatch": "^3.1.9" - } - }, - "http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", - "dev": true, - "requires": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - } - }, - "https-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=", - "dev": true - }, - "https-proxy-agent": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.2.tgz", - "integrity": "sha512-c8Ndjc9Bkpfx/vCJueCPy0jlP4ccCCSNDp8xwCZzPjKJUm+B+u9WX2x98Qx4n1PiMNTWo3D7KK5ifNV/yJyRzg==", - "dev": true, - "requires": { - "agent-base": "^4.3.0", - "debug": "^3.1.0" - }, - "dependencies": { - "debug": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", - "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - } - } - }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "ieee754": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz", - "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==", - "dev": true - }, - "iferr": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", - "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=", - "dev": true - }, - "ignore": { - "version": "3.3.10", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", - "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==", - "dev": true - }, - "image-size": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", - "integrity": "sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=", - "dev": true, - "optional": true - }, - "immediate": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", - "integrity": "sha1-nbHb0Pr43m++D13V5Wu2BigN5ps=", - "dev": true - }, - "import-cwd": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz", - "integrity": "sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=", - "dev": true, - "requires": { - "import-from": "^2.1.0" - } - }, - "import-fresh": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", - "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", - "dev": true, - "requires": { - "caller-path": "^2.0.0", - "resolve-from": "^3.0.0" - } - }, - "import-from": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz", - "integrity": "sha1-M1238qev/VOqpHHUuAId7ja387E=", - "dev": true, - "requires": { - "resolve-from": "^3.0.0" - } - }, - "import-local": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", - "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", - "dev": true, - "requires": { - "pkg-dir": "^3.0.0", - "resolve-cwd": "^2.0.0" - }, - "dependencies": { - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "dev": true, - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz", - "integrity": "sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "dev": true, - "requires": { - "p-limit": "^2.0.0" - } - }, - "p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true - }, - "pkg-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", - "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", - "dev": true, - "requires": { - "find-up": "^3.0.0" - } - } - } - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", - "dev": true - }, - "in-publish": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/in-publish/-/in-publish-2.0.0.tgz", - "integrity": "sha1-4g/146KvwmkDILbcVSaCqcf631E=", - "dev": true, - "optional": true - }, - "indent-string": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", - "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", - "dev": true, - "optional": true, - "requires": { - "repeating": "^2.0.0" - } - }, - "indexof": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", - "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=", - "dev": true - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "dev": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "ini": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", - "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==", - "dev": true - }, - "inquirer": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-6.2.0.tgz", - "integrity": "sha512-QIEQG4YyQ2UYZGDC4srMZ7BjHOmNk1lR2JQj5UknBapklm6WHA+VVH7N+sUdX3A7NeCfGF8o4X1S3Ao7nAcIeg==", - "dev": true, - "requires": { - "ansi-escapes": "^3.0.0", - "chalk": "^2.0.0", - "cli-cursor": "^2.1.0", - "cli-width": "^2.0.0", - "external-editor": "^3.0.0", - "figures": "^2.0.0", - "lodash": "^4.17.10", - "mute-stream": "0.0.7", - "run-async": "^2.2.0", - "rxjs": "^6.1.0", - "string-width": "^2.1.0", - "strip-ansi": "^4.0.0", - "through": "^2.3.6" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - } - } - }, - "internal-ip": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-3.0.1.tgz", - "integrity": "sha512-NXXgESC2nNVtU+pqmC9e6R8B1GpKxzsAQhffvh5AL79qKnodd+L7tnEQmTiUAVngqLalPbSqRA7XGIEL5nCd0Q==", - "dev": true, - "requires": { - "default-gateway": "^2.6.0", - "ipaddr.js": "^1.5.2" - } - }, - "interpret": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.2.0.tgz", - "integrity": "sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw==", - "dev": true - }, - "invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", - "dev": true, - "requires": { - "loose-envify": "^1.0.0" - } - }, - "invert-kv": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", - "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=", - "dev": true - }, - "ionicons": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-4.6.2.tgz", - "integrity": "sha512-OGQO/GCKFwHh5lX9wYzgfLjuj2rnQavixVgK3iv8nm7tcgYQVHw7MNNwNHY4H97ZlKiVx3qj4X5Txv9fx95oBw==" - }, - "ip": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", - "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", - "dev": true - }, - "ip-regex": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", - "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=", - "dev": true - }, - "ipaddr.js": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.0.tgz", - "integrity": "sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA==", - "dev": true - }, - "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=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", - "dev": true - }, - "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=", - "dev": true, - "requires": { - "binary-extensions": "^1.0.0" - } - }, - "is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "dev": true - }, - "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=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } - } - }, - "is-directory": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", - "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=", - "dev": true - }, - "is-dotfile": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz", - "integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=", - "dev": true - }, - "is-equal-shallow": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz", - "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=", - "dev": true, - "requires": { - "is-primitive": "^2.0.0" - } - }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", - "dev": true - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", - "dev": true - }, - "is-finite": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", - "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", - "dev": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "dev": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "is-glob": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", - "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", - "dev": true, - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-path-cwd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz", - "integrity": "sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=", - "dev": true - }, - "is-path-in-cwd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz", - "integrity": "sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==", - "dev": true, - "requires": { - "is-path-inside": "^1.0.0" - } - }, - "is-path-inside": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", - "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=", - "dev": true, - "requires": { - "path-is-inside": "^1.0.1" - } - }, - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - }, - "is-posix-bracket": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz", - "integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=", - "dev": true - }, - "is-primitive": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz", - "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=", - "dev": true - }, - "is-promise": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", - "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=", - "dev": true - }, - "is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", - "dev": true - }, - "is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", - "dev": true - }, - "is-utf8": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", - "dev": true, - "optional": true - }, - "is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", - "dev": true - }, - "is-wsl": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", - "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", - "dev": true - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "dev": true - }, - "isbinaryfile": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.3.tgz", - "integrity": "sha512-8cJBL5tTd2OS0dM4jz07wQd5g0dCCqIhUxPIGtZfa5L6hWlvV5MHTITy/DBAsF+Oe2LS1X3krBUhNwaGUWpWxw==", - "dev": true, - "requires": { - "buffer-alloc": "^1.2.0" - } - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", - "dev": true - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - }, - "isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", - "dev": true - }, - "istanbul": { - "version": "0.4.5", - "resolved": "https://registry.npmjs.org/istanbul/-/istanbul-0.4.5.tgz", - "integrity": "sha1-ZcfXPUxNqE1POsMQuRj7C4Azczs=", - "dev": true, - "requires": { - "abbrev": "1.0.x", - "async": "1.x", - "escodegen": "1.8.x", - "esprima": "2.7.x", - "glob": "^5.0.15", - "handlebars": "^4.0.1", - "js-yaml": "3.x", - "mkdirp": "0.5.x", - "nopt": "3.x", - "once": "1.x", - "resolve": "1.1.x", - "supports-color": "^3.1.0", - "which": "^1.1.1", - "wordwrap": "^1.0.0" - }, - "dependencies": { - "async": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", - "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=", - "dev": true - }, - "esprima": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz", - "integrity": "sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=", - "dev": true - }, - "glob": { - "version": "5.0.15", - "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", - "integrity": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=", - "dev": true, - "requires": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "2 || 3", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", - "dev": true - }, - "resolve": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", - "integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=", - "dev": true - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", - "dev": true, - "requires": { - "has-flag": "^1.0.0" - } - }, - "wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", - "dev": true - } - } - }, - "istanbul-api": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/istanbul-api/-/istanbul-api-2.1.6.tgz", - "integrity": "sha512-x0Eicp6KsShG1k1rMgBAi/1GgY7kFGEBwQpw3PXGEmu+rBcBNhqU8g2DgY9mlepAsLPzrzrbqSgCGANnki4POA==", - "dev": true, - "requires": { - "async": "^2.6.2", - "compare-versions": "^3.4.0", - "fileset": "^2.0.3", - "istanbul-lib-coverage": "^2.0.5", - "istanbul-lib-hook": "^2.0.7", - "istanbul-lib-instrument": "^3.3.0", - "istanbul-lib-report": "^2.0.8", - "istanbul-lib-source-maps": "^3.0.6", - "istanbul-reports": "^2.2.4", - "js-yaml": "^3.13.1", - "make-dir": "^2.1.0", - "minimatch": "^3.0.4", - "once": "^1.4.0" - }, - "dependencies": { - "istanbul-lib-coverage": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz", - "integrity": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==", - "dev": true - }, - "istanbul-lib-instrument": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz", - "integrity": "sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==", - "dev": true, - "requires": { - "@babel/generator": "^7.4.0", - "@babel/parser": "^7.4.3", - "@babel/template": "^7.4.0", - "@babel/traverse": "^7.4.3", - "@babel/types": "^7.4.0", - "istanbul-lib-coverage": "^2.0.5", - "semver": "^6.0.0" - } - } - } - }, - "istanbul-instrumenter-loader": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/istanbul-instrumenter-loader/-/istanbul-instrumenter-loader-3.0.1.tgz", - "integrity": "sha512-a5SPObZgS0jB/ixaKSMdn6n/gXSrK2S6q/UfRJBT3e6gQmVjwZROTODQsYW5ZNwOu78hG62Y3fWlebaVOL0C+w==", - "dev": true, - "requires": { - "convert-source-map": "^1.5.0", - "istanbul-lib-instrument": "^1.7.3", - "loader-utils": "^1.1.0", - "schema-utils": "^0.3.0" - }, - "dependencies": { - "ajv": { - "version": "5.5.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz", - "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=", - "dev": true, - "requires": { - "co": "^4.6.0", - "fast-deep-equal": "^1.0.0", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.3.0" - } - }, - "fast-deep-equal": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz", - "integrity": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ=", - "dev": true - }, - "json-schema-traverse": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", - "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=", - "dev": true - }, - "schema-utils": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.3.0.tgz", - "integrity": "sha1-9YdyIs4+kx7a4DnxfrNxbnE3+M8=", - "dev": true, - "requires": { - "ajv": "^5.0.0" - } - } - } - }, - "istanbul-lib-coverage": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.1.tgz", - "integrity": "sha512-PzITeunAgyGbtY1ibVIUiV679EFChHjoMNRibEIobvmrCRaIgwLxNucOSimtNWUhEib/oO7QY2imD75JVgCJWQ==", - "dev": true - }, - "istanbul-lib-hook": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-2.0.7.tgz", - "integrity": "sha512-vrRztU9VRRFDyC+aklfLoeXyNdTfga2EI3udDGn4cZ6fpSXpHLV9X6CHvfoMCPtggg8zvDDmC4b9xfu0z6/llA==", - "dev": true, - "requires": { - "append-transform": "^1.0.0" - } - }, - "istanbul-lib-instrument": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.2.tgz", - "integrity": "sha512-aWHxfxDqvh/ZlxR8BBaEPVSWDPUkGD63VjGQn3jcw8jCp7sHEMKcrj4xfJn/ABzdMEHiQNyvDQhqm5o8+SQg7A==", - "dev": true, - "requires": { - "babel-generator": "^6.18.0", - "babel-template": "^6.16.0", - "babel-traverse": "^6.18.0", - "babel-types": "^6.18.0", - "babylon": "^6.18.0", - "istanbul-lib-coverage": "^1.2.1", - "semver": "^5.3.0" - }, - "dependencies": { - "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", - "dev": true - } - } - }, - "istanbul-lib-report": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz", - "integrity": "sha512-fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ==", - "dev": true, - "requires": { - "istanbul-lib-coverage": "^2.0.5", - "make-dir": "^2.1.0", - "supports-color": "^6.1.0" - }, - "dependencies": { - "istanbul-lib-coverage": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz", - "integrity": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==", - "dev": true - } - } - }, - "istanbul-lib-source-maps": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz", - "integrity": "sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==", - "dev": true, - "requires": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^2.0.5", - "make-dir": "^2.1.0", - "rimraf": "^2.6.3", - "source-map": "^0.6.1" - }, - "dependencies": { - "debug": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", - "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "istanbul-lib-coverage": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz", - "integrity": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==", - "dev": true - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "istanbul-reports": { - "version": "2.2.6", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-2.2.6.tgz", - "integrity": "sha512-SKi4rnMyLBKe0Jy2uUdx28h8oG7ph2PPuQPvIAh31d+Ci+lSiEu4C+h3oBPuJ9+mPKhOyW0M8gY4U5NM1WLeXA==", - "dev": true, - "requires": { - "handlebars": "^4.1.2" - } - }, - "jasmine": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/jasmine/-/jasmine-2.8.0.tgz", - "integrity": "sha1-awicChFXax8W3xG4AUbZHU6Lij4=", - "dev": true, - "requires": { - "exit": "^0.1.2", - "glob": "^7.0.6", - "jasmine-core": "~2.8.0" - }, - "dependencies": { - "jasmine-core": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-2.8.0.tgz", - "integrity": "sha1-vMl5rh+f0FcB5F5S5l06XWPxok4=", - "dev": true - } - } - }, - "jasmine-core": { - "version": "2.99.1", - "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-2.99.1.tgz", - "integrity": "sha1-5kAN8ea1bhMLYcS80JPap/boyhU=", - "dev": true - }, - "jasmine-spec-reporter": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/jasmine-spec-reporter/-/jasmine-spec-reporter-4.2.1.tgz", - "integrity": "sha512-FZBoZu7VE5nR7Nilzy+Np8KuVIOxF4oXDPDknehCYBDE080EnlPu0afdZNmpGDBRCUBv3mj5qgqCRmk6W/K8vg==", - "dev": true, - "requires": { - "colors": "1.1.2" - } - }, - "jasminewd2": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/jasminewd2/-/jasminewd2-2.2.0.tgz", - "integrity": "sha1-43zwsX8ZnM4jvqcbIDk5Uka07E4=", - "dev": true - }, - "js-base64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.5.1.tgz", - "integrity": "sha512-M7kLczedRMYX4L8Mdh4MzyAMM9O5osx+4FcOQuTvr3A9F2D9S5JXheN0ewNbrvK2UatkTRhL5ejGmGSjNMiZuw==", - "dev": true, - "optional": true - }, - "js-tokens": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", - "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=", - "dev": true - }, - "js-yaml": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", - "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", - "dev": true, - "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - } - }, - "jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", - "dev": true - }, - "jsesc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz", - "integrity": "sha1-RsP+yMGJKxKwgz25vHYiF226s0s=", - "dev": true - }, - "json-parse-better-errors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", - "dev": true - }, - "json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", - "dev": true - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", - "dev": true - }, - "json3": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz", - "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==", - "dev": true - }, - "json5": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", - "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=", - "dev": true - }, - "jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", - "dev": true, - "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.2.3", - "verror": "1.10.0" - } - }, - "jszip": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.2.2.tgz", - "integrity": "sha512-NmKajvAFQpbg3taXQXr/ccS2wcucR1AZ+NtyWp2Nq7HHVsXhcJFR8p0Baf32C2yVvBylFWVeKf+WI2AnvlPhpA==", - "dev": true, - "requires": { - "lie": "~3.3.0", - "pako": "~1.0.2", - "readable-stream": "~2.3.6", - "set-immediate-shim": "~1.0.1" - } - }, - "karma": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/karma/-/karma-3.0.0.tgz", - "integrity": "sha512-ZTjyuDXVXhXsvJ1E4CnZzbCjSxD6sEdzEsFYogLuZM0yqvg/mgz+O+R1jb0J7uAQeuzdY8kJgx6hSNXLwFuHIQ==", - "dev": true, - "requires": { - "bluebird": "^3.3.0", - "body-parser": "^1.16.1", - "chokidar": "^2.0.3", - "colors": "^1.1.0", - "combine-lists": "^1.0.0", - "connect": "^3.6.0", - "core-js": "^2.2.0", - "di": "^0.0.1", - "dom-serialize": "^2.2.0", - "expand-braces": "^0.1.1", - "glob": "^7.1.1", - "graceful-fs": "^4.1.2", - "http-proxy": "^1.13.0", - "isbinaryfile": "^3.0.0", - "lodash": "^4.17.4", - "log4js": "^3.0.0", - "mime": "^2.3.1", - "minimatch": "^3.0.2", - "optimist": "^0.6.1", - "qjobs": "^1.1.4", - "range-parser": "^1.2.0", - "rimraf": "^2.6.0", - "safe-buffer": "^5.0.1", - "socket.io": "2.1.1", - "source-map": "^0.6.1", - "tmp": "0.0.33", - "useragent": "2.2.1" - }, - "dependencies": { - "mime": { - "version": "2.4.4", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.4.tgz", - "integrity": "sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA==", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "karma-chrome-launcher": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/karma-chrome-launcher/-/karma-chrome-launcher-2.2.0.tgz", - "integrity": "sha512-uf/ZVpAabDBPvdPdveyk1EPgbnloPvFFGgmRhYLTDH7gEB4nZdSBk8yTU47w1g/drLSx5uMOkjKk7IWKfWg/+w==", - "dev": true, - "requires": { - "fs-access": "^1.0.0", - "which": "^1.2.1" - } - }, - "karma-coverage-istanbul-reporter": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-2.0.6.tgz", - "integrity": "sha512-WFh77RI8bMIKdOvI/1/IBmgnM+Q7NOLhnwG91QJrM8lW+CIXCjTzhhUsT/svLvAkLmR10uWY4RyYbHMLkTglvg==", - "dev": true, - "requires": { - "istanbul-api": "^2.1.6", - "minimatch": "^3.0.4" - } - }, - "karma-jasmine": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/karma-jasmine/-/karma-jasmine-1.1.2.tgz", - "integrity": "sha1-OU8rJf+0pkS5rabyLUQ+L9CIhsM=", - "dev": true - }, - "karma-jasmine-html-reporter": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/karma-jasmine-html-reporter/-/karma-jasmine-html-reporter-0.2.2.tgz", - "integrity": "sha1-SKjl7xiAdhfuK14zwRlMNbQ5Ukw=", - "dev": true, - "requires": { - "karma-jasmine": "^1.0.2" - } - }, - "karma-source-map-support": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/karma-source-map-support/-/karma-source-map-support-1.3.0.tgz", - "integrity": "sha512-HcPqdAusNez/ywa+biN4EphGz62MmQyPggUsDfsHqa7tSe4jdsxgvTKuDfIazjL+IOxpVWyT7Pr4dhAV+sxX5Q==", - "dev": true, - "requires": { - "source-map-support": "^0.5.5" - } - }, - "killable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", - "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==", - "dev": true - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - }, - "lcid": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", - "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", - "dev": true, - "requires": { - "invert-kv": "^1.0.0" - } - }, - "less": { - "version": "3.8.1", - "resolved": "https://registry.npmjs.org/less/-/less-3.8.1.tgz", - "integrity": "sha512-8HFGuWmL3FhQR0aH89escFNBQH/nEiYPP2ltDFdQw2chE28Yx2E3lhAIq9Y2saYwLSwa699s4dBVEfCY8Drf7Q==", - "dev": true, - "requires": { - "clone": "^2.1.2", - "errno": "^0.1.1", - "graceful-fs": "^4.1.2", - "image-size": "~0.5.0", - "mime": "^1.4.1", - "mkdirp": "^0.5.0", - "promise": "^7.1.1", - "request": "^2.83.0", - "source-map": "~0.6.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "optional": true - } - } - }, - "less-loader": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-4.1.0.tgz", - "integrity": "sha512-KNTsgCE9tMOM70+ddxp9yyt9iHqgmSs0yTZc5XH5Wo+g80RWRIYNqE58QJKm/yMud5wZEvz50ugRDuzVIkyahg==", - "dev": true, - "requires": { - "clone": "^2.1.1", - "loader-utils": "^1.1.0", - "pify": "^3.0.0" - }, - "dependencies": { - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "dev": true - } - } - }, - "levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", - "dev": true, - "requires": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - } - }, - "license-webpack-plugin": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/license-webpack-plugin/-/license-webpack-plugin-2.0.2.tgz", - "integrity": "sha512-GsomZw5VoT20ST8qH2tOjBgbyhn6Pgs9M94g0mbvfBIV1VXufm1iKY+4dbgfTObj1Mp6nSRE3Zf74deOZr0KwA==", - "dev": true, - "requires": { - "webpack-sources": "^1.2.0" - } - }, - "lie": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz", - "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==", - "dev": true, - "requires": { - "immediate": "~3.0.5" - } - }, - "load-json-file": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", - "dev": true, - "optional": true, - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^2.2.0", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0", - "strip-bom": "^2.0.0" - }, - "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true, - "optional": true - }, - "strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", - "dev": true, - "optional": true, - "requires": { - "is-utf8": "^0.2.0" - } - } - } - }, - "loader-runner": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", - "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", - "dev": true - }, - "loader-utils": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.1.0.tgz", - "integrity": "sha1-yYrvSIvM7aL/teLeZG1qdUQp9c0=", - "dev": true, - "requires": { - "big.js": "^3.1.3", - "emojis-list": "^2.0.0", - "json5": "^0.5.0" - } - }, - "locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", - "dev": true, - "requires": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - } - }, - "lodash": { - "version": "4.17.11", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz", - "integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==" - }, - "lodash.assign": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz", - "integrity": "sha1-DZnzzNem0mHRm9rrkkUAXShYCOc=", - "dev": true, - "optional": true - }, - "lodash.clonedeep": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", - "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=", - "dev": true - }, - "lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=", - "dev": true - }, - "lodash.mergewith": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz", - "integrity": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==", - "dev": true, - "optional": true - }, - "lodash.tail": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.tail/-/lodash.tail-4.1.1.tgz", - "integrity": "sha1-0jM6NtnncXyK0vfKyv7HwytERmQ=", - "dev": true - }, - "log4js": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/log4js/-/log4js-3.0.6.tgz", - "integrity": "sha512-ezXZk6oPJCWL483zj64pNkMuY/NcRX5MPiB0zE6tjZM137aeusrOnW1ecxgF9cmwMWkBMhjteQxBPoZBh9FDxQ==", - "dev": true, - "requires": { - "circular-json": "^0.5.5", - "date-format": "^1.2.0", - "debug": "^3.1.0", - "rfdc": "^1.1.2", - "streamroller": "0.7.0" - }, - "dependencies": { - "debug": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", - "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - } - } - }, - "loglevel": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.6.3.tgz", - "integrity": "sha512-LoEDv5pgpvWgPF4kNYuIp0qqSJVWak/dML0RY74xlzMZiT9w77teNAwKYKWBTYjlokMirg+o3jBwp+vlLrcfAA==", - "dev": true - }, - "loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "dev": true, - "requires": { - "js-tokens": "^3.0.0 || ^4.0.0" - } - }, - "loud-rejection": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", - "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", - "dev": true, - "requires": { - "currently-unhandled": "^0.4.1", - "signal-exit": "^3.0.0" - } - }, - "lru-cache": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", - "dev": true, - "requires": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" - } - }, - "magic-string": { - "version": "0.25.3", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.3.tgz", - "integrity": "sha512-6QK0OpF/phMz0Q2AxILkX2mFhi7m+WMwTRg0LQKq/WBB0cDP4rYH3Wp4/d3OTXlrPLVJT/RFqj8tFeAR4nk8AA==", - "dev": true, - "requires": { - "sourcemap-codec": "^1.4.4" - } - }, - "make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", - "dev": true, - "requires": { - "pify": "^4.0.1", - "semver": "^5.6.0" - }, - "dependencies": { - "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", - "dev": true - } - } - }, - "make-error": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.5.tgz", - "integrity": "sha512-c3sIjNUow0+8swNwVpqoH4YCShKNFkMaw6oH1mNS2haDZQqkeZFlHS3dhoeEbKKmJB4vXpJucU6oH75aDYeE9g==", - "dev": true - }, - "mamacro": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/mamacro/-/mamacro-0.0.3.tgz", - "integrity": "sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA==", - "dev": true - }, - "map-age-cleaner": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", - "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", - "dev": true, - "requires": { - "p-defer": "^1.0.0" - } - }, - "map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", - "dev": true - }, - "map-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", - "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", - "dev": true, - "optional": true - }, - "map-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", - "dev": true, - "requires": { - "object-visit": "^1.0.0" - } - }, - "math-random": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.4.tgz", - "integrity": "sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==", - "dev": true - }, - "md5.js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", - "dev": true, - "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", - "dev": true - }, - "mem": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz", - "integrity": "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==", - "dev": true, - "requires": { - "map-age-cleaner": "^0.1.1", - "mimic-fn": "^2.0.0", - "p-is-promise": "^2.0.0" - } - }, - "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=", - "dev": true, - "requires": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" - } - }, - "meow": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", - "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", - "dev": true, - "optional": true, - "requires": { - "camelcase-keys": "^2.0.0", - "decamelize": "^1.1.2", - "loud-rejection": "^1.0.0", - "map-obj": "^1.0.1", - "minimist": "^1.1.3", - "normalize-package-data": "^2.3.4", - "object-assign": "^4.0.1", - "read-pkg-up": "^1.0.1", - "redent": "^1.0.0", - "trim-newlines": "^1.0.0" - } - }, - "merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", - "dev": true - }, - "methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", - "dev": true - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "miller-rabin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", - "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", - "dev": true, - "requires": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" - } - }, - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true - }, - "mime-db": { - "version": "1.40.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.40.0.tgz", - "integrity": "sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA==", - "dev": true - }, - "mime-types": { - "version": "2.1.24", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.24.tgz", - "integrity": "sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ==", - "dev": true, - "requires": { - "mime-db": "1.40.0" - } - }, - "mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true - }, - "mini-css-extract-plugin": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.4.3.tgz", - "integrity": "sha512-Mxs0nxzF1kxPv4TRi2NimewgXlJqh0rGE30vviCU2WHrpbta6wklnUV9dr9FUtoAHmB3p3LeXEC+ZjgHvB0Dzg==", - "dev": true, - "requires": { - "loader-utils": "^1.1.0", - "schema-utils": "^1.0.0", - "webpack-sources": "^1.1.0" - } - }, - "minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", - "dev": true - }, - "minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", - "dev": true - }, - "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", - "dev": true - }, - "mississippi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-2.0.0.tgz", - "integrity": "sha512-zHo8v+otD1J10j/tC+VNoGK9keCuByhKovAvdn74dmxJl9+mWHnx6EMsDN4lgRoMI/eYo2nchAxniIbUPb5onw==", - "dev": true, - "requires": { - "concat-stream": "^1.5.0", - "duplexify": "^3.4.2", - "end-of-stream": "^1.1.0", - "flush-write-stream": "^1.0.0", - "from2": "^2.1.0", - "parallel-transform": "^1.1.0", - "pump": "^2.0.1", - "pumpify": "^1.3.3", - "stream-each": "^1.1.0", - "through2": "^2.0.0" - } - }, - "mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", - "dev": true, - "requires": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - } - } - }, - "mixin-object": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/mixin-object/-/mixin-object-2.0.1.tgz", - "integrity": "sha1-T7lJRB2rGCVA8f4DW6YOGUel5X4=", - "dev": true, - "requires": { - "for-in": "^0.1.3", - "is-extendable": "^0.1.1" - }, - "dependencies": { - "for-in": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-0.1.8.tgz", - "integrity": "sha1-2Hc5COMSVhCZUrH9ubP6hn0ndeE=", - "dev": true - } - } - }, - "mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", - "dev": true, - "requires": { - "minimist": "0.0.8" - }, - "dependencies": { - "minimist": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", - "dev": true - } - } - }, - "move-concurrently": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", - "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", - "dev": true, - "requires": { - "aproba": "^1.1.1", - "copy-concurrently": "^1.0.0", - "fs-write-stream-atomic": "^1.0.8", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4", - "run-queue": "^1.0.3" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true - }, - "multicast-dns": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", - "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", - "dev": true, - "requires": { - "dns-packet": "^1.3.1", - "thunky": "^1.0.2" - } - }, - "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=", - "dev": true - }, - "mute-stream": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", - "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=", - "dev": true - }, - "nan": { - "version": "2.14.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.0.tgz", - "integrity": "sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==", - "dev": true, - "optional": true - }, - "nanomatch": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", - "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "fragment-cache": "^0.2.1", - "is-windows": "^1.0.2", - "kind-of": "^6.0.2", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - } - }, - "negotiator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", - "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", - "dev": true - }, - "neo-async": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.1.tgz", - "integrity": "sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==", - "dev": true - }, - "ng2-smart-table": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/ng2-smart-table/-/ng2-smart-table-1.5.0.tgz", - "integrity": "sha512-f25DEecAw16WfpevMr32jyDMYSHDhMezzxKTweBdIHiPVPLq+9N5gu76+oMXNBCUwOrOb3BlerMiZzpnvNxtdw==", - "requires": { - "lodash": "^4.17.10", - "tslib": "^1.9.0" - } - }, - "nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", - "dev": true - }, - "node-forge": { - "version": "0.7.5", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.7.5.tgz", - "integrity": "sha512-MmbQJ2MTESTjt3Gi/3yG1wGpIMhUfcIypUCGtTizFR9IiccFwxSpfp0vtIZlkFclEqERemxfnSdZEMR9VqqEFQ==", - "dev": true - }, - "node-gyp": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-3.8.0.tgz", - "integrity": "sha512-3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA==", - "dev": true, - "optional": true, - "requires": { - "fstream": "^1.0.0", - "glob": "^7.0.3", - "graceful-fs": "^4.1.2", - "mkdirp": "^0.5.0", - "nopt": "2 || 3", - "npmlog": "0 || 1 || 2 || 3 || 4", - "osenv": "0", - "request": "^2.87.0", - "rimraf": "2", - "semver": "~5.3.0", - "tar": "^2.0.0", - "which": "1" - }, - "dependencies": { - "semver": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz", - "integrity": "sha1-myzl094C0XxgEq0yaqa00M9U+U8=", - "dev": true, - "optional": true - } - } - }, - "node-libs-browser": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", - "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", - "dev": true, - "requires": { - "assert": "^1.1.1", - "browserify-zlib": "^0.2.0", - "buffer": "^4.3.0", - "console-browserify": "^1.1.0", - "constants-browserify": "^1.0.0", - "crypto-browserify": "^3.11.0", - "domain-browser": "^1.1.1", - "events": "^3.0.0", - "https-browserify": "^1.0.0", - "os-browserify": "^0.3.0", - "path-browserify": "0.0.1", - "process": "^0.11.10", - "punycode": "^1.2.4", - "querystring-es3": "^0.2.0", - "readable-stream": "^2.3.3", - "stream-browserify": "^2.0.1", - "stream-http": "^2.7.2", - "string_decoder": "^1.0.0", - "timers-browserify": "^2.0.4", - "tty-browserify": "0.0.0", - "url": "^0.11.0", - "util": "^0.11.0", - "vm-browserify": "^1.0.1" - }, - "dependencies": { - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", - "dev": true - } - } - }, - "node-releases": { - "version": "1.1.26", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.26.tgz", - "integrity": "sha512-fZPsuhhUHMTlfkhDLGtfY80DSJTjOcx+qD1j5pqPkuhUHVS7xHZIg9EE4DHK8O3f0zTxXHX5VIkDG8pu98/wfQ==", - "dev": true, - "requires": { - "semver": "^5.3.0" - }, - "dependencies": { - "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", - "dev": true - } - } - }, - "node-sass": { - "version": "4.9.3", - "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-4.9.3.tgz", - "integrity": "sha512-XzXyGjO+84wxyH7fV6IwBOTrEBe2f0a6SBze9QWWYR/cL74AcQUks2AsqcCZenl/Fp/JVbuEaLpgrLtocwBUww==", - "dev": true, - "optional": true, - "requires": { - "async-foreach": "^0.1.3", - "chalk": "^1.1.1", - "cross-spawn": "^3.0.0", - "gaze": "^1.0.0", - "get-stdin": "^4.0.1", - "glob": "^7.0.3", - "in-publish": "^2.0.0", - "lodash.assign": "^4.2.0", - "lodash.clonedeep": "^4.3.2", - "lodash.mergewith": "^4.6.0", - "meow": "^3.7.0", - "mkdirp": "^0.5.1", - "nan": "^2.10.0", - "node-gyp": "^3.8.0", - "npmlog": "^4.0.0", - "request": "2.87.0", - "sass-graph": "^2.2.4", - "stdout-stream": "^1.4.0", - "true-case-path": "^1.0.2" - }, - "dependencies": { - "ajv": { - "version": "5.5.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz", - "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=", - "dev": true, - "optional": true, - "requires": { - "co": "^4.6.0", - "fast-deep-equal": "^1.0.0", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.3.0" - } - }, - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true, - "optional": true - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, - "optional": true, - "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - } - }, - "fast-deep-equal": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz", - "integrity": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ=", - "dev": true, - "optional": true - }, - "har-validator": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz", - "integrity": "sha1-ukAsJmGU8VlW7xXg/PJCmT9qff0=", - "dev": true, - "optional": true, - "requires": { - "ajv": "^5.1.0", - "har-schema": "^2.0.0" - } - }, - "json-schema-traverse": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", - "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=", - "dev": true, - "optional": true - }, - "oauth-sign": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", - "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=", - "dev": true, - "optional": true - }, - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", - "dev": true, - "optional": true - }, - "request": { - "version": "2.87.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.87.0.tgz", - "integrity": "sha512-fcogkm7Az5bsS6Sl0sibkbhcKsnyon/jV1kF3ajGmF0c8HrttdKTPRT9hieOaQHA5HEq6r8OyWOo/o781C1tNw==", - "dev": true, - "optional": true, - "requires": { - "aws-sign2": "~0.7.0", - "aws4": "^1.6.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.5", - "extend": "~3.0.1", - "forever-agent": "~0.6.1", - "form-data": "~2.3.1", - "har-validator": "~5.0.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.17", - "oauth-sign": "~0.8.2", - "performance-now": "^2.1.0", - "qs": "~6.5.1", - "safe-buffer": "^5.1.1", - "tough-cookie": "~2.3.3", - "tunnel-agent": "^0.6.0", - "uuid": "^3.1.0" - } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true, - "optional": true - }, - "tough-cookie": { - "version": "2.3.4", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz", - "integrity": "sha512-TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA==", - "dev": true, - "optional": true, - "requires": { - "punycode": "^1.4.1" - } - } - } - }, - "nopt": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz", - "integrity": "sha1-xkZdvwirzU2zWTF/eaxopkayj/k=", - "dev": true, - "requires": { - "abbrev": "1" - } - }, - "normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dev": true, - "requires": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - }, - "dependencies": { - "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", - "dev": true - } - } - }, - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "dev": true, - "requires": { - "remove-trailing-separator": "^1.0.1" - } - }, - "normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", - "dev": true - }, - "npm-package-arg": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-6.1.0.tgz", - "integrity": "sha512-zYbhP2k9DbJhA0Z3HKUePUgdB1x7MfIfKssC+WLPFMKTBZKpZh5m13PgexJjCq6KW7j17r0jHWcCpxEqnnncSA==", - "dev": true, - "requires": { - "hosted-git-info": "^2.6.0", - "osenv": "^0.1.5", - "semver": "^5.5.0", - "validate-npm-package-name": "^3.0.0" - }, - "dependencies": { - "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", - "dev": true - } - } - }, - "npm-registry-client": { - "version": "8.6.0", - "resolved": "https://registry.npmjs.org/npm-registry-client/-/npm-registry-client-8.6.0.tgz", - "integrity": "sha512-Qs6P6nnopig+Y8gbzpeN/dkt+n7IyVd8f45NTMotGk6Qo7GfBmzwYx6jRLoOOgKiMnaQfYxsuyQlD8Mc3guBhg==", - "dev": true, - "requires": { - "concat-stream": "^1.5.2", - "graceful-fs": "^4.1.6", - "normalize-package-data": "~1.0.1 || ^2.0.0", - "npm-package-arg": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0", - "npmlog": "2 || ^3.1.0 || ^4.0.0", - "once": "^1.3.3", - "request": "^2.74.0", - "retry": "^0.10.0", - "safe-buffer": "^5.1.1", - "semver": "2 >=2.2.1 || 3.x || 4 || 5", - "slide": "^1.1.3", - "ssri": "^5.2.4" - }, - "dependencies": { - "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", - "dev": true - } - } - }, - "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=", - "dev": true, - "requires": { - "path-key": "^2.0.0" - } - }, - "npmlog": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", - "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", - "dev": true, - "optional": true, - "requires": { - "are-we-there-yet": "~1.1.2", - "console-control-strings": "~1.1.0", - "gauge": "~2.7.3", - "set-blocking": "~2.0.0" - } - }, - "null-check": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/null-check/-/null-check-1.0.0.tgz", - "integrity": "sha1-l33/1xdgErnsMNKjnbXPcqBDnt0=", - "dev": true - }, - "num2fraction": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", - "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=", - "dev": true - }, - "number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", - "dev": true - }, - "oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", - "dev": true - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "dev": true - }, - "object-component": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/object-component/-/object-component-0.0.3.tgz", - "integrity": "sha1-8MaapQ78lbhmwYb0AKM3acsvEpE=", - "dev": true - }, - "object-copy": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", - "dev": true, - "requires": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "object-visit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", - "dev": true, - "requires": { - "isobject": "^3.0.0" - } - }, - "object.omit": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz", - "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=", - "dev": true, - "requires": { - "for-own": "^0.1.4", - "is-extendable": "^0.1.1" - }, - "dependencies": { - "for-own": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", - "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", - "dev": true, - "requires": { - "for-in": "^1.0.1" - } - } - } - }, - "object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - }, - "obuf": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", - "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", - "dev": true - }, - "on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", - "dev": true, - "requires": { - "ee-first": "1.1.1" - } - }, - "on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", - "dev": true - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dev": true, - "requires": { - "wrappy": "1" - } - }, - "onetime": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", - "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", - "dev": true, - "requires": { - "mimic-fn": "^1.0.0" - }, - "dependencies": { - "mimic-fn": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", - "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", - "dev": true - } - } - }, - "opn": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/opn/-/opn-5.3.0.tgz", - "integrity": "sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==", - "dev": true, - "requires": { - "is-wsl": "^1.1.0" - } - }, - "optimist": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", - "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=", - "dev": true, - "requires": { - "minimist": "~0.0.1", - "wordwrap": "~0.0.2" - }, - "dependencies": { - "minimist": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", - "integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=", - "dev": true - } - } - }, - "optionator": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", - "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", - "dev": true, - "requires": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.4", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "wordwrap": "~1.0.0" - }, - "dependencies": { - "wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", - "dev": true - } - } - }, - "original": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz", - "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", - "dev": true, - "requires": { - "url-parse": "^1.4.3" - } - }, - "os-browserify": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=", - "dev": true - }, - "os-homedir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", - "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", - "dev": true - }, - "os-locale": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", - "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", - "dev": true, - "optional": true, - "requires": { - "lcid": "^1.0.0" - } - }, - "os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", - "dev": true - }, - "osenv": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", - "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", - "dev": true, - "requires": { - "os-homedir": "^1.0.0", - "os-tmpdir": "^1.0.0" - } - }, - "p-defer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", - "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=", - "dev": true - }, - "p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", - "dev": true - }, - "p-is-promise": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz", - "integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==", - "dev": true - }, - "p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "dev": true, - "requires": { - "p-try": "^1.0.0" - } - }, - "p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", - "dev": true, - "requires": { - "p-limit": "^1.1.0" - } - }, - "p-map": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-1.2.0.tgz", - "integrity": "sha512-r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA==", - "dev": true - }, - "p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", - "dev": true - }, - "pako": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.10.tgz", - "integrity": "sha512-0DTvPVU3ed8+HNXOu5Bs+o//Mbdj9VNQMUOe9oKCwh8l0GNwpTDMKCWbRjgtD291AWnkAgkqA/LOnQS8AmS1tw==", - "dev": true - }, - "parallel-transform": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.1.0.tgz", - "integrity": "sha1-1BDwZbBdojCB/NEPKIVMKb2jOwY=", - "dev": true, - "requires": { - "cyclist": "~0.2.2", - "inherits": "^2.0.3", - "readable-stream": "^2.1.5" - } - }, - "parse-asn1": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.4.tgz", - "integrity": "sha512-Qs5duJcuvNExRfFZ99HDD3z4mAi3r9Wl/FOjEOijlxwCZs7E7mW2vjTpgQ4J8LpTF8x5v+1Vn5UQFejmWT11aw==", - "dev": true, - "requires": { - "asn1.js": "^4.0.0", - "browserify-aes": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.0", - "pbkdf2": "^3.0.3", - "safe-buffer": "^5.1.1" - } - }, - "parse-glob": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", - "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=", - "dev": true, - "requires": { - "glob-base": "^0.3.0", - "is-dotfile": "^1.0.0", - "is-extglob": "^1.0.0", - "is-glob": "^2.0.0" - }, - "dependencies": { - "is-extglob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", - "dev": true - }, - "is-glob": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", - "dev": true, - "requires": { - "is-extglob": "^1.0.0" - } - } - } - }, - "parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", - "dev": true, - "requires": { - "error-ex": "^1.2.0" - } - }, - "parse5": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz", - "integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==", - "dev": true - }, - "parseqs": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/parseqs/-/parseqs-0.0.5.tgz", - "integrity": "sha1-1SCKNzjkZ2bikbouoXNoSSGouJ0=", - "dev": true, - "requires": { - "better-assert": "~1.0.0" - } - }, - "parseuri": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/parseuri/-/parseuri-0.0.5.tgz", - "integrity": "sha1-gCBKUNTbt3m/3G6+J3jZDkvOMgo=", - "dev": true, - "requires": { - "better-assert": "~1.0.0" - } - }, - "parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "dev": true - }, - "pascalcase": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", - "dev": true - }, - "path-browserify": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", - "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", - "dev": true - }, - "path-dirname": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", - "dev": true - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "dev": true - }, - "path-is-inside": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", - "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", - "dev": true - }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", - "dev": true - }, - "path-parse": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", - "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", - "dev": true - }, - "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=", - "dev": true - }, - "path-type": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", - "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", - "dev": true, - "requires": { - "pify": "^3.0.0" - }, - "dependencies": { - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "dev": true - } - } - }, - "pbkdf2": { - "version": "3.0.17", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz", - "integrity": "sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==", - "dev": true, - "requires": { - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4", - "ripemd160": "^2.0.1", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", - "dev": true - }, - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true - }, - "pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", - "dev": true - }, - "pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", - "dev": true, - "requires": { - "pinkie": "^2.0.0" - } - }, - "pkg-dir": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", - "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", - "dev": true, - "requires": { - "find-up": "^2.1.0" - } - }, - "portfinder": { - "version": "1.0.17", - "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.17.tgz", - "integrity": "sha512-syFcRIRzVI1BoEFOCaAiizwDolh1S1YXSodsVhncbhjzjZQulhczNRbqnUl9N31Q4dKGOXsNDqxC2BWBgSMqeQ==", - "dev": true, - "requires": { - "async": "^1.5.2", - "debug": "^2.2.0", - "mkdirp": "0.5.x" - }, - "dependencies": { - "async": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", - "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=", - "dev": true - } - } - }, - "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=", - "dev": true - }, - "postcss": { - "version": "7.0.5", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.5.tgz", - "integrity": "sha512-HBNpviAUFCKvEh7NZhw1e8MBPivRszIiUnhrJ+sBFVSYSqubrzwX3KG51mYgcRHX8j/cAgZJedONZcm5jTBdgQ==", - "dev": true, - "requires": { - "chalk": "^2.4.1", - "source-map": "^0.6.1", - "supports-color": "^5.5.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "postcss-import": { - "version": "12.0.0", - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-12.0.0.tgz", - "integrity": "sha512-3KqKRZcaZAvxbY8DVLdd81tG5uKzbUQuiWIvy0o0fzEC42bKacqPYFWbfCQyw6L4LWUaqPz/idvIdbhpgQ32eQ==", - "dev": true, - "requires": { - "postcss": "^7.0.1", - "postcss-value-parser": "^3.2.3", - "read-cache": "^1.0.0", - "resolve": "^1.1.7" - } - }, - "postcss-load-config": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.0.tgz", - "integrity": "sha512-4pV3JJVPLd5+RueiVVB+gFOAa7GWc25XQcMp86Zexzke69mKf6Nx9LRcQywdz7yZI9n1udOxmLuAwTBypypF8Q==", - "dev": true, - "requires": { - "cosmiconfig": "^5.0.0", - "import-cwd": "^2.0.0" - } - }, - "postcss-loader": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz", - "integrity": "sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==", - "dev": true, - "requires": { - "loader-utils": "^1.1.0", - "postcss": "^7.0.0", - "postcss-load-config": "^2.0.0", - "schema-utils": "^1.0.0" - } - }, - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - }, - "prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", - "dev": true - }, - "preserve": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", - "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=", - "dev": true - }, - "process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", - "dev": true - }, - "process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true - }, - "promise": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", - "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", - "dev": true, - "optional": true, - "requires": { - "asap": "~2.0.3" - } - }, - "promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", - "dev": true - }, - "protractor": { - "version": "5.4.2", - "resolved": "https://registry.npmjs.org/protractor/-/protractor-5.4.2.tgz", - "integrity": "sha512-zlIj64Cr6IOWP7RwxVeD8O4UskLYPoyIcg0HboWJL9T79F1F0VWtKkGTr/9GN6BKL+/Q/GmM7C9kFVCfDbP5sA==", - "dev": true, - "requires": { - "@types/q": "^0.0.32", - "@types/selenium-webdriver": "^3.0.0", - "blocking-proxy": "^1.0.0", - "browserstack": "^1.5.1", - "chalk": "^1.1.3", - "glob": "^7.0.3", - "jasmine": "2.8.0", - "jasminewd2": "^2.1.0", - "optimist": "~0.6.0", - "q": "1.4.1", - "saucelabs": "^1.5.0", - "selenium-webdriver": "3.6.0", - "source-map-support": "~0.4.0", - "webdriver-js-extender": "2.1.0", - "webdriver-manager": "^12.0.6" - }, - "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, - "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - } - }, - "del": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/del/-/del-2.2.2.tgz", - "integrity": "sha1-wSyYHQZ4RshLyvhiz/kw2Qf/0ag=", - "dev": true, - "requires": { - "globby": "^5.0.0", - "is-path-cwd": "^1.0.0", - "is-path-in-cwd": "^1.0.0", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0", - "rimraf": "^2.2.8" - } - }, - "globby": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz", - "integrity": "sha1-69hGZ8oNuzMLmbz8aOrCvFQ3Dg0=", - "dev": true, - "requires": { - "array-union": "^1.0.1", - "arrify": "^1.0.0", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true - }, - "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", - "dev": true - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - }, - "source-map-support": { - "version": "0.4.18", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz", - "integrity": "sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==", - "dev": true, - "requires": { - "source-map": "^0.5.6" - } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true - }, - "webdriver-manager": { - "version": "12.1.5", - "resolved": "https://registry.npmjs.org/webdriver-manager/-/webdriver-manager-12.1.5.tgz", - "integrity": "sha512-f1apDjMpZ8SHlXtXGzqBxOjV+WQcDRz5PN7pWScgjXS7vhUIFcM3V89Shetf4A04n8DDR2MxiVQq6JproFcRZw==", - "dev": true, - "requires": { - "adm-zip": "^0.4.9", - "chalk": "^1.1.1", - "del": "^2.2.0", - "glob": "^7.0.3", - "ini": "^1.3.4", - "minimist": "^1.2.0", - "q": "^1.4.1", - "request": "^2.87.0", - "rimraf": "^2.5.2", - "semver": "^5.3.0", - "xml2js": "^0.4.17" - } - } - } - }, - "proxy-addr": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.5.tgz", - "integrity": "sha512-t/7RxHXPH6cJtP0pRG6smSr9QJidhB+3kXu0KgXnbGYMgzEnUxRQ4/LDdfOwZEMyIh3/xHb8PX3t+lfL9z+YVQ==", - "dev": true, - "requires": { - "forwarded": "~0.1.2", - "ipaddr.js": "1.9.0" - } - }, - "prr": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", - "dev": true - }, - "pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", - "dev": true - }, - "psl": { - "version": "1.1.33", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.1.33.tgz", - "integrity": "sha512-LTDP2uSrsc7XCb5lO7A8BI1qYxRe/8EqlRvMeEl6rsnYAqDOl8xHR+8lSAIVfrNaSAlTPTNOCgNjWcoUL3AZsw==", - "dev": true - }, - "public-encrypt": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", - "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", - "dev": true, - "requires": { - "bn.js": "^4.1.0", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "parse-asn1": "^5.0.0", - "randombytes": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "pump": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", - "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "pumpify": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", - "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", - "dev": true, - "requires": { - "duplexify": "^3.6.0", - "inherits": "^2.0.3", - "pump": "^2.0.0" - } - }, - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "dev": true - }, - "q": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/q/-/q-1.4.1.tgz", - "integrity": "sha1-VXBbzZPF82c1MMLCy8DCs63cKG4=", - "dev": true - }, - "qjobs": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/qjobs/-/qjobs-1.2.0.tgz", - "integrity": "sha512-8YOJEHtxpySA3fFDyCRxA+UUV+fA+rTWnuWvylOK/NCjhY+b4ocCtmu8TtsWb+mYeU+GCHf/S66KZF/AsteKHg==", - "dev": true - }, - "qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", - "dev": true - }, - "querystring": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", - "dev": true - }, - "querystring-es3": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", - "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", - "dev": true - }, - "querystringify": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.1.1.tgz", - "integrity": "sha512-w7fLxIRCRT7U8Qu53jQnJyPkYZIaR4n5151KMfcJlO/A9397Wxb1amJvROTK6TOnp7PfoAmg/qXiNHI+08jRfA==", - "dev": true - }, - "randomatic": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.1.1.tgz", - "integrity": "sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==", - "dev": true, - "requires": { - "is-number": "^4.0.0", - "kind-of": "^6.0.0", - "math-random": "^1.0.1" - }, - "dependencies": { - "is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", - "dev": true - } - } - }, - "randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "dev": true, - "requires": { - "safe-buffer": "^5.1.0" - } - }, - "randomfill": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", - "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", - "dev": true, - "requires": { - "randombytes": "^2.0.5", - "safe-buffer": "^5.1.0" - } - }, - "range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "dev": true - }, - "raw-body": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", - "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", - "dev": true, - "requires": { - "bytes": "3.1.0", - "http-errors": "1.7.2", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "dependencies": { - "bytes": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", - "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", - "dev": true - } - } - }, - "raw-loader": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/raw-loader/-/raw-loader-0.5.1.tgz", - "integrity": "sha1-DD0L6u2KAclm2Xh793goElKpeao=", - "dev": true - }, - "read-cache": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", - "integrity": "sha1-5mTvMRYRZsl1HNvo28+GtftY93Q=", - "dev": true, - "requires": { - "pify": "^2.3.0" - }, - "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true - } - } - }, - "read-pkg": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", - "dev": true, - "optional": true, - "requires": { - "load-json-file": "^1.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^1.0.0" - }, - "dependencies": { - "path-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", - "dev": true, - "optional": true, - "requires": { - "graceful-fs": "^4.1.2", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true, - "optional": true - } - } - }, - "read-pkg-up": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", - "dev": true, - "optional": true, - "requires": { - "find-up": "^1.0.0", - "read-pkg": "^1.0.0" - }, - "dependencies": { - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", - "dev": true, - "optional": true, - "requires": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", - "dev": true, - "optional": true, - "requires": { - "pinkie-promise": "^2.0.0" - } - } - } - }, - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" - } - }, - "rechoir": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", - "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", - "dev": true, - "requires": { - "resolve": "^1.1.6" - } - }, - "redent": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", - "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", - "dev": true, - "optional": true, - "requires": { - "indent-string": "^2.1.0", - "strip-indent": "^1.0.1" - } - }, - "reflect-metadata": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", - "integrity": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==", - "dev": true - }, - "regenerate": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz", - "integrity": "sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==", - "dev": true - }, - "regenerator-runtime": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", - "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==", - "dev": true - }, - "regex-cache": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz", - "integrity": "sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==", - "dev": true, - "requires": { - "is-equal-shallow": "^0.1.3" - } - }, - "regex-not": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", - "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", - "dev": true, - "requires": { - "extend-shallow": "^3.0.2", - "safe-regex": "^1.1.0" - } - }, - "regexpu-core": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-1.0.0.tgz", - "integrity": "sha1-hqdj9Y7k18L2sQLkdkBQ3n7ZDGs=", - "dev": true, - "requires": { - "regenerate": "^1.2.1", - "regjsgen": "^0.2.0", - "regjsparser": "^0.1.4" - } - }, - "regjsgen": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz", - "integrity": "sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=", - "dev": true - }, - "regjsparser": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz", - "integrity": "sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=", - "dev": true, - "requires": { - "jsesc": "~0.5.0" - }, - "dependencies": { - "jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", - "dev": true - } - } - }, - "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=", - "dev": true - }, - "repeat-element": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", - "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==", - "dev": true - }, - "repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", - "dev": true - }, - "repeating": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", - "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", - "dev": true, - "requires": { - "is-finite": "^1.0.0" - } - }, - "request": { - "version": "2.88.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.0.tgz", - "integrity": "sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==", - "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", - "har-validator": "~5.1.0", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.4.3", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - } - }, - "require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", - "dev": true - }, - "require-main-filename": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=", - "dev": true - }, - "requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", - "dev": true - }, - "resolve": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.11.1.tgz", - "integrity": "sha512-vIpgF6wfuJOZI7KKKSP+HmiKggadPQAdsp5HiC1mvqnfp0gF1vdwgBWZIdrVft9pgqoMFQN+R7BSWZiBxx+BBw==", - "dev": true, - "requires": { - "path-parse": "^1.0.6" - } - }, - "resolve-cwd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", - "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", - "dev": true, - "requires": { - "resolve-from": "^3.0.0" - } - }, - "resolve-from": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", - "dev": true - }, - "resolve-url": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", - "dev": true - }, - "restore-cursor": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", - "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", - "dev": true, - "requires": { - "onetime": "^2.0.0", - "signal-exit": "^3.0.2" - } - }, - "ret": { - "version": "0.1.15", - "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", - "dev": true - }, - "retry": { - "version": "0.10.1", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.10.1.tgz", - "integrity": "sha1-52OI0heZLCUnUCQdPTlW/tmNj/Q=", - "dev": true - }, - "rfdc": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.1.4.tgz", - "integrity": "sha512-5C9HXdzK8EAqN7JDif30jqsBzavB7wLpaubisuQIGHWf2gUXSpzy6ArX/+Da8RjFpagWsCn+pIgxTMAmKw9Zug==", - "dev": true - }, - "rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - }, - "ripemd160": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", - "dev": true, - "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" - } - }, - "run-async": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz", - "integrity": "sha1-A3GrSuC91yDUFm19/aZP96RFpsA=", - "dev": true, - "requires": { - "is-promise": "^2.1.0" - } - }, - "run-queue": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", - "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", - "dev": true, - "requires": { - "aproba": "^1.1.1" - } - }, - "rxjs": { - "version": "6.3.3", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.3.3.tgz", - "integrity": "sha512-JTWmoY9tWCs7zvIk/CvRjhjGaOd+OVBM987mxFo+OW66cGpdKjZcpmc74ES1sB//7Kl/PAe8+wEakuhG4pcgOw==", - "requires": { - "tslib": "^1.9.0" - } - }, - "rxjs-compat": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/rxjs-compat/-/rxjs-compat-6.5.2.tgz", - "integrity": "sha512-TRMkTp4FgSxE2HtGvxmgRukh3JqdFM7ejAj1Ti/VdodbPGfWvZR5+KdLKRV9jVDFyu2SknM8RD+PR54KGnoLjg==" - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "safe-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", - "dev": true, - "requires": { - "ret": "~0.1.10" - } - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true - }, - "sass-graph": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-2.2.4.tgz", - "integrity": "sha1-E/vWPNHK8JCLn9k0dq1DpR0eC0k=", - "dev": true, - "optional": true, - "requires": { - "glob": "^7.0.0", - "lodash": "^4.0.0", - "scss-tokenizer": "^0.2.3", - "yargs": "^7.0.0" - } - }, - "sass-loader": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-7.1.0.tgz", - "integrity": "sha512-+G+BKGglmZM2GUSfT9TLuEp6tzehHPjAMoRRItOojWIqIGPloVCMhNIQuG639eJ+y033PaGTSjLaTHts8Kw79w==", - "dev": true, - "requires": { - "clone-deep": "^2.0.1", - "loader-utils": "^1.0.1", - "lodash.tail": "^4.1.1", - "neo-async": "^2.5.0", - "pify": "^3.0.0", - "semver": "^5.5.0" - }, - "dependencies": { - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "dev": true - }, - "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", - "dev": true - } - } - }, - "saucelabs": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/saucelabs/-/saucelabs-1.5.0.tgz", - "integrity": "sha512-jlX3FGdWvYf4Q3LFfFWS1QvPg3IGCGWxIc8QBFdPTbpTJnt/v17FHXYVAn7C8sHf1yUXo2c7yIM0isDryfYtHQ==", - "dev": true, - "requires": { - "https-proxy-agent": "^2.2.1" - } - }, - "sax": { - "version": "0.5.8", - "resolved": "https://registry.npmjs.org/sax/-/sax-0.5.8.tgz", - "integrity": "sha1-1HLbIo6zMcJQaw6MFVJK25OdEsE=", - "dev": true - }, - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", - "dev": true, - "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" - } - }, - "scss-tokenizer": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz", - "integrity": "sha1-jrBtualyMzOCTT9VMGQRSYR85dE=", - "dev": true, - "optional": true, - "requires": { - "js-base64": "^2.1.8", - "source-map": "^0.4.2" - }, - "dependencies": { - "source-map": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", - "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", - "dev": true, - "optional": true, - "requires": { - "amdefine": ">=0.0.4" - } - } - } - }, - "select-hose": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", - "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=", - "dev": true - }, - "selenium-webdriver": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-3.6.0.tgz", - "integrity": "sha512-WH7Aldse+2P5bbFBO4Gle/nuQOdVwpHMTL6raL3uuBj/vPG07k6uzt3aiahu352ONBr5xXh0hDlM3LhtXPOC4Q==", - "dev": true, - "requires": { - "jszip": "^3.1.3", - "rimraf": "^2.5.4", - "tmp": "0.0.30", - "xml2js": "^0.4.17" - }, - "dependencies": { - "tmp": { - "version": "0.0.30", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.30.tgz", - "integrity": "sha1-ckGdSovn1s51FI/YsyTlk6cRwu0=", - "dev": true, - "requires": { - "os-tmpdir": "~1.0.1" - } - } - } - }, - "selfsigned": { - "version": "1.10.4", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.4.tgz", - "integrity": "sha512-9AukTiDmHXGXWtWjembZ5NDmVvP2695EtpgbCsxCa68w3c88B+alqbmZ4O3hZ4VWGXeGWzEVdvqgAJD8DQPCDw==", - "dev": true, - "requires": { - "node-forge": "0.7.5" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - }, - "semver-dsl": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/semver-dsl/-/semver-dsl-1.0.1.tgz", - "integrity": "sha1-02eN5VVeimH2Ke7QJTZq5fJzQKA=", - "dev": true, - "requires": { - "semver": "^5.3.0" - }, - "dependencies": { - "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", - "dev": true - } - } - }, - "semver-intersect": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/semver-intersect/-/semver-intersect-1.4.0.tgz", - "integrity": "sha512-d8fvGg5ycKAq0+I6nfWeCx6ffaWJCsBYU0H2Rq56+/zFePYfT8mXkB3tWBSjR5BerkHNZ5eTPIk1/LBYas35xQ==", - "dev": true, - "requires": { - "semver": "^5.0.0" - }, - "dependencies": { - "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", - "dev": true - } - } - }, - "send": { - "version": "0.17.1", - "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", - "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", - "dev": true, - "requires": { - "debug": "2.6.9", - "depd": "~1.1.2", - "destroy": "~1.0.4", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "~1.7.2", - "mime": "1.6.0", - "ms": "2.1.1", - "on-finished": "~2.3.0", - "range-parser": "~1.2.1", - "statuses": "~1.5.0" - }, - "dependencies": { - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", - "dev": true - } - } - }, - "serialize-javascript": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.7.0.tgz", - "integrity": "sha512-ke8UG8ulpFOxO8f8gRYabHQe/ZntKlcig2Mp+8+URDP1D8vJZ0KUt7LYo07q25Z/+JVSgpr/cui9PIp5H6/+nA==", - "dev": true - }, - "serve-index": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", - "dev": true, - "requires": { - "accepts": "~1.3.4", - "batch": "0.6.1", - "debug": "2.6.9", - "escape-html": "~1.0.3", - "http-errors": "~1.6.2", - "mime-types": "~2.1.17", - "parseurl": "~1.3.2" - }, - "dependencies": { - "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=", - "dev": true, - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" - } - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", - "dev": true - }, - "setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", - "dev": true - } - } - }, - "serve-static": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", - "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", - "dev": true, - "requires": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.17.1" - } - }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", - "dev": true - }, - "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=", - "dev": true - }, - "set-value": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", - "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", - "dev": true - }, - "setprototypeof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", - "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==", - "dev": true - }, - "sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "shallow-clone": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-1.0.0.tgz", - "integrity": "sha512-oeXreoKR/SyNJtRJMAKPDSvd28OqEwG4eR/xc856cRGBII7gX9lvAqDxusPm0846z/w/hWYjI1NpKwJ00NHzRA==", - "dev": true, - "requires": { - "is-extendable": "^0.1.1", - "kind-of": "^5.0.0", - "mixin-object": "^2.0.1" - }, - "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } - } - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", - "dev": true, - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", - "dev": true - }, - "shelljs": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.3.tgz", - "integrity": "sha512-fc0BKlAWiLpwZljmOvAOTE/gXawtCoNrP5oaY7KIaQbbyHeQVg01pSEuEGvGh3HEdBU4baCD7wQBwADmM/7f7A==", - "dev": true, - "requires": { - "glob": "^7.0.0", - "interpret": "^1.0.0", - "rechoir": "^0.6.2" - } - }, - "signal-exit": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", - "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", - "dev": true - }, - "slash": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", - "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=", - "dev": true - }, - "slide": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/slide/-/slide-1.1.6.tgz", - "integrity": "sha1-VusCfWW00tzmyy4tMsTUr8nh1wc=", - "dev": true - }, - "snapdragon": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", - "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", - "dev": true, - "requires": { - "base": "^0.11.1", - "debug": "^2.2.0", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "map-cache": "^0.2.2", - "source-map": "^0.5.6", - "source-map-resolve": "^0.5.0", - "use": "^3.1.0" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - } - } - }, - "snapdragon-node": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", - "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", - "dev": true, - "requires": { - "define-property": "^1.0.0", - "isobject": "^3.0.0", - "snapdragon-util": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - } - } - }, - "snapdragon-util": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", - "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", - "dev": true, - "requires": { - "kind-of": "^3.2.0" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "socket.io": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-2.1.1.tgz", - "integrity": "sha512-rORqq9c+7W0DAK3cleWNSyfv/qKXV99hV4tZe+gGLfBECw3XEhBy7x85F3wypA9688LKjtwO9pX9L33/xQI8yA==", - "dev": true, - "requires": { - "debug": "~3.1.0", - "engine.io": "~3.2.0", - "has-binary2": "~1.0.2", - "socket.io-adapter": "~1.1.0", - "socket.io-client": "2.1.1", - "socket.io-parser": "~3.2.0" - }, - "dependencies": { - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - } - } - }, - "socket.io-adapter": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-1.1.1.tgz", - "integrity": "sha1-KoBeihTWNyEk3ZFZrUUC+MsH8Gs=", - "dev": true - }, - "socket.io-client": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.1.1.tgz", - "integrity": "sha512-jxnFyhAuFxYfjqIgduQlhzqTcOEQSn+OHKVfAxWaNWa7ecP7xSNk2Dx/3UEsDcY7NcFafxvNvKPmmO7HTwTxGQ==", - "dev": true, - "requires": { - "backo2": "1.0.2", - "base64-arraybuffer": "0.1.5", - "component-bind": "1.0.0", - "component-emitter": "1.2.1", - "debug": "~3.1.0", - "engine.io-client": "~3.2.0", - "has-binary2": "~1.0.2", - "has-cors": "1.1.0", - "indexof": "0.0.1", - "object-component": "0.0.3", - "parseqs": "0.0.5", - "parseuri": "0.0.5", - "socket.io-parser": "~3.2.0", - "to-array": "0.1.4" - }, - "dependencies": { - "component-emitter": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", - "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=", - "dev": true - }, - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - } - } - }, - "socket.io-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.2.0.tgz", - "integrity": "sha512-FYiBx7rc/KORMJlgsXysflWx/RIvtqZbyGLlHZvjfmPTPeuD/I8MaW7cfFrj5tRltICJdgwflhfZ3NVVbVLFQA==", - "dev": true, - "requires": { - "component-emitter": "1.2.1", - "debug": "~3.1.0", - "isarray": "2.0.1" - }, - "dependencies": { - "component-emitter": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", - "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=", - "dev": true - }, - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "isarray": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz", - "integrity": "sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4=", - "dev": true - } - } - }, - "sockjs": { - "version": "0.3.19", - "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.19.tgz", - "integrity": "sha512-V48klKZl8T6MzatbLlzzRNhMepEys9Y4oGFpypBFFn1gLI/QQ9HtLLyWJNbPlwGLelOVOEijUbTTJeLLI59jLw==", - "dev": true, - "requires": { - "faye-websocket": "^0.10.0", - "uuid": "^3.0.1" - } - }, - "sockjs-client": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.1.5.tgz", - "integrity": "sha1-G7fA9yIsQPQq3xT0RCy9Eml3GoM=", - "dev": true, - "requires": { - "debug": "^2.6.6", - "eventsource": "0.1.6", - "faye-websocket": "~0.11.0", - "inherits": "^2.0.1", - "json3": "^3.3.2", - "url-parse": "^1.1.8" - }, - "dependencies": { - "faye-websocket": { - "version": "0.11.3", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz", - "integrity": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==", - "dev": true, - "requires": { - "websocket-driver": ">=0.5.1" - } - } - } - }, - "source-list-map": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", - "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", - "dev": true - }, - "source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", - "dev": true - }, - "source-map-loader": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-0.2.4.tgz", - "integrity": "sha512-OU6UJUty+i2JDpTItnizPrlpOIBLmQbWMuBg9q5bVtnHACqw1tn9nNwqJLbv0/00JjnJb/Ee5g5WS5vrRv7zIQ==", - "dev": true, - "requires": { - "async": "^2.5.0", - "loader-utils": "^1.1.0" - } - }, - "source-map-resolve": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz", - "integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==", - "dev": true, - "requires": { - "atob": "^2.1.1", - "decode-uri-component": "^0.2.0", - "resolve-url": "^0.2.1", - "source-map-url": "^0.4.0", - "urix": "^0.1.0" - } - }, - "source-map-support": { - "version": "0.5.12", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.12.tgz", - "integrity": "sha512-4h2Pbvyy15EE02G+JOZpUCmqWJuqrs+sEkzewTm++BPi7Hvn/HwcqLAcNxYAyI0x13CpPPn+kMjl+hplXMHITQ==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "source-map-url": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", - "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=", - "dev": true - }, - "sourcemap-codec": { - "version": "1.4.6", - "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.6.tgz", - "integrity": "sha512-1ZooVLYFxC448piVLBbtOxFcXwnymH9oUF8nRd3CuYDVvkRBxRl6pB4Mtas5a4drtL+E8LDgFkQNcgIw6tc8Hg==", - "dev": true - }, - "spdx-correct": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz", - "integrity": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==", - "dev": true, - "requires": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, - "spdx-exceptions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz", - "integrity": "sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==", - "dev": true - }, - "spdx-expression-parse": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz", - "integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==", - "dev": true, - "requires": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "spdx-license-ids": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz", - "integrity": "sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==", - "dev": true - }, - "spdy": { - "version": "3.4.7", - "resolved": "https://registry.npmjs.org/spdy/-/spdy-3.4.7.tgz", - "integrity": "sha1-Qv9B7OXMD5mjpsKKq7c/XDsDrLw=", - "dev": true, - "requires": { - "debug": "^2.6.8", - "handle-thing": "^1.2.5", - "http-deceiver": "^1.2.7", - "safe-buffer": "^5.0.1", - "select-hose": "^2.0.0", - "spdy-transport": "^2.0.18" - } - }, - "spdy-transport": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-2.1.1.tgz", - "integrity": "sha512-q7D8c148escoB3Z7ySCASadkegMmUZW8Wb/Q1u0/XBgDKMO880rLQDj8Twiew/tYi7ghemKUi/whSYOwE17f5Q==", - "dev": true, - "requires": { - "debug": "^2.6.8", - "detect-node": "^2.0.3", - "hpack.js": "^2.1.6", - "obuf": "^1.1.1", - "readable-stream": "^2.2.9", - "safe-buffer": "^5.0.1", - "wbuf": "^1.7.2" - } - }, - "speed-measure-webpack-plugin": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/speed-measure-webpack-plugin/-/speed-measure-webpack-plugin-1.3.1.tgz", - "integrity": "sha512-qVIkJvbtS9j/UeZumbdfz0vg+QfG/zxonAjzefZrqzkr7xOncLVXkeGbTpzd1gjCBM4PmVNkWlkeTVhgskAGSQ==", - "dev": true, - "requires": { - "chalk": "^2.0.1" - } - }, - "split-string": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", - "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", - "dev": true, - "requires": { - "extend-shallow": "^3.0.0" - } - }, - "sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", - "dev": true - }, - "sshpk": { - "version": "1.16.1", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", - "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", - "dev": true, - "requires": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - } - }, - "ssri": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-5.3.0.tgz", - "integrity": "sha512-XRSIPqLij52MtgoQavH/x/dU1qVKtWUAAZeOHsR9c2Ddi4XerFy3mc1alf+dLJKl9EUIm/Ht+EowFkTUOA6GAQ==", - "dev": true, - "requires": { - "safe-buffer": "^5.1.1" - } - }, - "static-extend": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", - "dev": true, - "requires": { - "define-property": "^0.2.5", - "object-copy": "^0.1.0" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - } - } - }, - "stats-webpack-plugin": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/stats-webpack-plugin/-/stats-webpack-plugin-0.7.0.tgz", - "integrity": "sha512-NT0YGhwuQ0EOX+uPhhUcI6/+1Sq/pMzNuSCBVT4GbFl/ac6I/JZefBcjlECNfAb1t3GOx5dEj1Z7x0cAxeeVLQ==", - "dev": true, - "requires": { - "lodash": "^4.17.4" - } - }, - "statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", - "dev": true - }, - "stdout-stream": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/stdout-stream/-/stdout-stream-1.4.1.tgz", - "integrity": "sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA==", - "dev": true, - "optional": true, - "requires": { - "readable-stream": "^2.0.1" - } - }, - "stream-browserify": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", - "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", - "dev": true, - "requires": { - "inherits": "~2.0.1", - "readable-stream": "^2.0.2" - } - }, - "stream-each": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", - "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "stream-shift": "^1.0.0" - } - }, - "stream-http": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", - "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", - "dev": true, - "requires": { - "builtin-status-codes": "^3.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.3.6", - "to-arraybuffer": "^1.0.0", - "xtend": "^4.0.0" - } - }, - "stream-shift": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz", - "integrity": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=", - "dev": true - }, - "streamroller": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-0.7.0.tgz", - "integrity": "sha512-WREzfy0r0zUqp3lGO096wRuUp7ho1X6uo/7DJfTlEi0Iv/4gT7YHqXDjKC2ioVGBZtE8QzsQD9nx1nIuoZ57jQ==", - "dev": true, - "requires": { - "date-format": "^1.2.0", - "debug": "^3.1.0", - "mkdirp": "^0.5.1", - "readable-stream": "^2.3.0" - }, - "dependencies": { - "debug": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", - "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - } - } - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "dev": true, - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", - "dev": true - }, - "strip-eof": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", - "dev": true - }, - "strip-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", - "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", - "dev": true, - "optional": true, - "requires": { - "get-stdin": "^4.0.1" - } - }, - "style-loader": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-0.23.0.tgz", - "integrity": "sha512-uCcN7XWHkqwGVt7skpInW6IGO1tG6ReyFQ1Cseh0VcN6VdcFQi62aG/2F3Y9ueA8x4IVlfaSUxpmQXQD9QrEuQ==", - "dev": true, - "requires": { - "loader-utils": "^1.1.0", - "schema-utils": "^0.4.5" - }, - "dependencies": { - "schema-utils": { - "version": "0.4.7", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz", - "integrity": "sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==", - "dev": true, - "requires": { - "ajv": "^6.1.0", - "ajv-keywords": "^3.1.0" - } - } - } - }, - "stylus": { - "version": "0.54.5", - "resolved": "https://registry.npmjs.org/stylus/-/stylus-0.54.5.tgz", - "integrity": "sha1-QrlWCTHKcJDOhRWnmLqeaqPW3Hk=", - "dev": true, - "requires": { - "css-parse": "1.7.x", - "debug": "*", - "glob": "7.0.x", - "mkdirp": "0.5.x", - "sax": "0.5.x", - "source-map": "0.1.x" - }, - "dependencies": { - "glob": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", - "integrity": "sha1-IRuvr0nlJbjNkyYNFKsTYVKz9Xo=", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.2", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "source-map": { - "version": "0.1.43", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz", - "integrity": "sha1-wkvBRspRfBRx9drL4lcbK3+eM0Y=", - "dev": true, - "requires": { - "amdefine": ">=0.0.4" - } - } - } - }, - "stylus-loader": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/stylus-loader/-/stylus-loader-3.0.2.tgz", - "integrity": "sha512-+VomPdZ6a0razP+zinir61yZgpw2NfljeSsdUF5kJuEzlo3khXhY19Fn6l8QQz1GRJGtMCo8nG5C04ePyV7SUA==", - "dev": true, - "requires": { - "loader-utils": "^1.0.2", - "lodash.clonedeep": "^4.5.0", - "when": "~3.6.x" - } - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - }, - "symbol-observable": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", - "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==", - "dev": true - }, - "tapable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", - "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", - "dev": true - }, - "tar": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/tar/-/tar-2.2.2.tgz", - "integrity": "sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA==", - "dev": true, - "optional": true, - "requires": { - "block-stream": "*", - "fstream": "^1.0.12", - "inherits": "2" - } - }, - "terser": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-3.17.0.tgz", - "integrity": "sha512-/FQzzPJmCpjAH9Xvk2paiWrFq+5M6aVOf+2KRbwhByISDX/EujxsK+BAvrhb6H+2rtrLCHK9N01wO014vrIwVQ==", - "dev": true, - "requires": { - "commander": "^2.19.0", - "source-map": "~0.6.1", - "source-map-support": "~0.5.10" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "terser-webpack-plugin": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.1.0.tgz", - "integrity": "sha512-61lV0DSxMAZ8AyZG7/A4a3UPlrbOBo8NIQ4tJzLPAdGOQ+yoNC7l5ijEow27lBAL2humer01KLS6bGIMYQxKoA==", - "dev": true, - "requires": { - "cacache": "^11.0.2", - "find-cache-dir": "^2.0.0", - "schema-utils": "^1.0.0", - "serialize-javascript": "^1.4.0", - "source-map": "^0.6.1", - "terser": "^3.8.1", - "webpack-sources": "^1.1.0", - "worker-farm": "^1.5.2" - }, - "dependencies": { - "cacache": { - "version": "11.3.3", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-11.3.3.tgz", - "integrity": "sha512-p8WcneCytvzPxhDvYp31PD039vi77I12W+/KfR9S8AZbaiARFBCpsPJS+9uhWfeBfeAtW7o/4vt3MUqLkbY6nA==", - "dev": true, - "requires": { - "bluebird": "^3.5.5", - "chownr": "^1.1.1", - "figgy-pudding": "^3.5.1", - "glob": "^7.1.4", - "graceful-fs": "^4.1.15", - "lru-cache": "^5.1.1", - "mississippi": "^3.0.0", - "mkdirp": "^0.5.1", - "move-concurrently": "^1.0.1", - "promise-inflight": "^1.0.1", - "rimraf": "^2.6.3", - "ssri": "^6.0.1", - "unique-filename": "^1.1.1", - "y18n": "^4.0.0" - } - }, - "find-cache-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", - "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^2.0.0", - "pkg-dir": "^3.0.0" - } - }, - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "glob": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", - "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "dev": true, - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "requires": { - "yallist": "^3.0.2" - } - }, - "mississippi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", - "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", - "dev": true, - "requires": { - "concat-stream": "^1.5.0", - "duplexify": "^3.4.2", - "end-of-stream": "^1.1.0", - "flush-write-stream": "^1.0.0", - "from2": "^2.1.0", - "parallel-transform": "^1.1.0", - "pump": "^3.0.0", - "pumpify": "^1.3.3", - "stream-each": "^1.1.0", - "through2": "^2.0.0" - } - }, - "p-limit": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz", - "integrity": "sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "dev": true, - "requires": { - "p-limit": "^2.0.0" - } - }, - "p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true - }, - "pkg-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", - "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", - "dev": true, - "requires": { - "find-up": "^3.0.0" - } - }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "ssri": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz", - "integrity": "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==", - "dev": true, - "requires": { - "figgy-pudding": "^3.5.1" - } - }, - "yallist": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz", - "integrity": "sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A==", - "dev": true - } - } - }, - "through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", - "dev": true - }, - "through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "requires": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "thunky": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.0.3.tgz", - "integrity": "sha512-YwT8pjmNcAXBZqrubu22P4FYsh2D4dxRmnWBOL8Jk8bUcRUtc5326kx32tuTmFDAZtLOGEVNl8POAR8j896Iow==", - "dev": true - }, - "timers-browserify": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.10.tgz", - "integrity": "sha512-YvC1SV1XdOUaL6gx5CoGroT3Gu49pK9+TZ38ErPldOWW4j49GI1HKs9DV+KGq/w6y+LZ72W1c8cKz2vzY+qpzg==", - "dev": true, - "requires": { - "setimmediate": "^1.0.4" - } - }, - "tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "dev": true, - "requires": { - "os-tmpdir": "~1.0.2" - } - }, - "to-array": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/to-array/-/to-array-0.1.4.tgz", - "integrity": "sha1-F+bBH3PdTz10zaek/zI46a2b+JA=", - "dev": true - }, - "to-arraybuffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", - "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=", - "dev": true - }, - "to-fast-properties": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz", - "integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=", - "dev": true - }, - "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=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "to-regex": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", - "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", - "dev": true, - "requires": { - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "regex-not": "^1.0.2", - "safe-regex": "^1.1.0" - } - }, - "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=", - "dev": true, - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - }, - "toidentifier": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", - "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", - "dev": true - }, - "tough-cookie": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz", - "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==", - "dev": true, - "requires": { - "psl": "^1.1.24", - "punycode": "^1.4.1" - }, - "dependencies": { - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", - "dev": true - } - } - }, - "tree-kill": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.0.tgz", - "integrity": "sha512-DlX6dR0lOIRDFxI0mjL9IYg6OTncLm/Zt+JiBhE5OlFcAR8yc9S7FFXU9so0oda47frdM/JFsk7UjNt9vscKcg==", - "dev": true - }, - "trim-newlines": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", - "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=", - "dev": true, - "optional": true - }, - "trim-right": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", - "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=", - "dev": true - }, - "true-case-path": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-1.0.3.tgz", - "integrity": "sha512-m6s2OdQe5wgpFMC+pAJ+q9djG82O2jcHPOI6RNg1yy9rCYR+WD6Nbpl32fDpfC56nirdRy+opFa/Vk7HYhqaew==", - "dev": true, - "optional": true, - "requires": { - "glob": "^7.1.2" - } - }, - "ts-node": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-7.0.1.tgz", - "integrity": "sha512-BVwVbPJRspzNh2yfslyT1PSbl5uIk03EZlb493RKHN4qej/D06n1cEhjlOJG69oFsE7OT8XjpTUcYf6pKTLMhw==", - "dev": true, - "requires": { - "arrify": "^1.0.0", - "buffer-from": "^1.1.0", - "diff": "^3.1.0", - "make-error": "^1.1.1", - "minimist": "^1.2.0", - "mkdirp": "^0.5.1", - "source-map-support": "^0.5.6", - "yn": "^2.0.0" - } - }, - "tslib": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", - "integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==" - }, - "tslint": { - "version": "5.11.0", - "resolved": "https://registry.npmjs.org/tslint/-/tslint-5.11.0.tgz", - "integrity": "sha1-mPMMAurjzecAYgHkwzywi0hYHu0=", - "dev": true, - "requires": { - "babel-code-frame": "^6.22.0", - "builtin-modules": "^1.1.1", - "chalk": "^2.3.0", - "commander": "^2.12.1", - "diff": "^3.2.0", - "glob": "^7.1.1", - "js-yaml": "^3.7.0", - "minimatch": "^3.0.4", - "resolve": "^1.3.2", - "semver": "^5.3.0", - "tslib": "^1.8.0", - "tsutils": "^2.27.2" - }, - "dependencies": { - "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", - "dev": true - } - } - }, - "tsutils": { - "version": "2.29.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-2.29.0.tgz", - "integrity": "sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==", - "dev": true, - "requires": { - "tslib": "^1.8.1" - } - }, - "tty-browserify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", - "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=", - "dev": true - }, - "tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", - "dev": true, - "requires": { - "safe-buffer": "^5.0.1" - } - }, - "tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", - "dev": true - }, - "type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", - "dev": true, - "requires": { - "prelude-ls": "~1.1.2" - } - }, - "type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "dev": true, - "requires": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - } - }, - "typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", - "dev": true - }, - "typescript": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.1.6.tgz", - "integrity": "sha512-tDMYfVtvpb96msS1lDX9MEdHrW4yOuZ4Kdc4Him9oU796XldPYF/t2+uKoX0BBa0hXXwDlqYQbXY5Rzjzc5hBA==", - "dev": true - }, - "uglify-js": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.6.0.tgz", - "integrity": "sha512-W+jrUHJr3DXKhrsS7NUVxn3zqMOFn0hL/Ei6v0anCIMoKC93TjcflTagwIHLW7SfMFfiQuktQyFVCFHGUE0+yg==", - "dev": true, - "optional": true, - "requires": { - "commander": "~2.20.0", - "source-map": "~0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "optional": true - } - } - }, - "uglifyjs-webpack-plugin": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.3.0.tgz", - "integrity": "sha512-ovHIch0AMlxjD/97j9AYovZxG5wnHOPkL7T1GKochBADp/Zwc44pEWNqpKl1Loupp1WhFg7SlYmHZRUfdAacgw==", - "dev": true, - "requires": { - "cacache": "^10.0.4", - "find-cache-dir": "^1.0.0", - "schema-utils": "^0.4.5", - "serialize-javascript": "^1.4.0", - "source-map": "^0.6.1", - "uglify-es": "^3.3.4", - "webpack-sources": "^1.1.0", - "worker-farm": "^1.5.2" - }, - "dependencies": { - "commander": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.13.0.tgz", - "integrity": "sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==", - "dev": true - }, - "schema-utils": { - "version": "0.4.7", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz", - "integrity": "sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==", - "dev": true, - "requires": { - "ajv": "^6.1.0", - "ajv-keywords": "^3.1.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "uglify-es": { - "version": "3.3.9", - "resolved": "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.9.tgz", - "integrity": "sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==", - "dev": true, - "requires": { - "commander": "~2.13.0", - "source-map": "~0.6.1" - } - } - } - }, - "ultron": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.1.1.tgz", - "integrity": "sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==", - "dev": true - }, - "union-value": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", - "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", - "dev": true, - "requires": { - "arr-union": "^3.1.0", - "get-value": "^2.0.6", - "is-extendable": "^0.1.1", - "set-value": "^2.0.1" - } - }, - "unique-filename": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", - "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", - "dev": true, - "requires": { - "unique-slug": "^2.0.0" - } - }, - "unique-slug": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", - "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", - "dev": true, - "requires": { - "imurmurhash": "^0.1.4" - } - }, - "unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", - "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=", - "dev": true, - "requires": { - "has-value": "^0.3.1", - "isobject": "^3.0.0" - }, - "dependencies": { - "has-value": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", - "dev": true, - "requires": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" - }, - "dependencies": { - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "dev": true, - "requires": { - "isarray": "1.0.0" - } - } - } - }, - "has-values": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", - "dev": true - } - } - }, - "upath": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.1.2.tgz", - "integrity": "sha512-kXpym8nmDmlCBr7nKdIx8P2jNBa+pBpIUFRnKJ4dr8htyYGJFokkr2ZvERRtUN+9SY+JqXouNgUPtv6JQva/2Q==", - "dev": true - }, - "uri-js": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", - "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", - "dev": true, - "requires": { - "punycode": "^2.1.0" - } - }, - "urix": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", - "dev": true - }, - "url": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", - "dev": true, - "requires": { - "punycode": "1.3.2", - "querystring": "0.2.0" - }, - "dependencies": { - "punycode": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", - "dev": true - } - } - }, - "url-join": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz", - "integrity": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==", - "dev": true - }, - "url-parse": { - "version": "1.4.7", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.4.7.tgz", - "integrity": "sha512-d3uaVyzDB9tQoSXFvuSUNFibTd9zxd2bkVrDRvF5TmvWWQwqE4lgYJ5m+x1DbecWkw+LK4RNl2CU1hHuOKPVlg==", - "dev": true, - "requires": { - "querystringify": "^2.1.1", - "requires-port": "^1.0.0" - } - }, - "use": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", - "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", - "dev": true - }, - "useragent": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/useragent/-/useragent-2.2.1.tgz", - "integrity": "sha1-z1k+9PLRdYdei7ZY6pLhik/QbY4=", - "dev": true, - "requires": { - "lru-cache": "2.2.x", - "tmp": "0.0.x" - }, - "dependencies": { - "lru-cache": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.2.4.tgz", - "integrity": "sha1-bGWGGb7PFAMdDQtZSxYELOTcBj0=", - "dev": true - } - } - }, - "util": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", - "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", - "dev": true, - "requires": { - "inherits": "2.0.3" - }, - "dependencies": { - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", - "dev": true - } - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", - "dev": true - }, - "utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", - "dev": true - }, - "uuid": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz", - "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==", - "dev": true - }, - "validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", - "dev": true, - "requires": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "validate-npm-package-name": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz", - "integrity": "sha1-X6kS2B630MdK/BQN5zF/DKffQ34=", - "dev": true, - "requires": { - "builtins": "^1.0.3" - } - }, - "vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", - "dev": true - }, - "verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", - "dev": true, - "requires": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, - "vm-browserify": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.0.tgz", - "integrity": "sha512-iq+S7vZJE60yejDYM0ek6zg308+UZsdtPExWP9VZoCFCz1zkJoXFnAX7aZfd/ZwrkidzdUZL0C/ryW+JwAiIGw==", - "dev": true - }, - "void-elements": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz", - "integrity": "sha1-wGavtYK7HLQSjWDqkjkulNXp2+w=", - "dev": true - }, - "watchpack": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.6.0.tgz", - "integrity": "sha512-i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA==", - "dev": true, - "requires": { - "chokidar": "^2.0.2", - "graceful-fs": "^4.1.2", - "neo-async": "^2.5.0" - } - }, - "wbuf": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", - "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", - "dev": true, - "requires": { - "minimalistic-assert": "^1.0.0" - } - }, - "webdriver-js-extender": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/webdriver-js-extender/-/webdriver-js-extender-2.1.0.tgz", - "integrity": "sha512-lcUKrjbBfCK6MNsh7xaY2UAUmZwe+/ib03AjVOpFobX4O7+83BUveSrLfU0Qsyb1DaKJdQRbuU+kM9aZ6QUhiQ==", - "dev": true, - "requires": { - "@types/selenium-webdriver": "^3.0.0", - "selenium-webdriver": "^3.0.1" - } - }, - "webpack": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.19.1.tgz", - "integrity": "sha512-j7Q/5QqZRqIFXJvC0E59ipLV5Hf6lAnS3ezC3I4HMUybwEDikQBVad5d+IpPtmaQPQArvgUZLXIN6lWijHBn4g==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.7.6", - "@webassemblyjs/helper-module-context": "1.7.6", - "@webassemblyjs/wasm-edit": "1.7.6", - "@webassemblyjs/wasm-parser": "1.7.6", - "acorn": "^5.6.2", - "acorn-dynamic-import": "^3.0.0", - "ajv": "^6.1.0", - "ajv-keywords": "^3.1.0", - "chrome-trace-event": "^1.0.0", - "enhanced-resolve": "^4.1.0", - "eslint-scope": "^4.0.0", - "json-parse-better-errors": "^1.0.2", - "loader-runner": "^2.3.0", - "loader-utils": "^1.1.0", - "memory-fs": "~0.4.1", - "micromatch": "^3.1.8", - "mkdirp": "~0.5.0", - "neo-async": "^2.5.0", - "node-libs-browser": "^2.0.0", - "schema-utils": "^0.4.4", - "tapable": "^1.1.0", - "uglifyjs-webpack-plugin": "^1.2.4", - "watchpack": "^1.5.0", - "webpack-sources": "^1.2.0" - }, - "dependencies": { - "schema-utils": { - "version": "0.4.7", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz", - "integrity": "sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==", - "dev": true, - "requires": { - "ajv": "^6.1.0", - "ajv-keywords": "^3.1.0" - } - } - } - }, - "webpack-core": { - "version": "0.6.9", - "resolved": "https://registry.npmjs.org/webpack-core/-/webpack-core-0.6.9.tgz", - "integrity": "sha1-/FcViMhVjad76e+23r3Fo7FyvcI=", - "dev": true, - "requires": { - "source-list-map": "~0.1.7", - "source-map": "~0.4.1" - }, - "dependencies": { - "source-list-map": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-0.1.8.tgz", - "integrity": "sha1-xVCyq1Qn9rPyH1r+rYjE9Vh7IQY=", - "dev": true - }, - "source-map": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", - "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", - "dev": true, - "requires": { - "amdefine": ">=0.0.4" - } - } - } - }, - "webpack-dev-middleware": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.3.0.tgz", - "integrity": "sha512-5C5gXtOo1I6+0AEg4UPglYEtu3Rai6l5IiO6aUu65scHXz29dc3oIWMiRwvcNLXgL0HwRkRxa9N02ZjFt4hY8w==", - "dev": true, - "requires": { - "loud-rejection": "^1.6.0", - "memory-fs": "~0.4.1", - "mime": "^2.3.1", - "range-parser": "^1.0.3", - "url-join": "^4.0.0", - "webpack-log": "^2.0.0" - }, - "dependencies": { - "mime": { - "version": "2.4.4", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.4.tgz", - "integrity": "sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA==", - "dev": true - } - } - }, - "webpack-dev-server": { - "version": "3.1.8", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.1.8.tgz", - "integrity": "sha512-c+tcJtDqnPdxCAzEEZKdIPmg3i5i7cAHe+B+0xFNK0BlCc2HF/unYccbU7xTgfGc5xxhCztCQzFmsqim+KhI+A==", - "dev": true, - "requires": { - "ansi-html": "0.0.7", - "bonjour": "^3.5.0", - "chokidar": "^2.0.0", - "compression": "^1.5.2", - "connect-history-api-fallback": "^1.3.0", - "debug": "^3.1.0", - "del": "^3.0.0", - "express": "^4.16.2", - "html-entities": "^1.2.0", - "http-proxy-middleware": "~0.18.0", - "import-local": "^2.0.0", - "internal-ip": "^3.0.1", - "ip": "^1.1.5", - "killable": "^1.0.0", - "loglevel": "^1.4.1", - "opn": "^5.1.0", - "portfinder": "^1.0.9", - "schema-utils": "^1.0.0", - "selfsigned": "^1.9.1", - "serve-index": "^1.7.2", - "sockjs": "0.3.19", - "sockjs-client": "1.1.5", - "spdy": "^3.4.1", - "strip-ansi": "^3.0.0", - "supports-color": "^5.1.0", - "webpack-dev-middleware": "3.2.0", - "webpack-log": "^2.0.0", - "yargs": "12.0.2" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "camelcase": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", - "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", - "dev": true - }, - "cliui": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz", - "integrity": "sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==", - "dev": true, - "requires": { - "string-width": "^2.1.1", - "strip-ansi": "^4.0.0", - "wrap-ansi": "^2.0.0" - }, - "dependencies": { - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - } - } - }, - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dev": true, - "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "debug": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", - "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "decamelize": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-2.0.0.tgz", - "integrity": "sha512-Ikpp5scV3MSYxY39ymh45ZLEecsTdv/Xj2CaQfI8RLMuwi7XvjX9H/fhraiSuU+C5w5NTDu4ZU72xNiZnurBPg==", - "dev": true, - "requires": { - "xregexp": "4.0.0" - } - }, - "execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", - "dev": true, - "requires": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - } - }, - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "dev": true, - "requires": { - "pump": "^3.0.0" - } - }, - "invert-kv": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz", - "integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "lcid": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz", - "integrity": "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==", - "dev": true, - "requires": { - "invert-kv": "^2.0.0" - } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "dev": true, - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "mime": { - "version": "2.4.4", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.4.tgz", - "integrity": "sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA==", - "dev": true - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "os-locale": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz", - "integrity": "sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==", - "dev": true, - "requires": { - "execa": "^1.0.0", - "lcid": "^2.0.0", - "mem": "^4.0.0" - } - }, - "p-limit": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz", - "integrity": "sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "dev": true, - "requires": { - "p-limit": "^2.0.0" - } - }, - "p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true - }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", - "dev": true - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - }, - "dependencies": { - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - } - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - }, - "webpack-dev-middleware": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.2.0.tgz", - "integrity": "sha512-YJLMF/96TpKXaEQwaLEo+Z4NDK8aV133ROF6xp9pe3gQoS7sxfpXh4Rv9eC+8vCvWfmDjRQaMSlRPbO+9G6jgA==", - "dev": true, - "requires": { - "loud-rejection": "^1.6.0", - "memory-fs": "~0.4.1", - "mime": "^2.3.1", - "path-is-absolute": "^1.0.0", - "range-parser": "^1.0.3", - "url-join": "^4.0.0", - "webpack-log": "^2.0.0" - } - }, - "which-module": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", - "dev": true - }, - "yargs": { - "version": "12.0.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.2.tgz", - "integrity": "sha512-e7SkEx6N6SIZ5c5H22RTZae61qtn3PYUE8JYbBFlK9sYmh3DMQ6E5ygtaG/2BW0JZi4WGgTR2IV5ChqlqrDGVQ==", - "dev": true, - "requires": { - "cliui": "^4.0.0", - "decamelize": "^2.0.0", - "find-up": "^3.0.0", - "get-caller-file": "^1.0.1", - "os-locale": "^3.0.0", - "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^2.0.0", - "which-module": "^2.0.0", - "y18n": "^3.2.1 || ^4.0.0", - "yargs-parser": "^10.1.0" - } - }, - "yargs-parser": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-10.1.0.tgz", - "integrity": "sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ==", - "dev": true, - "requires": { - "camelcase": "^4.1.0" - } - } - } - }, - "webpack-log": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", - "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", - "dev": true, - "requires": { - "ansi-colors": "^3.0.0", - "uuid": "^3.3.2" - } - }, - "webpack-merge": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-4.1.4.tgz", - "integrity": "sha512-TmSe1HZKeOPey3oy1Ov2iS3guIZjWvMT2BBJDzzT5jScHTjVC3mpjJofgueEzaEd6ibhxRDD6MIblDr8tzh8iQ==", - "dev": true, - "requires": { - "lodash": "^4.17.5" - } - }, - "webpack-sources": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.2.0.tgz", - "integrity": "sha512-9BZwxR85dNsjWz3blyxdOhTgtnQvv3OEs5xofI0wPYTwu5kaWxS08UuD1oI7WLBLpRO+ylf0ofnXLXWmGb2WMw==", - "dev": true, - "requires": { - "source-list-map": "^2.0.0", - "source-map": "~0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "webpack-subresource-integrity": { - "version": "1.1.0-rc.6", - "resolved": "https://registry.npmjs.org/webpack-subresource-integrity/-/webpack-subresource-integrity-1.1.0-rc.6.tgz", - "integrity": "sha512-Az7y8xTniNhaA0620AV1KPwWOqawurVVDzQSpPAeR5RwNbL91GoBSJAAo9cfd+GiFHwsS5bbHepBw1e6Hzxy4w==", - "dev": true, - "requires": { - "webpack-core": "^0.6.8" - } - }, - "websocket-driver": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.3.tgz", - "integrity": "sha512-bpxWlvbbB459Mlipc5GBzzZwhoZgGEZLuqPaR0INBGnPAY1vdBX6hPnoFXiw+3yWxDuHyQjO2oXTMyS8A5haFg==", - "dev": true, - "requires": { - "http-parser-js": ">=0.4.0 <0.4.11", - "safe-buffer": ">=5.1.0", - "websocket-extensions": ">=0.1.1" - } - }, - "websocket-extensions": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.3.tgz", - "integrity": "sha512-nqHUnMXmBzT0w570r2JpJxfiSD1IzoI+HGVdd3aZ0yNi3ngvQ4jv1dtHt5VGxfI2yj5yqImPhOK4vmIh2xMbGg==", - "dev": true - }, - "when": { - "version": "3.6.4", - "resolved": "https://registry.npmjs.org/when/-/when-3.6.4.tgz", - "integrity": "sha1-RztRfsFZ4rhQBUl6E5g/CVQS404=", - "dev": true - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - }, - "which-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", - "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=", - "dev": true, - "optional": true - }, - "wide-align": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", - "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", - "dev": true, - "optional": true, - "requires": { - "string-width": "^1.0.2 || 2" - } - }, - "wordwrap": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", - "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=", - "dev": true - }, - "worker-farm": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", - "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", - "dev": true, - "requires": { - "errno": "~0.1.7" - } - }, - "wrap-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", - "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", - "dev": true, - "requires": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1" - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "dev": true - }, - "ws": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-3.3.3.tgz", - "integrity": "sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA==", - "dev": true, - "requires": { - "async-limiter": "~1.0.0", - "safe-buffer": "~5.1.0", - "ultron": "~1.1.0" - } - }, - "xml2js": { - "version": "0.4.19", - "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.19.tgz", - "integrity": "sha512-esZnJZJOiJR9wWKMyuvSE1y6Dq5LCuJanqhxslH2bxM6duahNZ+HMpCLhBQGZkbX6xRf8x1Y2eJlgt2q3qo49Q==", - "dev": true, - "requires": { - "sax": ">=0.6.0", - "xmlbuilder": "~9.0.1" - }, - "dependencies": { - "sax": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", - "dev": true - } - } - }, - "xmlbuilder": { - "version": "9.0.7", - "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz", - "integrity": "sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0=", - "dev": true - }, - "xmlhttprequest-ssl": { - "version": "1.5.5", - "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz", - "integrity": "sha1-wodrBhaKrcQOV9l+gRkayPQ5iz4=", - "dev": true - }, - "xregexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-4.0.0.tgz", - "integrity": "sha512-PHyM+sQouu7xspQQwELlGwwd05mXUFqwFYfqPO0cC7x4fxyHnnuetmQr6CjJiafIDoH4MogHb9dOoJzR/Y4rFg==", - "dev": true - }, - "xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "dev": true - }, - "y18n": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", - "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", - "dev": true - }, - "yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", - "dev": true - }, - "yargs": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.0.tgz", - "integrity": "sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg=", - "dev": true, - "optional": true, - "requires": { - "camelcase": "^3.0.0", - "cliui": "^3.2.0", - "decamelize": "^1.1.1", - "get-caller-file": "^1.0.1", - "os-locale": "^1.4.0", - "read-pkg-up": "^1.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^1.0.2", - "which-module": "^1.0.0", - "y18n": "^3.2.1", - "yargs-parser": "^5.0.0" - }, - "dependencies": { - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", - "dev": true, - "optional": true - }, - "y18n": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", - "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=", - "dev": true, - "optional": true - } - } - }, - "yargs-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0.tgz", - "integrity": "sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo=", - "dev": true, - "optional": true, - "requires": { - "camelcase": "^3.0.0" - }, - "dependencies": { - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", - "dev": true, - "optional": true - } - } - }, - "yeast": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz", - "integrity": "sha1-AI4G2AlDIMNy28L47XagymyKxBk=", - "dev": true - }, - "yn": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/yn/-/yn-2.0.0.tgz", - "integrity": "sha1-5a2ryKz0CPY4X8dklWhMiOavaJo=", - "dev": true - }, - "zone.js": { - "version": "0.8.29", - "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.8.29.tgz", - "integrity": "sha512-mla2acNCMkWXBD+c+yeUrBUrzOxYMNFdQ6FGfigGGtEVBPJx07BQeJekjt9DmH1FtZek4E9rE1eRR9qQpxACOQ==" - } - } -} diff --git a/ecomp-sdk/epsdk-app-os/ngapp/src/app/pages/pages-routing.module.ts b/ecomp-sdk/epsdk-app-os/ngapp/src/app/pages/pages-routing.module.ts index c0577077..ba55a0f4 100644 --- a/ecomp-sdk/epsdk-app-os/ngapp/src/app/pages/pages-routing.module.ts +++ b/ecomp-sdk/epsdk-app-os/ngapp/src/app/pages/pages-routing.module.ts @@ -6,6 +6,7 @@ import { CacheAdminComponent } from './admin/cache-admin/cache-admin.component'; import { ReportComponent } from './analytics/Report_List/Report/report.component'; import { RunReportComponent } from './analytics/Report_List/Report/run/run-report/run-report.component'; import { HeaderTabsWrapperComponent } from './analytics/Report_List/header-tabs-wrapper-component/header-tabs-wrapper.component'; +import { RunReportFormFieldsComponent } from './analytics/Report_List/Report/run/run-report-form-fields/run-report-form-fields.component'; @@ -16,7 +17,7 @@ const routes: Routes = [ {path: 'report-list', component:ReportComponent}, {path: 'create', component: HeaderTabsWrapperComponent}, {path: 'reports/:reportMode/:reportId', component: HeaderTabsWrapperComponent}, - {path: 'run/:reportId', component: RunReportComponent} + {path: 'run/:reportId', component: RunReportFormFieldsComponent} ]; @NgModule({ diff --git a/ecomp-sdk/epsdk-app-os/ngapp/src/environments/environment.ts b/ecomp-sdk/epsdk-app-os/ngapp/src/environments/environment.ts index eecaec4a..f728a8ff 100644 --- a/ecomp-sdk/epsdk-app-os/ngapp/src/environments/environment.ts +++ b/ecomp-sdk/epsdk-app-os/ngapp/src/environments/environment.ts @@ -4,27 +4,27 @@ export const environment = { production: false, - baseUrl: 'http://www.sdk.onap.org:8080/epsdk-app-os/', - roleFunctionList: 'http://www.sdk.onap.org:8080/epsdk-app-os/get_role_functions', - addRoleFunction: 'http://www.sdk.onap.org:8080/epsdk-app-os/role_function_list/addRoleFunction', - usageList: 'http://www.sdk.onap.org:8080/epsdk-app-os/get_usage_list', - cachedRegions: 'http://www.sdk.onap.org:8080/epsdk-app-os/get_regions', - getRole:'http://www.sdk.onap.org:8080/epsdk-app-os/get_role', - getFnMenuItems:'http://www.sdk.onap.org:8080/epsdk-app-os/admin_fn_menu', - getUserPagination:'http://www.sdk.onap.org:8080/epsdk-app-os/get_user_pagination', - deleteRole:'http://www.sdk.onap.org:8080/epsdk-app-os/role_list/removeRole', - getTopMenu:'http://www.sdk.onap.org:8080/epsdk-app-os/get_topMenuInfo', - deleteRoleFunction:'http://www.sdk.onap.org:8080/epsdk-app-os/role_function_list/removeRoleFunction', - deleteMenu:'http://www.sdk.onap.org:8080/epsdk-app-os/admin_fn_menu/removeMenuItem.htm', - getRegion:'http://www.sdk.onap.org:8080/epsdk-app-os/jcs_admin/showRegionDetails', - postSearch:'http://www.sdk.onap.org:8080/epsdk-app-os/post_search/search', - importSearch:'http://www.sdk.onap.org:8080/epsdk-app-os/post_search/process', - getPostProfile:'http://www.sdk.onap.org:8080/epsdk-app-os/post_search_sample', - getSelfProfile:'http://www.sdk.onap.org:8080/epsdk-app-os/get_self_profile', - removeUserRole:'http://www.sdk.onap.org:8080/epsdk-app-os/profile/removeRole', - saveProfile :'http://www.sdk.onap.org:8080/epsdk-app-os/profile/saveProfile', - getFunctionalMenuStaticDetail :'http:/www.sdk.onap.org:8080/epsdk-app-att/get_topMenuInfo', - getLeftMenu :'http://www.sdk.onap.org:8080/epsdk-app-att/get_menu' + baseUrl: 'http://localhost:8080/epsdk-app-os/', + roleFunctionList: 'http://localhost:8080/epsdk-app-os/get_role_functions', + addRoleFunction: 'http://localhost:8080/epsdk-app-os/role_function_list/addRoleFunction', + usageList: 'http://localhost:8080/epsdk-app-os/get_usage_list', + cachedRegions: 'http://localhost:8080/epsdk-app-os/get_regions', + getRole:'http://localhost:8080/epsdk-app-os/get_role', + getFnMenuItems:'http://localhost:8080/epsdk-app-os/admin_fn_menu', + getUserPagination:'http://localhost:8080/epsdk-app-os/get_user_pagination', + deleteRole:'http://localhost:8080/epsdk-app-os/role_list/removeRole', + getTopMenu:'http://localhost:8080/epsdk-app-os/get_topMenuInfo', + deleteRoleFunction:'http://localhost:8080/epsdk-app-os/role_function_list/removeRoleFunction', + deleteMenu:'http://localhost:8080/epsdk-app-os/admin_fn_menu/removeMenuItem.htm', + getRegion:'http://localhost:8080/epsdk-app-os/jcs_admin/showRegionDetails', + postSearch:'http://localhost:8080/epsdk-app-os/post_search/search', + importSearch:'http://localhost:8080/epsdk-app-os/post_search/process', + getPostProfile:'http://localhost:8080/epsdk-app-os/post_search_sample', + getSelfProfile:'http://localhost:8080/epsdk-app-os/get_self_profile', + removeUserRole:'http://localhost:8080/epsdk-app-os/profile/removeRole', + saveProfile :'http://localhost:8080/epsdk-app-os/profile/saveProfile', + getFunctionalMenuStaticDetail :'http:/localhost:8080/epsdk-app-os/get_topMenuInfo', + getLeftMenu :'http://localhost:8080/epsdk-app-os/get_menu' }; /* diff --git a/ecomp-sdk/epsdk-app-os/pom.xml b/ecomp-sdk/epsdk-app-os/pom.xml index 74981f8e..cfdcb244 100644 --- a/ecomp-sdk/epsdk-app-os/pom.xml +++ b/ecomp-sdk/epsdk-app-os/pom.xml @@ -154,7 +154,7 @@ - + --> com.github.eirslett frontend-maven-plugin @@ -197,7 +197,6 @@ - --> maven-resources-plugin 2.5 diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/column-list/column-list.component.html b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/column-list/column-list.component.html index 8d2bafb2..fedff628 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/column-list/column-list.component.html +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/column-list/column-list.component.html @@ -8,11 +8,14 @@

{{EditColmessage}}

+ + +
@@ -23,6 +26,10 @@
+ + + +
@@ -155,10 +162,10 @@

- +
@@ -172,12 +179,14 @@
+
- diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/column-list/column-list.component.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/column-list/column-list.component.ts index c1b79ba0..5399d792 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/column-list/column-list.component.ts +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/column-list/column-list.component.ts @@ -1,4 +1,4 @@ -import { AfterViewInit, Component, OnInit, ViewChild, SimpleChange } from '@angular/core'; +import { AfterViewInit, Component, OnInit, ViewChild, SimpleChange, Input } from '@angular/core'; import { MatPaginator } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTable } from '@angular/material/table'; @@ -17,6 +17,8 @@ export class ColumnListComponent implements OnInit { @ViewChild(MatSort, {static: false} as any) sort: MatSort; @ViewChild(MatTable, {static: false} as any) table: MatTable; + @Input("reportId") reportId : number; + dataSource: DataTableDataSource; finalGetObj : {}; @@ -52,8 +54,8 @@ export class ColumnListComponent implements OnInit { TotalColListObj : {}; TotalColListObjArray : {}[]; finalPOSTObj : {}; - - + isDisabled: boolean; + showConfirmButton: boolean; /** Columns displayed in the table. Columns IDs can be added, removed, or reordered. */ displayedColumns = ['no', 'id', 'name', 'edit']; @@ -64,8 +66,18 @@ export class ColumnListComponent implements OnInit { EditColmessage: string; EditColstatus: string; + showEditDrillDownPage : boolean; + drillDownReportId : string; + drilldownParams : string; + drilldownType : string; + drillDownObj : {}; + checkCnt : number; + constructor(private _http : HttpClient, private _columnService : ColumnService){ + this.showEditDrillDownPage = false; + this.showConfirmButton = false; + this.dataSource = new DataTableDataSource(); this.finalGetObj = new Object(); @@ -74,6 +86,8 @@ export class ColumnListComponent implements OnInit { this.URLListObjArray = new Array(); this.TotalColListObjArray = new Array(); this.finalPOSTObj = new Object(); + this.drillDownObj = new Object(); + this.checkCnt = 0; } @@ -91,6 +105,7 @@ export class ColumnListComponent implements OnInit { this.finalGetObj[k]["edit"] = ""; this.finalObjArr.push(this.finalGetObj[k]); + //console.log(this.finalObjArr); k++; @@ -110,10 +125,19 @@ export class ColumnListComponent implements OnInit { this.showDialog = false; this.showSaveColDialog =false; + } - ngAfterViewInit() { - + + ngDoCheck() + { + this.drillDownReportId = this.drilldownURL; + this.drillDownObj["drillDownUrl"] = this.drilldownURL; + this.drillDownObj["drillDownParams"] = this.drilldownParams; + this.drillDownObj["drillDownType"] = this.drilldownType; + + + } @@ -145,6 +169,9 @@ export class ColumnListComponent implements OnInit { this.displayHeaderAlignment = (this.finalEditRowGetObj["displayHeaderAlignment"] == null ? "" : this.finalEditRowGetObj["displayHeaderAlignment"]); this.sortable = this.finalEditRowGetObj["sortable"]; this.drilldownURL = this.finalEditRowGetObj["drilldownURL"]; + this.drilldownParams = this.finalEditRowGetObj["drilldownParams"]; + this.drilldownType = this.finalEditRowGetObj["drilldownType"]; + this. displayTotal = (this.finalEditRowGetObj["displayTotal"] == null ? "" : this.finalEditRowGetObj["displayTotal"]); @@ -183,7 +210,6 @@ export class ColumnListComponent implements OnInit { this.message = "Report Column - Edit"; this.showDialog = !this.showDialog; this.closable = true; - }); @@ -192,19 +218,67 @@ export class ColumnListComponent implements OnInit { close() { - this.showDialog = !this.showDialog; - this.closable = false; + this._columnService.getColumnList() + .subscribe((response) => { + //console.log(response); + + this.finalObjArr = []; + + this.finalGetObj = response; + + let k=0; + while(this.finalGetObj[k]) + { + this.finalGetObj[k]["no"] = k+1; + this.finalGetObj[k]["edit"] = ""; + + this.finalObjArr.push(this.finalGetObj[k]); + + + //console.log(this.finalObjArr); + k++; + } + + + + + this.dataSource.data = this.finalObjArr; + + this.dataSource.sort = this.sort; + this.dataSource.paginator = this.paginator; + this.table.dataSource = this.dataSource; + this.dataSource.data = this.finalObjArr; + //this.dataSource.data = [{id:"1", no:1, name:"1", edit:""}]; + }); + this.showDialog = false; this.showSaveColDialog =false; + + // this.showDialog = !this.showDialog; + this.closable = false; + + // this.showSaveColDialog =false; + this.showEditDrillDownPage = false; this.Colclosable = false; + this.showConfirmButton = false; + } + + complete() + { + this.showEditDrillDownPage = !this.showEditDrillDownPage; + this.showConfirmButton = false; + } + + onCompleted(arr : any) + { + console.log(arr); } save() { - this.showDialog = !this.showDialog; - this.closable = true; + this.finalPOSTObj["tabId"] = "ColEdit"; this.finalPOSTObj["tabName"] = "Column Edit"; @@ -247,17 +321,20 @@ export class ColumnListComponent implements OnInit { this.EditColstatus = "Success!"; this.EditColmessage = "Your change has been saved! Row definition is updated."; this.showSaveColDialog = !this.showSaveColDialog; + this.Colclosable = true; + } else { this.EditColstatus = "Failure!"; this.EditColmessage = "Row definition could not be updated."; this.showSaveColDialog = !this.showSaveColDialog; + this.Colclosable = true; } - + this.showEditDrillDownPage = false; }); @@ -265,4 +342,11 @@ export class ColumnListComponent implements OnInit { } + drillDownLinkPage() + { + this.showEditDrillDownPage = !this.showEditDrillDownPage; + this.showConfirmButton = true; + } + + } diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/column.service.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/column.service.ts index 2e44bbf5..46e83b08 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/column.service.ts +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/column.service.ts @@ -30,6 +30,18 @@ export class ColumnService { return this._http.get(environment.baseUrl + "report/wizard/retrieveTotalForTheColList"); } + getDrillDownReportColumnDetails(drillDownReportId : string) : Observable + { + return this._http.get(environment.baseUrl + "report/wizard/list_child_report_ff/" + drillDownReportId); + // return this._http.get(environment.baseUrl + "report/wizard/list_child_report_ff/" + reportId); + } + + + getValueOfColumnDetails(reportId : number) + { + return this._http.get(environment.baseUrl + "report/wizard/list_child_report_col/" + reportId); + } + postColumnChanges(finalPOSTObj : any) : Observable { diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/columns-edit-component/columns-edit.component.css b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/columns-edit-component/columns-edit.component.css index 61137ad2..6cc50995 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/columns-edit-component/columns-edit.component.css +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/columns-edit-component/columns-edit.component.css @@ -11833,7 +11833,7 @@ i, em { } .card-header{ - height: 50px; + height: 30px; } .card-body{ @@ -11878,6 +11878,7 @@ i, em { top: 20px; margin-right: auto; margin-left: auto; + margin-top: 50px; height: 690px; width: 1024px; background-color: #fff; diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/columns-edit-component/edit-drill-down-link/edit-drill-down-link.component.css b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/columns-edit-component/edit-drill-down-link/edit-drill-down-link.component.css new file mode 100644 index 00000000..351f6acb --- /dev/null +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/columns-edit-component/edit-drill-down-link/edit-drill-down-link.component.css @@ -0,0 +1,9802 @@ + + +.lds-ring { + display: inline-block; + position: relative; + width: 64px; + height: 64px; + } + .lds-ring div { + box-sizing: border-box; + display: block; + position: absolute; + width: 80px; + height: 80px; + margin: 6px; + margin-top: -10px; + border: 10px solid #006496; + border-radius: 80%; + animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite; + border-color: #006496 transparent transparent transparent; + } + .lds-ring div:nth-child(1) { + animation-delay: -0.45s; + } + .lds-ring div:nth-child(2) { + animation-delay: -0.3s; + } + .lds-ring div:nth-child(3) { + animation-delay: -0.15s; + } + @keyframes lds-ring { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } + } + + + mat-button-toggle{ + display: block; + width: 400px; + border-radius: 5px; + } + + label{ + size: 70px; + } + + input { + width: 400px; + height: 20px; + } + + .Heading{ + font-size: 45px; + } + + .stdForm{ + margin-left: 20px; + } + + .field-group { + position: relative; + display: block; + width: 600px; + height: 20px; + + } + + label + .field-group, label + .input-append, label + .row, label + .row-nowrap, label + .form-row { + margin-top: 5px; + } + + textarea { + display: block; + width: 400px; + max-width: 50%; + padding: 15px; + } + + select{ + display: block; + width: 600px; + + padding: 15px; + background-color: #e6e6e61a + } + + .webform-component-my-select select { + height: 200px; + } + + .checkbox .skin { + background-color: #fff; + border: 1px solid #d2d2d2; + border-radius: 3px; + display: inline-block; + height: 24px; + width: 24px; + position: absolute; + left: 0; + top: 0; + } + + i, em { + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; + } + + + .b2b-horizontal-table ::-webkit-scrollbar { + height: 10px; } + + .b2b-horizontal-table ::-webkit-scrollbar-thumb { + background: #666666; + border-radius: 5px; } + + .b2b-horizontal-table .b2b-frozen-col { + font-size: 5px; + font-weight: normal; + font-style: italic; } + /* + .b2b-horizontal-table .b2b-horizontal-table-inner-container { + overflow-x: scroll; } */ + + .b2b-horizontal-table .b2b-horizontal-table-column-info { + text-align: center; } + + .b2b-horizontal-table .b2b-horizontal-table-legend div[b2b-flyout-toggler] { + color: #0568ae; + cursor: pointer; } + + .b2b-horizontal-table .b2b-horizontal-table-legend .b2b-frozen-cell { + width: 16px; + height: 16px; + background-color: #F2F2F2; + display: inline-block; + margin-right: 10px; } + + .b2b-horizontal-table .b2b-horizontal-table-arrows { + margin-bottom: 20px; } + .b2b-horizontal-table .b2b-horizontal-table-arrows .b2b-disabled-text { + color: #767676; } + .b2b-horizontal-table .b2b-horizontal-table-arrows .b2b-next-link { + padding-right: 15px; } + .b2b-horizontal-table .b2b-horizontal-table-arrows .b2b-prev-link { + padding-left: 15px; } + + @-moz-document url-prefix() { + .b2b-horizontal-table td:first-child { + border-top: none; } } + * { + box-sizing: border-box; } + + :root { + -ms-overflow-style: -ms-autohiding-scrollbar; + overflow-y: scroll; + -ms-text-size-adjust: 100%; + -webkit-text-size-adjust: 100%; + box-sizing: border-box; + font: 0.625pc/1.5 sans-serif; + text-rendering: optimizeLegibility; } + + html { + overflow-y: scroll; + -webkit-overflow-scrolling: touch; + height: 100%; + position: relative; } + + h1, + h2, + h3, + h4, + h5, + p, + blockquote, + figure, + ol, + ul { + margin: 0; + padding: 0; } + + /* a:focus { + outline: thin dotted #191919; + } */ + sub, + sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: top; } + + sup { + top: .75em; + display: inline-block; } + + sub { + bottom: -0.25em; } + + img { + max-width: 100%; + height: auto; + vertical-align: middle; + border: 0; + -ms-interpolation-mode: bicubic; } + + .img-no-rwd { + max-width: inherit !important; } + + svg { + display: inline-block; } + + .responsive-img { + width: 100%; + height: auto; } + + button, + input, + select, + textarea { + margin: 0; + font-size: 100%; + vertical-align: middle; } + + ::-moz-focus-inner { + padding: 0; + border: 0; } + + button, + html input[type="button"], + input[type="reset"], + input[type="submit"] { + appearance: button; + cursor: pointer; } + + label, + select, + button, + input[type="button"], + input[type="reset"], + input[type="submit"], + input[type="radio"], + input[type="checkbox"] { + cursor: pointer; } + + input[type=search] { + -webkit-appearance: textfield; } + + input[type=search]:-webkit-search-cancel-button, + input[type=search]:-webkit-search-decoration { + -webkit-appearance: none; } + + + + select { + -moz-appearance: none; + -webkit-appearance: none; } + + [aria-busy=true] { + cursor: progress; } + + [aria-controls] { + cursor: pointer; } + + body { + background-color: #ffffff; + color: #191919; + font-family: "Omnes-ECOMP-W02", Arial; + /* font-size: 1.6rem; + line-height: 2rem;*/ + margin: 0; + position: relative; + width: 100%; + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; } + + small { + font-size: 1.6rem; } + + .container { + margin: 0 auto; + padding: 0; } + + .tooltip { + display: inline-block; + height: 20px; + margin: 1px 0 0 7px; + vertical-align: middle; } + + .tooltip-wrapper { + display: none; } + + + + /* TODO: Build a reference page for these classes */ + .font-regular { + font-family: "Omnes-ECOMP-W02", Arial !important; } + + .font-light { + font-family: "Omnes-ECOMP-W02-Light", Arial !important; } + + .font-italic { + font-family: "Omnes-ECOMP-W02-Italic", Arial !important; } + + .font-light-italic { + font-family: "Omnes-ECOMP-W02-Light-Italic", Arial !important; } + + .font-medium { + font-family: "Omnes-ECOMP-W02-Medium", Arial !important; } + + .font-medium-italic { + font-family: "Omnes-ECOMP-W02-Medium-Italic",Arial !important; } + + .font-reset { + font-style: normal; + font-variant: normal; + font-weight: normal; + text-transform: none; } + + .visible-phone { + display: none !important; } + + .visible-tablet { + display: none !important; } + + .hidden-desktop { + display: none !important; } + + .visible-desktop { + display: inherit !important; } + + .row, + .row-nowrap { + margin-left: 0; } + + .row:before, + .row-nowrap:before, + .row:after, + .row-nowrap:after { + display: table; + content: ""; + line-height: 0; } + + .row:after, + .row-nowrap:after { + clear: both; } + + .row:before, + .row-nowrap:before, + .row:after, + .row-nowrap:after { + display: table; + content: ""; + line-height: 0; } + + .row:after, + .row-nowrap:after { + clear: both; } + + .row, + .row-nowrap { + display: flex; } + + .row > [class*="span"], + .row-nowrap > [class*="span"] { + float: left; + margin-right: 14px; + margin-right: 1.40845%\9; } + + .row > [class*="span"]:last-child, + .row-nowrap > [class*="span"]:last-child { + margin-right: 0; } + + .row > [class*="span"].centered, + .row-nowrap > [class*="span"].centered { + margin-left: auto !important; + margin-right: auto !important; } + + .row.no-flex, + .row-nowrap.no-flex { + display: block; } + + .row.no-flex > [class*="span"], + .row-nowrap.no-flex > [class*="span"] { + margin-right: 1.408450704225352%; } + + .row.no-flex > [class*="span"]:last-child, + .row-nowrap.no-flex > [class*="span"]:last-child { + margin-right: 0; } + + .row.flex-justify, + .row-nowrap.flex-justify { + justify-content: space-between; } + + .row.flex-justify > [class*="span"], + .row-nowrap.flex-justify > [class*="span"] { + flex: 1 1 0; } + + .row.flex-justify > .flex-col, + .row-nowrap.flex-justify > .flex-col { + margin-right: 14px; + margin-right: 1.40845%\9; } + + .row.flex-wrap, + .row-nowrap.flex-wrap { + flex-wrap: wrap; } + + .align-items-top { + align-items: flex-start; } + + .align-items-center { + align-items: center; } + + .align-items-bottom { + align-items: flex-end; } + + .align-self-top { + align-self: flex-start; } + + .align-self-center { + align-self: center; } + + .align-self-bottom { + align-self: flex-end; } + + .row .fixed-230 { + flex: 0; + display: block; + width: 230px; + vertical-align: top; + min-width: 230px; + background-color: #efefef; } + + .row .fluid-space { + flex: 1 1 0; + display: block; + vertical-align: top; + padding-left: 0; + padding-right: 20px; + width: 100%; } + + .row .fixed-230 + .fluid-space { + padding-left: 20px; + padding-right: 20px; } + + .row .fluid-space:last-child { + padding-right: 0; } + + .span1 { + width: 7.042253521126761%; } + + .span2 { + width: 15.49295774647887%; } + + .span3 { + width: 23.94366197183099%; } + + .span4 { + width: 32.3943661971831%; } + + .span5 { + width: 40.84507042253521%; } + + .span6 { + width: 49.29577464788733%; } + + .span7 { + width: 57.74647887323944%; } + + .span8 { + width: 66.19718309859155%; } + + .span9 { + width: 74.64788732394367%; } + + .span10 { + width: 83.09859154929578%; } + + .span11 { + width: 91.54929577464789%; } + + .span12 { + width: 100%; } + + .offset1 { + margin-left: 8.450704225352113%; } + + .offset2 { + margin-left: 16.90140845070423%; } + + .offset3 { + margin-left: 25.35211267605634%; } + + .offset4 { + margin-left: 33.8028169%; } + + .offset5 { + margin-left: 42.25352113%; } + + .offset6 { + margin-left: 50.70422535%; } + + .offset7 { + margin-left: 59.15492958%; } + + .offset8 { + margin-left: 67.6056338%; } + + .offset9 { + margin-left: 76.05633803%; } + + .offset10 { + margin-left: 84.50704225%; } + + .offset11 { + margin-left: 92.95774648%; } + + .align-center { + margin: 0 auto; + text-align: center; } + + [class*="span"].align-center { + margin: 0 auto !important; + float: none; } + + .align-left .container { + padding-left: 0 !important; + margin: 0 !important; } + + /* BEGIN RESPONSIVE-4.LESS ************** */ + @media (min-width: 1025px) { + .row > [class*="span"], + .row-nowrap > [class*="span"] { + margin-right: 20px; + margin-right: 1.487301587301587%\9; } + .container { + padding-left: 20px; + padding-right: 20px; + max-width: 1260px; } + /* 1col = 6.878306878306879 */ + /* 1colgutter = 1.587301587301587 */ + .span0 { + display: none; } + .span1 { + width: 6.878306878306879%; } + .span2 { + width: 15.34391534391534%; } + .span3 { + width: 23.80952380952381%; } + .span4 { + width: 32.27513227513228%; } + .span5 { + width: 40.74074074074074%; } + .span6 { + width: 49.20634920634921%; } + .span7 { + width: 57.67195767195767%; } + .span8 { + width: 66.13756613756614%; } + .span9 { + width: 74.60317460317461%; } + .span10 { + width: 83.06878306878308%; } + .span11 { + width: 91.53439153439154%; } + .span12 { + width: 100%; } + .offset1 { + margin-left: 8.465608465608466%; } + .offset2 { + margin-left: 16.93121693121693%; } + .offset3 { + margin-left: 25.3968253968254%; } + .offset4 { + margin-left: 33.86243386%; } + .offset5 { + margin-left: 42.32804233%; } + .offset6 { + margin-left: 50.79365079%; } + .offset7 { + margin-left: 59.25925926%; } + .offset8 { + margin-left: 67.72486772%; } + .offset9 { + margin-left: 76.19047619%; } + .offset10 { + margin-left: 84.65608466%; } + .offset11 { + margin-left: 93.12169312%; } + .tooltip-size-control { + position: relative; + width: 400px; } + .thumbnails > li { + margin-left: 1.40845070422535%; } + .row .thumbnails { + margin-left: 0; } } + + /* END RESPONSIVE-4.LESS ****************** */ + /* BEGIN RESPONSIVE-3.LESS ******************* */ + @media (min-width: 768px) and (max-width: 1024px) { + .hidden-desktop { + display: inherit !important; } + .visible-desktop { + display: none !important; } + .visible-tablet { + display: inherit !important; } + .hidden-tablet { + display: none !important; } + .container { + width: 100%; + margin: 0 auto; + padding-left: 20px; + padding-right: 20px; } + .span0-md { + display: none; } + .span1-md { + width: 7.042253521126761%; } + .span2-md { + width: 15.49295774647887%; } + .span3-md { + width: 23.94366197183099%; } + .span4-md { + width: 32.3943661971831%; } + .span5-md { + width: 40.84507042253521%; } + .span6-md { + width: 49.29577464788733%; } + .span7-md { + width: 57.74647887323944%; } + .span8-md { + width: 66.19718309859155%; } + .span9-md { + width: 74.64788732394367%; } + .span10-md { + width: 83.09859154929578%; } + .span11-md { + width: 91.54929577464789%; } + .span12-md { + width: 100%; } + .offset1-md { + margin-left: 8.450704225352113%; } + .offset2-md { + margin-left: 16.90140845070423%; } + .offset3-md { + margin-left: 25.35211267605634%; } + .offset4-md { + margin-left: 33.8028169%; } + .offset5-md { + margin-left: 42.25352113%; } + .offset6-md { + margin-left: 50.70422535%; } + .offset7-md { + margin-left: 59.15492958%; } + .offset8-md { + margin-left: 67.6056338%; } + .offset9-md { + margin-left: 76.05633803%; } + .offset10-md { + margin-left: 84.50704225%; } + .offset11-md { + margin-left: 92.95774648%; } + .tooltip-size-control { + position: relative; + width: 300px; } } + + /* END RESPONSIVE-3.LESS ******************* */ + /* BEGIN RESPONSIVE-2.LESS *************** */ + @media (max-width: 767px) { + .hidden-desktop { + display: inherit !important; } + .visible-desktop { + display: none !important; } + .visible-phone { + display: inherit !important; } + .visible-tablet { + display: inherit !important; } + .hidden-phone { + display: none !important; } + .hidden-tablet { + display: none !important; } + .container { + width: auto; + padding-left: 15px; + padding-right: 15px; } + /*.row{ display:block; }*/ + .row > [class*="span"] { + float: none; + margin-left: 0; + margin-right: 0; + width: 100%; } + .row { + display: block; } + .row.flex > .flex-col, + .row-nowrap.flex > .flex-col { + margin-right: 0; } + .row .fixed-230 { + display: block; + width: 100%; } + .row .fluid-space { + display: block; + padding-left: 0; + padding-right: 0; + width: auto; } + .row .fluid-space + .fixed-230 { + padding-left: 0; } + .row .fluid-space:last-child { + padding-right: 0; } + .span0-sm { + display: none; } + .span1-sm { + width: 7.042253521126761%; } + .span2-sm { + width: 15.49295774647887%; } + .span3-sm { + width: 23.94366197183099%; } + .span4-sm { + width: 32.3943661971831%; } + .span5-sm { + width: 40.84507042253521%; } + .span6-sm { + width: 49.29577464788733%; } + .span7-sm { + width: 57.74647887323944%; } + .span8-sm { + width: 66.19718309859155%; } + .span9-sm { + width: 74.64788732394367%; } + .span10-sm { + width: 83.09859154929578%; } + .span11-sm { + width: 91.54929577464789%; } + .span12-sm { + width: 100%; } + .offset1-sm { + margin-left: 8.450704225352113%; } + .offset2-sm { + margin-left: 16.90140845070423%; } + .offset3-sm { + margin-left: 25.35211267605634%; } + .offset4-sm { + margin-left: 33.8028169%; } + .offset5-sm { + margin-left: 42.25352113%; } + .offset6-sm { + margin-left: 50.70422535%; } + .offset7-sm { + margin-left: 59.15492958%; } + .offset8-sm { + margin-left: 67.6056338%; } + .offset9-sm { + margin-left: 76.05633803%; } + .offset10-sm { + margin-left: 84.50704225%; } + .offset11-sm { + margin-left: 92.95774648%; } + input { + padding: 8px 15px 8px 15px; } + .field-group input.input-emphasized[type="search"] + .reset-field:after { + top: 14px; } + .field-group input.input-emphasized[type="search"] + .reset-field { + height: 46px; + top: 1px; } + .marquee { + margin-bottom: 30px; } + .marquee .blur-overlay { + border-radius: 0; + position: absolute; + bottom: 0; + left: 0; + width: 100%; + margin: 0; + padding: 34px 15px 30px; } + .marquee + div { + margin-top: 30px; } + .marquee h1 { + font-size: 1.8rem; + letter-spacing: -0.035px; } + .marquee .lead { + font-size: 3.0rem; + line-height: 3.6rem; + margin-bottom: 0; } + .marquee p:not(.lead) { + font-family: "Omnes-ECOMP-W02-Light", Arial; + font-size: 1.8rem; + margin-bottom: 0; } + .marquee .btn-fullwidth { + margin-top: 10px; + width: 100%; + float: none; } + .tooltip-size-control { + width: 100%; } + .table-wrapper, + .accordion-table-layout { + margin-left: -15px; + margin-right: -15px; } + .table-wrapper caption { + padding-left: 15px; } } + + @media (max-width: 480px) { + .span1-xsm { + width: 7.042253521126761%; } + .span2-xsm { + width: 15.49295774647887%; } + .span3-xsm { + width: 23.94366197183099%; } + .span4-xsm { + width: 32.3943661971831%; } + .span5-xsm { + width: 40.84507042253521%; } + .span6-xsm { + width: 49.29577464788733%; } + .span7-xsm { + width: 57.74647887323944%; } + .span8-xsm { + width: 66.19718309859155%; } + .span9-xsm { + width: 74.64788732394367%; } + .span10-xsm { + width: 83.09859154929578%; } + .span11-xsm { + width: 91.54929577464789%; } + .span12-xsm { + width: 100%; } + .offset1-xsm { + margin-left: 8.450704225352113%; } + .offset2-xsm { + margin-left: 16.90140845070423%; } + .offset3-xsm { + margin-left: 25.35211267605634%; } + .offset4-xsm { + margin-left: 33.8028169%; } + .offset5-xsm { + margin-left: 42.25352113%; } + .offset6-xsm { + margin-left: 50.70422535%; } + .offset7-xsm { + margin-left: 59.15492958%; } + .offset8-xsm { + margin-left: 67.6056338%; } + .offset9-xsm { + margin-left: 76.05633803%; } + .offset10-xsm { + margin-left: 84.50704225%; } + .offset11-xsm { + margin-left: 92.95774648%; } } + + /* END RESPONSIVE-2.LESS ******************* */ + /* BEGIN RESPONSIVE-1.LESS ************** */ + .xxxxxxxx-begin-responsive-480px.less { + /* placeholder */ } + + @media (max-width: 480px) { + .hidden-desktop { + display: inherit !important; } + .hidden-tablet { + display: inherit !important; } + .hidden-phone { + display: none !important; } + .visible-desktop { + display: none !important; } + .visible-tablet { + display: none !important; } + .visible-phone { + display: inherit !important; } + .container { + width: auto; + padding-left: 15px; + padding-right: 15px; } } + + [class*="icon-primary-"], + .nav-links a:after, + .bellyband-link a:after, + .breadcrumb > li:after, + .checkbox input:checked + .skin:after, + .checkbox input.indeterminate + .skin:after, + .checkbox input:indeterminate + .skin:after, + .selectWrap.large:before, + .form-row.error .error-msg:before, + .close:before, + .reset-field:before, + .cssIcon-globe:before, + .selectWrap:after { + color: #0568ae; + left: 6px; + top: -3px; + width: 2px; + height: 3px; + border: solid white; + border-width: 0 3px 3px 0; + -webkit-transform: rotate(45deg); + -ms-transform: rotate(45deg); + transform: rotate(45deg);} + + [class*="icoWeather-"], [class*="icoTrans-"], [class*="icoBubble-"], [class*="icoRetail-"], [class*="icoPeople-"], [class*="icoNumslets-"], [class*="icoLocation-"], [class*="icoHealthcare-"], [class*="icoDocuments-"], [class*="icoDevices-"], [class*="icoDatanetwork-"], [class*="icoControls-"], [class*="icoBuilding-"], [class*="icoArrows-"] { + color: #0568ae; + display: inline-block; + font-style: normal; + font-size: 20px; + font-weight: normal; + font-variant: normal; + font-style: normal; + width: 20px; + text-transform: none; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + position: relative; + speak: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + vertical-align: middle; } + + [class*="icon-primary-"]:before, + [class*="icon-primary-"]:after { + box-sizing: border-box; + display: inline-block; + font-size: 1em; + height: 1em; + position: relative; + top: 0; + left: 0; + vertical-align: middle; + width: 1em; } + + .icon-primary-att-globe:before, + .cssIcon-globe:before { + content: "\e900"; + color: #44c7f5; } + + .icon-primary-hamburger:before { + content: "\e903"; } + + .icon-primary-secure:before { + content: "\e918"; } + + .icon-primary-secureL:before { + content: "\e919"; } + + .icon-primary-padlockopen:before { + content: "\e916"; } + + .icon-primary-padlockopenL:before { + content: "\e917"; } + + .icon-primary-shoppingcart:before { + content: "\e914"; } + + .icon-primary-shoppingcartL:before { + content: "\e915"; } + + .icon-primary-print:before { + content: "\e921"; } + + .icon-primary-printL:before { + content: "\e922"; } + + .icon-primary-mobilesmartphone:before { + content: "\e908"; } + + .icon-primary-mobilesmartphoneL:before { + content: "\e90c"; } + + .icon-primary-tablet:before { + content: "\e904"; } + + .icon-primary-tabletL:before { + content: "\e905"; } + + .icon-primary-tv:before { + content: "\e906"; } + + .icon-primary-tvL:before { + content: "\e907"; } + + .icon-primary-calendar { + width: 100% !important; } + + .icon-primary-calendar:before { + content: "\e91a"; + z-index: 1; } + + .icon-primary-calendarL:before { + content: "\e91b"; } + + .icon-primary-star:before { + content: "\e96c"; } + + .icon-primary-close:before, + .close:before, + .reset-field:before { + content: "\e910"; } + + .icon-primary-down:before { + content: "\ea3c"; } + + + + .icon-primary-add-maximize:before { + content: "\e91f"; } + + + + .icon-primary-questionmark:before { + content: "\e90f"; } + + .icon-primary-badgealert:before, + .form-row.error .error-msg:before { + content: "\e90e"; } + + .icon-primary-approval:before { + content: "\e925"; } + + .icon-primary-flat-info:before { + content: "\e927"; } + + .icon-primary-alert:before { + content: "\e913"; } + + .icon-primary-tooltip:before, + .icon-primary-flat-faq:before { + content: "\e90d"; } + + .icon-primary-tooltip { + font-size: 20px; } + + .nav-links a:after, + .bellyband-link a:after, + .breadcrumb > li:after, + .icon-primary-right:before { + content: "\ea3c"; + transform: rotate(-90deg); } + + .icon-primary-left:before { + content: "\ea3c"; + transform: rotate(90deg); } + + .icon-primary-accordion-plus:after, + .icon-primary-collapsed:after, + .icon-primary-accordion-minus:after, + .icon-primary-expanded:after { + content: ""; + position: absolute; + top: 0; + z-index: 1; } + + .icon-primary-accordion-minus, + .icon-primary-expanded, + .icon-primary-accordion-plus, + .icon-primary-collapsed { + font-size: 20px !important; } + + :not(.ds2-no-colors) .icon-primary-accordion-minus:before, + :not(.ds2-no-colors) .icon-primary-expanded:before { + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2021%2021%22%3E%3Cpath%20fill%3D%22%230568ae%22%20d%3D%22M15.1%2011.3H5.9c-.4%200-.8-.3-.8-.8s.3-.8.8-.8h9.3c.4%200%20.8.3.8.8s-.4.8-.9.8z%22%2F%3E%3Cpath%20fill%3D%22%23d2d2d2%22%20d%3D%22M10.5%2021C4.7%2021%200%2016.3%200%2010.5S4.7%200%2010.5%200%2021%204.7%2021%2010.5%2016.3%2021%2010.5%2021zm0-20C5.3%201%201%205.3%201%2010.5S5.3%2020%2010.5%2020s9.5-4.3%209.5-9.5S15.7%201%2010.5%201z%22%2F%3E%3C%2Fsvg%3E"); + content: ""; } + + :not(.ds2-no-colors) .icon-primary-accordion-plus:before, + :not(.ds2-no-colors) .icon-primary-collapsed:before { + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2021%2021%22%3E%3Cpath%20fill%3D%22%230568ae%22%20d%3D%22M10.5%2015.9c-.4%200-.8-.3-.8-.8V5.9c0-.4.3-.8.8-.8s.8.3.8.8v9.3c0%20.4-.4.7-.8.7z%22%2F%3E%3Cpath%20fill%3D%22%230568ae%22%20d%3D%22M15.1%2011.3H5.9c-.4%200-.8-.3-.8-.8s.3-.8.8-.8h9.3c.4%200%20.8.3.8.8s-.4.8-.9.8z%22%2F%3E%3Cpath%20fill%3D%22%23d2d2d2%22%20d%3D%22M10.5%2021C4.7%2021%200%2016.3%200%2010.5S4.7%200%2010.5%200%2021%204.7%2021%2010.5%2016.3%2021%2010.5%2021zm0-20C5.3%201%201%205.3%201%2010.5S5.3%2020%2010.5%2020s9.5-4.3%209.5-9.5S15.7%201%2010.5%201z%22%2F%3E%3C%2Fsvg%3E"); + content: ""; } + + .ds2-no-colors .icon-primary-accordion-minus:before, + .ds2-no-colors .icon-primary-expanded:before { + background-image: none; + content: "\e901"; } + + .ds2-no-colors .icon-primary-accordion-minus:after, + .ds2-no-colors .icon-primary-expanded:after { + content: "\e902"; } + + .ds2-no-colors .icon-primary-accordion-plus:before, + .ds2-no-colors .icon-primary-collapsed:before { + background-image: none; + content: "\e90b"; } + + .ds2-no-colors .icon-primary-accordion-plus:after, + .ds2-no-colors .icon-primary-collapsed:after { + content: "\e911"; } + + .icon-primary-circle-arrow { + outline: 1px solid transparent; + border-radius: 50%; + font-size: 20px !important; + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08); + margin-right: 7px; } + + .icon-primary-circle-arrow:after { + background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2036%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20baseProfile%3D%22tiny%22%3E%3Ccircle%20r%3D%2217%22%20cy%3D%2218%22%20cx%3D%2218%22%20stroke-width%3D%221%22%20fill%3D%22transparent%22%20stroke%3D%22%23ccc%22%2F%3E%3C%2Fsvg%3E"); + content: ""; + position: absolute; + top: 0; + z-index: 2; } + + .icon-primary-circle-arrow:before { + border-radius: 50%; + content: "\ea3c"; + font-size: 12px; + top: 0; + position: absolute; + transform: rotate(-90deg); + width: 20px; + z-index: 1; } + + [class*="icon-primary-"] [class*="icon-primary-"] { + display: inline-block; + float: left; + font-size: 1em; + margin-left: -1em; + position: absolute; } + + [class*="icon-primary-"].white, [class^="ico"][class*="-"].white { + color: #fff; } + + [class*="icon-primary-"].black, [class^="ico"][class*="-"].black { + color: #000; } + + [class*="icon-primary-"].blue, [class^="ico"][class*="-"].blue { + color: #0568ae; } + + [class*="icon-primary-"].green, [class^="ico"][class*="-"].green { + color: #007a3e; } + + @-webkit-viewport { + width: device-width; } + + @-moz-viewport { + width: device-width; } + + @-ms-viewport { + width: device-width; } + + @-o-viewport { + width: device-width; } + + @viewport { + width: device-width; } + + .clearfix:before, + .clearfix:after { + display: table; + content: ""; + line-height: 0; } + + .clearfix:after { + clear: both; } + + .pull-right { + float: right !important; } + + .pull-left { + float: left !important; } + + .float-children-left:before, + .float-children-left:after { + display: table; + content: ""; + line-height: 0; } + + .float-children-left:after { + clear: both; } + + .float-children-left > div { + float: left; + white-space: nowrap; } + + .block { + display: block !important; } + + .inline { + display: inline !important; } + + .inline-block { + display: inline-block !important; } + + .table-cell { + display: table-cell !important; + width: 1%; + vertical-align: middle; } + + @media (max-width: 767px) { + .full-bleed { + width: auto; + margin-left: -15px; + margin-right: -15px; + padding: 15px; } } + + @media (min-width: 768px) { + .full-bleed { + width: auto; + margin-left: -20px; + margin-right: -20px; + padding: 20px; } } + + @media (max-width: 480px) { + .full-bleed { + width: auto; + margin-left: -15px; + margin-right: -15px; + padding: 0 15px; } } + + .fade { + opacity: 0; + filter: alpha(opacity=0); + transition: opacity .15s linear; } + + .fade.in { + opacity: 1; + filter: alpha(opacity=100); } + + .b2bCollapse { + display: none; } + + .collapse.in { + height: auto; } + + .nowrap { + white-space: nowrap; } + + .pre { + white-space: pre; } + + .hidden-spoken { + border: 0 none !important; + clip: rect(0px, 0px, 0px, 0px) !important; + height: 1px !important; + letter-spacing: 0; + line-height: 0; + overflow: hidden !important; + margin-top: -1px; + padding: 0 !important; + position: absolute !important; + width: 1px !important; } + + [data-sr-text].hidden-spoken:before { + border: 0 none !important; + content: attr(data-sr-text); + clip: rect(0px, 0px, 0px, 0px) !important; + height: 1px !important; + letter-spacing: 0; + line-height: 0; + overflow: hidden !important; + padding: 0 !important; + position: absolute !important; + width: 100% !important; + z-index: -1; } + + [data-sr-text].hidden-spoken { + position: relative !important; + width: auto !important; } + + [data-show-between] { + display: none; + visibility: hidden; } + + .noscroll-y { + overflow-y: hidden !important; } + + .invisible { + visibility: hidden !important; + opacity: 0 !important; } + + .transparent { + background-color: rgba(255, 255, 255, 0) !important; } + + .hide { + display: none !important; } + + .show { + display: block !important; } + + .rel { + position: relative !important; } + + .legend-pad { + padding: 0 15px; } + + .border-top { + border-top-width: 1px !important; } + + .border-left { + border-left-width: 1px !important; } + + .border-right { + border-right-width: 1px !important; } + + .border-bottom { + border-bottom-width: 1px !important; } + + .border-dark { + border-color: #000; } + + .border-light { + border-color: #fff; } + + .no-border-top { + border-top-width: 0 !important; } + + .no-border-left { + border-left-width: 0 !important; } + + .no-border-right { + border-right-width: 0 !important; } + + .no-border-bottom { + border-bottom-width: 0 !important; } + + .align-middle { + margin: 0 auto !important; } + + .align-top { + position: absolute; + top: 0; } + + .align-bottom { + position: absolute; + bottom: 0; } + + .valign-top { + vertical-align: top !important; } + + .valign-middle { + vertical-align: middle !important; } + + .valign-bottom { + vertical-align: bottom !important; } + + .align-children-middle > * { + margin: 0 auto; } + + [class*="valign-children-"] { + display: table; } + + [class*="valign-children-"] > * { + display: table-cell; } + + .valign-children-top > * { + vertical-align: top; } + + .valign-children-middle > * { + vertical-align: middle; } + + .valign-children-bottom > * { + vertical-align: bottom; } + + .no-pad { + padding: 0 !important; } + + .top-space { + margin-top: 60px !important; } + + .bottom-space { + margin-bottom: 60px !important; } + + .top-pad { + padding-top: 60px !important; } + + .bottom-pad { + padding-bottom: 60px !important; } + + @media (max-width: 767px) { + .top-space { + margin-top: 30px !important; } + .bottom-space { + margin-bottom: 30px !important; } + .top-pad { + padding-top: 30px !important; } + .bottom-pad { + padding-bottom: 30px !important; } } + + .affix { + position: fixed; } + + .img-landscape, + .img-portrait { + position: relative; } + + @media (orientation: landscape) { + .img-landscape { + display: block; } + .img-portrait { + display: none !important; } } + + @media (orientation: portrait) { + .img-landscape { + display: none !important; } + .img-portrait { + display: block; } } + + .dark-bg { + background-color: #222222; } + + /* ... JAVASCRIPT HOOKS ................. + ... used by javascript ............... */ + .autoSize, + .autoSize-this { + position: relative; } + + .truncate { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } + + .placeholdersjs { + color: #5a5a5a !important; } + + .jshook-return-focus-here { + display: block; } + + .visible-print { + display: none !important; } + + .hidden-print { + display: inherit !important; } + + @media print { + .visible-print { + display: inherit !important; } + .hidden-print { + display: none !important; } + * { + color: #000 !important; + background: transparent !important; + box-shadow: none !important; } + a, + a:visited { + text-decoration: underline; } + pre, + blockquote { + border: 1px solid #000; + page-break-inside: avoid; } + thead { + display: table-header-group; } + tr, + img { + page-break-inside: avoid; } + img { + max-width: 100% !important; } + @page { + margin: 0.5cm; } + p, + h2, + h3 { + orphans: 3; + widows: 3; } + h2, + h3 { + page-break-after: avoid; } } + + .mar-top-0 { + margin-top: 0px; } + + .mar-top-30 { + margin-top: 30px; } + + a:focus { + outline: thin dotted #191919; } + + h1, + h2, + h3, + h4, + h5, + h6 { + font-weight: normal; + text-rendering: optimizeLegibility; + margin: 0; + line-height: 1; } + + .heading-page { + font-size: 3.8rem !important; + font-family: "Omnes-ECOMP-W02-Light", Arial; + margin-bottom: 40px; } + + h1.heading-page.ng-scope {} + + .heading-major-section { + font-size: 3rem !important; + font-family: "Omnes-ECOMP-W02-Light", Arial; + margin-bottom: 40px !important; } + + .heading-sub-section { + font-size: 2.4rem !important; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 40px; } + + .heading-group { + font-size: 2rem !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + color: #ea7400; + margin-bottom: 20px !important; } + + .heading-medium { + font-size: 2rem !important; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; } + + .heading-medium-emphasis { + font-size: 2rem !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + margin-bottom: 20px; } + + .heading-small { + font-size: 1.8rem !important; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; } + + .heading-small-emphasis { + font-size: 1.8rem !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + margin-bottom: 20px; } + + .heading-micro { + font-size: 1.3rem !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + text-transform: uppercase; + color: #da0081; + margin-bottom: 10px; } + + * + .heading-major-section { + margin-top: 60px; } + + * + .heading-sub-section { + margin-top: 60px; } + + * + .heading-group { + margin-top: 40px !important; } + + * + .heading-medium { + margin-top: 40px; } + + * + .heading-medium-emphasis { + margin-top: 40px; } + + * + .heading-small { + margin-top: 40px; } + + * + .heading-small-emphasis { + margin-top: 40px; } + + * + .heading-micro { + margin-top: 20px; } + + .lead { + color: #666; + font-family: "Omnes-ECOMP-W02-Light-Italic", Arial; + font-size: 2.4rem; + line-height: 2.8rem; + margin-top: 10px; + letter-spacing: -0.024rem; } + + .eyebrow { + text-transform: uppercase; + line-height: .65 !important; } + + .eyebrow, + .subheading { + font-size: 1.4rem !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + color: #666; } + + .eyebrow + .heading-major-section, + .eyebrow + .heading-sub-section { + margin-top: 4px; } + + .subheading { + margin-top: 10px; } + + @media (max-width: 767px) { + h1, + h2, + h3, + h4, + h5, + h6, + .heading-page { + font-size: 2rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 30px; } + .heading-major-section { + font-size: 2rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 30px; } + .heading-sub-section { + font-size: 2rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; } + .heading-medium { + font-size: 2rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; } + .heading-medium-emphasis { + font-size: 2rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; } + .heading-small { + font-size: 1.6rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 10px; } + .heading-small-emphasis { + font-size: 1.6rem; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + margin-bottom: 5px; } + * + .heading-major-section { + margin-top: 30px; } + * + .heading-sub-section { + margin-top: 30px; } + * + .heading-group { + margin-top: 20px; } + * + .heading-medium { + margin-top: 20px; } + * + .heading-medium-emphasis { + margin-top: 20px; } + * + .heading-small { + margin-top: 20px; } + * + .heading-small-emphasis { + margin-top: 20px; } + * + .heading-micro { + margin-top: 10px; } } + + /* Standard Type styles */ + .zeromargin { + margin: 0 !important; } + + a { + color: #0568ae; + text-decoration: none; } + + a:hover, + a:focus { + text-decoration: underline; } + + a:active { + color: #0568ae; } + + .a-min { + font-size: 12px; } + + .a-small { + font-size: 14px; } + + .a-max { + font-size: 18px; } + + a.show-qualifier { + margin-right: 25px; + position: relative; } + + a.show-qualifier:after { + color: #333333; + display: inline-block; + white-space: pre !important; } + + a[href$="pdf"].show-qualifier:after, + a.show-qualifier.pdf:after { + content: " (PDF)"; } + + a[href$="psd"].show-qualifier:after, + a.show-qualifier.psd:after { + content: " (PSD)"; } + + .standalone-link { + display: flex; } + + /* 20px for the icon, 10px left of icon */ + .standalone-link.small { + font-size: 1.4rem; } + + .standalone-link.small i[class*="icon-primary-"] { + font-size: 16px; + top: 2px; } + + .standalone-link.large { + font-size: 1.8rem; } + + .standalone-link.large i[class*="icon-primary-"] { + font-size: 24px; + top: -1px; } + + p { + margin: 0 0 12px 0; + line-height: 2rem; } + + .p-small { + font-size: 1.4rem; + line-height: 1.8rem; } + + p + .p-small { + margin: 10px 0 0; } + + .p-micro { + font-size: 1.2rem; + line-height: 1.5rem; } + + p + .p-micro { + margin: 10px 0 0; } + + .p-max { + font-size: 1.8rem; } + + p + .p-max { + margin: 10px 0 0; } + + b, + strong { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-weight: normal; } + + i, + em { + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; } + + .strike { + text-decoration: line-through; } + + sup { + display: inline-block; + font-style: normal; + height: 1em; + position: relative; + vertical-align: text-top; + width: auto; } + + .text-legal { + color: #5a5a5a; + font-size: 1.1rem; + line-height: 1.5rem; + margin: 0 0 10px; } + + .text-legal.legal-module { + line-height: 1.3rem; + margin: 0 0 12px; } + + .text-legal b, + .text-legal strong { + font-weight: bold; } + + .text-legal a { + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + .text-left { + text-align: left !important; } + + .text-right { + text-align: right !important; } + + .text-center { + text-align: center !important; } + + .text-justified { + text-align: justify !important; } + + ul { + padding: 0; + margin: 0; + list-style: none; } + + ul.bullet, + ul.no-bullet, + ul.lower-alpha, + ul.lower-roman, + ol { + padding: 0; + margin: 12px 0 0 20px; } + + ul.bullet li, + ul.no-bullet li, + ul.lower-alpha li, + ul.lower-roman li, + ol li { + padding-left: 15px; + line-height: 20px; + position: relative; } + + ul.bullet li + li, + ul.no-bullet li + li, + ul.lower-alpha li + li, + ul.lower-roman li + li, + ol li + li { + margin-top: 12px; } + + ul.bullet > li:before, + ul.no-bullet > li:before, + ul.lower-alpha > li:before, + ul.lower-roman > li:before, + ol > li:before { + background-color: #333333; + border: 2px solid #333333; + border-radius: 100%; + content: " "; + display: block; + height: 1px; + left: 0; + position: absolute; + top: 8px; + width: 1px; } + + ul.bullet ul, + ul.no-bullet ul, + ul.lower-alpha ul, + ul.lower-roman ul, + ol ul, + ul.bullet ol, + ul.no-bullet ol, + ul.lower-alpha ol, + ul.lower-roman ol, + ol ol { + margin-top: 12px; } + + ul + *, + ol + * { + margin-top: 20px; } + + ul.no-bullet, + ul.lower-alpha, + ul.lower-roman { + margin: 0; } + + ul.no-bullet > li, + ul.lower-alpha > li, + ul.lower-roman > li { + padding-left: 0; } + + ul.no-bullet > li:before, + ul.lower-alpha > li:before, + ul.lower-roman > li:before { + display: none !important; } + + ol { + margin: 20px 0 0 32px; } + + ol li { + padding-left: 3px; } + + ol li:before { + display: none; } + + ol ol { + margin-left: 25px; } + + ol ul { + margin-left: -5px; } + + ul ul, + ul ol, + ol ol, + ol ul { + margin-top: 0; } + + ul.lower-roman { + list-style-type: lower-roman; + margin-top: 12px; + margin-left: 35px; + margin-bottom: 0; } + + ul.lower-alpha { + list-style-type: lower-alpha; + margin-top: 12px; + margin-left: 35px; + margin-bottom: 0; } + + dl { + display: table; + margin: 0 0 20px; + width: 100%; } + + dt, + dd { + display: table-cell; } + + .btn { + background-color: transparent; + background-clip: padding-box; + border: 1px solid transparent; + border-radius: 8px; + box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15); + cursor: pointer; + display: inline-block; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 0.5rem; + font-weight: normal; + line-height: 1; + margin: 0 7px 10px 0; + + + padding: 14px 19px 11px 18px; + position: relative; + text-align: center; + vertical-align: middle; + white-space: nowrap; + overflow: hidden; } + .btn:focus { + outline: 1px dotted #000; + outline-offset: -5px; } + .btn:last-child { + margin-right: 0; } + .btn::-moz-focus-inner { + padding: 0; + border: 0; } + .btn i[class*="icon-primary-"].icon-primary-small { + font-size: 24px; + top: -2px; } + .btn i[class*="icon-primary-"].icon-primary-medium { + font-size: 10px; + top: -2px; } + .btn i[class*="icon-primary-"].icon-primary-large { + font-size: 10px; + top: -2px; } + + a.btn { + vertical-align: middle; } + a.btn:hover { + text-decoration: none; } + + .field-group + .btn { + margin-left: 20px; } + + .btn-primary { + border-color: #ea7400 transparent #d16500; + background-color: #ea7400 transparent #d16500; + background: linear-gradient(to bottom, #ea7400 0%, #d16500 100%); + color: #ffffff; + font-family: "Omnes-ECOMP-W02", Arial; + font-weight: bold; } + .btn-primary:hover { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + .btn-primary:focus { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + .btn-primary:active { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + + .btn-arrow { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 1.6rem; + font-weight: normal; + background-color: transparent; + border: none; + padding: 5px 0 0; + top: -4px; + color: #333333; + position: relative; } + .btn-arrow:hover { + text-decoration: underline; } + .btn-arrow:hover .btn-primary { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + .btn-arrow:hover .btn-secondary { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + .btn-arrow:hover .btn-alt { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); } + .btn-arrow:hover .btn-specialty { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + .btn-arrow:focus { + text-decoration: underline; + outline: 1px dotted #666; } + .btn-arrow:focus .btn-primary { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + .btn-arrow:focus .btn-secondary { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + .btn-arrow:focus .btn-alt { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); } + .btn-arrow:focus .btn-specialty { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + .btn-arrow:active .btn-primary { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + .btn-arrow:active .btn-secondary { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + .btn-arrow:active .btn-alt { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); } + .btn-arrow:active .btn-specialty { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + .btn-arrow .btn-alt { + border-color: #087ac2 transparent #0568ae; + background-color: #0568ae; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); + color: #ffffff; } + .btn-arrow .btn-alt:hover { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + .btn-arrow .btn-alt:focus { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + .btn-arrow .btn-alt:active { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + .btn-arrow::-moz-focus-inner { + padding: 0; + border: 0; } + .btn-arrow .btn { + border: 1px solid transparent; + border-radius: 100%; + height: 20px; + margin-bottom: 0; + margin-right: 7px; + max-width: 20px; + min-width: 20px; + padding: 0; + margin-top: -4px; + vertical-align: middle; + width: 36px; } + .btn-arrow .btn .icon-primary-left { + bottom: 0; + display: block; + height: 100%; + left: 0; + line-height: 0; + position: absolute; + right: 0; + text-indent: 0; + top: 0; } + .btn-arrow .btn .icon-primary-left:before { + position: absolute; + font-size: 1.6rem; + left: 1px; + top: 9px; } + .btn-arrow .btn .icon-primary-right { + bottom: 0; + display: block; + height: 100%; + left: 0; + line-height: 0; + position: absolute; + right: 0; + text-indent: 0; + top: 0; + color: #ffffff; } + .btn-arrow .btn .icon-primary-right:before { + position: absolute; + font-size: 1.6rem; + left: 17px; + top: 9px; } + .btn-arrow .btn.btn-primary .icon-primary-left { + color: #fff; } + .btn-arrow .btn.btn-primary .icon-primary-right { + color: #fff; } + .btn-arrow .btn.btn-alt .icon-primary-left { + color: #fff; } + .btn-arrow .btn.btn-alt .icon-primary-right { + color: #fff; } + .btn-arrow .btn.btn-secondary { + border: 1px solid #d2d2d2; } + .btn-arrow .btn.btn-secondary .icon-primary-left { + color: #0568ae; } + .btn-arrow .btn.btn-secondary .icon-primary-right { + color: #0568ae; } + .btn-arrow .btn.btn-small { + height: 10px; + + + width: 10px; + top: -1px; } + .btn-arrow .btn.btn-small .icon-primary-left:before { + font-size: 5px; + top: 4px; + left: 0; } + .btn-arrow .btn.btn-small .icon-primary-right:before { + font-size: 5px; + top: 4px; + left: 10px; } + .btn-arrow .btn.btn-large .icon-primary-left:before { + font-size: 112%; + top: 12px; + left: 23px; } + .btn-arrow .btn.btn-large .icon-primary-right:before { + font-size: 112%; + top: 12px; + left: 23px; } + + .btn-secondary { + border: 1px solid #d2d2d2; + background-color: #f2f2f2; + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + color: #0568ae; + box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.15); + padding: 14px 18px 11px 17px; } + .btn-secondary:hover { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + .btn-secondary:focus { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + .btn-secondary:active { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + + .btn-alt { + border-color: #087ac2 transparent #0568ae; + background-color: #0568ae; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); + color: #ffffff; } + .btn-alt:hover { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + .btn-alt:focus { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + .btn-alt:active { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + + .btn-specialty { + border-color: #008744 transparent #007a3e; + background-color: #007a3e; + background: linear-gradient(to bottom, #008744 0%, #007a3e 100%); + color: #ffffff; } + .btn-specialty:hover { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + .btn-specialty:focus { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + .btn-specialty:active { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + + .btn-clear { + background: transparent !important; + border-color: transparent !important; + font-weight: normal; + font-family: "Omnes-ECOMP-W02", Arial; + box-shadow: none; + text-decoration: none; + color: #0568ae; } + .btn-clear:focus { + text-decoration: underline; } + .btn-clear:hover { + text-decoration: underline; } + + .isIE .btn:focus { + outline: none !important; + text-decoration: none !important; } + .isIE .btn:focus:after { + display: block; + content: ""; + position: absolute; + top: 4px; + left: 4px; + right: 4px; + bottom: 4px; + border: 1px dotted #000; } + + .isIE .btn:active { + outline: none !important; + text-decoration: none !important; } + .isIE .btn:active:after { + display: block; + content: ""; + position: absolute; + top: 4px; + left: 4px; + right: 4px; + bottom: 4px; + border: 1px dotted #000; } + + .isIE .btn.active { + outline: none !important; + text-decoration: none !important; } + .isIE .btn.active:not(:focus):after { + border: 1px solid #000; } + .isIE .btn.active:after { + display: block; + content: ""; + position: absolute; + top: 4px; + left: 4px; + right: 4px; + bottom: 4px; + border: 1px dotted #000; } + + .isIE .btn.btn-primary:focus:after { + border: 2px dashed #fff; } + + .isIE .btn.btn-specialty:focus:after { + border: 2px dashed #fff; } + + .isIE .btn.btn-alt:focus:after { + border: 2px dashed #fff; } + + .btn.disabled { + background-image: none; + background-color: #767676; + box-shadow: none; + cursor: not-allowed; + color: #ffffff; + border-color: transparent; + outline: 0 !important; } + .btn.disabled:hover { + color: #f2f2f2; + outline: none !important; } + .btn.disabled:focus { + color: #f2f2f2; + outline: none !important; } + + .btn[disabled] { + background-image: none; + background-color: #767676; + box-shadow: none; + cursor: not-allowed; + color: #ffffff; + border-color: transparent; + outline: 0 !important; } + .btn[disabled]:hover { + color: #f2f2f2; + outline: none !important; } + .btn[disabled]:focus { + color: #f2f2f2; + outline: none !important; } + + .btn[disabled="disabled"] { + background-image: none; + background-color: #767676; + box-shadow: none; + cursor: not-allowed; + color: #ffffff; + border-color: transparent; + outline: 0 !important; } + .btn[disabled="disabled"]:hover { + color: #f2f2f2; + outline: none !important; } + .btn[disabled="disabled"]:focus { + color: #f2f2f2; + outline: none !important; } + + .btn-arrow[disabled] .btn { + background-image: none; + background-color: #767676; + box-shadow: none; + cursor: not-allowed; + color: #ffffff; + border-color: transparent; + outline: 0 !important; } + .btn-arrow[disabled] .btn:hover { + color: #f2f2f2; + outline: none !important; } + .btn-arrow[disabled] .btn:focus { + color: #f2f2f2; + outline: none !important; } + + .btn-arrow[disabled] .icon-primary-left { + color: #fff !important; } + + .btn-arrow[disabled] .icon-primary-right { + color: #fff !important; } + + .btn-arrow.disabled .btn { + background-image: none; + background-color: #767676; + box-shadow: none; + cursor: not-allowed; + color: #ffffff; + border-color: transparent; + outline: 0 !important; } + .btn-arrow.disabled .btn:hover { + color: #f2f2f2; + outline: none !important; } + .btn-arrow.disabled .btn:focus { + color: #f2f2f2; + outline: none !important; } + + .btn-arrow.disabled .icon-primary-left { + color: #fff !important; } + + .btn-arrow.disabled .icon-primary-right { + color: #fff !important; } + + .btn-medium { + padding: 12px 19px 11px 18px; + font-size: 1.7rem; } + + .btn-small { + /* padding: 10px 19px 9px 18px; */ + font-size: 1.5rem; + border-radius: 8px; } + + .btn-fullwidth { + width: 100%; } + + *:not(.btn-arrow) > .btn > i[class*="icon-primary-"] { + margin-top: -20px; + margin-bottom: -20px; } + + .enhanced-cta-group { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: row-reverse; + flex-direction: row-reverse; + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewport%3D%220%200%201%201%22%20style%3D%22width%3A100%25%3B%20height%3A1px%3B%22%3E%3Cstyle%3Eline%7Bstroke%3A%23959595%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cline%20y2%3D%221%22%20y1%3D%221%22%20x1%3D%221%22%20x2%3D%22100%25%22%20stroke-dasharray%3D%221%2C%203%22%2F%3E%3C%2Fsvg%3E") !important; + background-position: 0 -1px; + background-repeat: repeat-x; } + .enhanced-cta-group > .cta-button-group { + border-top: 0; + background-image: none !important; } + .enhanced-cta-group > .cta-button-group + .cta-button-group a { + font-size: 1.4rem; + line-height: 1em; } + .enhanced-cta-group > .cta-button-group + .cta-button-group a a { + margin-right: 0; } + .enhanced-cta-group > .cta-button-group hr { + min-height: 14px; } + .enhanced-cta-group > .cta-button-group + .cta-button-group { + -ms-flex-align: center; + -ms-grid-row-align: center; + align-items: center; + -ms-flex-direction: row; + flex-direction: row; + padding: 10px 0; } + + .cta-button-group { + text-align: right; + -ms-flex-align: baseline; + align-items: baseline; + padding: 20px 0 10px; + width: 100%; } + .cta-button-group.nodots { + background-image: none !important; } + .cta-button-group .hidden-phone { + margin-right: 14px; } + .cta-button-group .btn + .btn { + margin-right: 20px !important; } + .cta-button-group .btn:not(.hidden-phone):not(.visible-phone) { + margin-right: 0; } + + .isMobile .btn-arrow .btn.btn-small .icon-primary-left:before { + left: -1px; } + + .isMobile .btn-arrow .btn.btn-large .icon-primary-left:before { + left: 24px; } + + .isMobile .btn-arrow .btn.btn-large .icon-primary-right:before { + left: 24px; } + + @media (max-width: 1024px) { + .field-group + .btn { + margin-left: 15px; } } + + @media (max-width: 767px) { + .cta-button-group { + text-align: center; } + .cta-button-group > .btn { + display: block; + float: none; + width: 100%; + margin-left: auto !important; + margin-right: auto !important; } } + + .btn-group { + border-radius: 8px; + box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.15); + display: -ms-flexbox; + display: flex; + -ms-flex-pack: justify; + justify-content: space-between; + margin-bottom: 10px; + max-width: 470px; + min-width: 290px; + position: relative; + vertical-align: middle; + width: 100%; } + .btn-group > .btn { + box-shadow: none; + -ms-flex: 1; + flex: 1; + position: relative; + float: left; + margin-right: -1px; + margin-bottom: 0; + padding-left: 0; + padding-right: 0; + text-align: center; } + .btn-group:not([data-select-color]) .btn.active:not(:first-child) { + margin-right: -1px; + border-left: 1px solid #d2d2d2 !important; } + .btn-group:not([data-select-color]) .btn[disabled]:not(:first-child) { + border-left: 1px solid #d2d2d2 !important; } + .btn-group:not([data-select-color]) .btn[disabled] + .btn[disabled] { + border-left: 1px solid #ebebeb !important; } + .btn-group:not([data-select-color]) > .btn.active { + border-color: #087ac2 transparent #0568ae; + background-color: #0568ae; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); + color: #ffffff; } + .btn-group:not([data-select-color]) > .btn.active:hover { + color: #ffffff; + outline-color: #ffffff !important; + background: #0563a6; + border-color: #0563a6; } + .btn-group:not([data-select-color]) > .btn.active:focus { + color: #ffffff; + outline-color: #ffffff !important; + background: #0563a6; + border-color: #0563a6; } + .btn-group:not([data-select-color]) > .btn.active:active { + color: #ffffff; + outline-color: #ffffff !important; + background: #0563a6; + border-color: #0563a6; } + .btn-group:not([data-select-color]) > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { + border-radius: 0; } + .btn-group:not([data-select-color]) > .btn:first-child:not(:last-child):not(.dropdown-toggle) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + .btn-group:not([data-select-color]) > .btn:last-child:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + .btn-group:not([data-select-color]) > .dropdown-toggle:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + .btn-group > .active { + text-decoration: none; + outline: 1px dotted transparent; } + .btn-group > .active:focus { + outline: 1px dotted #ffffff; } + + .btn-group.btn-fullwidth > .btn { + -ms-flex: 1; + flex: 1; } + + .btn-group[data-select-color] { + margin-top: 5px; + box-shadow: none; + -ms-flex-pack: start; + justify-content: flex-start; + -ms-flex-wrap: wrap; + flex-wrap: wrap; } + .btn-group[data-select-color] .btn { + border: 1px solid #959595; + border-radius: 4px; + box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.15); + margin-right: 10px; + margin-bottom: 10px; + height: 40px; + font-size: 16px; + color: #333333; + max-width: 60px; + min-width: 60px; + -ms-flex: 0; + flex: 0; } + .btn-group[data-select-color] > .btn.active:focus { + outline: 1px dotted #191919; + outline-offset: 4px; } + + button .btn-fill { + background-clip: padding-box; + border: 0; + border-radius: 4px; + bottom: 0; + display: block; + height: auto; + left: 0; + margin: 5px; + position: absolute; + right: 0; + top: 0; + width: auto; } + + button .btn-fill[style*="#fff"] { + border: 1px solid #d2d2d2; } + + [data-select-color] .btn.active { + background: none !important; + outline: 0; + margin-right: 10px; + border-width: 3px; + color: #333333; + line-height: 12px; } + [data-select-color] .btn.active > .btn-fill { + margin: 3px; } + [data-select-color] .btn.active:hover { + color: #333333; } + + [data-select-color] .btn:active { + background: none !important; + outline: 0; + margin-right: 10px; + border-width: 3px; + color: #333333; + line-height: 12px; } + [data-select-color] .btn:active > .btn-fill { + margin: 3px; } + [data-select-color] .btn:active:hover { + color: #333333; } + + .btn-group[data-select-color="orange"] > .btn.active { + border-color: #ea7400; } + + .btn-group[data-select-color="blue"] > .btn.active { + border-color: #0568ae; } + + .btn-group[data-select-color="green"] > .btn.active { + border-color: #007a3e; } + + .btn-spinbutton-toggle.btn-group { + display: block !important; + height: 40px !important; + margin-top: 5px; + max-width: 138px; + min-width: 138px; + white-space: nowrap; } + + .btn-spinbutton-toggle .btn { + border-radius: 6px; + font-weight: normal; + -ms-flex: unset; + flex: unset; + height: 40px; + letter-spacing: normal; + min-width: auto; + padding: 3px 0 0; + text-align: center; + min-width: 46px; + width: 46px; } + + .btn-spinbutton-toggle .btn[data-max-value] { + border-bottom: 1px solid #d2d2d2; + border-top: 1px solid #d2d2d2; + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.08) inset; + background-color: #fff; + cursor: text; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 2rem; + font-weight: normal; + padding: 4px 0 0; + text-align: center; + min-width: 46px !important; + width: 46px; } + .btn-spinbutton-toggle .btn[data-max-value]:focus { + border-color: #0568ae; + outline: none; } + .btn-spinbutton-toggle .btn[data-max-value]:focus + .btn { + border-left: 1px solid #0568ae; + transition: border 0.3s linear 0s; } + + .btn-spinbutton-toggle .icon-primary-subtractminimize { + font-size: 30px !important; + color: #0568ae !important; } + + .btn-spinbutton-toggle .icon-primary-add-maximize { + font-size: 30px !important; + color: #0568ae !important; } + + .btn-spinbutton-toggle .btn[disabled].icon-primary-subtractminimize { + background-color: #d2d2d2; + color: #767676 !important; } + + .btn-spinbutton-toggle .btn[disabled].icon-primary-add-maximize { + background-color: #d2d2d2; + color: #767676 !important; } + + .btn-spinbutton-toggle input.btn[disabled] { + background-color: #d2d2d2; + color: #5a5a5a; + cursor: not-allowed; } + + .btn-group.btn-spinbutton-toggle .btn[disabled] + .btn[disabled] { + border-left: 1px solid #f0f0f0 !important; } + + .btn-group.btn-spinbutton-toggle .btn[data-max-value]:focus + .btn:not(:first-child) { + border-left: 1px solid #0568ae !important; } + + @media (max-width: 480px) { + .btn-group:not([data-select-color]) > .btn { + font-size: 1.3rem; + min-width: auto; } } + + .reset-field, + .close { + float: right; + background: none; + width: 34px; + height: 34px; + padding: 0; + overflow: hidden; + display: inline-block; } + + .reset-field { + display: none; } + + .reset-field:before { + font-size: 22px; + color: #5a5a5a; } + + .input-emphasized + .reset-field:before { + font-size: 29px; + color: #5a5a5a; } + + .reset-field:active, + .reset-field:hover, + .reset-field:focus { + display: block !important; } + + button.close { + border: 0; + appearance: none; } + + .corner-button { + box-shadow: 0 -50px 0 0 #f2f2f2 inset; + height: 69px; + /*overflow: hidden;*/ + position: absolute; + right: -35px; + top: -35px; + transform: rotate(45deg); + width: 69px; } + + .corner-button .close:before { + bottom: -7px; + color: #0568ae; + display: block; + font-size: 20px; + height: 50px; + left: -11px; + position: absolute; + width: 50px; } + + .corner-button .close { + float: none; + height: 45px; + margin: 0; + position: absolute; + right: 12px; + top: 45px; + transform: rotate(45deg); + width: 45px; } + + .corner-button .close:focus { + outline: 1px dotted black; } + + .ds2-no-colors .corner-button .close { + border: 1px solid black; } + + .field-group input + .reset-field { + background: none; + height: 36px; + width: 45px; + display: none; + padding: 0; + position: absolute; + right: 0; + top: 0; + box-shadow: none; + border: none; + content: " "; } + + .field-group input[type="search"] + .reset-field, + .field-group input[type="search"] + .btn-search + .reset-field, + .tooltip-onclick input + .reset-field, + .tooltip-onclick input + .icon-primary-tooltip + .reset-field, + .tooltip-onclick textarea + .reset-field, + .tooltip-onclick textarea + .icon-primary-tooltip + .reset-field { + right: 45px; } + + .field-group input[type="search"] + .reset-field:after, + .field-group input[type="search"] + .btn-search + .reset-field:after, + .tooltip-onclick input + .reset-field:after, + .tooltip-onclick input + .icon-primary-tooltip + .reset-field:after, + .tooltip-onclick textarea + .reset-field:after, + .tooltip-onclick textarea + .icon-primary-tooltip + .reset-field:after { + background-color: #d2d2d2; + content: ""; + display: block; + height: 20px; + position: absolute; + right: 0; + top: 8px; + width: 1px; } + + .tooltip-onclick input + .reset-field, + .tooltip-onclick input + .icon-primary-tooltip + .reset-field { + right: 50px !important; } + + .tooltip-onclick textarea + .reset-field, + .tooltip-onclick textarea + .icon-primary-tooltip + .reset-field { + right: 45px !important; + width: 40px; } + + .field-group input.input-emphasized + .reset-field { + width: 45px; + height: 46px; + right: 6px; } + + .field-group input.input-emphasized + .reset-field:after { + top: 14px; } + + .field-group [disabled] + .reset-field { + display: none; } + + .ds2_touchevents .field-group input + .reset-field:focus, + .ds2_touchevents .field-group input:focus + .reset-field, + .ds2_touchevents textarea:focus + .reset-field, + .ds2_touchevents textarea + .reset-field:focus { + display: block; + position: absolute; + right: 0px; + top: 0; + border: none; } + + .ds2_touchevents .field-group input { + padding: 8px 55px 8px 15px; + -webkit-appearance: none; } + + .ds2_touchevents textarea:focus { + padding: 15px 55px 15px 15px; } + + .ds2_touchevents textarea:focus + .reset-field { + border: none; + position: absolute; + right: 6px; + top: 5px; } + + .ds2_touchevents textarea.hasScrollbar:focus { + padding: 15px 35px 15px 15px; } + + .ds2_touchevents textarea.hasScrollbar:focus + .reset-field { + right: 22px; } + + .ds2-no-colors .b2b-tmpl-card-corner-button { + border: none !important; } + + .ds2-no-colors .b2b-tmpl-card-corner-button .close { + border: 1px solid black; + top: 0px !important; + right: 0px !important; } + + .form-row.error .error-msg { + display: block; + font-size: 14px; + line-height: 14px; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + position: relative; + padding-left: 18px; } + + .form-row.error .error-msg:before { + color: #cf2a2a; + font-size: 14px; + left: 0; + line-height: 14px; + position: absolute; + vertical-align: middle; } + + .form-row.error label, + .form-row.error .error-msg, + .form-row.error button.awd-select, + .form-row.error select.awd-select + span, + .form-row.error .checkbox, + .form-row.error .radio, + .form-row.error legend.error, + .form-row.error input { + color: #cf2a2a; } + + .form-row.error .btn-group > .btn, + .form-row.error button.awd-select, + .form-row.error .awd-select-list, + .form-row.error select.awd-select + span, + .form-row.error textarea, + .form-row.error input, + .form-row.error .checkbox .skin, + .form-row.error .radio .skin { + border-color: #cf2a2a !important; } + + .form-row.error .checkbox input:checked:not(:disabled) + .skin { + background-color: #cf2a2a; } + + .form-row.error .radio input:checked + .skin:after { + background-color: #cf2a2a; } + + .error .tooltip-onclick .icon-primary-tooltip.active + .error-msg { + margin-top: -11px; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } + + .error .tooltip-onclick .icon-primary-tooltip.active + .error-msg + .helpertext { + margin: 0 0 10px; } + + .error .tooltip-onclick .icon-primary-tooltip.active + .error-msg + .helpertext:before, + .error .tooltip-onclick .icon-primary-tooltip.active + .error-msg + .helpertext:after { + display: none; } + + .error .helpertext { + border-color: #cf2a2a; + /*border-radius:0;*/ } + + .error .helpertext:before { + border-top-color: #cf2a2a; } + + .error .tooltip-onfocus .helpertext { + margin: 14px 0 10px 0; } + + .error [class*="price"], + .error [class*="pricing-"] { + color: #cf2a2a; } + + input:-ms-clear { + display: none; } + + input[type]::-webkit-inner-spin-button, + input[type]::-webkit-outer-spin-button { + -webkit-appearance: none; } + + input[type] { + -moz-appearance: textfield; } + + form { + margin: 0; } + + fieldset { + padding: 0; + margin: 0; + border: 0; } + + label, + legend { + display: inline-block; + /* font-size: 1.4rem; */ + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + legend { + display: block; } + + .error-msg { + display: none; } + + select, + textarea, + input { + border-radius: 6px; + color: #5a5a5a; + display: inline-block; + font-size: 1.6rem; + margin: 0px; + padding: 0 15px 0 15px; + vertical-align: middle; + line-height: normal; } + + select::-webkit-input-placeholder, + textarea::-webkit-input-placeholder, + input::-webkit-input-placeholder { + color: #5a5a5a; + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; + opacity: 1; } + + select:-moz-placeholder, + textarea:-moz-placeholder, + input:-moz-placeholder { + color: #5a5a5a; + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; + opacity: 1; } + + select::-moz-placeholder, + textarea::-moz-placeholder, + input::-moz-placeholder { + color: #5a5a5a; + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; + opacity: 1; } + + select:-ms-input-placeholder, + textarea:-ms-input-placeholder, + input:-ms-input-placeholder { + color: #5a5a5a; + font-family: "Omnes-ECOMP-W02-Italic", Arial; + transition: none; + opacity: 1; } + + select:placeholder, + textarea:placeholder, + input:placeholder { + color: #5a5a5a; + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; + opacity: 1; } + + select:last-child, + textarea:last-child, + input:last-child { + margin-right: 0; } + + input:not([type="button"]) { + height: 36px; } + + input.input-emphasized { + font-size: 1.8rem; + height: 48px; + padding: 13px 20px 13px; } + + input[type="search"]:focus { + padding-right: 88px; } + + input[type="search"] { + padding-right: 40px; + -webkit-appearance: none !important; } + + input[type="search"].input-emphasized { + padding-right: 45px; } + + .btn-search[class*="btn"] { + background-color: transparent; + background-position: 50% 50%; + background-size: 20px; + background-repeat: no-repeat; + border: none; + height: 100%; + margin-left: 0; + margin-top: 0; + min-width: 45px !important; + outline-offset: 0; + padding: 0 !important; + position: absolute; + right: 0; + top: 0; + border-radius: 0 5px 5px 0; + min-width: 44px; + width: 44px; } + + .input-emphasized + .btn-search[class*="btn"], + .input-emphasized + .reset-field + .btn-search[class*="btn"] { + background-size: 26px; + height: 46px; + top: 1px; + outline-offset: -3px; + margin-bottom: 0; + border-radius: 0 5px 5px 0; } + + input[type="search"].input-emphasized + .reset-field { + right: 45px !important; } + + .search-suggestion-wrapper { + position: relative; + margin-bottom: 15px; } + + /*styles from dropdown*/ + .search-suggestion-list { + box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); + border-radius: 0 0 6px 6px; + position: relative; + border: 1px solid #0568ae; + border-top: 0; + padding: 15px 0; + background-color: #f2f2f2; + z-index: 1000; + width: 100%; + max-height: 400px; + overflow-y: auto; } + + .search-suggestion-list:empty { + display: none; } + + .search-suggestion-item { + position: relative; + z-index: -1; + padding: 0 15px; + line-height: 4.0rem; + color: #5a5a5a; } + + .search-suggestion-item a { + text-decoration: none; + color: #5a5a5a; } + + .search-suggestion-item:hover, + .search-suggestion-item:focus { + cursor: pointer; + background-color: #d2d2d2; } + + input[data-provide="datepicker"], + [data-provide="datepicker"]:-moz-placeholder, + [data-provide="datepicker"]:-ms-input-placeholder, + [data-provide="datepicker"]:-webkit-input-placeholder { + color: #0568ae !important; + opacity: 1; + filter: alpha(opacity=100); } + + input[disabled], + input[readonly], + select[disabled], + select[readonly], + textarea[disabled], + textarea[readonly], + i.icon-primary-calendar.disabled, + span.icon-primary-calendar.readonly { + cursor: not-allowed; + background-color: #f2f2f2; + box-shadow: none; } + + i.icon-primary-calendar.disabled input, + span.icon-primary-calendar.readonly input { + color: #959595 !important; } + + textarea { + display: block; + width: 400px; + max-width: 400px; + padding: 15px; } + + textarea.small { + line-height: 20px; } + + textarea + .reset-field { + display: none; } + + textarea::-webkit-input-placeholder { + line-height: .99; } + + textarea:-moz-placeholder { + line-height: .99; } + + textarea::-moz-placeholder { + line-height: .99; } + + textarea:-ms-input-placeholder { + line-height: .99; } + + textarea:placeholder { + line-height: .99; } + + textarea, + input { + background-color: #ffffff; + border: 1px solid #d2d2d2; + -webkit-appearance: none; + box-shadow: 2px 3px 2px -2px rgba(0, 0, 0, 0.08) inset; + transition: border .3s linear 0s; + font-family: "Omnes-ECOMP-W02", Arial; } + + textarea:focus, + input:focus { + outline: 0; + border-color: #0568ae; } + + .input-append { + display: table; } + + .input-append > div { + display: table-cell; + width: 1%; } + + .input-append > .field-group { + width: 100%; } + + .row .field-group input[class*="span"] { + float: none; } + + .field-group { + position: relative; + display: inline-block; } + + label + .field-group, + label + .input-append, + label + .row, + label + .row-nowrap, + label + .form-row { + margin-top: 5px; } + + .field-group { + position: relative; + display: block; } + + .field-group input:not([type="button"])[disabled] { + padding-right: 15px; } + + input:invalid, + textarea:invalid, + select:invalid { + outline: none !important; } + + .form-row { + margin-top: 20px; } + + .form-row.nomar { + margin: 0; } + + .row-nowrap.no-flex.form-row > label + br { + margin-bottom: 5px; } + + span.form-row { + display: inline-block; } + + legend + .form-row { + margin-top: 20px; } + + .tooltip-onclick input { + padding-right: 45px; } + + .ds2_touchevents .tooltip-onclick input:focus { + padding-right: 95px; } + + .btn-calendar-icon { + position: absolute; + background-color: transparent !important; + top: 8px; + border: 0 !important; + width: 30px; + right: 15px; } + + .btn-calendar-icon .icon-primary-calendar:before { + position: absolute; + color: #0568ae; } + + .btn-calendar-icon .icon-primary-calendar.disabled { + background-color: #f2f2f2; } + + .btn-calendar-icon .icon-primary-calendar.disabled:before { + color: #959595; } + + span.icon-primary-calendar input { + padding-left: 35px; + color: #0568ae; + transition: border-color 0.3s linear 0s; + box-shadow: 2px 3px 2px -2px rgba(0, 0, 0, 0.08) inset; + position: absolute; + top: 0; + left: 0; } + + .faux-input + input.datepicker-input:not([disabled]) { + cursor: pointer; + margin-left: 0; + background-color: #fff; + position: absolute; + left: 0; + top: 0; + z-index: 0; } + + .faux-input { + background-color: transparent !important; + border: 1px solid transparent; + border-radius: 4px; + font-size: 1.6rem; + height: 35px; + left: 0; + line-height: 35px; + margin-bottom: 10px; + margin-right: 6px; + padding: 0 0 0 35px; + position: relative; + text-align: left; + top: 0; + vertical-align: middle; + width: 100%; + z-index: 1; } + + .faux-input:disabled { + cursor: not-allowed; } + + .faux-input:focus + .datepicker-input, + [data-calendar-state="opened"] + .datepicker-input { + border-color: #0568ae; + box-shadow: 2px 3px 2px -2px rgba(5, 116, 172, 0.35) inset; + outline: 0 none; } + + .form-row.error .error-msg { + display: block; + font-size: 14px; + line-height: 14px; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + position: relative; + padding-left: 18px; + margin-top: 10px; } + + .form-row.error .error-msg > .icon-primary-badgealert { + height: 14px; + width: 14px; + position: absolute; + left: 0; + margin-right: 0; } + + .form-row.error .error-msg > .icon-primary-badgealert:before { + color: #cf2a2a; + font-size: 14px; + left: 0; + line-height: 14px; + position: absolute; + vertical-align: middle; } + + .form-row.error label, + .form-row.error .error-msg, + .form-row.error button.awd-select, + .form-row.error select.awd-select + span, + .form-row.error .checkbox, + .form-row.error .radio, + .form-row.error legend.error, + .form-row.error input, + .form-row.error textarea { + color: #cf2a2a; } + + .form-row.error .btn-group > .btn, + .form-row.error button.awd-select, + .form-row.error .awd-select-list, + .form-row.error select.awd-select + span, + .form-row.error textarea, + .form-row.error input, + .form-row.error .checkbox .skin, + .form-row.error .radio .skin { + border-color: #cf2a2a !important; } + + .form-row.error .checkbox input:checked:not(:disabled) + .skin { + background-color: #cf2a2a; } + + .form-row.error .radio input:checked + .skin:after { + background-color: #cf2a2a; } + + .error [class*="price"], + .error [class*="pricing-"] { + color: #cf2a2a; } + + hr, + .hr-or { + display: block; + height: 1px; + margin: 15px 0; + border: none; + background-repeat: repeat-x; + background-color: #959595; + position: relative; } + + hr.dark { + background-color: #959595; } + + hr.lite { + background-color: #d2d2d2; } + + .hr-or:before { + background-color: #fff; + color: #666; + content: " OR "; + display: block; + font-size: 1.4rem; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + height: 16px; + left: 50%; + line-height: 1.6rem; + margin-left: -15px; + margin-top: -8px; + position: absolute; + text-align: center; + top: 50%; + width: 30px; + z-index: 1111; } + + hr.is-vertical.dark, + hr.hr-or.dark, + hr.is-vertical.lite, + hr.hr-or.lite { + display: inline-block; + height: auto; + margin: 0 15px; + min-height: 20px; + width: 1px; } + + hr.is-vertical.dark, + hr.hr-or.dark { + background-color: #959595; } + + hr.is-vertical.lite, + hr.hr-or.lite { + background-color: #d2d2d2; } + + .hr-dotted.is-vertical.dark, + .hr-dotted.is-vertical.lite { + background-color: transparent; + background-repeat: repeat-y; + background-size: 1px 4px; + height: auto; + min-height: 20px; + width: 1px; } + + .row-nowrap > .span + hr.is-vertical, + .row > .span + hr.is-vertical { + margin: 0 0 0 -20px; } + + + + hr.bottom-space-only { + margin-top: 0; } + + .hr-nomargin { + margin: 0; } + + .radio { + position: relative; + min-height: 24px; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 1.6rem; + margin-bottom: 5px; } + .radio input { + -webkit-tap-highlight-color: transparent; + height: 10px; + margin: 6px; + opacity: 0; + outline: none; + position: absolute; + left: 1px; + top: 1px; + width: 10px; } + .radio input:focus + .skin { + border-color: #0568ae; } + .radio input:focus + .skin:before { + content: ""; + height: 34px; + left: -6px; + top: -6px; + outline: 1px dotted #000000; + position: absolute; + width: 34px; } + .radio input + .skin { + border-radius: 100%; } + .radio input:checked + .skin:after { + background-color: #0568ae; + border-radius: 100%; + border: 3px solid #FFFFFF; + content: ""; + display: block; + height: 16px; + position: absolute; + width: 16px; } + .radio input:disabled + .skin { + cursor: not-allowed; + background-color: #d2d2d2; + border-color: #d2d2d2; + color: #666666; } + .radio input:disabled + .skin + span { + cursor: not-allowed; + color: #666666; } + .radio input:disabled:checked + .skin:after { + background-color: #666666; } + .radio input:invalid + .skin { + border: solid 1px #cf2a2a; } + .radio .skin { + background-color: #FFFFFF; + border: 1px solid #d2d2d2; + border-radius: 3px; + display: inline-block; + height: 24px; + left: 0; + position: absolute; + top: 0; + width: 24px; } + .radio span { + display: inline-block; + margin-left: 34px; + margin-top: 0; + position: relative; + top: 3px; } + .radio label { + font-size: 1.6rem; + font-family: "Omnes-ECOMP-W02", Arial; } + + .radio.inline { + display: inline-block; + margin-bottom: 10px; + vertical-align: middle; + margin-right: 10px; } + .radio.inline:last-child { + margin-right: 0; } + + .radio-box { + border: 1px solid #d2d2d2; + border-radius: 8px; } + .radio-box > [role="radio"] label { + padding: 15px 15px 20px 15px; + display: block; + width: 100%; } + .radio-box > [role="radio"] label .skin + span { + top: 2px; } + .radio-box > [role="radio"] + div { + padding: 0 15px 15px 47px; } + .radio-box > [aria-checked="false"] label > input { + top: 15px; + left: 15px; } + .radio-box > [aria-checked="false"] label .skin { + top: 15px; + left: 15px; } + .radio-box > [aria-checked="true"] label > input { + top: 13px; + left: 13px; } + .radio-box > [aria-checked="true"] label .skin { + top: 13px; + left: 13px; } + + .radio-box.active { + border: 3px solid #0568ae; } + .radio-box.active > [role="radio"] label { + padding: 13px 14px 19px 13px; } + + .checkbox { + position: relative; + min-height: 24px; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 1rem; + } + .checkbox input { + -webkit-tap-highlight-color: transparent; + height: 20px; + margin-left: 20px; + opacity: 0; + outline: none; + position: absolute; + left: 1px; + top: 1px; + width: 10px; } + .checkbox input:focus + .skin { + border-color: #0568ae; } + .checkbox input:focus + .skin:before { + content: ""; + height: 34px; + left: -6px; + top: -6px; + outline: 1px dotted #000000; + position: absolute; + width: 34px; } + .checkbox input:checked:not(:disabled) + .skin { + background-color: #0568ae; + border-color: #0568ae; } + .checkbox input:checked:disabled + .skin:after { + color: #5A5A5A; } + .checkbox input:checked + .skin:after { + height: 20px; + width: 10px; + background-color: transparent; + font-size: 23.4px; + color: #FFFFFF; + line-height: 21px; } + .checkbox input:disabled + .skin { + cursor: not-allowed; + background-color: #d2d2d2; + border-color: #d2d2d2; + color: #666666; } + .checkbox input:disabled + .skin + span { + cursor: not-allowed; + color: #666666; } + .checkbox input:invalid + .skin { + border: solid 1px #cf2a2a; } + .checkbox input:indeterminate + .skin:after { + background-color: transparent; + font-size: 25px; + color: #0574ac; + content: "\e920"; } + .checkbox .skin { + background-color: #fff; + border: 1px solid #d2d2d2; + border-radius: 3px; + display: inline-block; + height: 24px; + width: 24px; + position: absolute; + left: 0; + top: 0; } + .checkbox span { + display: inline-block; + margin-left: 34px; + margin-top: 0; + position: relative; + top: 3px; } + .checkbox label { + font-size: 1.6rem; + font-family: "Omnes-ECOMP-W02", Arial; } + .checkbox input { + z-index: 9999; } + .checkbox input.indeterminate + .skin:after { + font-size: 22px; + color: #0568ae; } + + /* .checkbox.inline { + display: inline-block; + margin-bottom: 10px; + vertical-align: middle; + margin-right: 10px; } + .checkbox.inline:last-child { + margin-right: 0; } + + .checkbox.checkbox-selectall { + margin: 20px 0 0 24px; } + + .terms-after-checkbox { + margin-top: 15px; } */ + + .indeterminate-margin { + padding-left: 24px; } + + .tiny-accordion { + border-bottom: 1px solid #d2d2d2; } + + .toggle-header, + .inactive-toggle-header { + border-color: #fff; + color: #0568ae; + cursor: pointer; + display: block; + font-size: 2.0rem; + line-height: 2.2rem; + min-height: 41px; + position: relative; + padding: 16px 55px 16px 15px; } + + .toggle-header.opened { + color: #333333; } + + .tiny-accordion .toggle-header, + .tiny-accordion .inactive-toggle-header { + padding: 16px 55px 16px 15px; + border-top: 1px solid #d2d2d2; } + + .tiny-accordion .toggle-header:focus { + text-decoration: underline; } + + .tiny-accordion.iconleft .toggle-header, + .tiny-accordion.iconleft .inactive-toggle-header { + padding: 15px 15px 15px 50px; } + + .accordion-content { + font-size: 1.4rem; } + + .accordion-content .toggle-header:first-child { + margin-top: 16px; } + + .tiny-accordion .toggle-header + .accordion-content { + padding: 0 50px 15px 15px; } + + .tiny-accordion.iconleft .toggle-header + .accordion-content { + padding: 0 15px 15px 50px; } + + .toggle-header .icon-primary-accordion-plus, + .toggle-header .icon-primary-accordion-minus { + display: inline-block; + font-size: 20px; + margin: 0; + padding: 0; + position: absolute; + right: 15px; + vertical-align: middle; + top: 16px; + font-weight: bold; } + + .tiny-accordion.iconleft .toggle-header .icon-primary-accordion-plus, + .tiny-accordion.iconleft .toggle-header .icon-primary-accordion-minus { + left: 15px; } + + .inactive-toggle-header:hover { + cursor: inherit; } + + .tiny-accordion-to-tabs, + .tiny-tabs { + position: relative; + width: 100%; + margin: 0px; + padding: 0px; } + + .tiny-tabs [class*="icon-primary-accordion-"] { + display: none !important; } + + .tiny-accordion-to-tabs:before, + .tiny-accordion-to-tabs:after, + .tiny-tabs:before, + .tiny-tabs:after { + display: table; + content: ""; + line-height: 0; } + + .tiny-accordion-to-tabs:after, + .tiny-tabs:after { + clear: both; } + + .tiny-accordion-to-tabs:before, + .tiny-accordion-to-tabs:after, + .tiny-tabs:before, + .tiny-tabs:after { + display: table; + content: ""; + line-height: 0; } + + .tiny-accordion-to-tabs:after, + .tiny-tabs:after { + clear: both; } + + .tiny-tabs > .toggle-header { + display: inline-block; + float: left; + border-top: none; + overflow: hidden; + height: 70px; + text-align: center; + background-color: #fff; + border-radius: 0px; + padding: 26px 20px 25px 20px !important; + border-top: 1px solid #fff; + -webkit-filter: none; + filter: none; + background-clip: padding-box; + border-bottom: 1px solid #d2d2d2; + font-weight: normal; + border-right: 1px solid #d2d2d2; + white-space: nowrap; } + + .tiny-tabs .toggle-header + div { + left: 0px; + position: absolute; + top: 69px; + border-top: 1px solid #d2d2d2; + padding: 0; + display: block; + border-bottom: none; + width: 100%; } + + .accordion-pad { + padding-top: 30px; + padding-bottom: 30px; } + + .tiny-tabs .opened { + color: #333333; + border-top: 5px solid #0568ae !important; + padding-top: 22px !important; + border-bottom: none; + background-color: #fff; + -webkit-filter: none; + filter: none; + cursor: default; + z-index: 999; } + + .tiny-tabs .toggle-header:focus { + text-decoration: underline; + outline: thin dotted #666; + outline-offset: 0; } + + .tiny-tabs .toggle-header:first-child { + border-left: none; + margin-left: 0; } + + .tiny-tabs .toggle-header:first-child { + border-left: 1px solid #fff; } + + .tiny-tabs .opened:first-child { + border-left: 1px solid #d2d2d2; } + + .tiny-tabs .toggle-header:nth-last-of-type(2) { + border-right-color: #fff; } + + .tiny-tabs .opened:nth-last-of-type(2) { + border-right: 1px solid #d2d2d2; } + + @media (max-width: 767px) { + .tiny-accordion, + .tiny-accordion-to-tabs { + margin-left: -15px; + margin-right: -15px; + width: auto; } + .tiny-accordion-to-tabs { + display: block; + border-bottom: 1px solid #d2d2d2; } + .tiny-accordion-to-tabs .toggle-header { + display: block; + min-height: 41px; + padding: 16px 50px 16px 15px; + border-top: 1px solid #d2d2d2; } + .tiny-accordion-to-tabs .toggle-header:focus { + text-decoration: underline; } + .tiny-accordion-to-tabs .toggle-header + .accordion-content { + padding: 0 50px 15px 15px; } } + + @media (min-width: 768px) { + .tiny-accordion-to-tabs [class*="icon-primary-accordion-"] { + display: none !important; } + .tiny-accordion-to-tabs > .toggle-header { + display: inline-block; + float: left; + border-top: none; + /*overflow: hidden;*/ + height: 70px; + text-align: center; + background-color: #fff; + border-radius: 0px; + padding: 26px 20px 25px 20px !important; + border-top: 1px solid #fff; + -webkit-filter: none; + filter: none; + background-clip: padding-box; + border-bottom: 1px solid #d2d2d2; + font-weight: normal; + border-right: 1px solid #d2d2d2; + white-space: nowrap; } + .tiny-accordion-to-tabs .toggle-header + div { + left: 0px; + position: absolute; + top: 69px; + border-top: 1px solid #d2d2d2; + padding-top: 30px; + padding-left: 20px; + display: block; + border-bottom: none; + width: 100%; } + .tiny-accordion-to-tabs .opened { + color: #333333; + border-top: 5px solid #0568ae !important; + padding-top: 22px !important; + border-bottom: none; + background-color: #fff; + -webkit-filter: none; + filter: none; + cursor: default; + text-decoration: none; + z-index: 999; } + .tiny-accordion-to-tabs .toggle-header:focus { + text-decoration: underline; + outline: thin dotted #666; + outline-offset: 0px; } + .tiny-accordion-to-tabs .toggle-header:nth-last-of-type(2) { + border-right: none; } + .tiny-accordion-to-tabs .toggle-header:first-child { + border-left: none; + margin-left: 0; } + .tiny-accordion-to-tabs .toggle-header:first-child { + border-left: 1px solid #fff; } + .tiny-accordion-to-tabs .opened:first-child { + border-left: 1px solid #d2d2d2; } + .tiny-accordion-to-tabs .opened:nth-last-of-type(2) { + border-right: 1px solid #d2d2d2; } } + + .toggle-header .tooltip .icon-primary-tooltip { + margin-top: -5px; } + + .accordion-content { + transition: all 0.8s linear; } + + .opaque-content { + opacity: 0; } + + .tiny-tabs .toggle-header { + display: inline-block; + float: left; + border-top: none; + overflow: hidden; + height: 70px; + text-align: center; + background-color: #fff; + border-radius: 0px; + padding: 22px 20px 25px 20px !important; + border-top: 5px solid #fff; + -webkit-filter: none; + filter: none; + background-clip: padding-box; + border-bottom: 1px solid #ccc; + font-weight: normal; + border-right: 1px solid #ccc; + white-space: nowrap; } + + .tiny-tabs .toggle-header:first-child { + margin-left: 0; } + + .tiny-tabs div:first-child .toggle-header { + margin-left: 30px; } + + .tiny-tabs > div .toggle-header.opened { + border-bottom: 0 !important; } + + .tiny-accordion-to-tabs > div > div.toggle-header { + background-clip: padding-box; + background-color: #fff; + border-bottom: 1px solid #ccc; + border-radius: 0; + border-top: 5px solid #fff; + display: inline-block; + filter: none; + float: left; + font-weight: normal; + overflow: hidden; + padding: 22px 20px 21px !important; + text-align: center; + white-space: nowrap; } + + .tiny-accordion-to-tabs .toggle-header:first-child { + margin-left: 0; } + + .tiny-accordion-to-tabs div:first-child .toggle-header { + margin-left: 30px; + border-bottom: 0 !important; } + + .tiny-accordion-to-tabs > div .toggle-header.opened { + border-bottom: 0 !important; } + + @media (max-width: 767px) { + .tiny-accordion-to-tabs { + display: block !important; + border-bottom: 1px solid #ccc !important; } + .tiny-accordion-to-tabs > div > div.toggle-header { + display: block !important; + float: none; + text-align: left; + min-height: 41px !important; + padding: 15px 50px 15px 15px !important; + border-top: 1px solid #ccc; } + .tiny-accordion-to-tabs > div > div.toggle-header:first-child { + margin-left: 0 !important; } + .tiny-accordion-to-tabs > div > div.toggle-header + .accordion-content { + padding: 0 50px 15px 15px; } + .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-plus { + background-position: 0 0; + background-size: 20px 40px; } + .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-minus { + background-position: 0 -20px; + background-size: 20px 40px; } + .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-plus, + .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-minus { + display: inline-block; + height: 20px; + margin: 0; + padding: 0; + position: absolute; + right: 15px; + vertical-align: middle; + width: 20px; } } + + .alert { + background-color: #5a5a5a; + border-radius: 8px; + color: #fff; + margin-top: 15px; + padding: 0; + position: relative; + border: 0; } + + .alert h3, + .alert h4 { + color: #fff; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 1.6rem; + margin: 0 20px 5px 0; } + + .alert div { + padding: 15px 20px; } + + .alert div:first-child { + border-radius: 8px 0 0 8px; + width: 1%; } + + .alert div:first-child + div { + border: 1px solid transparent; + border-left: none; + border-radius: 0 8px 8px 0; } + + .alert-error { + background-color: #cf2a2a; + border: 1px solid #cf2a2a; } + + .alert-info { + background-color: #44c8f5; + border: 1px solid #44c8f5; } + + .alert-success { + background-color: #c5d63d; + border: 1px solid #c5d63d; } + + .alert [class*="icon-primary-"] { + color: #fff; + font-size: 30px; + margin-right: 0; } + + .alert .close { + height: 30px; + position: absolute; + right: 1px; + top: 1px; + width: 30px; } + + .alert .close:before { + color: #fff; + margin-right: 0; + position: absolute; + right: 9px; + top: 9px; } + + .alert a { + color: #fff; + text-decoration: underline; } + + .alert .close:focus { + outline: 1px dotted #666; } + + .alert p { + font-size: 1.4rem; } + + .alert p:last-child { + margin-bottom: 0; } + + .alert .standalone-link i[class*="icon-primary-"] { + font-size: 20px; + margin-right: 5px; } + + @media (max-width: 767px) { + .alert { + border-radius: 0; + margin: 0 -15px; } + .alert + .alert { + margin-top: 4px; } + .alert div { + padding: 15px 10px; } + .alert div:first-child { + border-radius: 0; + padding: 15px; } + .alert h3, + .alert h4 { + font-size: 1.4rem; } + .alert p { + font-size: 1.2rem; } + .alert .close { + right: 5px; + top: 5px; } + .alert .standalone-link i[class*="icon-primary-"] { + font-size: 16px; } } + + .alert h3 { + margin: 0; + font-size: 16px; } + + .alert p { + font-size: 14px; } + + .alert p a { + color: #FFFFFF; + text-decoration: underline; } + + .alert div:first-child + div { + padding-right: 25px; } + + .alert div:last-child { + padding-right: 20px !important; } + + .alert p [class*="icon-primary-"] { + color: #fff; + font-size: 20px; + margin-right: 0; } + + @media (max-width: 767px) { + .alert h3 { + font-size: 14px; } + .alert div:first-child + div { + padding-right: 20px; } + .alert div:last-child { + padding-right: 15px !important; } + .alert div:first-child { + padding: 15px; } + .alert p { + font-size: 12px; } + .alert p [class*="icon-primary-"] { + font-size: 16px; } } + + .b2b-audio { + width: auto; + margin: 10px auto; + height: 35px; } + .b2b-audio .controls-wrapper { + display: inline-block; + font-size: 25px; + cursor: pointer; } + .b2b-audio .controls-wrapper i { + font-size: 25px; + margin-right: 0px; + color: #444; } + .b2b-audio .controls-wrapper i:hover { + color: #0574AC; } + .b2b-audio .seek-bar-container-wrapper { + display: inline-block; + outline: 0; + min-width: 180px; + margin-right: 10px; + margin-left: 10px; + height: 14px; + padding-top: 5px; } + .b2b-audio .seek-bar-container-wrapper .timing-container { + padding-top: 13px; + color: #333; + font-size: 12px; } + .b2b-audio .seek-bar-container-wrapper .timing-container .timing-container-left { + float: left; + line-height: 100%; } + .b2b-audio .seek-bar-container-wrapper .timing-container .timing-container-right { + float: right; + line-height: 100%; } + .b2b-audio .seek-bar-container-wrapper .timing-container .timing-container-spacer { + clear: both; } + .b2b-audio .seek-bar-tooltip { + text-align: center; + min-width: 76px; } + + .b2b-audio-popover { + width: 22px; } + .b2b-audio-popover .volume-popover { + height: 100px !important; + width: 6px !important; + margin: 7px auto; } + .b2b-audio-popover .min-label { + margin-top: 5px; } + + .b2b-audio-native { + width: auto; + height: auto; } + + .b2b-audio-recorder { + border: 1px solid #ccc; + box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.15); + height: 63px; + min-height: 63px; + min-width: 347px; } + .b2b-audio-recorder .b2b-elapsed-time { + margin: 23px 0 24px 15px; + font-size: 16px; + font-style: italic; + color: #767676; } + .b2b-audio-recorder .b2b-controls { + width: 68px; + cursor: pointer; } + .b2b-audio-recorder .b2b-controls i.icoControls-record { + font-size: 64px; + color: black; + float: right; + margin-right: 10px; } + .b2b-audio-recorder .b2b-controls i.icoControls-record:focus, .b2b-audio-recorder .b2b-controls i.icoControls-record:hover { + color: #0568ae; } + .b2b-audio-recorder .b2b-controls i.icoControls-stop { + font-size: 36px; + color: black; + float: right; + margin-right: 20px; + margin-top: 12px; } + .b2b-audio-recorder .b2b-controls i.icoControls-stop:focus, .b2b-audio-recorder .b2b-controls i.icoControls-stop:hover { + color: #0568ae; } + + .b2b-top-btn { + height: 36px; + width: 36px; + border-radius: 7px; } + + .b2b-top-btn > i { + position: absolute; + top: 13px; + left: 9px; + width: 11px; + height: 18px; } + + .b2b-badge { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + background-color: #5A5A5A; + border-radius: 12px; + color: #FFFFFF; + display: inline-block; + font-size: 1.5rem; + font-weight: normal; + height: 20px; + line-height: 0; + margin-top: 0; + min-width: 20px; + padding: 0 5px; + text-align: center; + vertical-align: baseline; } + .b2b-badge:empty { + display: none; } + + * + .b2b-heading-micro { + margin-top: 20px !important; } + + .b2b-heading-micro { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-weight: normal; + text-rendering: optimizeLegibility; + font-size: 1.2rem !important; + text-transform: uppercase !important; + margin-bottom: 20px !important; + line-height: 1.2 !important; } + + .b2b-no-colors .b2b-badge { + border: 1px solid transparent; } + + .btn > .b2b-badge { + margin-right: 5px; } + + a > .b2b-badge { + margin-right: 6px; + padding-top: 10px; } + + .b2b-badge-urgent { + background-color: #cf2a2a; } + + .bellyband-container { + margin: 0 -15px; } + + .bellyband-group { + width: auto; } + + .bellyband-link { + border-top: 1px solid #d2d2d2; } + + .bellyband-link a { + display: block; + height: 40px; + line-height: 40px; + padding: 0 15px; + position: relative; + text-decoration: none; } + + .bellyband-link a:hover > div span, + .bellyband-link a:focus > div span { + text-decoration: underline; } + + .bellyband-link a:after { + color: #666; + font-size: 2.3rem; + height: 20px; + position: absolute; + right: 5px; + top: 12px; + width: 18px; } + + .dark-bg .bellyband-link a:after { + color: white; } + + .bellyband-link img[src$="svg"].hidden-desktop, + .bellyband-link [class*="icon-primary-"].hidden-desktop { + display: inline-block !important; + float: left; + font-size: 24px; + height: 24px; + margin-right: 5px; + margin-top: 8px; + width: 24px; } + + .dark-bg .bellyband-link [class*="icon-primary-"].hidden-desktop, + .dark-bg .bellyband-link [class*="icon-primary-"].visible-desktop { + color: #fff; } + + .bellyband-link img[src$="svg"].visible-desktop { + display: none !important; } + + .bellyband-link p { + margin-top: -10px; + margin-left: 29px; + font-size: 1.4rem; + color: #666; } + + @media (min-width: 481px) and (max-width: 767px) { + .bellyband-container { + display: flex; + margin: 0; } + .bellyband-group { + align-content: flex-start; + align-items: stretch; + display: inline-flex; + flex-direction: column; + flex-wrap: wrap; + margin-top: 1px; + width: 100%; } + .bellyband-group .row { + display: flex !important; } + .bellyband-link { + padding-top: 0; + position: relative; + border-top: none; + margin-bottom: 20px; + width: 50%; } + .bellyband-link a { + height: inherit; + line-height: inherit; + display: flex; + padding: 0; } + .bellyband-link a:after { + display: none; } + .bellyband-link a span { + display: block; + padding-top: 10px; } + .bellyband-link p { + display: block; + padding: 0 15px 0 0; + margin-bottom: 0; + margin-left: 0; + margin-top: 0; } + .bellyband-link a:focus p { + text-decoration: none; } } + + @media (min-width: 768px) { + .bellyband-group { + margin: 0; + max-width: 100%; + display: flex; + flex-wrap: wrap; + justify-content: center; } + .bellyband-group .row { + display: block; } + .bellyband-group .row .span { + float: none; + margin-right: 0; + margin-bottom: 30px; + display: flex; + justify-content: space-between; } + .bellyband-link { + border-top: none; + flex: 0 0 auto; + margin-right: 0; + margin-bottom: 30px; } + .bellyband-link:last-child { + margin-right: 0; } + .bellyband-link a { + height: auto; + line-height: 1; + text-align: center; } + .bellyband-link a:after { + display: none; } + .bellyband-link img[src$="svg"].hidden-desktop, + .bellyband-link [class*="icon-primary-"].hidden-desktop { + display: none !important; } + .bellyband-link img[src$="svg"].visible-desktop, + .bellyband-link [class*="icon-primary-"].visible-desktop { + display: block !important; + font-size: 50px; + height: 50px; + margin-right: 0; + margin-top: 0; + margin-left: auto; + margin-right: auto; + width: auto; } + .bellyband-link a span { + display: block; + margin-top: 12px; + line-height: 2rem; } + .bellyband-link p { + display: block; + text-align: center; + margin-top: 6px; + margin-left: 0; + padding-left: 0 !important; + color: #666; + line-height: 1.8rem; } } + + @media (max-width: 480px) { + .bellyband-link-tall a { + height: auto; + padding: 0 40px 10px 15px; } + .bellyband-link-tall p { + line-height: 1.8rem; + margin-bottom: 0; } + .bellyband-link-tall > a:after { + margin-top: -8px; + top: 50%; } } + + .b2b-boardstrip { + display: inline-block; + width: 100%; + border-bottom: 1px solid #9d9d9d; + position: relative; + padding-top: 15px; } + .b2b-boardstrip .boardstrip-reel { + margin-bottom: 15px; } + .b2b-boardstrip .boardstrip-item--add { + border: 1px dashed #ccc; + background: #FFFFFF; + color: #0574ac; + width: 140px; + height: 80px; + font-size: 14px; + font-family: "Omnes-ECOMP-W02", Arial; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + position: absolute; + left: 29px; + top: 15px; } + .b2b-boardstrip .boardstrip-item--add:hover, .b2b-boardstrip .boardstrip-item--add:focus { + border: 2px solid #007A3E; + cursor: pointer; } + .b2b-boardstrip .boardstrip-item--add i { + font-size: 14px; + margin-left: auto; + margin-right: auto; + text-align: initial; } + .b2b-boardstrip .boardstrip-item--add .centered { + margin-left: auto; + margin-right: auto; + margin-top: 27px; + margin-bottom: 35px; + display: block; } + .b2b-boardstrip .board-viewport { + float: left; + margin-left: 210px; + max-height: 95px; + position: relative; + height: 95px; + overflow: hidden; + width: 0px; } + .b2b-boardstrip .board-viewport .boardstrip-container { + width: 0px; + margin-left: 0; + left: 0px; + position: absolute; + list-style: none; + -webkit-transition: left 1000ms; + transition: left 1000ms; } + .b2b-boardstrip .board-viewport .board-item { + width: 140px; + height: 80px; + border: 1px solid #ccc; + margin: 0 15px 15px 0; + background-color: #FFFFFF; + border-radius: 3px; + float: left; + overflow: hidden; } + .b2b-boardstrip .board-viewport .board-item:hover, .b2b-boardstrip .board-viewport .board-item:focus { + border: 2px solid #007A3E; + background-color: white; + cursor: pointer; } + .b2b-boardstrip .board-viewport .board-item .board-img { + width: 61px; + height: 40px; + margin: 0 auto; } + .b2b-boardstrip .board-viewport .board-item .board-img img { + max-width: 100%; } + .b2b-boardstrip .board-viewport .board-item .title { + text-align: center; + line-height: 16px; + color: #666; + font-size: 14px; + font-family: "Omnes-ECOMP-W02", Arial; + padding: 10px 0; } + .b2b-boardstrip .board-viewport .board-item.selected { + background-color: #FFFFFF; + border: 2px solid #0574ac; } + .b2b-boardstrip .board-viewport .board-item .board-caret { + cursor: default; + outline: 0; + position: absolute; + bottom: 7px; } + .b2b-boardstrip .board-viewport .board-item .board-caret .board-caret-indicator { + border-left: 8px solid transparent; + border-right: 8px solid transparent; + border-bottom: 8px solid #999; + width: 0px; + height: 0px; + position: absolute; + left: 61px; + bottom: -7px; } + .b2b-boardstrip .board-viewport .board-item .board-caret .board-caret-arrow-up { + width: 0px; + height: 0px; + border-style: solid; + border-width: 0 8px 8px 8px; + border-color: transparent transparent #FFFFFF transparent; + left: 61px; + position: absolute; } + .b2b-boardstrip .arrow { + font-size: 14px; + cursor: pointer; + color: #0574ac; } + .b2b-boardstrip .arrow:hover { + color: #0574ac; } + .b2b-boardstrip .arrow.disabled { + color: #767676 !important; + cursor: not-allowed; } + .b2b-boardstrip .prev-items { + display: inline-block; + margin-top: auto; + margin-bottom: auto; + margin-right: 15px; + position: absolute; + left: 0; + top: 45px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -o-user-select: none; + user-select: none; } + .b2b-boardstrip .next-items { + display: inline-block; + margin-top: 30px; + margin-bottom: auto; + margin-left: 10px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -o-user-select: none; + user-select: none; } + .b2b-boardstrip .centered { + display: table-cell; + text-align: center; + vertical-align: middle; } + + .breadcrumb { + padding: 10px 15px; + height: 40px; + list-style: none; + border-bottom: 1px solid #d2d2d2; + font-size: 1.2rem; + width: 100%; + z-index: 1000; } + + .breadcrumb > li { + position: relative; + display: inline-block; + margin-right: 15px; } + + .breadcrumb > li:after { + font-size: 8px; + margin-right: 0; + right: -8px; + color: #333333; } + + .breadcrumb > li:last-child { + color: #333333; } + + .breadcrumb > li:last-child:after { + content: ""; } + + .breadcrumb li > * { + float: none !important; + margin: 0; } + + .breadcrumb { + padding: 10px 15px !important; } + + /* ARROW */ + /* spanish */ + .datepicker { + background-color: #FFFFFF; + padding: 0; + border-radius: 5px; + direction: ltr; } + .datepicker > div { + display: none; } + .datepicker table { + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + margin: 0 0 0 0; } + .datepicker td { + text-align: center; + display: block; + width: 30px; + height: 30px; + border: none; } + .datepicker td span { + display: block; + width: 23%; + height: 54px; + line-height: 54px; + float: left; + margin: 1%; + cursor: pointer; + border-radius: 4px; } + .datepicker td span:hover { + background: #eeeeee; } + .datepicker td span.disabled { + background: none; + color: #5A5A5A; + cursor: default; } + .datepicker td span.disabled:hover { + background: none; + color: #5A5A5A; + cursor: default; } + .datepicker td span.active { + color: #FFFFFF; + background-color: #0568ae; + border-color: #357ebd; } + .datepicker td span.active:hover { + color: #FFFFFF; + background-color: #0568ae; + border-color: #357ebd; } + .datepicker td span.active.disabled { + color: #FFFFFF; + background-color: #0568ae; + border-color: #357ebd; } + .datepicker th { + text-align: center; + display: block; + width: 30px; + height: 30px; + border: none; } + .datepicker tbody:focus { + outline: none; } + .datepicker td.day { + background-color: transparent; + color: #0568ae; + cursor: pointer; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 16px; + height: 34px; + line-height: 30rem; + margin: -2px -1px 0 0; + overflow: hidden; + text-align: center; + width: 42px; } + .datepicker:focus { + outline: 1px dotted #191919; + outline-offset: -2px; } + .datepicker th[tabindex]:focus { + outline-offset: -15px; } + .datepicker td.day.focused { + background: #ededed; + cursor: pointer; } + .datepicker td.day.focused.active { + background-color: #ededed; + color: #0568ae; } + .datepicker td.disabled { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5A5A5A; + cursor: default; } + .datepicker td.disabled:hover { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5A5A5A; + cursor: default; } + .datepicker td.disabled:hover .show-date { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5A5A5A; } + .datepicker td.disabled .show-date { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5A5A5A; } + .datepicker td.today { + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today:hover { + color: #FFFFFF; + background-color: #0568ae; + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today:active { + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today:focus { + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today.disabled { + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today.active { + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today.active:hover { + color: #FFFFFF; } + .datepicker td.selected { + color: #FFFFFF; + background-color: #95959500; } + .datepicker td.selected:hover { + color: #FFFFFF; + background-color: #95959500; } + .datepicker td.selected.disabled { + color: #FFFFFF; + background-color: #95959500; } + .datepicker td.active:not(.new) { + color: #FFFFFF; + border-color: #357ebd; } + .datepicker td.active:not(.new) .show-date { + color: #0568ae; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + .datepicker td.active:hover:not(.new) { + color: #FFFFFF; + border-color: #357ebd; } + .datepicker td.active:hover:not(.new) .show-date { + color: #0568ae; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + .datepicker .start-date .show-date { + background-color: #0568ae; + color: #FFFFFF !important; + border-radius: 5px 0 0 5px; + z-index: 1; } + .datepicker .start-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: 20px; + position: absolute; + width: 100%; + z-index: -1; } + .datepicker .between-date .show-date { + background-color: #0568ae; + color: #FFFFFF !important; } + .datepicker .between-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: 0; + position: absolute; + width: 100%; + z-index: -1; } + .datepicker .between-date:first-child .show-date:before { + background-color: #FFFFFF; + content: ""; + height: 26px; + position: absolute; + left: 0; + width: 8px; } + .datepicker .end-date .show-date { + background-color: #0568ae; + color: #FFFFFF !important; + border-radius: 0 5px 5px 0; } + .datepicker .end-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: -20px; + position: absolute; + width: 100%; + z-index: -1; } + .datepicker .end-date:first-child .show-date:after { + background-color: #FFFFFF; + content: ""; + height: 26px; + position: absolute; + left: 0; + width: 8px; } + .datepicker .end-date:first-child .show-date::before { + background-color: #FFFFFF; } + .datepicker tr td.start-date:last-child .show-date:after { + background-color: #FFFFFF; + content: ""; + height: 26px; + position: absolute; + right: 0; + width: 8px; } + .datepicker tr td.start-date:last-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker tr td.start-date:first-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker tr td.between-date:last-child .show-date:after { + background-color: #FFFFFF; + content: ""; + height: 26px; + position: absolute; + right: 0; + width: 8px; } + .datepicker tr td.between-date:last-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker tr td.between-date:first-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker tr td.end-date:last-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker tr td.end-date:first-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker th.datepicker-switch { + width: 198px; + font-size: 20px; + font-weight: normal; + cursor: default !important; } + .datepicker thead tr:first-child th { + cursor: pointer; + height: 60px; + line-height: 60px; } + .datepicker thead tr:first-child th.cw { + cursor: default; + background-color: transparent; } + .datepicker tfoot tr th { + cursor: pointer; + height: 60px; + line-height: 60px; + height: auto; + line-height: normal; } + .datepicker tfoot tr th li { + margin-bottom: 5px; } + .datepicker .prev { + color: transparent; + font-size: 0; + margin: 0 -1px -1px 0; + width: 46px; } + .datepicker .prev i { + color: #0568ae; + position: absolute; + font-size: 27px; + margin: 0; + top: 15px; + left: 8px; } + .datepicker .next { + color: transparent; + font-size: 0; + margin: 0 -1px -1px 0; + width: 46px; } + .datepicker .next i { + color: #0568ae; + position: absolute; + font-size: 27px; + margin: 0; + top: 15px; + right: 8px; } + .datepicker .cw { + font-size: 5px; + width: 12px; + padding: 0 2px 0 5px; + vertical-align: middle; } + .datepicker .due-date .show-date { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + background-color: #cf2a2a; + border-radius: 5px; + color: #FFFFFF !important; } + .datepicker .day.active .show-date:after { + border: 2px solid #0568ae; + border-radius: 7px; + content: ""; + display: block; + height: 30px; + left: 4px; + position: absolute; + top: 0; + width: 30px; } + .datepicker .day:focus .show-date:after { + border: 2px solid #0568ae; + border-radius: 7px; + content: ""; + display: block; + height: 30px; + left: 4px; + position: absolute; + top: 0; + width: 30px; + height: 30px; + left: 4px; + top: 0; + width: 30px; } + .datepicker .due-date.disabled .show-date:after { + border: 2px solid #0568ae; + border-radius: 7px; + content: ""; + display: block; + height: 30px; + left: 4px; + position: absolute; + top: 0; + width: 30px; } + .datepicker .day.due-date:focus .show-date:after { + height: 30px; + left: 4px; + top: 0; + width: 30px; } + .datepicker .due-date.old:after { + visibility: hidden; } + .datepicker .due-date.new:after { + visibility: hidden; } + .datepicker .due-date.active:after { + border-color: #FFFFFF; } + .datepicker .due-date.active.focused { + color: #0568ae !important; } + .datepicker .due-date.active.focused:after { + border-color: #cf2a2a !important; } + .datepicker .dow { + height: 24px; + width: 42px; + font-weight: normal; + position: relative; + overflow: hidden; + color: transparent; + letter-spacing: -6px; + margin: 0 -1px -1px 0; } + .datepicker .dow span[aria-hidden="true"] { + bottom: 0; + color: #5A5A5A; + display: block; + left: 1px; + letter-spacing: 0; + line-height: .9; + margin: 0 auto; + padding: 0; + position: relative; + width: 22px; } + .datepicker .calendar-legend { + margin-top: 3px; + margin-bottom: 20px; } + .datepicker .calendar-legend li { + font-size: 1.4rem; + font-weight: normal; + margin-bottom: 5px; + padding-left: 10px; + padding-top: 5px; + position: relative; } + .datepicker i.legend-due-date { + background-color: #cf2a2a; + border-radius: 5px; + height: 18px; + width: 18px; + margin-right: 8px; + vertical-align: middle; + display: inline-block; } + .datepicker i.legend-selected-date { + background-color: #FFFFFF; + border: 2px solid #0568ae; + border-radius: 5px; + height: 18px; + width: 18px; + margin-right: 8px; + vertical-align: middle; + display: inline-block; } + .datepicker i.legend-selectedisdue { + background-color: #FFFFFF; + border: 2px solid #0568ae; + border-radius: 5px; + display: inline-block; + height: 18px; + margin-right: 8px; + position: relative; + vertical-align: middle; + width: 18px; } + .datepicker i.legend-selectedisdue:after { + background-color: #cf2a2a; + border-radius: 3px; + content: ""; + display: block; + height: 10px; + left: 2px; + position: absolute; + top: 2px; + width: 10px; } + .datepicker .text-left { + width: 100%; } + .datepicker .active.old { + background-color: #ededed !important; + color: #ededed !important; } + + .datepicker-inline { + width: 220px; } + + .datepicker.datepicker-rtl { + direction: rtl; } + .datepicker.datepicker-rtl td span { + float: right; } + + .datepicker-dropdown { + top: 0; + left: 0; } + .datepicker-dropdown:before { + content: " "; + display: inline-block; + border-left: 10px solid transparent; + border-right: 10px solid transparent; + border-bottom: 10px solid #d2d2d2; + border-top: 0; + border-bottom-color: rgba(0, 0, 0, 0.2); + position: absolute; } + .datepicker-dropdown:after { + content: " "; + display: inline-block; + border-left: 10px solid transparent; + border-right: 10px solid transparent; + border-bottom: 10px solid #fff; + border-top: 0; + position: absolute; } + + .datepicker-dropdown.datepicker-orient-left:before { + left: 16px; } + + .datepicker-dropdown.datepicker-orient-left:after { + left: 16px; } + + .datepicker-dropdown.datepicker-orient-right:before { + right: 16px; } + + .datepicker-dropdown.datepicker-orient-right:after { + right: 16px; } + + .datepicker-dropdown.datepicker-orient-top:before { + top: -10px; } + + .datepicker-dropdown.datepicker-orient-top:after { + top: -9px; } + + .datepicker-dropdown.datepicker-orient-bottom:before { + bottom: -7px; + border-bottom: 0; + border-top: 7px solid #959595; } + + .datepicker-dropdown.datepicker-orient-bottom:after { + bottom: -6px; + border-bottom: 0; + border-top: 6px solid #fff; } + + .datepicker.days div.datepicker-days { + display: block; } + + .datepicker.months div.datepicker-months { + display: block; } + + .datepicker.years div.datepicker-years { + display: block; } + + .show-date { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + color: #0568ae; + height: 26px; + line-height: 26px; + margin: 4px auto 0; + width: 26px; } + + .input-group.date .input-group-addon i { + cursor: pointer; + width: 16px; + height: 16px; } + + .datepicker.dropdown-menu { + box-shadow: 0 10px 15px -10px rgba(0, 0, 0, 0.7); + position: absolute; + top: 100%; + left: 0; + float: left; + display: none; + margin-top: 13px; + width: 290px; + list-style: none; + background-color: #FFFFFF; + border: 1px solid #d2d2d2; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 5px; + color: #333333; + font-size: 13px; + line-height: 1.428571429; + z-index: 1050; } + .datepicker.dropdown-menu th { + display: block; + float: left; + padding: 0; + position: relative; } + .datepicker.dropdown-menu td { + display: block; + float: left; + padding: 0; + position: relative; } + + .s { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: -62px 0; } + + .m { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: -5px 0; } + + .t { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: -19px 0; } + + .w { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: -34px 0; } + + .f { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: -49px 0; } + + .d { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: 0 0; } + + .l { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: 0 0; } + + .v { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: 0 0; } + + .j { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: 0 0; } + + .b2b-coachmark-label { + z-index: 1060; + opacity: 1; + cursor: not-allowed; + position: relative; } + + .b2b-coachmark-highlight { + border: 1px solid #d3d3d3; + cursor: default; + z-index: 1045; + opacity: 1; + background-color: #ffffff; + border-radius: 10px; + position: relative; + box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.25); + padding: 10px; + position: absolute; } + + .b2b-coachmark-highlight-mask { + z-index: 1100; + opacity: .1; } + + .b2b-coachmark-container { + border: 1px solid #cccccc; + width: 316px; + pointer-events: auto; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + font-size: 16px; + -webkit-transition: opacity .2s ease-out; + -moz-transition: opacity .2s ease-out; + transition: opacity .2s ease-out; + background: #fff; + border-radius: 20px; + box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.15); + color: #333; + line-height: 20px; + position: absolute; + top: 50px; + left: -97px; + display: block; + background-color: #ffffff; + z-index: 1050; + opacity: 1; } + .b2b-coachmark-container i.b2b-coachmark-caret { + position: absolute; + top: -12px; + left: 47%; + opacity: 1; + z-index: 1050; } + .b2b-coachmark-container i.b2b-coachmark-caret:before { + content: ""; + border-left: 12px solid transparent; + border-right: 12px solid transparent; + border-bottom: 12px solid #d3d3d3; + position: absolute; + top: -1px; } + .b2b-coachmark-container i.b2b-coachmark-caret:after { + content: ""; + border-left: 12px solid transparent; + border-right: 12px solid transparent; + border-bottom: 12px solid #fff; + position: absolute; } + .b2b-coachmark-container .b2b-coachmark-header { + position: relative; + height: 47px; + overflow: hidden; } + .b2b-coachmark-container .b2b-coachmark-header .corner-button { + box-shadow: 0 -24px 0 0 #f2f2f2 inset; + height: 69px; + position: absolute; + right: -33px; + top: -38px; + transform: rotate(45deg); + width: 69px; } + .b2b-coachmark-container .b2b-coachmark-countlabel { + font-size: 12px; + font-family: "Omnes-ECOMP-W02", Arial; + color: #333333; + margin-left: 20px; + margin-top: 20px; } + .b2b-coachmark-container .b2b-coachmark-content { + padding: 0px 20px 20px 20px; + float: left; } + .b2b-coachmark-container .b2b-coachmark-content .icon-misc-dimmer { + font-size: 32px; + float: left; + margin-right: 10px; + width: 32px; } + .b2b-coachmark-container .b2b-coachmark-content .offscreen-text { + position: absolute; + left: -10000px; + top: auto; + width: 1px; + height: 1px; + overflow: hidden; } + .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-content-header { + font-size: 16px; + color: #333333; + line-height: 18px; + float: left; + width: 220px; } + .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-description { + font-size: 14px; + line-height: 18px; + color: #333333; + width: 100%; + float: left; + margin-top: 15px; } + .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-btn-group { + margin-top: 20px; + float: left; + text-align: right; + width: 100%; } + .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-btn-group .b2b-coachmark-link { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 15px; + color: #0574ac; + line-height: 18px; + margin-right: 20px; } + .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-btn-group button { + font-size: 15px; + margin: 0px; } + + .datepicker { + background-color: #fff; + padding: 0; + border-radius: 5px; + direction: ltr; } + + .datepicker-inline { + width: 220px; } + + .datepicker.datepicker-rtl { + direction: rtl; } + + .datepicker.datepicker-rtl td span { + float: right; } + + .datepicker-dropdown { + top: 0; + left: 0; } + + /* ARROW */ + .datepicker-dropdown:before { + content: " "; + display: inline-block; + border-left: 10px solid transparent; + border-right: 10px solid transparent; + border-bottom: 10px solid #d2d2d2; + border-top: 0; + border-bottom-color: rgba(0, 0, 0, 0.2); + position: absolute; } + + .datepicker-dropdown:after { + content: " "; + display: inline-block; + border-left: 10px solid transparent; + border-right: 10px solid transparent; + border-bottom: 10px solid #fff; + border-top: 0; + position: absolute; } + + .datepicker-dropdown.datepicker-orient-left:before, + .datepicker-dropdown.datepicker-orient-left:after { + left: 255px; } + + .datepicker-dropdown.datepicker-orient-right:before, + .datepicker-dropdown.datepicker-orient-right:after { + right: 16px; } + + .datepicker-dropdown.datepicker-orient-top:before { + top: -10px; } + + .datepicker-dropdown.datepicker-orient-top:after { + top: -9px; } + + .datepicker-dropdown.datepicker-orient-bottom:before { + bottom: -7px; + border-bottom: 0; + border-top: 7px solid #959595; } + + .datepicker-dropdown.datepicker-orient-bottom:after { + bottom: -6px; + border-bottom: 0; + border-top: 6px solid #fff; } + + .datepicker > div { + display: none; } + + .datepicker.days div.datepicker-days { + display: block; } + + .datepicker.months div.datepicker-months { + display: block; } + + .datepicker.years div.datepicker-years { + display: block; } + + .datepicker table { + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + margin: 0 0 0 0; } + + .datepicker td, + .datepicker th { + text-align: center; + display: block; + width: 30px; + height: 30px; + border: none; } + + .datepicker tbody :focus { + outline: none; } + + .datepicker td.day { + background-color: transparent; + color: #0568ae; + cursor: pointer; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 16px; + height: 34px; + line-height: 30rem; + margin: -2px -1px 0 0; + overflow: hidden; + text-align: center; + width: 42px; } + + .datepicker :focus { + outline: 1px dotted #000; + outline-offset: -2px; } + + .datepicker td.day.focused { + background: #ededed; + cursor: pointer; } + + .datepicker td.day.focused.active { + background-color: #ededed; + color: #0568ae; } + + .datepicker td.disabled, + .datepicker td.disabled:hover { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5a5a5a; + cursor: default; } + + .datepicker td.today, + .datepicker td.today:hover, + .datepicker td.today.disabled { + color: #fff; + background-color: #0568ae; } + + .datepicker td.today.active, + .datepicker td.today:active, + .datepicker td.today:hover, + .datepicker td.today:focus { + color: #fff; + background-color: #0568ae; } + + .datepicker td.today.active:hover { + color: #fff; } + + .datepicker td.selected, + .datepicker td.selected:hover, + .datepicker td.selected.disabled { + color: #ffffff; + background-color: #959595; } + + .datepicker td.active:not(.new), + .datepicker td.active:hover:not(.new) { + color: #ffffff; + border-color: #357ebd; } + + .show-date { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + color: #0568ae; + height: 26px; + line-height: 26px; + margin: 4px auto 0; + width: 26px; } + + .datepicker .start-date .show-date, + .datepicker .between-date .show-date, + .datepicker .end-date .show-date { + background-color: #0568ae; + color: #fff !important; } + + .datepicker .start-date .show-date { + border-radius: 5px 0 0 5px; + z-index: 1; } + + .datepicker .start-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: 20px; + position: absolute; + width: 100%; + z-index: -1; } + + .datepicker .between-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: 0; + position: absolute; + width: 100%; + z-index: -1; } + + .datepicker .end-date .show-date { + border-radius: 0 5px 5px 0; } + + .datepicker .end-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: -20px; + position: absolute; + width: 100%; + z-index: -1; } + + .datepicker .between-date:first-child .show-date:before { + background-color: #fff; + content: ""; + height: 26px; + position: absolute; + left: 0; + width: 8px; } + + .datepicker .end-date:first-child .show-date:after { + background-color: #fff; + content: ""; + height: 26px; + position: absolute; + left: 0; + width: 8px; } + + .datepicker .end-date:first-child .show-date::before { + background-color: #fff; } + + .datepicker tr td.start-date:last-child .show-date:after, + .datepicker tr td.between-date:last-child .show-date:after { + background-color: #fff; + content: ""; + height: 26px; + position: absolute; + right: 0; + width: 8px; } + + .datepicker tr td.start-date:last-child:focus .show-date:after, + .datepicker tr td.end-date:last-child:focus .show-date:after, + .datepicker tr td.between-date:last-child:focus .show-date:after, + .datepicker tr td.start-date:first-child:focus .show-date:after, + .datepicker tr td.end-date:first-child:focus .show-date:after, + .datepicker tr td.between-date:first-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + + .datepicker td.active:not(.new) .show-date, + .datepicker td.active:hover:not(.new) .show-date { + color: #0568ae; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + .datepicker td.disabled .show-date, + .datepicker td.disabled:hover .show-date { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5a5a5a; } + + .datepicker td span { + display: block; + width: 23%; + height: 54px; + line-height: 54px; + float: left; + margin: 1%; + cursor: pointer; + border-radius: 4px; } + + .datepicker td span:hover { + background: #eeeeee; } + + .datepicker td span.disabled, + .datepicker td span.disabled:hover { + background: none; + color: #5a5a5a; + cursor: default; } + + .datepicker td span.active, + .datepicker td span.active:hover, + .datepicker td span.active.disabled { + color: #ffffff; + background-color: #0568ae; + border-color: #357ebd; } + + .datepicker th.datepicker-switch { + width: 198px; + font-size: 20px; + font-weight: normal; + cursor: default !important; } + + .datepicker thead tr:first-child th, + .datepicker tfoot tr th { + cursor: pointer; + height: 60px; + line-height: 60px; } + + .datepicker tfoot tr th { + height: auto; + line-height: normal; } + + .datepicker tfoot tr th li { + margin-bottom: 5px; } + + .datepicker .prev, + .datepicker .next { + color: transparent; + font-size: 0; + margin: 0 -1px -1px 0; + width: 46px; } + + .datepicker .prev i, + .datepicker .next i { + color: #0568ae; + position: absolute; + font-size: 27px; + margin: 0; + top: 15px; } + + .datepicker .prev i { + left: 8px; } + + .datepicker .next i { + right: 8px; } + + .datepicker .cw { + font-size: 5px; + width: 12px; + padding: 0 2px 0 5px; + vertical-align: middle; } + + .datepicker thead tr:first-child th.cw { + cursor: default; + background-color: transparent; } + + .input-group.date .input-group-addon i { + cursor: pointer; + width: 16px; + height: 16px; } + + .datepicker.dropdown-menu { + box-shadow: 0 10px 15px -10px rgba(0, 0, 0, 0.7); + position: absolute; + top: 100%; + left: 0; + float: left; + display: none; + margin-top: 13px; + width: 290px; + list-style: none; + background-color: #ffffff; + border: 1px solid #d2d2d2; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 5px; + color: #333333; + font-size: 13px; + line-height: 1.428571429; + z-index: 1050; } + + .datepicker.dropdown-menu th, + .datepicker.dropdown-menu td { + display: block; + float: left; + padding: 0; + position: relative; } + + .datepicker .due-date .show-date { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + background-color: #cf2a2a; + border-radius: 5px; + color: #fff !important; } + + .datepicker .day.active .show-date:after, + .datepicker .day:focus .show-date:after, + .datepicker .due-date.disabled .show-date:after { + border: 2px solid #0568ae; + border-radius: 7px; + content: ""; + display: block; + height: 30px; + left: 4px; + position: absolute; + top: 0; + width: 30px; } + + .datepicker .day:focus .show-date:after { + height: 30px; + left: 4px; + top: 0; + width: 30px; } + + .datepicker .day.due-date:focus .show-date:after { + height: 30px; + left: 4px; + top: 0; + width: 30px; } + + .datepicker .due-date.old:after, + .datepicker .due-date.new:after { + visibility: hidden; } + + .datepicker .due-date.active:after { + border-color: #fff; } + + .datepicker .due-date.active.focused { + color: #0568ae !important; } + + .datepicker .due-date.active.focused:after { + border-color: #cf2a2a !important; } + + .datepicker .dow { + height: 24px; + width: 42px; + font-weight: normal; + position: relative; + overflow: hidden; + color: transparent; + letter-spacing: -6px; + margin: 0 -1px -1px 0; } + + .datepicker .dow span[aria-hidden="true"] { + bottom: 0; + color: #5a5a5a; + display: block; + left: 1px; + letter-spacing: 0; + line-height: .9; + margin: 0 auto; + padding: 0; + position: relative; + width: 22px; } + + .datepicker .calendar-legend { + margin-top: 3px; + margin-bottom: 20px; } + + .datepicker .calendar-legend li { + font-size: 1.4rem; + font-weight: normal; + margin-bottom: 5px; + padding-left: 10px; + padding-top: 5px; + position: relative; } + + .datepicker i.legend-due-date { + background-color: #cf2a2a; + border-radius: 5px; + height: 18px; + width: 18px; + margin-right: 8px; + vertical-align: middle; + display: inline-block; } + + .datepicker i.legend-selected-date { + background-color: #fff; + border: 2px solid #0568ae; + border-radius: 5px; + height: 18px; + width: 18px; + margin-right: 8px; + vertical-align: middle; + display: inline-block; } + + .datepicker i.legend-selectedisdue { + background-color: #fff; + border: 2px solid #0568ae; + border-radius: 5px; + display: inline-block; + height: 18px; + margin-right: 8px; + position: relative; + vertical-align: middle; + width: 18px; } + + .datepicker i.legend-selectedisdue:after { + background-color: #cf2a2a; + border-radius: 3px; + content: ""; + display: block; + height: 10px; + left: 2px; + position: absolute; + top: 2px; + width: 10px; } + + .datepicker .text-left { + width: 100%; } + + .datepicker .active.old { + background-color: #ededed !important; + color: #ededed !important; } + + .s, + .m, + .t, + .w, + .f, + .d, + .l, + .v, + .j { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: white; + background-repeat: no-repeat; } + + .s { + background-position: -62px 0; } + + .m { + background-position: -5px 0; } + + .t { + background-position: -19px 0; } + + .w { + background-position: -34px 0; } + + .f { + background-position: -49px 0; } + + /* spanish */ + .d { + background-position: 0 0; } + + .l { + background-position: 0 0; } + + .v { + background-position: 0 0; } + + .j { + background-position: 0 0; } + + .datepicker-container { + position: relative; } + + .btn-calendar-icon:focus .icon-primary-calendar { + outline: 1px dotted #191919; } + + .btn-calendar-icon:focus { + outline: none; } + + /* remove focus outline when dropdown is opened */ + /*resolve blue focus outline over dropdown with error*/ + select { + margin-right: -1; + height: 36px; + line-height: 25px; + + background-color: #95959521; } + + .selectWrap.disabled .icon-primary-down { + color: #d6d6d6; } + + .selectWrap.disabled input.awd-select { + z-index: 0; + padding: 10px 45px 10px 15px; + text-indent: 0; } + + .selectWrap.disabled button.awd-select { + z-index: 0; + text-indent: 15px; } + + .selectWrap.disabled:after { + color: #5A5A5A; + cursor: not-allowed; } + + input.awd-select { + background-color: transparent; + border: 1px solid #d2d2d2; + border-radius: 6px; + box-shadow: 1px 5px 2px -5px rgba(0, 0, 0, 0.15); + color: #333333; + display: block; + font-family: "Omnes-ECOMP-W02", Arial; + /*font-size: 1.6rem;*/ + height: 36px; + line-height: 0; + margin-bottom: 0; + position: relative; + text-align: left; + top: 0; + width: 100%; + z-index: 10; + padding: 12px 45px 8px 15px; + user-select: none; } + input.awd-select:focus { + border-color: #0568ae !important; + text-overflow: ellipsis; + padding-right: 45px; } + + button.awd-select { + background-color: transparent; + border: 1px solid #d2d2d2; + border-radius: 6px; + box-shadow: 1px 5px 2px -5px rgba(0, 0, 0, 0.15); + color: #333333; + display: block; + font-family: "Omnes-ECOMP-W02", Arial; + /*font-size: 1.6rem;*/ + height: 36px; + line-height: 36px; + margin-bottom: 0; + position: relative; + text-align: left; + top: 0; + width: 100%; + z-index: 10; } + button.awd-select:not(.large) { + text-indent: 15px; + white-space: nowrap; + overflow: hidden; + text-overflow: clip; + text-overflow: ellipsis; } + button.awd-select img { + height: 26px; + margin-right: 7px; + margin-top: -10px; + position: relative; + top: 2px; + vertical-align: text-bottom; } + button.awd-select:focus { + border-color: #0568ae !important; } + button.awd-select i { + font-size: 23px; + position: absolute; + right: 33px; + top: 5px; + z-index: 1000; } + + button.awd-select.large { + align-items: center; + display: flex; + height: 60px; + line-height: 20px; + overflow: hidden; + padding-left: 70px; + vertical-align: middle; } + button.awd-select.large img { + height: 40px; + left: 20px; + position: absolute; + top: 20px; + width: 40px; } + + .selectWrap.large { + height: 60px; } + .selectWrap.large .awd-select-list-item { + align-items: center; + display: flex; + height: 60px; + line-height: 20px; + overflow: hidden; + padding-left: 70px; + vertical-align: middle; } + .selectWrap.large .awd-select-list-item img { + height: 40px; + left: 20px; + position: absolute; + top: 20px; + width: 40px; + top: 10px; } + + .inputWrap { + border-radius: 6px; + position: relative; + height: 36px; + line-height: 44px; + display: block; + margin: 0; + } + + button.awd-select.active { + border-radius: 6px 6px 0 0; } + button.awd-select.active:focus { + border-color: #d2d2d2 !important; } + + input.awd-select.active { + border-radius: 6px 6px 0 0; } + input.awd-select.active:focus { + border-color: #d2d2d2 !important; } + + .selectWrapper { + position: relative; } + + span.selectWrap input[readonly]:focus { + color: transparent; + text-shadow: 0 0 0 #000; } + + .isIE.ds2-no-colors .awd-select:focus { + outline: 1px dashed transparent; } + + .awd-select-list { + box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); + border-radius: 0 0 6px 6px; + position: absolute; + border: 1px solid #d2d2d2; + border-top: 0; + padding: 0; + background-color: #f2f2f2; + z-index: 1000; + width: 100%; + max-height: 320px; + overflow-y: auto; } + + .awd-select-list-item { + cursor: pointer; + height: 100%; + min-height: 36px; + line-height: 20px; + overflow: hidden; + padding: 8px 15px; + position: relative; + z-index: 1000; } + .awd-select-list-item:hover { + cursor: pointer; + background-color: #d2d2d2; + outline: 1px dashed transparent; } + .awd-select-list-item:focus { + cursor: pointer; + background-color: #d2d2d2; + outline: 1px dashed transparent; } + .awd-select-list-item img { + margin-top: 0; + margin-right: 7px; + height: 26px; + width: 26px; } + + .selectWrap { + border-radius: 6px; + position: relative; + height: 36px; + line-height: 28px; + display: block; + margin: 0; + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + background: -webkit-linear-gradient(top, #fcfcfc 0%, #f2f2f2 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="@att-gray-highlight", endColorstr="@att-functional-bg-gray", GradientType=0); } + .selectWrap:not(.large) .awd-select-list-item:first-child { + margin-top: 15px; } + .selectWrap:not(.large) .awd-select-list-item:last-child { + margin-bottom: 15px; } + .selectWrap .icon-primary-down { + font-size: 23px; + margin-top: -11px; + position: absolute; + right: 4px; + top: 50%; } + .selectWrap + [aria-expanded="true"] { + padding-bottom: 9px; + padding-top: 20px; } + + .awd-select-list-item[data-hover="true"] { + background-color: #d2d2d2; } + + span input.awd-select { + width: 100%; + cursor: pointer; + text-overflow: ellipsis; + padding-right: 45px; } + + li.optgroup-wrapper { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + cursor: default !important; + padding: 0px 15px; } + li.optgroup-wrapper:first-child { + padding-top: 10px; } + li.optgroup-wrapper:hover { + background-color: #f2f2f2; } + + ul.optgroup { + font-family: "Omnes-ECOMP-W02", Arial; + cursor: pointer !important; + margin: 0 -15px; } + ul.optgroup li { + padding: 0 0 0 33px; } + + label + .selectWrap { + margin-top: 4px; } + + .selectorModule { + border-radius: 6px; + position: relative; + height: 36px; + line-height: 28px; + display: block; + margin: 0; + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + background: -webkit-linear-gradient(top, #fcfcfc 0%, #f2f2f2 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="@att-gray-highlight", endColorstr="@att-functional-bg-gray", GradientType=0); } + + .group .selectWrap { + margin: 0 0 10px 0; } + + select.awd-select { + position: relative; + top: 0; + left: 0; + font-size: 16px; + z-index: 1010; + height: 33px; + min-width: 100%; + opacity: 0.01; } + select.awd-select > optgroup { + padding-left: 8px; + font-style: normal; + margin-top: 10px; } + select.awd-select > optgroup:first-child { + margin-top: 0; } + select.awd-select > optgroup > option { + padding-left: 8px; } + select.awd-select > option { + padding-left: 8px; } + select.awd-select + span { + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + background: -webkit-linear-gradient(top, #fcfcfc 0%, #f2f2f2 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="@att-gray-highlight", endColorstr="@att-functional-bg-gray", GradientType=0); + position: absolute; + top: 0; + left: 0; + z-index: 0; + display: block; + border: 1px solid #d2d2d2; + border-radius: 6px; + height: 35px; + line-height: 0; + padding: 18px 45px 15px 15px; + width: 100%; + font-size: 1.6rem; + padding-right: 45px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } + select.awd-select + span > i { + font-size: 23px; + position: absolute; + right: 33px; + top: 5px; + z-index: 1000; } + select.awd-select + span > i:before { + left: 1px; + position: absolute; + top: -1px; } + select.awd-select:focus + span { + border-color: #0568ae; } + + .isIE select.awd-select + span { + line-height: 1; } + + [data-default-option="true"] { + color: #767676 !important; + font-family: "Omnes-ECOMP-W02-Italic", Arial; } + + .placeholdercolor { + color: #767676 !important; + font-family: "Omnes-ECOMP-W02-Italic", Arial; } + + .filterTank button.awd-select { + border-color: #d2d2d2; + background-color: #333333; + color: #FFFFFF; + color: #333333; } + .filterTank button.awd-select:after { + background-color: #FFFFFF !important; + border-color: #d2d2d2; } + + .utility-bg button.awd-select { + border-color: #d2d2d2; + background-color: #333333; + color: #FFFFFF; + color: #333333; } + .utility-bg button.awd-select:after { + background-color: #FFFFFF !important; + border-color: #d2d2d2; } + + .utility-bg select.awd-select + span { + border-color: #d2d2d2; + border-color: #d2d2d2; + background-color: #333333; + background-color: #333333; + color: #FFFFFF; + color: #FFFFFF; } + .utility-bg select.awd-select + span:after { + background-color: #FFFFFF !important; + background-color: #FFFFFF !important; + border-color: #d2d2d2; + border-color: #d2d2d2; } + + .utility-bg select.awd-select:focus + span { + border-color: #d2d2d2; + border-color: #d2d2d2; + background-color: #333333; + background-color: #333333; + color: #FFFFFF; + color: #FFFFFF; } + .utility-bg select.awd-select:focus + span:after { + background-color: #FFFFFF !important; + background-color: #FFFFFF !important; + border-color: #d2d2d2; + border-color: #d2d2d2; } + + .utility-bg select.awd-select:hover + span { + border-color: #d2d2d2; + border-color: #d2d2d2; + background-color: #333333; + background-color: #333333; + color: #FFFFFF; + color: #FFFFFF; } + .utility-bg select.awd-select:hover + span:after { + background-color: #FFFFFF !important; + background-color: #FFFFFF !important; + border-color: #d2d2d2; + border-color: #d2d2d2; } + + input.awd-select[disabled] { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + input.awd-select[disabled] + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + + button.awd-select[disabled] { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + button.awd-select[disabled]:after { + background-color: #d2d2d2 !important; + border-color: #d2d2d2; } + + select.awd-select[disabled] + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + select.awd-select[disabled] + span:after { + background-color: #d2d2d2 !important; + border-color: #d2d2d2; } + + select.awd-select[disabled]:focus + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + + select.awd-select[disabled]:hover + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + + input.awd-select[disabled="disabled"] { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + input.awd-select[disabled="disabled"] + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + + select.awd-select[disabled="disabled"] + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + select.awd-select[disabled="disabled"] + span:after { + background-color: #d2d2d2 !important; + border-color: #d2d2d2; } + + select.awd-select[disabled="disabled"]:focus + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + select.awd-select[disabled="disabled"]:focus + span:after { + background-color: #d2d2d2 !important; + border-color: #d2d2d2; } + + select.awd-select[disabled="disabled"]:hover + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + select.awd-select[disabled="disabled"]:hover + span:after { + background-color: #d2d2d2 !important; + border-color: #d2d2d2; } + + .ddexpand-wrapper > h2 { + margin-bottom: 11px; } + .ddexpand-wrapper > h2 + p { + margin-bottom: 4px; } + + .ddexpand-wrapper .selectWrap + [aria-expanded="true"] .form-row { + margin-top: 11px; } + + .ddexpand-wrapper .selectWrap + [aria-expanded="true"] .row + .row .form-row { + margin-top: 14px; } + + .modal .awd-select-list { + z-index: 1060 !important; } + + .form-row.error button.awd-select.active:focus { + border-color: #cf2a2a !important; } + + .form-row.error input.awd-select.active:focus { + border-color: #cf2a2a !important; } + + .awd-module-list .module-list-item[aria-selected="true"] { + background-color: #f2f2f2; } + + li.module-list-item[aria-selected="true"]:before { + color: #0568ae; + display: inline-block; + font-family: "icoControls" !important; + font-style: normal; + font-size: 20px; + font-weight: normal; + font-variant: normal; + height: 1em; + margin-right: 7px; + text-transform: none; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + position: relative; + speak: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + vertical-align: middle; + width: 1em; + content: "\e907"; + box-sizing: border-box; + display: inline-block; + font-size: 2em; + height: 1em; + position: absolute; + top: 20px; + right: 0px; + vertical-align: middle; + width: 1em; + color: #007a3e; } + + @media (min-width: 768px) { + span[class*="large"] { + max-width: 370px; } + .large { + max-width: 370px; } } + + @media (max-width: 767px) { + .selectWrap.large:after { + right: 5px; } + .selectWrap.large .awd-select-list-item { + padding-right: 41px; } + .selectWrap + div > h4 { + margin-bottom: 0; + font-size: 16px; } } + + /**********************Dropdown Chrome scrolling fix start ********************/ + input.awd-select { + -webkit-user-select: text; + -moz-user-select: text; + -ms-user-select: text; + user-select: text; } + + /**********************Dropdown Chrome scrolling fix end ********************/ + .mpc-expanders { + border-bottom: 1px solid #e4e4e4; + border-top: 1px solid #e4e4e4; } + + .mpc-expanders + .mpc-expanders { + border-top: 0px; } + + .mpc-expanders .heading-medium { + margin-bottom: 10px; } + + .mpc-expanders .p-small { + margin-top: 5px; } + + .mpc-expander-body { + border-top: 1px solid #e4e4e4; } + + .mpc-expander-body .mpc-expanders { + border-bottom: 1px solid #e4e4e4; + border-top: 0; } + + .mpc-expander-body .mpc-expanders:last-child { + border-bottom: 0px; } + + .ddh-blue { + color: #0574ac; } + + .b2b-dragdrop { + border: 1px dashed #bbb; + border-radius: 5px; + padding: 0; + text-align: center; + color: #bbb; + position: relative; } + + .b2b-dragdrop-over { + background: #0091d9; + color: #006496; } + .b2b-dragdrop-over:after { + content: "Drop the file"; + color: #fff; + width: 80px; + height: 20px; + overflow: hidden; + margin: auto; + position: absolute; + top: 0; + left: 0; + bottom: 0; + right: 0; } + + .b2b-file-container { + position: relative; + overflow: hidden; + display: inline-table; + font-weight: 400; } + .b2b-file-container [type=file] { + position: absolute; + cursor: inherit; + display: block; + font-size: 0; + opacity: 0; + height: 0; + width: 0; + left: 0; + top: 0; + -ms-filter: "alpha(Opacity=0)"; } + + .b2b-upload-link { + color: #0568ae; } + + .b2b-flyout { + position: relative; + display: inline-block; + cursor: default; } + + .b2b-flyout-icon { + cursor: pointer; } + .b2b-flyout-icon:focus { + outline: thin dotted #666; + outline-offset: -1px; } + + .b2b-flyout .b2b-flyout-container { + border: 1px solid #d3d3d3; + width: 300px; + padding: 20px; + pointer-events: auto; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + font-size: 16px; + -webkit-transition: opacity .2s ease-out; + -moz-transition: opacity .2s ease-out; + transition: opacity .2s ease-out; + background: #fff; + border-radius: 6px; + box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.25); + color: #333; + line-height: 20px; + position: absolute; + top: 35px; + opacity: 0; + z-index: 1010; + display: none; } + .b2b-flyout .b2b-flyout-container.open-flyout { + opacity: 1; + display: block; } + + .b2b-flyout i.b2b-flyout-caret { + position: absolute; + top: -8px; + left: 50%; + opacity: 0; + z-index: 1011; + display: none; } + .b2b-flyout i.b2b-flyout-caret.open-flyout { + opacity: 1; + display: block; } + .b2b-flyout i.b2b-flyout-caret:before { + content: ""; + border-left: 8px solid transparent; + border-right: 8px solid transparent; + border-bottom: 8px solid #d3d3d3; + position: absolute; + top: -1px; } + .b2b-flyout i.b2b-flyout-caret:after { + content: ""; + border-left: 8px solid transparent; + border-right: 8px solid transparent; + border-bottom: 8px solid #fff; + position: absolute; } + + .b2b-flyout .b2b-flyout-container.b2b-flyout-left i.b2b-flyout-caret { + left: 16px !important; } + + .b2b-flyout .b2b-flyout-container.b2b-flyout-right i.b2b-flyout-caret { + left: inherit !important; + right: 30px !important; } + + .b2b-flyout .b2b-flyout-container.b2b-flyout-above { + box-shadow: 0 -5px 6px 0 rgba(0, 0, 0, 0.25); } + .b2b-flyout .b2b-flyout-container.b2b-flyout-above i.b2b-flyout-caret { + top: auto; + bottom: 0px; } + .b2b-flyout .b2b-flyout-container.b2b-flyout-above i.b2b-flyout-caret:before { + top: auto; + bottom: -9px; + border-top: 8px solid #d3d3d3; + border-bottom: none; } + .b2b-flyout .b2b-flyout-container.b2b-flyout-above i.b2b-flyout-caret:after { + border-top: 8px solid #fff; + border-bottom: none; } + + .b2b-flyout .b2b-flyout-container.b2b-flyout-centerLeft i.b2b-flyout-caret { + left: inherit !important; + right: -7px !important; + top: 8px; + transform: rotate(90deg); } + + .b2b-flyout .b2b-flyout-container.b2b-flyout-centerRight i.b2b-flyout-caret { + left: -8px !important; + top: 296px; + transform: rotate(-90deg); } + + .b2b-flyout .buttons-group { + margin-top: 20px; } + .b2b-flyout .buttons-group .cta-button-group { + width: 100%; + border-top: 1px solid #ccc; + padding: 20px 0 0; } + .b2b-flyout .buttons-group .cta-button-group button { + margin-bottom: 0; } + + .b2b-flyout .heading { + font-size: 20px; + margin-bottom: 10px; } + + .b2b-flyout .body-text { + font-size: 14px; + margin-bottom: 30px; } + + .b2b-footer-wrapper { + width: 100%; + background-color: #222; } + + .b2b-footer-container { + width: 980px; + margin: 0 auto; + padding-top: 15px; } + .b2b-footer-container .footer-columns { + display: inline-block; + text-align: left; + vertical-align: top; } + .b2b-footer-container .footer-columns.three-column, .b2b-footer-container .footer-columns.four-column, .b2b-footer-container .footer-columns.five-column { + padding-top: 30px; } + .b2b-footer-container .footer-columns.three-column { + width: 33.3%; + padding-left: 75px; } + .b2b-footer-container .footer-columns.four-column { + width: 25%; + padding-left: 75px; } + .b2b-footer-container .footer-columns.five-column { + width: 20%; } + .b2b-footer-container .footer-columns .b2b-footer-header { + color: #009fdb; + font-size: 18px; + font-style: normal; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + line-height: 23.9px; + margin: 0; } + .b2b-footer-container .footer-columns li { + padding: 7.5px 0; } + .b2b-footer-container .footer-columns ul li:first-child { + padding-top: 15px; } + .b2b-footer-container .footer-columns li a { + color: #fff; + font-size: 16px; + font-family: "Omnes-ECOMP-W02", Arial; } + .b2b-footer-container .footer-nav-content { + padding-bottom: 10px; } + .b2b-footer-container .footer-nav-content li { + display: inline; + font-size: 14px; + color: #fff; + vertical-align: middle; } + .b2b-footer-container .footer-nav-content li a { + color: #fff; + font-size: 14px; + vertical-align: middle; + margin-right: 5px; + font-family: "Omnes-ECOMP-W02", Arial; } + + .b2b-footer-wrapper .b2b-footer-container hr { + background: #d2d2d2; + margin-top: 50px; } + + .b2b-footer-wrapper .divider-bottom-footer { + padding: 45px 0 50px 0; } + + .b2b-footer-wrapper .footerLogo { + margin: 10px 0 0 0px; + vertical-align: top; } + .b2b-footer-wrapper .footerLogo div { + display: inline-block; } + .b2b-footer-wrapper .footerLogo .icon-primary-att-globe { + font-size: 40px; } + .b2b-footer-wrapper .footerLogo .logo-title { + color: #fff; + margin-left: 10px; + display: inline-block; + font-size: 26px; + margin-top: 0px; } + + .b2b-footer-wrapper .copyright-text { + color: #fff; + font-size: 11px; + text-align: left; + font-family: "Omnes-ECOMP-W02", Arial; } + .b2b-footer-wrapper .copyright-text a { + color: #fff; + text-decoration: underline; + display: inline-block; } + .b2b-footer-wrapper .copyright-text a:hover { + text-decoration: none; } + + @media (max-width: 768px) { + .b2b-footer-wrapper { + padding: 0 15px; } + .b2b-footer-container { + width: 100%; } + .b2b-footer-container .footer-columns.three-column, .b2b-footer-container .footer-columns.four-column, .b2b-footer-container .footer-columns.five-column { + width: 50%; } + .b2b-footer-wrapper .divider-bottom-footer { + padding-top: 15px; } + .b2b-footer-wrapper .divider-bottom-footer .footer-links { + width: 100%; } + .b2b-footer-wrapper .footerLogo { + margin: 30px 0 0 0; } + .b2b-footer-wrapper .footerLogo .footer-logo { + margin: 0; + padding-left: 10px; } } + + .b2b-header-tabs { + background-color: #222; + width: 100%; + position: relative; + height: 45px; } + .b2b-header-tabs .icon-primary-att-globe { + color: #0568ae; } + .b2b-header-tabs a:focus { + border: 1px solid white; } + .b2b-header-tabs .header__items { + width: 980px; + margin: 0 auto; + display: block; + list-style: none; + padding: 6px 0px 0px 0px; + border-spacing: 30px 0; } + .b2b-header-tabs .header__item { + display: inline-block; + text-align: left; + width: auto; + font-size: 16px; + font-family: "Omnes-ECOMP-W02", Arial; + cursor: pointer; + padding: 5px 15px; + color: #fff; } + .b2b-header-tabs .header__item.b2b-headermenu { + padding: 0; } + .b2b-header-tabs .header__item.b2b-headermenu:last-child { + background: none; } + .b2b-header-tabs .header__item.b2b-headermenu a.menu__item { + color: #fff; + text-decoration: none; + display: inline-block; + padding: 5px 15px; } + .b2b-header-tabs .header__item.active { + background-color: #fff; + border-radius: 2px; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } + .b2b-header-tabs .header__item.active a.menu__item { + color: #0578ae; } + .b2b-header-tabs li:focus { + outline: 2px solid #0578ae; } + .b2b-header-tabs .header__item .header-secondary-wrapper, .b2b-header-tabs .header__item .header-tertiary-wrapper { + background-color: #fff; + position: absolute; + width: 100%; + left: 0; + top: 42px; + border-bottom: solid 1px #ccc; + -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + display: none; + z-index: 111; } + .b2b-header-tabs .header-secondary, .b2b-header-tabs .header-tertiary { + background-color: #fff; + width: 980px; + margin: 0 auto; } + .b2b-header-tabs .header__item.active .header-secondary-wrapper { + display: block; } + .b2b-header-tabs .header-secondary .header-subitem { + display: inline-block; + width: auto; + margin: 0 15px; } + .b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary-wrapper { + display: block; } + .b2b-header-tabs .header-secondary .header-subitem a.menu__item { + display: inline-block; + padding: 15px 0; + color: #333; } + .b2b-header-tabs .header-secondary .header-subitem a.menu__item:hover, .b2b-header-tabs .header-secondary .header-subitem a.menu__item:focus { + color: #0578ae; } + + /** Secondary Menu **/ + .b2b-labelhide { + position: absolute; + clip: rect(1px, 1px, 1px, 1px); } + + /** Tertiary Level Menu **/ + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { + position: absolute; + z-index: 111; + top: 25px; } + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after, .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { + content: ''; + border-left: 8px solid transparent; + border-right: 8px solid transparent; + position: absolute; + -webkit-transition: left .2s ease-out; + -moz-transition: left .2s ease-out; + transition: left .2s ease-out; } + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after { + border-bottom: 8px solid #fff; + top: 10px; } + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { + border-bottom: 8px solid #ccc; + top: 9px; } + + .b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary { + border-top: solid 1px #ccc; } + + .b2b-header-tabs .header-tertiary:after { + content: ''; + clear: both; + display: block; } + + .b2b-header-tabs .header-tertiary li { + display: inline-block; + padding: 0; + float: left; } + .b2b-header-tabs .header-tertiary li a { + color: #333; + display: block; + padding: 10px 15px; } + .b2b-header-tabs .header-tertiary li label { + text-align: left; + display: block; + font-size: 16px; + font-weight: bold; + color: #857B7B; + padding: 15px 0 0 15px; } + + .b2b-header-tabs .header__item.skip { + padding: 0; + display: inline-block; + cursor: default !important; } + .b2b-header-tabs .header__item.skip a { + color: transparent; + font-size: 12px; + line-height: 15px; + text-decoration: none; } + .b2b-header-tabs .header__item.skip a:focus { + color: #fff; + outline: 2px solid #0578ae; } + + .b2b-header-tabs .selectWrap { + min-width: 150px; } + .b2b-header-tabs .selectWrap button.awd-select { + height: 30px; + line-height: 31px; + font-size: 1rem; + display: inline-block; } + .b2b-header-tabs .selectWrap .awd-select-list { + background-color: #fff; + color: #333; + -webkit-transition: opacity .2s ease-out; + -moz-transition: opacity .2s ease-out; + transition: opacity .2s ease-out; + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176); } + + @media (max-width: 768px) { + .b2b-header-tabs { + padding: 0 15px; } + .b2b-header-tabs .header__items, .b2b-header-tabs .header-secondary, .b2b-header-tabs .header-tertiary { + width: 100%; } + .b2b-header-tabs .header__item { + padding: 5px 0; } + .b2b-header-tabs .globe-text { + display: none; } + .b2b-header-tabs .header__item.b2b-headermenu a.menu__item { + padding: 5px 7px 9px 7px; } + .b2b-header-tabs .header__item .header-tertiary-wrapper { + top: 30px; } + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { + top: 14px; } + .b2b-header-tabs .header__item .header-secondary-wrapper { + top: 45px; } + .b2b-header-tabs .header__item.profile { + padding-left: 15px; + float: none; } } + + /************* Header - Start *************/ + .b2b-header-tabs { + background-color: #222; + width: 100%; + position: relative; + height: 45px; } + + .b2b-header-tabs .icon-primary-primary-att-globe { + color: #0568ae; + font-size: 34px; + bottom: 1px; } + + /* + *TODO: delete below .icon-primary-att-globel will not be used + *instead the one above, icon-primary-primary-att-globe not available here + */ + .b2b-header-tabs .icon-primary-att-globe { + color: #0568ae; + font-size: 34px; } + + .b2b-header-tabs .globe-text { + margin-left: 20px; + font-size: 2rem; } + + .b2b-header-tabs .header__items { + width: 980px; + margin: 0 auto; + display: block; + list-style: none; + border-spacing: 30px 0; + padding: 3px 0px 0px 0px; } + + .b2b-header-tabs .header__item { + display: inline-block; + text-align: left; + width: auto; + font-size: 14px; + font-family: "Omnes-ECOMP-W02", Arial; + cursor: pointer; + padding: 0 15px 4px 15px; + /*margin-top:-3px;*/ + color: #fff; } + + .b2b-header-tabs .header__item.b2b-headermenu { + padding: 0; } + + .b2b-header-tabs .header__item.b2b-headermenu a.menu__item { + color: #fff; + text-decoration: none; + display: inline-block; + padding: 8px 15px 12px 15px; + font-size: 16px; } + + .b2b-header-tabs .header__item.active { + background-color: #fff; + border-radius: 2px; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } + + .b2b-header-tabs .header__item.active a.menu__item { + color: #0578ae; } + + .b2b-header-tabs li:focus { + outline: 2px solid #0578ae; } + + /** profile pop Over **/ + .b2b-header-tabs .header__item.profile { + position: relative; + float: right; } + + /** Secondary Menu **/ + .b2b-header-tabs .header__item .header-secondary-wrapper, .b2b-header-tabs .header__item .header-tertiary-wrapper { + background-color: #fff; + position: absolute; + width: 100%; + left: 0; + top: 42px; + border-bottom: solid 1px #ccc; + -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + display: none; + z-index: 111; } + + .b2b-header-tabs .header-secondary, .b2b-header-tabs .header-tertiary { + background-color: #fff; + width: 980px; + margin: 0 auto; } + + .b2b-header-tabs .header__item.active .header-secondary-wrapper, + .b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary-wrapper { + display: block; } + + .b2b-header-tabs .header-secondary .header-subitem { + display: inline-block; + width: auto; + margin: 0 15px; } + + .b2b-header-tabs .header-secondary .header-subitem a.menu__item { + display: inline-block; + padding: 15px 0; + color: #333; + font-size: 14px; } + + .b2b-header-tabs .header-secondary .header-subitem a.menu__item:hover, .b2b-header-tabs .header-secondary .header-subitem a.menu__item:focus { + color: #0578ae; } + + .b2b-label-hide { + position: absolute; + clip: rect(1px, 1px, 1px, 1px); } + + /** Tertiary Level Menu **/ + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after, + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { + content: ''; + border-left: 8px solid transparent; + border-right: 8px solid transparent; + position: absolute; + -webkit-transition: left .2s ease-out; + -moz-transition: left .2s ease-out; + transition: left .2s ease-out; } + + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { + position: absolute; + z-index: 111; + top: 25px; } + + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after { + border-bottom: 8px solid #fff; + top: 10px; } + + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { + border-bottom: 8px solid #ccc; + top: 9px; } + + /** Tertiary Level Menu **/ + .b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary { + border-top: solid 1px #ccc; } + + .b2b-header-tabs .header-tertiary:after { + content: ''; + clear: both; + display: block; } + + .b2b-header-tabs .header-tertiary li { + display: inline-block; + padding: 0; + float: left; } + + .b2b-header-tabs .header-tertiary li a { + color: #333; + display: block; + padding: 7px 15px; + max-width: 228px; } + + .b2b-header-tabs .header-tertiary li label { + text-align: left; + display: block; + font-size: 14px !important; + font-weight: bold; + color: #857B7B; + padding: 15px 0 0 15px; } + + /** Quarternary Level Menu **/ + .b2b-header-tabs .header-quarternary { + width: 100%; + float: left; } + + .b2b-header-tabs .header-quarternary li { + padding-left: 15px; + font-family: "Omnes-ECOMP-W02", Arial; + display: none; } + + .b2b-header-tabs .header-quarternary li.active { + display: block; } + + .b2b-header-tabs .header-quarternary li a { + color: #666666; + font-size: 14px; + padding: 0px 10px 10px 10px; } + + /** Skip Navigation**/ + .b2b-header-tabs .header__item.skip { + padding: 0; + display: inline-block; + cursor: default !important; } + + .b2b-header-tabs .header__item.skip a { + color: transparent; + font-size: 12px; + line-height: 15px; + text-decoration: none; } + + .b2b-header-tabs .header__item.skip a:focus { + color: #fff; + outline: 2px solid #0578ae; } + + /** Dropdown css inside Header ****/ + .b2b-header-tabs .selectWrap { + min-width: 150px; } + + .b2b-header-tabs .selectWrap button.awd-select, .b2b-header-tabs .selectWrap input.awd-select { + height: 36px; + line-height: 31px; + font-size: 1rem; + display: inline-block; } + + .b2b-header-tabs .selectWrap .awd-select-list { + background-color: #fff; + color: #333; + -webkit-transition: opacity .2s ease-out; + -moz-transition: opacity .2s ease-out; + transition: opacity .2s ease-out; + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176); } + + /* + * responsive header media queries + */ + @media screen and (max-width: 1100px) { + .b2b-header-tabs .globe-text { + display: none; } + .b2b-header-tabs .header__item.profile { + padding-left: 15px; + float: none; } + .b2b-header-tabs .header__items { + padding-top: 0px; } } + + @media screen and (max-width: 950px) { + .header__item.profile { + top: 20px; } + .b2b-header-tabs { + height: 90px; } + .header__item .selectWrap { + bottom: 15px; } + .b2b-header-tabs .header__items { + padding-top: 25px; } + .b2b-header-tabs .header__item .header-secondary-wrapper, .b2b-header-tabs .header__item .header-tertiary-wrapper { + top: 80px; } + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { + top: 35px; } + .b2b-header-tabs .header__item.b2b-headermenu a.menu__item { + padding-bottom: 30px; } + .b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary { + margin-top: -28px; } } + + /*************** Header - END ******************/ + .hp-container { + display: block; + max-width: 408px; } + .hp-container i:focus { + outline: thin dotted #666; } + .hp-container .icon-misc-pen { + cursor: pointer; } + .hp-container .icon-misc-trash { + cursor: pointer; } + + .hp-selected { + border-bottom: 1px solid #ccc; + border-bottom: 1px solid #ccc; + margin-bottom: 16px; + padding-bottom: 16px; } + .hp-selected .selected-days { + padding-bottom: 16px; } + .hp-selected .selected-days .day { + padding-top: 10px; + float: left; } + + /* .hp-checkbox { + padding-top: 20px; + margin: 16px auto 0 auto; } + .hp-checkbox label { + position: relative; + width: 20px; + margin-right: 34px; } + .hp-checkbox label span { + position: absolute; + top: -20px; + left: 0px; + margin-left: 0px; } */ + + .hp-dropdowns { + margin-top: 15px; + display: flex; + display: -webkit-flex; + display: -ms-flexbox; } + + .hp-buttons { + margin-top: 20px; + display: flex; + display: -webkit-flex; + display: -ms-flexbox; } + + .hp-dropdowns .radio-buttons { + margin-top: 30px; } + .hp-dropdowns .radio-buttons .radio { + margin-right: 15px; } + + + + /* TODO: Build a reference page for these classes */ + .font-regular { + font-family: "Omnes-ECOMP-W02", Arial !important; } + + .font-light { + font-family: "Omnes-ECOMP-W02-Light", Arial !important; } + + .font-italic { + font-family: "Omnes-ECOMP-W02-Italic", Arial !important; } + + .font-light-italic { + font-family: "Omnes-ECOMP-W02-Light-Italic", Arial !important; } + + .font-medium { + font-family: "Omnes-ECOMP-W02-Medium", Arial !important; } + + .font-medium-italic { + font-family: "Omnes-ECOMP-W02-Medium-Italic",Arial !important; } + + .font-reset { + font-style: normal; + font-variant: normal; + font-weight: normal; + text-transform: none; } + + .b2b-nav-menu { + background-color: #efefef; + border: 1px solid #efefef; + width: 230px; + font-size: 1.4rem; } + + .b2b-subnav-container > ul { + padding: 0px; } + + .b2b-subnav-content { + margin: 0; + margin-bottom: 10px; } + + .b2b-subnav-content > li { + border-bottom: 1px solid #999999; + position: relative; + cursor: pointer; } + + .b2b-subnav-content > li > a { + text-decoration: none; + line-height: 18px; + display: block; + padding: 10px; } + + .b2b-subnav-content > li > a.expand { + color: #333; } + + .b2b-subnav-content > li ul { + overflow: hidden; + max-height: 0; + transition-duration: 0.5s; + transition-timing-function: cubic-bezier(0, 1, 0.5, 1); } + + .b2b-subnav-content > li ul.expand { + transition-duration: 0.7s; + transition-timing-function: ease-in-out; + max-height: 1000px; + overflow: hidden; } + + .b2b-subnav-content > li > a:focus, .b2b-subnav-content > li ul > li > a:focus { + outline: thin dotted #666; } + + .b2b-subnav-content > li ul > li > a { + line-height: 18px; + padding: 8px 0; + display: block; + outline-offset: -4px; + padding-left: 10px; } + + .b2b-icon-primary-plus-minus { + display: inline-block; + height: 20px; + margin-right: 10px; + padding: 0; + position: absolute; + right: 0px; + top: 10px; + vertical-align: middle; + width: 20px; } + + @media (min-width: 320px) and (max-width: 767px) { + .b2b-nav-menu { + background-color: #fff; + border: 1px solid white; + width: 100%; } + .b2b-subnav-content > li { + padding-left: 10px; } + .b2b-subnav-container > ul:first-child { + border-top: 1px solid #999; } + .b2b-icon-primary-plus-minus { + right: 10px; } + .b2b-subnav-content > li li > a.active { + color: #0574ac; + text-decoration: none; + font-family: "Omnes-ECOMP-W02", Arial; } } + + .b2b-list-box-item { + white-space: nowrap; + margin: 1px; + border: 1px solid transparent; + outline: none; + visibility: inherit; + display: inherit; + text-align: left; + overflow: hidden; + cursor: pointer; + padding: 5px 0 5px; + padding-left: 15px; + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; } + .b2b-list-box-item:focus { + border: 2px solid #5e8cb3; } + + .b2b-list-box-item--selected { + background-color: #cfdde9; } + + .btn.disabled[ddh-load-button] { + line-height: 46px; + padding: 0 19px 0 18px; } + + .btn.disabled[ddh-load-button] { + color: #666666; } + + .icon-primary-spinner-ddh.large { + height: 50px; + width: 50px; } + + .icon-primary-spinner-ddh.small { + height: 30px; + width: 30px; } + + .icon-primary-spinner-ddh { + -webkit-animation: 1s linear infinite spinner; + animation: 1s linear infinite spinner; + background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzNiAzNiIgaWQ9InN2Zy1zcGlubmVyIiB4PSIwcHgiIHk9IjBweCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CiAgIDxwYXRoIGZpbGw9IiNGNUY1RjUiIGQ9Ik0xOCAzNkM4LjEgMzYgMCAyNy45IDAgMThTOC4xIDAgMTggMHMxOCA4LjEgMTggMTgtOC4xIDE4LTE4IDE4em0wLTMxLjVjLTcuNSAwLTEzLjUgNi0xMy41IDEzLjVTMTAuNiAzMS41IDE4IDMxLjVjNy41IDAgMTMuNS02LjEgMTMuNS0xMy41IDAtNy41LTYtMTMuNS0xMy41LTEzLjV6Ii8+CiAgIDxwYXRoIGZpbGw9IiMwNTY4QUUiIGlkPSJzcGlubmVyIiBkPSJNMzAuNyA1LjNsLTMuMSAzLjJjMi40IDIuNCAzLjkgNS44IDMuOSA5LjUgMCA3LjQtNi4xIDEzLjUtMTMuNSAxMy41UzQuNSAyNS40IDQuNSAxOCAxMC42IDQuNSAxOCA0LjVWMEM4LjEgMCAwIDguMSAwIDE4czguMSAxOCAxOCAxOCAxOC04LjEgMTgtMThjMC01LTItOS41LTUuMy0xMi43eiIgdHJhbnNmb3JtPSIiPiAgICAgIAogICA8L3BhdGg+Cjwvc3ZnPg==); } + + .btn-small .icon-primary-spinner-ddh { + height: 30px !important; + width: 30px !important; } + + .btn-small .icon-primary-spinner { + height: 30px; + width: 30px; } + + .load-backdrop { + position: absolute; + top: 50%; + left: 50%; } + + .small-modal-loader { + width: 420px !important; + height: 212px !important; + text-align: center; } + + .small-modal-loader .icon-primary-spinner { + margin-bottom: 5px; } + + .body.styled-by-modal { + position: fixed; } + + .b2b-modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: -1; } + + .b2b-modal-backdrop.fade { + background-color: #000; + opacity: 0; + filter: alpha(opacity=0); + transition: all 0.3s linear 0s; } + + .b2b-modal-backdrop.fade.in { + z-index: 1040; + opacity: 0.7; + filter: alpha(opacity=70); + background-color: #000; + transition: opacity 0.3s linear 0s; } + + .modalwrapper { + height: 100%; + width: 100%; + left: 0; + overflow-y: hidden; + position: absolute; + right: 0; + padding: 20px; + top: 0; + z-index: -1; } + + .modalwrapper.active { + z-index: 1050; + overflow-y: auto; } + + .modal { + background-clip: padding-box; + background-color: #ffffff; + border: 1px solid rgba(0, 0, 0, 0.1); + border-radius: 8px; + box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.4); + margin: 0 auto; + /*margin-bottom:10%;*/ + outline: medium none; + /*position: absolute;*/ + height: 0; + min-height: 150px; + overflow: hidden; + /*top: 10%;*/ + width: 100%; + z-index: -1; } + + .modalwrapper.modal-docked .modal { + max-height: 80%; + height: 80%; + overflow: hidden; + top: 0; } + + .modal.fade.in { + position: relative; + height: auto; + overflow: auto; + top: 10%; + z-index: 1060; + transition: opacity .5s linear 0s; } + + .modal.fade.in.modal-landscape { + overflow-y: auto; } + + .modal.fade { + transition: opacity .5s linear 0s; } + + .fade.in { + opacity: 1; } + + .fade { + opacity: 0; } + + .b2b-modal-header { + align-items: center; + border-radius: 8px 8px 0 0; + display: flex; + min-height: 60px; + overflow: hidden; + padding: 30px 46px 30px 30px; + position: relative; } + + .b2b-modal-header > h2 { + line-height: 1; + margin: 0; + padding: 0; } + + .modal-header-portrait { + -webkit-overflow-scrolling: auto; } + + .modal-header-landscape { + -webkit-overflow-scrolling: auto; } + + .b2b-modal-body { + -webkit-overflow-scrolling: touch; + padding: 0 30px 20px; + position: relative; + width: auto; } + + .b2b-modal-body:focus { + outline: 1px dotted #333333; } + + .modal-form { + margin-bottom: 0; } + + .b2b-modal-footer { + background-color: #fff; + width: 100%; + padding: 0 30px; + border-radius: 0; + position: absolute; + bottom: 0; } + + :not(.modal-docked) .b2b-modal-footer { + position: relative; } + + .modal-landscape .b2b-modal-footer { + position: relative; } + + .b2b-modal-footer .cta-button-group { + display: flex; + justify-content: flex-end; + padding: 20px 0 5px; + width: 100%; + border-top: 1px solid #d2d2d2; } + + .b2b-modal-footer .cta-button-group .btn { + margin-left: auto; + margin-right: auto; + float: right; + margin-left: 10px; } + + .b2b-modal-footer .cta-button-group .marginLeft0 { + margin-left: 0px; } + + .b2b-modal-footer .cta-button-group .btn-footer-left { + margin-right: auto; } + + .b2b-modal-footer .cta-button-group .btn + .btn { + margin-right: 0 !important; } + + [class*="modal-"] { + width: 100%; } + + .modal-small { + max-width: 420px; } + + .modal-medium { + max-width: 620px; } + + .modal-large { + max-width: 720px; } + + .modal-xlarge { + max-width: 860px; } + + .modal-jumbo { + max-width: 1000px; } + + .modalwrapper.modal-docked { + height: 100%; + display: flex; + align-items: center; } + + .modalwrapper.modal-docked .b2b-modal-body { + height: 80%; + overflow-y: scroll; + padding-bottom: 60px; } + + .modalwrapper.modal-docked .modal { + max-height: 80%; + height: 80%; + overflow: hidden; + top: 0; } + + .modalwrapper.modal-docked .b2b-modal-body > *:last-child { + margin-bottom: 60px; } + + @media (max-width: 767px) { + .modalwrapper { + padding: 15px; + overflow-x: hidden; } + .modal.fade.in { + top: 0; + right: 0; + left: 0; + margin-bottom: 15px; + border: none; } + .b2b-modal-header { + padding: 20px 46px 20px 15px; } + .b2b-modal-body { + width: 100%; + padding: 0 15px 15px; } + .modalwrapper.modal-docked { + position: absolute; + height: 100%; + padding: 0; } + .modalwrapper.modal-docked .modal.fade.in { + margin-bottom: 0; + width: 100% !important; + max-height: 100%; + height: 100%; + border-radius: 0; } + .modalwrapper.modal-docked .b2b-modal-body { + overflow-y: scroll; + height: 100%; } + .modalwrapper.modal-docked.modal-landscape { + overflow-y: hidden; + position: fixed; } + .modalwrapper.modal-docked.modal-landscape .modal { + overflow-y: scroll; + max-width: 100%; } + .modalwrapper.modal-docked.modal-landscape .b2b-modal-body { + height: auto; + overflow-y: hidden; } + .b2b-modal-footer { + padding: 0 15px; } + .b2b-modal-footer .cta-button-group { + display: block; + padding: 15px 0; } + .b2b-modal-footer .cta-button-group .btn { + float: none; } + .b2b-modal-footer .cta-button-group .btn + .btn { + margin-bottom: 0; } + .b2b-modal-footer .cta-button-group a.visible-phone { + align-items: center; + display: flex !important; + height: 42px; + justify-content: center; } } + + .b2b-modal-footer > .cta-button-group { + line-height: 40px; } + + .ajaxed, + .modal.fade.in .b2b-modal-header, + .modal.fade.in .b2b-modal-body, + .modal.fade.in .b2b-modal-footer { + animation-duration: 0.01s; + -o-animation-duration: 0.01s; + -ms-animation-duration: 0.01s; + -moz-animation-duration: 0.01s; + -webkit-animation-duration: 0.01s; + animation-name: DOMinsertion; + -o-animation-name: DOMinsertion; + -ms-animation-name: DOMinsertion; + -moz-animation-name: DOMinsertion; + -webkit-animation-name: DOMinsertion; } + + .monthselector thead tr th { + min-width: 46px; } + + .monthselector thead tr:after { + content: ""; + position: absolute; + left: 20px; + top: 52px; + height: 1px; + width: 85%; + border-bottom: 1px solid #ccc; } + + .monthselector tbody tr:last-child { + height: 50px; } + + .monthselector td.day { + margin: 1px 4px !important; + width: 64px !important; } + + .monthselector .datepicker-switch { + width: 195px !important; } + + .monthselector .show-date { + width: 30px !important; } + + .monthselector button.faux-input { + width: 100%; } + .monthselector button.faux-input:focus { + border: 1px solid #0574ac; } + .monthselector button.faux-input:disabled { + cursor: not-allowed; } + + .monthselector .cta-button-group { + padding: 0 20px; } + .monthselector .cta-button-group a { + margin-right: 20px; } + + .monthselector .day.active .show-date:after, .monthselector .day:focus .show-date:after, .monthselector .due-date.disabled .show-date:after { + height: 30px; + left: 9px !important; + top: 0; + width: 42px !important; } + + .monthselector .disabled.day:focus .show-date:after { + border: none; } + + .monthselector .icon-primary-calendar { + display: block; } + + .b2b-ml-nav { + padding: 0 10px 0 10px; + width: 320px; } + + .b2b-ml-nav ul { + list-style: none; + list-style-type: none; } + + .b2b-ml-nav a { + display: block; + padding: 0 0 5px 30px; + line-height: 22px; + margin-left: -10px; + color: #0568ae; + font-size: 1.4rem; } + + .b2b-ml-nav a:focus { + outline-offset: 1px; } + + .b2b-ml-nav li:focus { + outline: none; } + + .b2b-ml-nav li:focus > a { + outline: thin dotted #666; + outline-offset: 1px; } + + .b2b-ml-nav ul li { + border-left: 1px solid #ccc; } + + .b2b-ml-nav ul ul { + padding: 0 0 0 20px; } + + .b2b-ml-nav ul > li { + position: relative; + line-height: 18px; } + + .b2b-ml-nav a > span { + background-color: #FFF; + display: inline; + margin: 0; + padding: 0; + position: absolute; + left: -11px; + top: 0; } + + .b2b-ml-nav a > span > i { + font-size: 20px; } + + .b2b-ml-nav a:only-child > span { + left: -6px; + border-radius: 50%; + line-height: 7px; + top: 5px; } + + .b2b-ml-nav a:only-child > span > i { + background-color: inherit; + background: #fff; + font-size: 5px; } + + .b2b-ml-nav ul li:first-child > a:only-child > span { + left: -6px; + border-radius: 50%; + line-height: 12px; + top: 0px; } + + .b2b-ml-nav li a + ul { + display: none; } + + .b2b-ml-nav li a.active + ul { + display: block; } + + .b2b-ml-nav .selected { + color: #333; } + + /*to overide ng-doc inline property for library demo - TODO: Move to docs.css*/ + .b2b-ml-nav a [class^="icon-primary-"], a [class*=" icon-primary-"], a [class^="icon-primary-"]:before, a [class*=" icon-primary-"]:before { + display: inline-block; } + + .b2b-alerts-messages { + background-color: #fff; + border-radius: 8px; + height: auto; } + .b2b-alerts-messages h3 { + color: #333 !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + margin-bottom: 0 !important; + margin: 1em 0 5px; + line-height: 27px; + font-size: 18px; } + .b2b-alerts-messages h4 { + color: #333 !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + margin-bottom: 0 !important; } + .b2b-alerts-messages .alert-info { + background-color: #0574ac; + border: 0; } + .b2b-alerts-messages .alert-error { + background-color: #cf2a2a; + border: 0; } + .b2b-alerts-messages .alert-success { + background-color: #1b7e28; + border: 0; } + .b2b-alerts-messages div:nth-child(2) { + padding: 0 0 15px 10px; + vertical-align: baseline; } + .b2b-alerts-messages .close:before { + color: #767676; } + .b2b-alerts-messages p { + font-size: 14px; + color: #333; + font-family: "Omnes-ECOMP-W02", Arial; } + .b2b-alerts-messages p a { + color: #333; } + .b2b-alerts-messages .btn-small { + margin-bottom: 0px; } + + .b2b-alerts-success { + border: 1px solid #1b7e28; } + + .b2b-alerts-error { + border: 1px solid #cf2a2a; } + + .b2b-alerts-info { + border: 1px solid #0574ac; } + + /* TODO: Rearange this and move to patches if needed */ + .b2b-breadcrumb-css-override > li { + margin-right: 24px; } + + .b2b-breadcrumb-css-override li > * { + float: left !important; } + + .b2b-css-override ul.nav-tabs { + margin-bottom: 0; } + + + .b2b-top-nav-buttons-css-override { + margin-bottom: 0; + margin-top: 2px; } + + .b2b-auto-width { + width: auto !important; } + + .b2b-toggle-header-active { + color: #0568ae; } + + .b2b-toggle-header-inactive { + color: #333333; } + + .b2b-toggle-header-icon { + cursor: pointer; } + + + .icon-primary-circle:before { + background-image: url("data:image/svg+xml,%3Csvg%20baseProfile%3D%22tiny%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%3E%3Ccircle%20fill%3D%22transparent%22%20stroke%3D%22%23666%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2218%22%20cy%3D%2218%22%20r%3D%2216%22%2F%3E%3C%2Fsvg%3E"); + content: ""; + position: absolute; + top: 0; + z-index: 1; } + + .ds2-no-colors .icon-primary-circle:before { + background-image: none; + content: "\e902"; } + + i:focus { + outline: thin dotted #666; } + + .p-col-md-12 { + width: 50%; } + + .pager__item { + border-radius: 0; + cursor: default; + display: inline-block; + margin: 5px; + width: 22px; + height: 23px; + vertical-align: baseline; } + + .pager { + padding-top: 10px; + padding-bottom: 20px; + text-align: center; + margin: 0 auto; } + + .pager__item--input { + color: #067ab4; + max-height: 32px; + max-width: 40px; + padding-left: 0; + padding-right: 0; + text-align: center; + margin-left: 10px; } + + .row.section-row { + margin-bottom: 20px; } + + .pager__item--active { + border-bottom: 2px solid #0574ac; + border-radius: 0; + color: #333333; } + + .pager a.pager__item--active:hover { + cursor: default; } + + .pager a:hover, .pager a:focus { + text-decoration: none; + color: #333333; + cursor: pointer; } + + .pager a.disabled:hover, .pager a.disabled:focus { + cursor: not-allowed; } + + .row.section-row.b2b-page { + display: block; } + + a.pager__item--next:focus, a.pager__item--prev:focus { + text-decoration: none; + border: 0; } + + .pager__item--next, .pager__item--prev { + margin: 5px; + padding: 1.5px 6px 1.5px 6px; } + + .pager .disabled i { + pointer-events: none; + cursor: default; + color: #c4c4c4; } + + .fieldLabel { + color: #666666; } + + .fieldLabel input { + color: #666666; } + + .pSelect { + float: right; + width: 150px; } + + .numericResult { + margin-bottom: 20px; + font-size: 1.6rem; + margin-top: 20px; + display: inline-block; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + .mobile-view > .pager__item { + margin: 5px 10px; + width: 24px; + height: 34px; + vertical-align: middle; + line-height: 34px; } + + .fade1, .fadel { + opacity: 0.4; } + + .fade2, .fadesl { + opacity: 0.6; } + + h4#pagination-truncated { + margin-top: 50px; } + + h4#pagination-large-count { + margin-top: 50px; } + + .p-col-md-12 input { + margin-left: 20px; } + + .pager a .icon-primary-right:before { + display: inline-block; } + + .pager a .icon-primary-left:before { + display: inline-block; } + + .page-heading { + background: white none repeat scroll 0 0; + margin-bottom: -12px; + padding-left: 10px; + padding-right: 10px; + position: relative; } + + .numericResult:focus { + outline: 1px dotted #0574ac; } + + .page-heading-group { + color: #ef6f00; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + .pager > div > span.fieldLabel { + margin-left: 18px; } + + .pager .fieldLabel .btn-arrow { + top: 0; + left: 10px; + margin-left: -5px; } + + .b2b-p-col-md-12 { + width: 50%; } + .b2b-p-col-md-12 input { + margin-left: 20px; } + + .b2b-pager__item { + border-radius: 0; + cursor: default; + display: inline-block; + margin: 0px 5px 0 5px; + height: 23px; + vertical-align: baseline; } + + .b2b-pager__item--noclick { + pointer-events: none !important; + cursor: default !important; } + + .b2b-pager__item--droppable { + pointer-events: all !important; } + + .b2b-pager { + padding-top: 10px; + padding-bottom: 20px; + text-align: center; + margin: 0 auto; } + .b2b-pager a:hover { + text-decoration: none; + color: #333333; + cursor: pointer; } + .b2b-pager a:focus { + text-decoration: none; + color: #333333; + cursor: pointer; } + .b2b-pager a .icon-primary-right:before { + display: inline-block; } + .b2b-pager a .icon-primary-left:before { + display: inline-block; } + .b2b-pager .disabled i { + pointer-events: none; + cursor: default; + color: #c4c4c4; } + + .b2b-pager__item--input { + color: #067ab4; + max-height: 32px; + max-width: 60px; + padding-left: 0; + padding-right: 0; + text-align: center; + margin-left: 5px; } + + .row.section-row { + margin-bottom: 20px; } + + .b2b-pager__item--active { + border-bottom: 2px solid #0574ac; + border-radius: 0; + color: #333333; } + + .row.section-row.b2b-page { + display: block; } + + a.b2b-pager__item--next:focus { + text-decoration: none; + border: 0; } + + a.b2b-pager__item--next-disabled { + outline: 0; } + + a.b2b-pager__item--next-disabled > [class^="icon-primary-"] { + color: #cccccc; + cursor: not-allowed; + outline: 0; } + + a.b2b-pager__item--prev:focus { + text-decoration: none; + border: 0; } + + a.b2b-pager__item--prev-disabled { + outline: 0; } + + a.b2b-pager__item--prev-disabled > [class^="icon-primary-"] { + color: #cccccc; + cursor: not-allowed; } + + .b2b-pager__item--next { + padding: 1.5px 0px 1.5px 0px; } + + .b2b-pager__item--prev { + padding: 1.5px 0px 1.5px 0px; } + + .fieldLabel { + color: #666666; } + .fieldLabel input { + color: #666666; } + .fieldLabel .btn-arrow { + top: 0; + left: 10px; } + + .b2b-pSelect { + float: right; + width: 150px; } + + .b2b-numericResult { + margin-bottom: 20px; + font-size: 1.6rem; + margin-top: 20px; } + + .b2b-mobile-view > .b2b-pager__item { + margin: 5px 10px; + min-width: 23px; + height: 34px; + vertical-align: middle; + line-height: 34px; } + + .b2b-fade1 { + opacity: 0.4; } + + .b2b-fade2 { + opacity: 0.6; } + + .b2b-fadesl { + opacity: 0.6; } + + h4#b2b-pagination-truncated { + margin-top: 50px; } + + h4#b2b-pagination-large-count { + margin-top: 50px; } + + .b2b-page-heading { + background: white none repeat scroll 0 0; + margin-bottom: -12px; + padding-left: 10px; + padding-right: 10px; + position: relative; } + + .b2b-numericResult:focus { + outline: 1px dotted #0574ac; } + + .b2b-page-heading-group { + color: #ef6f00; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + .b2b-pager > div > span.fieldLabel { + margin-left: 18px; } + + .b2b-go-to-page { + margin-top: 14px; } + + .b2b-go-to-page-inline { + display: inline-block; } + + input.b2b-phone-mask-input { + padding-right: 15px; } + input.b2b-phone-mask-input:hover, input.b2b-phone-mask-input:focus { + padding-right: 15px; } + + /************************** Start - Should be removed after the styling in global is fixed *******************/ + input::-ms-clear { + display: none; } + + /************************** End - Should be removed after the styling in global is fixed *******************/ + @media (max-width: 767px) { + input::-ms-clear { + display: block; } } + + .pivot-link-group { + background-color: #5a5a5a; + border-top: 1px solid #959595; } + + .pivot-links > li { + border-bottom: 1px solid #959595; } + + .pivot-links > li > a { + color: #fff; + display: block; + padding: 12px 15px 10px; + line-height: normal; } + + .b2b-profile-block-container { + min-height: 200px; + height: auto; + background-color: #fff; + border-radius: 8px; + border: 1px solid #ccc; + box-shadow: 0px 1px 1px 1px #ccc; + display: inline-table; + margin: 15px 15px; } + + .b2b-profile-block-details p, .b2b-profile-block-details div { + padding: 2px 7px; + font-size: 1.4rem; } + + .b2b-profile-block-details .radio-label, .b2b-profile-block-details a { + font-size: 1.4rem; } + + .b2b-profile-block-details p label, .b2b-profile-block-details p span { + padding-left: 10px; } + + .b2b-profile-block-footer { + margin-bottom: 12px; + margin-top: 5px; + height: 35px; } + + .b2b-profile-block-details p { + word-wrap: break-word; + height: 61px; } + .b2b-profile-block-details p:first-child { + margin-top: 10px; } + .b2b-profile-block-details p:after { + content: ' '; + display: block; + border: 0.2px solid #ccc; + margin-top: 12px; } + + .b2b-profile-block-details .radio { + margin-left: 15px; + height: 30px; } + + .b2b-approval-icon { + color: #1b7e28; + float: right; + position: relative; + left: 10px; } + .b2b-approval-icon i { + color: #1b7e28; + float: right; } + + .b2b-profile-link { + float: right; + position: relative; + left: -4px; } + + a.link-profile { + position: relative; + left: -5px; + float: right; + margin-bottom: 16px; } + + .b2b-profile-block-radio { + position: relative; + top: -5px; } + + .b2b-profile-card { + min-width: 229px; + min-height: 354px; + margin: 10px; + border: solid 1px #CCC; + font-family: "Omnes-ECOMP-W02", Arial; + display: inline-block; + vertical-align: top; } + .b2b-profile-card .top-block { + padding: 15px 20px; + background-color: #e4e4e4; + max-height: 153px; } + .b2b-profile-card .bottom-block { + padding: 15px 20px 15px 20px; + background-color: #fff; } + .b2b-profile-card .profile-image { + background: #e4e4e4; + margin-bottom: 15px; + text-align: center; } + .b2b-profile-card .profile-image .default-img { + display: inline-block; + width: 60px; + height: 60px; + margin-bottom: 10px; + border: 6px solid #fff; + border-radius: 99em; + -webkit-border-radius: 99em; + -moz-border-radius: 99em; + /* background-color: #eee; */ } + + .profile-image img { + display: inline-block; + width: 60px; + height: 60px; + margin-bottom: 10px; + border: 6px solid #fff; + border-radius: 99em; + -webkit-border-radius: 99em; + -moz-border-radius: 99em; + /* background-color: #eee; */ } + + .b2b-profile-card .profile-image .default-img { + font-family: "Omnes-ECOMP-W02", Arial; + color: #333; + background-color: #fff; + font-size: 32px; + line-height: 22px; + padding: 5px; + padding-top: 13px; + width: 60px; + height: 60px; + text-transform: uppercase; } + + .b2b-profile-card .profile-image .name { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 16px; + color: #333; + text-align: center; + margin-bottom: 5px; + margin-top: 5px; + overflow: hidden; + word-break: break-word; + white-space: normal; + text-transform: capitalize; } + + .b2b-profile-card .profile-image .status-icon { + border-radius: 10px; + border: 1px solid #fff; + margin: 0 3px 0 0; + width: 10px; + height: 10px; + display: inline-block; + vertical-align: middle; } + + .b2b-profile-card .profile-image .status { + font-size: 12px; + line-height: 15px; + text-align: center; + margin: 0 15px 0 0; + color: #444; } + + .b2b-profile-card .status .circle { + width: 10px; + height: 10px; + border-radius: 50%; + margin: 30px 6px 0px 20px; + text-align: center; + background-color: #444; } + + .b2b-profile-card .profile-image .status-green { + background-color: #0c0; } + + .b2b-profile-card .profile-image .status-red { + background-color: red; } + + .b2b-profile-card .profile-image .status-blue { + background-color: #00f; } + + .b2b-profile-card .profile-image .status-yellow { + background-color: #ff0; } + + .b2b-profile-card .profile-image .status .status-badge { + margin-left: 5px; + border: dotted 1px #444; + background-color: transparent; + font-weight: 400; + color: #444; + height: 17px; + padding: 0 5px; + font-size: 11px; + padding-left: 5px; + padding-right: 5px; } + + .b2b-profile-card .profile-details { + background: #fff; } + .b2b-profile-card .profile-details label { + display: block; + cursor: text; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-weight: bolder; + font-size: 14px; + color: #333; + padding: 0; + margin: 0; } + .b2b-profile-card .profile-details div { + margin: 0; + font-size: 14px; + color: #333; + padding-bottom: 6.5px; } + + .b2b-profile-card .b2b-add-user { + background: white; + border-style: dotted; + font-size: 16px; + color: #333; + position: relative; } + .b2b-profile-card .b2b-add-user i { + font-size: 30px; + padding-bottom: 15px; } + + .b2b-profile-card .atcenter { + cursor: pointer; + margin-top: 60%; + vertical-align: middle; + text-align: center; } + + .b2b-profile-card .tooltip { + cursor: pointer; } + .b2b-profile-card .tooltip .helpertext { + position: relative; + color: white; } + + .b2b-profile-card .tooltip-wrapper { + position: relative; } + + /* Overrides for tooltip absolute positioning */ + @media (min-width: 1025px) { + .b2b-profile-card .tooltip-size-control { + width: 100% !important; } } + + @-webkit-keyframes progress-bar-stripes { + from { + background-position: 0 0; } + to { + background-position: 80px 0; } } + + @keyframes progress-bar-stripes { + from { + background-position: 0 0; } + to { + background-position: 80px 0; } } + + .progress { + background-color: #e4e4e4; + border-radius: 4px; + height: 14px; + margin-bottom: 20px; + min-width: 250px; + overflow: hidden; + padding: 0; + position: relative; } + + a .progress { + margin-bottom: 0; } + + .progress .bar { + background-color: #666; + border-radius: 4px; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + height: 100%; + width: 0; } + + .progress-arrow { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + -webkit-justify-content: flex-end; + -ms-flex-pack: end; + justify-content: flex-end; } + + .progress-link + .usage-bar { + margin-top: 5px; } + + .progress-success .bar, .progress .bar-success { + background-color: #1b7e28; } + + .progress-warning .bar, .progress .bar-warning { + background-color: #ef6f00; } + + .progress-danger .bar, .progress .bar-danger { + background-color: #cf2a2a; } + + .progress.increment { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; } + + .progress.increment .bar:first-child:not(:last-child) { + border-right: none; + border-radius: 4px 0 0 4px; } + + .progress.increment .bar:last-child:not(:first-child) { + border-left: none; + border-radius: 0 4px 4px 0; } + + .progress.increment .bar + .bar:not(:last-child) { + border-left: none; + border-right: none; + border-radius: 0; } + + .progress.increment .bar:not(:first-child) { + border-left: 1px solid white !important; } + + .usage-bar { + display: table; + float: none; + width: 100%; + margin-bottom: 1px; } + + .usage-bar > .usage-text { + display: table-cell; + width: 1%; } + + .progress + .usage-bar { + margin-top: -15px; } + + .usage-bar .usage-text { + font-size: 1.4rem; } + + .usage-bar .usage-text:first-child { + white-space: nowrap; } + + .usage-bar .usage-text.text-right { + vertical-align: top; + font-size: 1.4rem; + width: auto !important; } + + .usage-bar .usage-text.text-right:before { + content: ""; + display: table; + height: .1em; } + + .usage-bar.billing-cycle .usage-text { + font-size: 1.4rem; } + + .usage-bar.billing-cycle .usage-text.text-right { + vertical-align: bottom; } + + .progress.autocolor [data-percentage="1"], .progress.autocolor [data-percentage="2"], .progress.autocolor [data-percentage="3"], .progress.autocolor [data-percentage="4"], .progress.autocolor [data-percentage="5"], .progress.autocolor [data-percentage="6"], .progress.autocolor [data-percentage="7"], .progress.autocolor [data-percentage="8"], .progress.autocolor [data-percentage="9"], .progress.autocolor [data-percentage="10"] .progress.autocolor [data-percentage^="2"], .progress.autocolor [data-percentage^="3"], .progress.autocolor [data-percentage^="4"], .progress.autocolor [data-percentage^="5"], .progress.autocolor [data-percentage="60"], .progress.autocolor [data-percentage="61"], .progress.autocolor [data-percentage="62"], .progress.autocolor [data-percentage="63"], .progress.autocolor [data-percentage="64"] { + background-color: #1b7e28; } + + .progress.autocolor [data-percentage="65"], .progress.autocolor [data-percentage="66"], .progress.autocolor [data-percentage="67"], .progress.autocolor [data-percentage="68"], .progress.autocolor [data-percentage="69"], .progress.autocolor [data-percentage^="7"], .progress.autocolor [data-percentage^="8"] { + background-color: #ef6f00; } + + .progress.autocolor [data-percentage^="9"], .progress.autocolor [data-percentage="100"] { + background-color: #cf2a2a; } + + .b2b-seek-bar-container { + position: relative; } + .b2b-seek-bar-container div { + position: absolute; } + .b2b-seek-bar-container .b2b-seek-bar-track-container { + width: 100%; } + .b2b-seek-bar-container .b2b-seek-bar-track { + width: 100%; + height: 6px; + background-color: #cccccc; + border-radius: 10px; } + .b2b-seek-bar-container .b2b-seek-bar-track-fill { + width: 100%; + height: 6px; + background-color: #cccccc; + border-radius: 10px; + width: 0; + background-color: #157BB2; + transition: width 0s linear; } + + .seek-bar-container .seek-bar-knob-container { + transition: left 0s linear; } + + .b2b-seek-bar-container .b2b-seek-bar-knob { + width: 14px; + height: 14px; + border-radius: 10px; + top: -4px; + left: -8px; + border: 1px solid #cccccc; + background: white; + cursor: pointer; } + + .b2b-seek-bar-container .b2b-seek-bar-knob:focus { + outline: thin dotted #666; } + + .b2b-seek-bar-container.vertical { + width: 100%; + height: 100%; + margin: 0 auto; + position: relative; + border-radius: 10px; } + .b2b-seek-bar-container.vertical .b2b-seek-bar-track-container { + position: relative; + height: 100%; } + .b2b-seek-bar-container.vertical .b2b-seek-bar-track { + position: absolute; + height: 100%; } + .b2b-seek-bar-container.vertical .b2b-seek-bar-track-fill { + position: absolute; + bottom: 0; + height: 0; + width: 100%; } + .b2b-seek-bar-container.vertical .b2b-seek-bar-knob-container { + transition: bottom .01s linear; + position: relative; + bottom: 0; } + .b2b-seek-bar-container.vertical .b2b-seek-bar-knob { + position: absolute; + border-radius: 10px; + top: -7px; + left: -4px; } + + .form-search .search-query { + width: 100% !important; } + + .form-search .well { + margin-top: 0; } + + .form-search > ul.nav > li.section { + min-height: 20px !important; } + + input.b2b-search-input-field { + margin-bottom: 0px; } + + .search-suggestion-list { + background-color: #FFFFFF; + border: 1px solid #ccc; + border-radius: 0 0 6px 6px; + box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); + margin-top: -5px; + max-height: 400px; + overflow-x: hidden; + overflow-y: auto; + padding: 15px 0; + position: absolute; + width: 100%; + z-index: 1000; } + .search-suggestion-list > li.active { + background-color: #cccccc; } + .search-suggestion-list:empty { + display: none; } + + .b2b-search-hightlight { + font-weight: bold; } + + input[type="text"]::-moz-placeholder { + color: #767676; + font-family: "Omnes-ECOMP-W02-Italic", Arial; } + + input[type="text"]:focus { + z-index: 1000; } + + input[type="text"] + .reset-field { + background-color: #FFFFFF; + height: 90%; + top: 5%; } + + .btn-search:focus { + outline: 1px dotted #0574ac; } + + .field-group input:not([type="button"])[disabled] ~ .btn-search { + background-color: #eee; } + + .btn-search[class*="btn"] { + background-color: #FFFFFF; + background-size: 20px 20px; + border-radius: 0 1.5rem 1.5rem 0; + height: 3rem; + min-width: 4.4rem !important; + right: 0.15rem; + top: 0.15rem; + width: 4.4rem; } + + .search-suggestion-wrapper { + margin-bottom: 15px; + position: relative; } + .search-suggestion-wrapper .no-result { + padding: 0px 15px; } + + .search-suggestion-item { + color: #333333; + line-height: 4rem; + padding: 0 15px; + position: relative; + z-index: 1000; } + .search-suggestion-item:hover { + background-color: #e4e4e4; + cursor: pointer; } + .search-suggestion-item:focus { + background-color: #e4e4e4; + cursor: pointer; } + .search-suggestion-item a { + color: #333333; + text-decoration: none; } + + .btn-search i { + color: #767676; } + + input.b2b-search-input-field:focus ~ .btn-search > i, .btn-search:focus > i { + color: #0568ae; } + + button.btn-search[disabled] { + cursor: not-allowed; } + button.btn-search[disabled] i { + color: #767676; } + + .innershadow { + -webkit-background-blend-mode: mutilply; + box-shadow: 0 3px 0 2px rgba(0, 0, 0, 0.08); } + + .linkSelectorModule { + position: relative; + height: 32px; + line-height: 20px; + border: 0px; + width: auto; + display: block; } + .linkSelectorModule .icon-primary-down { + font-size: 23px; + margin-top: -10px; + position: absolute; + top: 50%; + margin-left: -30px; } + .linkSelectorModule .selectModule { + background-color: transparent; + border: none; + color: #0568ae; + cursor: pointer; + border: 1px solid transparent; + box-shadow: none; + padding-right: 35px; + position: relative; + user-select: none; + font-size: 1.6rem; } + .linkSelectorModule .selectModule:focus { + border: 1px dotted #ccc; + box-shadow: none; + -moz-user-select: none; } + .linkSelectorModule .selectModule:hover { + text-decoration: underline; } + .linkSelectorModule .active + .moduleWrapper:before { + background-color: #FFFFFF; + border-color: #d2d2d2; + border-style: solid; + border-width: 1px 1px 0 0; + content: ""; + display: block; + height: 15px; + right: 122px; + margin: 0; + position: absolute; + top: -8px; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + width: 15px; } + .linkSelectorModule .moduleWrapper { + top: 40px; } + .linkSelectorModule ul.awd-module-list { + border-radius: 6px 6px 0px 0px; } + + .selectorModule .icon-primary-down { + font-size: 23px; + margin-top: -11px; + position: absolute; + right: 4px; + top: 50%; } + + .selectorModule .selectModule { + border: 1px solid #d2d2d2; + border-radius: 6px; + box-shadow: 1px 5px 2px -5px rgba(0, 0, 0, 0.15); + display: block; + width: 100%; + padding-left: 15px; + background-color: transparent; + cursor: pointer; } + .selectorModule .selectModule:focus { + border: 1px solid #0568ae; + -moz-user-select: none; } + .selectorModule .selectModule span.module-data { + position: absolute; + bottom: 6px; + line-height: 20px; } + .selectorModule .selectModule img + span.module-data { + padding-left: 45px; } + + .selectorModule .selectModule.active { + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; } + + .selectorModule .moduleWrapper { + position: absolute; + width: 100% !important; + border-top: none; } + + .selectorModule ul.awd-module-list { + border-radius: 0px 0px 6px 6px; } + + .selectorModule .large > img { + height: 30px; + position: absolute; + width: 30px; + top: 20px; + left: 15px; } + + .selectModule { + background-color: transparent; + font-family: "Omnes-ECOMP-W02", Arial; + color: #333333; + font-size: 1.6rem; + height: 36px; + line-height: 35px; + margin-bottom: 0; + position: relative; + text-align: left; + top: 0; + z-index: 10; + padding: 0px; + margin: 0px; + cursor: pointer; } + + .moduleWrapper { + background-color: #FFFFFF; + position: absolute; + color: #191919; + z-index: 9999; + box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15); + border-radius: 0px 0px 6px 6px; } + .moduleWrapper .module-list-item img { + height: 30px; + position: absolute; + width: 30px; + top: 30px; + left: 15px; + align-self: center; } + .moduleWrapper span { + display: block; + white-space: nowrap; + font-size: 1.5rem; } + + .awd-module-list { + overflow-y: auto; + z-index: 9999; + max-height: 360px; + border: 1px solid #d2d2d2; } + .awd-module-list .module-list-item > .module-data { + overflow: ellipsis; + white-space: nowrap; + line-height: 20px; + font-size: 1.6rem; + border-bottom: 1px dotted #959595; + margin: 0px 15px 0px 15px; + padding-right: 50px; + padding-bottom: 14px; + padding-top: 14px; + align-self: center; + width: 100%; } + .awd-module-list .module-list-item:hover { + background-color: #f2f2f2; } + .awd-module-list .module-list-item:active { + background-color: #f2f2f2; } + .awd-module-list .module-list-item[aria-selected="true"] { + background-color: #f2f2f2; } + + .module-list-item { + cursor: pointer; + overflow: hidden; + position: relative; + overflow: ellipsis; + white-space: nowrap; + z-index: 1000; + color: #191919; + display: flex; } + .module-list-item:last-of-type .module-data { + border-bottom: none; } + .module-list-item img + span.module-data { + padding-left: 45px; } + + .module-groups:first-of-type .module-list-item:last-of-type .module-data { + border-bottom: 1px solid #959595; } + + .module-groupitem { + padding-bottom: 4px; } + + .selectorModule.large { + height: 72px; + vertical-align: middle; + text-align: left; } + .selectorModule.large .moduleWrapper { + top: 71px; } + .selectorModule.large input { + height: 72px; + vertical-align: middle; + text-align: left; } + .selectorModule.large button { + height: 72px; + vertical-align: middle; + text-align: left; } + .selectorModule.large .selectModule img { + left: 15px; + top: 21px; } + + ul.module-groupitem li { + margin: 0 -15px 0 -15px; } + + span.module-data span { + display: block; + line-height: 20px; + font-size: 1.5rem; } + + li.module-groups { + cursor: default !important; + padding: 18px 15px 0px 15px; } + + li.module-list-item[selected]:before { + box-sizing: border-box; + display: inline-block; + font-size: 2em; + height: 1em; + position: absolute; + top: 20px; + right: 0px; + vertical-align: middle; + width: 1em; + color: #007a3e; } + + ul.module-optinalcta { + position: relative; + height: 44px; + margin-top: 0px; + border-bottom: 1px solid #d2d2d2; + border-left: 1px solid #d2d2d2; + border-right: 1px solid #d2d2d2; + border-radius: 0px 0px 6px 6px; } + ul.module-optinalcta li { + position: absolute; + bottom: 10px; } + ul.module-optinalcta a { + text-indent: 15px; + padding: 15px; } + + .b2b-slider-container { + position: relative; } + .b2b-slider-container.slider-disabled { + cursor: not-allowed !important; } + .b2b-slider-container div { + position: absolute; } + .b2b-slider-container .slider-track-container { + width: 100%; + cursor: pointer; } + .b2b-slider-container .slider-track { + width: 100%; + height: 6px; + background-color: #cccccc; + border-radius: 10px; + border: 1px solid #cccccc; } + .b2b-slider-container .slider-track-fill { + width: 100%; + height: 6px; + background-color: #cccccc; + border-radius: 10px; + width: 0; + background-color: #157BB2; + transition: width 0s linear; + border: 1px solid #cccccc; } + .b2b-slider-container .slider-knob-container { + transition: left 0s linear; } + .b2b-slider-container .slider-knob-container.slider-knob-hidden { + display: none !important; } + .b2b-slider-container .slider-knob { + width: 14px; + height: 14px; + border-radius: 10px; + top: -4px; + left: -8px; + border: 1px solid #cccccc; + background: white; + cursor: pointer; } + .b2b-slider-container .slider-knob:focus { + outline: thin dotted #666; } + + .b2b-slider-endpoints-container { + margin-top: 13px; + color: #333; + font-size: 12px; } + .b2b-slider-endpoints-container .b2b-slider-endpoints-left { + float: left; + line-height: 100%; } + .b2b-slider-endpoints-container .b2b-slider-endpoints-right { + float: right; + line-height: 100%; } + .b2b-slider-endpoints-container::after { + clear: both; + content: ""; + display: block; } + + .b2b-slider-container.vertical { + width: 100%; + height: 100%; + margin: 0 auto; + position: relative; + border-radius: 10px; } + .b2b-slider-container.vertical .slider-track-container { + position: relative; + height: 100%; } + .b2b-slider-container.vertical .slider-track { + position: absolute; + height: 100%; } + .b2b-slider-container.vertical .slider-track-fill { + position: absolute; + bottom: 0; + height: 0; + width: 100%; } + .b2b-slider-container.vertical .slider-knob-container { + transition: bottom 0s linear; + position: relative; + bottom: 0; } + .b2b-slider-container.vertical .slider-knob-container.slider-knob-hidden { + display: none !important; } + .b2b-slider-container.vertical .slider-knob { + position: absolute; + border-radius: 10px; + top: -7px; + left: -4px; } + + .icon-primary-spinner { + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%20id%3D%22svg-spinner%22%20x%3D%220px%22%20y%3D%220px%22%20xml%3Aspace%3D%22preserve%22%3E%0A%20%20%20%3Cpath%20fill%3D%22%23F5F5F5%22%20d%3D%22M18%2036C8.1%2036%200%2027.9%200%2018S8.1%200%2018%200s18%208.1%2018%2018-8.1%2018-18%2018zm0-31.5c-7.5%200-13.5%206-13.5%2013.5S10.6%2031.5%2018%2031.5c7.5%200%2013.5-6.1%2013.5-13.5%200-7.5-6-13.5-13.5-13.5z%22%2F%3E%0A%20%20%20%3Cpath%20fill%3D%22%230568AE%22%20id%3D%22spinner%22%20d%3D%22M30.7%205.3l-3.1%203.2c2.4%202.4%203.9%205.8%203.9%209.5%200%207.4-6.1%2013.5-13.5%2013.5S4.5%2025.4%204.5%2018%2010.6%204.5%2018%204.5V0C8.1%200%200%208.1%200%2018s8.1%2018%2018%2018%2018-8.1%2018-18c0-5-2-9.5-5.3-12.7z%22%3E%0A%20%20%20%20%20%20%3CanimateTransform%20%0A%20%20%20%20%20%20%20%20%20attributeType%3D%22xml%22%0A%20%20%20%20%20%20%20%20%20attributeName%3D%22transform%22%0A%20%20%20%20%20%20%20%20%20type%3D%22rotate%22%0A%20%20%20%20%20%20%20%20%20from%3D%220%2018%2018%22%0A%20%20%20%20%20%20%20%20%20to%3D%22360%2018%2018%22%0A%20%20%20%20%20%20%20%20%20dur%3D%221.0s%22%0A%20%20%20%20%20%20%20%20%20repeatCount%3D%22indefinite%22%0A%20%20%20%20%20%20%2F%3E%0A%20%20%20%3C%2Fpath%3E%0A%3C%2Fsvg%3E"); + height: 50px; + width: 50px; } + + .icon-primary-spinner.small { + margin-right: 5px; + height: 30px !important; + width: 30px !important; } + + .isIE .icon-primary-spinner, + .isIE .icon-primary-spinner.small { + animation: spinner 1s linear infinite; } + + .ds2-no-colors .icon-primary-spinner { + animation: spinner 1s linear infinite; + border: 5px dotted transparent; + border-radius: 50%; } + + @keyframes spinner { + 0% { + transform: rotate(0deg); } + 100% { + transform: rotate(359deg); } } + + .b2b-status-tracker > .btn-arrow:nth-of-type(1) { + margin-right: 10px; } + + .b2b-status-tracker > .btn-arrow:nth-of-type(2) { + margin-left: 20px; } + + .b2b-status-tracker > .btn-arrow { + height: 20px; + margin-top: 25px; + overflow: visible; } + .b2b-status-tracker > .btn-arrow > .btn-secondary > .icon-primary-left { + margin-right: 5px; + color: #0574ac; } + .b2b-status-tracker > .btn-arrow > .btn-secondary > .icon-primary-right { + color: #0574ac; } + + .b2b-status-tracker > .b2b-status-tracker-step { + padding: 0; + position: relative; } + + .b2b-status-tracker-step { + margin-left: 5px; } + + .b2b-status-tracker > .b2b-status-tracker-step .b2b-status-tracker-heading { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 14px; + color: #191919; + margin-bottom: 10px; } + + .b2b-status-tracker > .b2b-status-tracker-step.complete > .progress > .progress-bar { + width: 100%; + background-color: #1b7e28; } + + .b2b-status-tracker > .b2b-status-tracker-step.complete .icoControls-approval { + color: #1b7e28; } + + .b2b-status-tracker > .b2b-status-tracker-step.current > .progress > .progress-bar { + width: 100%; + background-color: #333333; } + + .b2b-status-tracker > .b2b-status-tracker-step.current .icon-misc-time { + color: #333333; } + + .b2b-status-tracker > .b2b-status-tracker-step.pending > .progress > .progress-bar { + width: 100%; + background-color: #ffb81c; } + + .b2b-status-tracker > .b2b-status-tracker-step.pending .icoControls-statusokay { + color: #ffb81c; } + + .b2b-status-tracker > .b2b-status-tracker-step.actionRequired > .progress > .progress-bar { + width: 100%; + background-color: #cf2a2a; } + + .b2b-status-tracker > .b2b-status-tracker-step.actionRequired .icoSecurityalerts-alert { + color: #cf2a2a; } + + .b2b-status-tracker > .b2b-status-tracker-step.notAvailable > .progress > .progress-bar { + width: 100%; + background-color: #767676; } + + .b2b-status-tracker > .b2b-status-tracker-step.notAvailable .icoControls-restricted { + color: #767676; } + + .b2b-status-tracker > .b2b-status-tracker-step > .progress { + position: relative; + border-radius: 1.5px; + height: 3px; + margin-bottom: 10px; + background-color: #c5c5c5; } + .b2b-status-tracker > .b2b-status-tracker-step > .progress > .progress-bar { + width: 0; + height: 3px; } + + .b2b-status-tracker > .b2b-status-tracker-step > .b2b-status-tracker-estimate { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 14px; + color: #191919; + margin-bottom: 10px; } + + .b2b-status-tracker > .b2b-status-tracker-step > .b2b-status-tracker-description { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 12px; + color: #767676; + padding-right: 15px; } + .b2b-status-tracker > .b2b-status-tracker-step > .b2b-status-tracker-description a { + cursor: pointer; } + + .step-indicator { + height: auto; + padding: 40px 0; } + + .step-heading { + color: #333333; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 3.8rem; + line-height: 0.8; } + + .steps { + display: flex; + height: 5px; + margin-top: 60px; + position: relative; } + + .steps li { + color: #5a5a5a; + flex: 1; + margin-right: 5px; + background-color: #c4c4c4; + outline: 1px solid transparent; } + + .steps li:first-child { + border-radius: 4px 0 0 4px; } + + .steps li:last-child { + margin-right: 0; + border-radius: 0 4px 4px 0; } + + .steps li.step-on, + .steps li.step-done { + background-color: #007a3e; + color: #007a3e; + border: 1px solid transparent; } + + .step-text { + bottom: 29px; + display: inline-block; + font-size: 1.8rem; + margin-top: 0; + position: relative; + white-space: nowrap; } + + .step-on .step-text { + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + .steps li .step-text[data-large-text]:before { + content: attr(data-large-text) " "; } + + .step-confirmation { + color: #007a3e; + margin-bottom: 30px; } + + .step-confirmation > div { + display: flex; } + + .step-confirmation > div i { + color: #007a3e; + font-size: 50px; + margin-right: 10px; } + + .step-confirmation.centered > div i { + margin-left: -60px; } + + .step-confirmation > div h3 { + font-size: 2.4rem; + margin: 26px 0 20px; } + + .step-confirmation > p { + margin: 0; } + + @media (max-width: 1024px) { + .step-indicator { + padding: 25px 0; } + .steps { + margin-top: 0; } + .step-heading { + font-size: 2.4rem; + margin-bottom: 11px; } + .step-text { + display: none; } + .step-on .step-text { + bottom: 6px; + display: block; + font-size: 1.2rem; + left: 0; + line-height: 1; + margin-top: 10px; + position: absolute; + top: 4px; } + .steps li .step-text[data-sm-text]:before { + content: attr(data-sm-text) " "; + color: #333333; } + .step-confirmation { + margin-top: 30px !important; } } + + @media (max-width: 767px) { + .step-confirmation.centered > div i { + margin-left: 0; } + .step-confirmation.centered > p { + margin-left: 40px; } + .step-confirmation > div h3 { + font-size: 1.8rem; + margin: 13px 0 10px; } + .step-confirmation > div i { + font-size: 30px; + margin-right: 10px; } } + + .step-indicator.vertical { + height: auto; } + + .vertical .step-heading { + font-size: 24px; } + + .vertical .steps { + display: block; + height: inherit; + width: 100%; } + + .vertical .steps li { + align-items: center; + background-color: transparent; + display: flex; + height: 60px; + margin: 0 0 4px; + padding: 0 0 0 20px; + position: relative; } + + .vertical .steps li .step-text { + align-self: center; + color: #0568ae; + display: block; + margin: 0; + position: relative; + font-size: 14px; + top: 0; } + + .vertical .steps li .step-text[data-large-text]:before { + content: attr(data-large-text) " "; } + + .vertical .steps li:after { + background-color: transparent; + border-left: 4px solid #d2d2d2; + content: ""; + height: 60px; + left: 0; + margin: 0; + padding: 0; + position: absolute; + top: 0; + width: 4px; } + + .vertical .steps li.step-on:after, + .vertical .steps li.step-done:after { + border-color: #0568ae; } + + .b2b-step-tracker { + height: auto; + padding: 0px 0px 0px 0px; } + .b2b-step-tracker .btn.btn-left { + margin-right: 10px; } + .b2b-step-tracker .btn.btn-right { + margin-left: 5px; } + .b2b-step-tracker .b2b-left-arrow { + float: left; + margin-top: -5px; } + .b2b-step-tracker .b2b-right-arrow { + float: right; + margin-top: -5px; } + .b2b-step-tracker .b2b-steps { + display: flex; + height: 5px; + margin-top: 30px; + position: relative; } + .b2b-step-tracker .b2b-steps li { + color: #767676; + flex: 1; + margin-right: 5px; + background-color: #767676; + outline: 1px solid transparent; + height: 3px; } + .b2b-step-tracker .b2b-steps li.b2b-step-done { + background-color: #1b7e28; + color: #007a3e; + height: 3px; } + .b2b-step-tracker .b2b-steps li.b2b-step-on { + background-color: #333333; + color: #333333; + height: 3px; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + .b2b-step-tracker .b2b-steps li .b2b-step-text { + bottom: 29px; + display: inline-block; + font-size: 14px; + margin-top: 0; + position: relative; + white-space: nowrap; } + .b2b-step-tracker .b2b-steps li .b2b-step-text[data-large-text]:before { + content: attr(data-large-text) " "; } + .b2b-step-tracker .b2b-steps li:first-child { + border-radius: 2px 0 0 2px; } + .b2b-step-tracker .b2b-steps li:last-child { + margin-right: 0; + border-radius: 0 2px 2px 0; } + + @media (max-width: 1024px) { + .b2b-step-tracker { + padding: 25px 0; } + .b2b-step-tracker .b2b-steps { + margin-top: 0; } + .b2b-step-tracker .b2b-steps li .b2b-step-text { + display: none; } + .b2b-step-tracker .b2b-steps li .b2b-step-text[data-sm-text]:before { + content: attr(data-sm-text) " "; + color: #333333; } + .b2b-step-tracker .b2b-steps li.b2b-step-on .b2b-step-text { + bottom: 6px; + display: block; + font-size: 5px; + left: 0; + line-height: 1; + margin-top: 10px; + position: absolute; + top: 4px; } } + + .strength-meter-container { + height: 26px; + max-width: 450px; } + + .strength-meter-gauge { + border-radius: 2px; + background-color: #d2d2d2; + height: 5px; + display: block; + position: relative; + outline: 1px solid transparent; } + + .strength-meter-gauge-fill { + height: 100%; + display: block; + border-radius: 2px; + text-indent: -9999px; + width: 0%; + border: 2px solid transparent; } + + .strength-meter-gauge-fill.strength-meter-animate { + transition: width 0.5s linear, background-color 0.5s linear; } + + .strength-meter-animate[style*="20"] { + background-color: #cf2a2a; } + + .strength-meter-animate[style*="20"] + .strength-meter-divider + .strength-meter-content:after { + content: "Unacceptable"; } + + .strength-meter-animate[style*="40"] { + background-color: #ea7400; } + + .strength-meter-animate[style*="40"] + .strength-meter-divider + .strength-meter-content:after { + content: "Weak"; } + + .strength-meter-animate[style*="60"] { + background-color: #ea7400; } + + .strength-meter-animate[style*="60"] + .strength-meter-divider + .strength-meter-content:after { + content: "Fair"; } + + .strength-meter-animate[style*="80"] { + background-color: #007a3e; } + + .strength-meter-animate[style*="80"] + .strength-meter-divider + .strength-meter-content:after { + content: "Good"; } + + .strength-meter-animate[style*="100"] { + background-color: #007a3e; } + + .strength-meter-animate[style*="100"] + .strength-meter-divider + .strength-meter-content:after { + content: "Excellent"; } + + .strength-meter-divider { + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + display: flex; + overflow: hidden; } + + .strength-meter-divider span { + background: transparent; + display: block; + flex-grow: 1; + border-right: solid 1px #fff; } + + .strength-meter-divider span:first-child { + border-radius: 2px 0 0 2px; } + + .strength-meter-divider span + .strength-meter-divider span { + border-radius: 0; } + + .strength-meter-divider span:last-child { + border-radius: 0 2px 2px 0; + border-right: 0; } + + .strength-meter-content { + font-size: 14px; + line-height: 1; + padding-top: 7px; + position: absolute; } + + .strength-meter-content:before { + font-family: "Omnes-ECOMP-W02", Arial; + content: "Password strength: "; } + + .strength-meter-content:after { + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + .strength-meter-container { + height: 26px; + min-width: 290px; + max-width: 450px; } + + .strength-meter-container .strength-meter-gauge { + border-radius: 2px; + background-color: #cccccc; + box-shadow: 0 1px 1px -1px #333 inset; + height: 5px; + display: block; + overflow: hidden; + position: relative; } + + .strength-meter-container > .strength-meter-gauge > .strength-meter-gauge-fill { + height: 100%; + box-shadow: 0 1px 1px -1px #999 inset; + display: block; + text-indent: -9999px; + width: 0%; } + + .strength-meter-container > .strength-meter-gauge > .strength-meter-gauge-fill.strength-meter-animate { + transition: width 0ms ease-out, background-color 0ms ease-in; } + + .strength-meter-container > .strength-meter-gauge > .strength-meter-divider { + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + display: flex; } + + .strength-meter-container > .strength-meter-gauge > .strength-meter-divider span { + background: transparent; + display: block; + flex-grow: 1; + border-right: solid 1px #fff; } + + .strength-meter-container > .strength-meter-gauge > .strength-meter-divider span:last-child { + border-right: 0; } + + .strength-meter-container > .strength-meter-content { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 14px; + line-height: 1; + padding-top: 7px; } + + .strength-meter-container > .strength-meter-content:before { + content: none; } + + .strength-meter-container > .strength-meter-content > .strength-meter-content-state { + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + .btn-switch-label { + display: flex; + align-items: center; } + .btn-switch-label:focus .btn-switch { + outline: 1px dotted #666; + outline-offset: 5px; } + .btn-switch-label input:focus .btn-switch { + outline: 1px dotted #666; + outline-offset: 5px; } + .btn-switch-label > span { + flex: 1; } + + .btn-switch { + background-color: #fff; + border: 1px solid #d2d2d2; + border-radius: 16px; + box-shadow: 0 4px 5px -5px rgba(0, 0, 0, 0.15) inset, 0 5px 5px -5px rgba(0, 0, 0, 0.15); + height: 32px; + overflow: hidden; + position: relative; + width: 80px; + user-select: none; } + /* .btn-switch input[type="checkbox"] { + left: 0; + margin: 0; + opacity: 0; + position: absolute; + top: 0; + transition: none; } + .btn-switch input[type="checkbox"] + .switch-overlay .btn-slider-on .activo { + font: 0px/0 "Omnes-ECOMP-W02", Arial; } + .btn-switch input[type="checkbox"] + .switch-overlay .btn-slider-on + .btn + .btn-slider-off .inactivo { + font: 0px/0 "Omnes-ECOMP-W02", Arial; } */ + .btn-switch input:checked + .switch-overlay { + left: 0; + transition: all .3s linear .0s; } + .btn-switch input:checked + .switch-overlay .switch-handle { + background-color: #007a3e; + background: linear-gradient(to bottom, #008744 0%, #007a3e 100%); + transition: background-color 0.3s linear 0s; + border: 1px solid transparent; } + .btn-switch input + .switch-overlay { + left: -48px; + transition: all .3s linear .0s; } + .btn-switch input + .switch-overlay .switch-handle { + background-color: #f2f2f2; + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + transition: background-color 0.3s linear 0s; + border: 1px solid #d2d2d2; } + .btn-switch input[disabled] + .switch-overlay { + left: 0; + width: 100% !important; + background-color: #d2d2d2; + color: #959595; + cursor: not-allowed !important; } + .btn-switch input[disabled] + .switch-overlay .btn-slider-on { + display: none; } + .btn-switch input[disabled] + .switch-overlay .activo { + display: none; } + .btn-switch input[disabled] + .switch-overlay .switch-handle { + display: none; } + .btn-switch input[disabled] + .switch-overlay .btn-slider-off { + left: 0; + text-align: center; + padding: 0; } + .btn-switch input[disabled]:checked + .switch-overlay { + left: 0; + width: 100% !important; + background-color: #fff; } + .btn-switch input[disabled]:checked + .switch-overlay .btn-slider-off { + display: none; } + .btn-switch input[disabled]:checked + .switch-overlay .btn-slider-off + .inactivo { + display: none; } + .btn-switch input[disabled]:checked + .switch-overlay .switch-handle { + display: none; } + .btn-switch input[disabled]:checked + .switch-overlay .btn-slider-on { + display: block; + text-align: center; + padding: 0; + color: #007a3e !important; + font-weight: bold; } + .btn-switch input[disabled]:checked + .switch-overlay .activo { + display: block; + text-align: center; + padding: 0; + color: #007a3e !important; + font-weight: bold; } + .btn-switch input[disabled]:checked + .btn-slider-on { + display: block; } + .btn-switch input[disabled] + .btn-slider-on + .switch-handle { + width: 100%; + margin: 0; } + .btn-switch input[disabled] + .btn-slider-on + .switch-handle + .btn-slider-off { + display: block; } + /* .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on { + display: none; } + .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on .activo { + border: medium none; + color: #666; + font: 16px/32px "Omnes-ECOMP-W02", Arial; + height: auto; + margin: 0 auto; + width: auto; } + .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on .activo:before { + display: none; } + .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off { + display: block; + padding: 0; + text-align: center; + color: #333333; } + .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off .inactivo { + border: medium none; + color: #666; + font: 16px/32px "Omnes-ECOMP-W02", Arial; + height: auto; + margin: 0 auto; + width: auto; } + .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off .inactivo:before { + display: none; } + .btn-switch input[type="checkbox"][disabled]:checked + .switch-overlay .btn-slider-on { + display: block; + padding: 0; + text-align: center; + color: #007a3e; } + .btn-switch input[type="checkbox"][disabled]:checked + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off { + display: none; } + .btn-switch input[type="checkbox"][disabled]:checked + .switch-overlay .activo { + color: #007a3e; + font-weight: bold; } */ + + .switch-overlay { + border-radius: 16px; + color: black !important; + font-size: 1.6rem; + height: 32px; + left: 0; + position: absolute; + top: -1px; + width: 126px; + overflow: hidden; } + + .btn-slider-on { + left: -1px; + text-align: left; + padding-left: 12px; + display: inline-block; + font-family: "Omnes-ECOMP-W02", Arial; + height: 32px; + line-height: 32px; + position: absolute; + top: 1px; + width: 80px; } + + .btn-slider-off { + display: inline-block; + font-family: "Omnes-ECOMP-W02", Arial; + height: 32px; + line-height: 32px; + position: absolute; + top: 1px; + width: 80px; + right: 1px; + text-align: right; + padding-right: 11px; } + + .switch-handle { + border-radius: 50%; + display: inline-block; + height: 26px; + left: 50px; + position: absolute; + top: 3px; + width: 26px; } + + .activo { + display: block; + font-size: 0.1px; + line-height: 40px; + overflow: hidden; } + .activo:before { + background-image: none; + border-left: 3px solid #007a3e; + content: " "; + height: 18px; + left: 22px; + margin: 2px auto; + position: absolute; + top: 5px; + width: 0; } + + .inactivo { + font-size: 0.1px; + line-height: 40px; } + .inactivo:before { + background-image: none; + border: 3px solid #959595; + border-radius: 100%; + content: " "; + display: block; + position: absolute; + top: 4px; + right: 3px; + height: 16px; + width: 16px; } + + .btn-switch.focused { + outline: 1px dotted #000; + outline-offset: 5px; } + + table, tr, td, th { + border: 0; + } + + table caption { + text-align: left; } + + table thead th { + vertical-align: bottom; } + + table th, + table td { + padding: 13px 20px; + line-height: 1.2rem; + color: rgb(112, 111, 111); + font-size: 1rem; + text-align: left; + vertical-align: top; + word-wrap: break-word; } + + table th { + text-transform: uppercase; + font-size: 1.2rem; + font-weight: normal; + color: #000; + + padding: 13px 20px; } + + + + + + .accordion-content .faux-table-cell { + display: table-cell; + width: 100%; + padding: 0 0 10px 0; } + + .faux-table-cell:last-child { + text-align: right; + min-width: 100px; + max-width: 150px; + width: 1%; + background-color: #f2f2f2; + + font-size: 14px; + border-left: 1px solid #d2d2d2; + padding: 0 20px 0 10px; } + + .tiny-accordion.iconleft.accordion-table-layout .toggle-header.opened .hide-when-expanded { + opacity: 1; } + + .tiny-accordion.iconleft.accordion-table-layout .toggle-header.opened .hide-when-expanded { + opacity: 0; + transition: opacity .3s linear .2s; } + + + .data-row-list ul > li { + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewport%3D%220%200%201%201%22%20style%3D%22width%3A100%25%3B%20height%3A1px%3B%22%3E%3Cstyle%3Eline%7Bstroke%3Argba(153%2C153%2C153%2C1)%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cline%20y2%3D%221%22%20y1%3D%221%22%20x1%3D%221%22%20x2%3D%22100%25%22%20stroke-dasharray%3D%221%2C%203%22%2F%3E%3C%2Fsvg%3E") !important; } + + + + .b2b-external-sort-div { + float: right; + padding-bottom: 25px; } + + .b2b-external-sort-div .sortButton { + font-size: 36px; + border: 1px solid #ccc; + background: #FFF; + border-radius: 6px; + text-align: center; + background: linear-gradient(#fcfcfc, #f2f2f2); + background-blend-mode: multiply; + width: 1em; } + + .b2b-external-sort-label { + padding-bottom: 10px; } + + .b2b-external-sort-div a:hover { + cursor: pointer; } + + .b2b-external-sort-div a:hover, .b2b-external-sort-div a:focus { + text-decoration: none; } + + .b2b-external-sort-label label { + position: relative; } + + .b2b-external-sort-margin { + margin-right: 13px !important; } + + + @media screen and (max-width: 950px) { + .b2b-external-sort-margin .selectWrap { + bottom: 0px !important; } } + + + .card{ + border-radius: 5px; + } + + .card-header{ + height: 50px; + } + + .card-body{ + height: 150px; + } + + .card-footer{ + height: 50px; + } + + .dialog__close-btn { + border: 0; + background: #087ac2; + color: #ffffff; + position: absolute; + top: 8px; + right: 8px; + font-size: 1.2em; + display: block; + border: #087ac2 2px solid; + } + + .dialog{ + margin-top: 50px; + } + + .modalTitle{ + font-size: 35px; + } + + .defaultFontSize{ + font-size: 15px; + } + + + .tab-content{ + margin-right: 20px; + /* background-color: #006496; */ + color: rgb(0, 0, 0); + } + + .btn-sm{ + width: 30px; + height: 15px; + font-size: 10px; + } + + + +.innerTab{ + margin-left: 25px; +} + + + +[type="radio"]:checked, +[type="radio"]:not(:checked) { + position: absolute; + left: -9999px; +} +[type="radio"]:checked + label, +[type="radio"]:not(:checked) + label +{ + position: relative; + padding-left: 28px; + cursor: pointer; + display: inline-block; + color: #666; +} +[type="radio"]:checked + label:before, +[type="radio"]:not(:checked) + label:before { + content: ''; + position: absolute; + left: 0; + top: 0; + width: 25px; + height: 25px; + border: 1px solid #087ac2; + border-radius: 100%; + background: #fff; +} +[type="radio"]:checked + label:after, +[type="radio"]:not(:checked) + label:after { + content: ''; + width: 17px; + height: 17px; + background: #087ac2; + border: 1px solid #08598b; + position: absolute; + top: 4px; + left: 4px; + border-radius: 100%; + -webkit-transition: all 0.2s ease; + transition: all 0.2s ease; +} +[type="radio"]:not(:checked) + label:after { + opacity: 0; + -webkit-transform: scale(0); + transform: scale(0); +} +[type="radio"]:checked + label:after { + opacity: 1; + -webkit-transform: scale(1); + transform: scale(1); +} + + .card{ + border-radius: 5px; + } + + .card-header{ + height: 30px; + } + + .card-body{ + height: 150px; + } + + .card-footer{ + height: 50px; + } + + .dialog__close-btn { + border: 0; + background: #087ac2; + color: #ffffff; + position: absolute; + top: 8px; + right: 8px; + font-size: 1.2em; + display: block; + border: #087ac2 2px solid; + } + + .modalTitle{ + font-size: 35px; + } + + .overlay { + position: fixed; + top: 0; + bottom: 0; + left: 0; + right: 0; + background-color: rgba(0, 0, 0, 0.705); + z-index: 999; + } + + .dialog { + z-index: 1000; + position: fixed; + right: 0; + left: 0; + top: 20px; + margin-right: auto; + margin-left: auto; + margin-top: 50px; + height: 690px; + width: 1024px; + background-color: #fff; + padding: 12px; + box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.349), 0 13px 19px 2px rgba(0, 0, 0, 0.349), 0 5px 24px 4px rgba(0, 0, 0, 0.349); + } + + @media (min-width: 768px) { + .dialog { + top: 40px; + } + } + + .dialog__close-btn { + border: 0; + background: none; + color: #2d2d2d; + position: absolute; + top: 8px; + right: 8px; + font-size: 1.2em; + display: block; + border: #2d2d2d 1px solid; + } + + + .lds-ring { + display: inline-block; + position: relative; + width: 64px; + height: 64px; + } + .lds-ring div { + box-sizing: border-box; + display: block; + position: absolute; + width: 80px; + height: 80px; + margin: 6px; + margin-top: 10px; + border: 10px solid #006496; + border-radius: 80%; + animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite; + border-color: #006496 transparent transparent transparent; + } + .lds-ring div:nth-child(1) { + animation-delay: -0.45s; + } + .lds-ring div:nth-child(2) { + animation-delay: -0.3s; + } + .lds-ring div:nth-child(3) { + animation-delay: -0.15s; + } + @keyframes lds-ring { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } + } + + diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/columns-edit-component/edit-drill-down-link/edit-drill-down-link.component.html b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/columns-edit-component/edit-drill-down-link/edit-drill-down-link.component.html new file mode 100644 index 00000000..3538be15 --- /dev/null +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/columns-edit-component/edit-drill-down-link/edit-drill-down-link.component.html @@ -0,0 +1,54 @@ +
+
+
+ +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
{{item.name}}
+ +
+ +
+
+
+ +
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/columns-edit-component/edit-drill-down-link/edit-drill-down-link.component.spec.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/columns-edit-component/edit-drill-down-link/edit-drill-down-link.component.spec.ts new file mode 100644 index 00000000..ad5f13fe --- /dev/null +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/columns-edit-component/edit-drill-down-link/edit-drill-down-link.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { EditDrillDownLinkComponent } from './edit-drill-down-link.component'; + +describe('EditDrillDownLinkComponent', () => { + let component: EditDrillDownLinkComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ EditDrillDownLinkComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(EditDrillDownLinkComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/columns-edit-component/edit-drill-down-link/edit-drill-down-link.component.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/columns-edit-component/edit-drill-down-link/edit-drill-down-link.component.ts new file mode 100644 index 00000000..7a616a22 --- /dev/null +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/columns-edit-component/edit-drill-down-link/edit-drill-down-link.component.ts @@ -0,0 +1,118 @@ +import { Component, OnInit, Input, EventEmitter, Output } from '@angular/core'; +import { trigger, transition, style, animate } from '@angular/animations'; +import { HttpClient } from '@angular/common/http'; +import { ColumnService } from '../../column.service'; + + + +@Component({ + selector: 'app-edit-drill-down-link', + templateUrl: './edit-drill-down-link.component.html', + styleUrls: ['./edit-drill-down-link.component.css'] +}) +export class EditDrillDownLinkComponent implements OnInit { + + + @Input() closable = true; + @Input() visible: boolean; + + @Input("reportId") reportId : number; + @Input("drillDownObj") drillDownObj : {}; + + @Output() completed = new EventEmitter(); + + drillDownColsList : {}[]; + valueOfColumnsList : {}[]; + showSpinner : boolean; + + valueOfColumns : string; + valueOfColumnsArr : any[]; + valueOfFormFieldArr : any[]; + fixedValueArr : any[]; + + noValueRadioArr : any[]; + fixedValueRadioArr : any[]; + valueOfColRadioArr : any[]; + valueOfFormFieldsRadioArr : any[]; + valueSetRadioArr : any[]; + + postDrillDownObj : {}; + + constructor(private _http : HttpClient, private _columnService : ColumnService) { + this.drillDownColsList = new Array(); + this.valueOfColumnsList = new Array(); + this.showSpinner = true; + this.valueOfColumnsArr = new Array(); + this.valueOfFormFieldArr = new Array(); + this.postDrillDownObj = new Object(); + + this.fixedValueArr = new Array(); + this.noValueRadioArr = new Array(); + this.fixedValueRadioArr = new Array(); + this.valueOfColRadioArr = new Array(); + this.valueOfFormFieldsRadioArr = new Array(); + this.valueSetRadioArr = new Array(); + + } + + ngOnInit() { + this._columnService.getDrillDownReportColumnDetails(this.drillDownObj["drillDownUrl"]) + .subscribe((response) => { + // console.log(response); + let i=0; + + while(response[i]) + { + this.drillDownColsList.push(response[i]); + // this.valueOfFormFieldArr.push(response[i]["name"]); + i++; + } + + console.log(this.drillDownColsList); + + this._columnService.getValueOfColumnDetails(this.reportId) + .subscribe((responseValueOfColumn)=> { + console.log(responseValueOfColumn); + + let k=0; + + while(responseValueOfColumn[k]) + { + this.valueOfColumnsList.push(responseValueOfColumn[k]); + k++; + } + // for(let l=0; l

Step 3 - Report Columns

- +
- + +
- \ No newline at end of file diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/definition/definition-save-dialog/definition-save-dialog.component.css b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/definition/definition-save-dialog/definition-save-dialog.component.css index 918e534f..be080989 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/definition/definition-save-dialog/definition-save-dialog.component.css +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/definition/definition-save-dialog/definition-save-dialog.component.css @@ -9,13 +9,14 @@ } .dialog { - z-index: 1000; + z-index: 1100; position: fixed; right: 0; left: 0; top: 20px; margin-right: auto; margin-left: auto; + margin-top: 50px; min-height: 200px; width: 90%; max-width: 520px; diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/definition/definition.component.css b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/definition/definition.component.css index 85407d25..5601b792 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/definition/definition.component.css +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/definition/definition.component.css @@ -1,3 +1,6 @@ +mat-button-toggle-group{ + width: 800px; +} .lds-ring { @@ -40,7 +43,7 @@ mat-button-toggle{ display: block; - width: 400px; + width: 800px; border-radius: 5px; } @@ -49,7 +52,7 @@ label{ } input { - width: 400px; + width: 800px; height: 20px; } @@ -70,17 +73,11 @@ label + .field-group, label + .input-append, label + .row, label + .row-nowrap, margin-top: 5px; } -textarea { - display: block; - width: 400px; - max-width: 50%; - padding: 15px; -} select{ display: block; - width: 400px; - max-width: 400px; + width: 800px; + padding: 15px; background-color: #e6e6e61a } @@ -3037,8 +3034,8 @@ span.icon-primary-calendar.readonly input { textarea { display: block; - width: 400px; - max-width: 400px; + width: 800px; + padding: 15px; } textarea.small { @@ -5725,10 +5722,10 @@ a > .b2b-badge { /*resolve blue focus outline over dropdown with error*/ select { margin-right: -1; - max-width: 400px; + height: 36px; line-height: 25px; - width: 400px; + background-color: #95959521; } .selectWrap.disabled .icon-primary-down { @@ -11844,6 +11841,10 @@ label.b2b-static-route-label-heading { border: #087ac2 2px solid; } +.dialog{ + margin-top: 50px; +} + .modalTitle{ font-size: 35px; } diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields-add-edit/form-fields-add-edit.component.css b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields-add-edit/form-fields-add-edit.component.css new file mode 100644 index 00000000..13497b3c --- /dev/null +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields-add-edit/form-fields-add-edit.component.css @@ -0,0 +1,11906 @@ +mat-button-toggle{ + display: block; + width: 400px; + border-radius: 5px; +} + +input { + width: 400px; + height: 20px; +} + +.tab-content{ + margin-right: 20px; + background-color: #006496; + color: white; +} + + + +.defaultFontSize{ + font-size: 15px; +} + + +.stdForm{ + margin-left: 20px; +} + +.field-group { + position: relative; + display: block; +} + +label + .field-group, label + .input-append, label + .row, label + .row-nowrap, label + .form-row { + margin-top: 5px; +} + +textarea { + display: block; + width: 400px; + max-width: 50%; + padding: 15px; +} + +select{ + display: block; + width: 400px; + max-width: 400px; + padding: 15px; + background-color: #cfcfcf7a +} + +.webform-component-my-select select { + height: 200px; + } + + .checkbox .skin { + background-color: #fff; + border: 1px solid #d2d2d2; + border-radius: 3px; + display: inline-block; + height: 24px; + width: 24px; + position: absolute; + left: 0; + top: 0; +} + +i, em { + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; +} + + +.b2b-horizontal-table ::-webkit-scrollbar { + height: 10px; } + + .b2b-horizontal-table ::-webkit-scrollbar-thumb { + background: #666666; + border-radius: 5px; } + + .b2b-horizontal-table .b2b-frozen-col { + font-size: 12px; + font-weight: normal; + font-style: italic; } + + .b2b-horizontal-table .b2b-horizontal-table-inner-container { + overflow-x: scroll; } + + .b2b-horizontal-table .b2b-horizontal-table-column-info { + text-align: center; } + + .b2b-horizontal-table .b2b-horizontal-table-legend div[b2b-flyout-toggler] { + color: #0568ae; + cursor: pointer; } + + .b2b-horizontal-table .b2b-horizontal-table-legend .b2b-frozen-cell { + width: 16px; + height: 16px; + background-color: #F2F2F2; + display: inline-block; + margin-right: 10px; } + + .b2b-horizontal-table .b2b-horizontal-table-arrows { + margin-bottom: 20px; } + .b2b-horizontal-table .b2b-horizontal-table-arrows .b2b-disabled-text { + color: #767676; } + .b2b-horizontal-table .b2b-horizontal-table-arrows .b2b-next-link { + padding-right: 15px; } + .b2b-horizontal-table .b2b-horizontal-table-arrows .b2b-prev-link { + padding-left: 15px; } + + @-moz-document url-prefix() { + .b2b-horizontal-table td:first-child { + border-top: none; } } + * { + box-sizing: border-box; } + + :root { + -ms-overflow-style: -ms-autohiding-scrollbar; + overflow-y: scroll; + -ms-text-size-adjust: 100%; + -webkit-text-size-adjust: 100%; + box-sizing: border-box; + font: 0.625pc/1.5 sans-serif; + text-rendering: optimizeLegibility; } + + html { + overflow-y: scroll; + -webkit-overflow-scrolling: touch; + height: 100%; + position: relative; } + + h1, + h2, + h3, + h4, + h5, + p, + blockquote, + figure, + ol, + ul { + margin: 0; + padding: 0; } + + /* a:focus { + outline: thin dotted #191919; + } */ + sub, + sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: top; } + + sup { + top: .75em; + display: inline-block; } + + sub { + bottom: -0.25em; } + + img { + max-width: 100%; + height: auto; + vertical-align: middle; + border: 0; + -ms-interpolation-mode: bicubic; } + + .img-no-rwd { + max-width: inherit !important; } + + svg { + display: inline-block; } + + .responsive-img { + width: 100%; + height: auto; } + + button, + input, + select, + textarea { + margin: 0; + font-size: 100%; + vertical-align: middle; } + + ::-moz-focus-inner { + padding: 0; + border: 0; } + + button, + html input[type="button"], + input[type="reset"], + input[type="submit"] { + appearance: button; + cursor: pointer; } + + label, + select, + button, + input[type="button"], + input[type="reset"], + input[type="submit"], + input[type="radio"], + input[type="checkbox"] { + cursor: pointer; } + + input[type=search] { + -webkit-appearance: textfield; } + + input[type=search]:-webkit-search-cancel-button, + input[type=search]:-webkit-search-decoration { + -webkit-appearance: none; } + + + + select { + -moz-appearance: none; + -webkit-appearance: none; } + + [aria-busy=true] { + cursor: progress; } + + [aria-controls] { + cursor: pointer; } + + body { + background-color: #ffffff; + color: #191919; + font-family: "Omnes-ECOMP-W02", Arial; + /* font-size: 1.6rem; + line-height: 2rem;*/ + margin: 0; + position: relative; + width: 100%; + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; } + + small { + font-size: 1.6rem; } + + .container { + margin: 0 auto; + padding: 0; } + + .tooltip { + display: inline-block; + height: 20px; + margin: 1px 0 0 7px; + vertical-align: middle; } + + .tooltip-wrapper { + display: none; } + + + + /* TODO: Build a reference page for these classes */ + .font-regular { + font-family: "Omnes-ECOMP-W02", Arial !important; } + + .font-light { + font-family: "Omnes-ECOMP-W02-Light", Arial !important; } + + .font-italic { + font-family: "Omnes-ECOMP-W02-Italic", Arial !important; } + + .font-light-italic { + font-family: "Omnes-ECOMP-W02-Light-Italic", Arial !important; } + + .font-medium { + font-family: "Omnes-ECOMP-W02-Medium", Arial !important; } + + .font-medium-italic { + font-family: "Omnes-ECOMP-W02-Medium-Italic",Arial !important; } + + .font-reset { + font-style: normal; + font-variant: normal; + font-weight: normal; + text-transform: none; } + + .visible-phone { + display: none !important; } + + .visible-tablet { + display: none !important; } + + .hidden-desktop { + display: none !important; } + + .visible-desktop { + display: inherit !important; } + + .row, + .row-nowrap { + margin-left: 0; } + + .row:before, + .row-nowrap:before, + .row:after, + .row-nowrap:after { + display: table; + content: ""; + line-height: 0; } + + .row:after, + .row-nowrap:after { + clear: both; } + + .row:before, + .row-nowrap:before, + .row:after, + .row-nowrap:after { + display: table; + content: ""; + line-height: 0; } + + .row:after, + .row-nowrap:after { + clear: both; } + + .row, + .row-nowrap { + display: flex; } + + .row > [class*="span"], + .row-nowrap > [class*="span"] { + float: left; + margin-right: 14px; + margin-right: 1.40845%\9; } + + .row > [class*="span"]:last-child, + .row-nowrap > [class*="span"]:last-child { + margin-right: 0; } + + .row > [class*="span"].centered, + .row-nowrap > [class*="span"].centered { + margin-left: auto !important; + margin-right: auto !important; } + + .row.no-flex, + .row-nowrap.no-flex { + display: block; } + + .row.no-flex > [class*="span"], + .row-nowrap.no-flex > [class*="span"] { + margin-right: 1.408450704225352%; } + + .row.no-flex > [class*="span"]:last-child, + .row-nowrap.no-flex > [class*="span"]:last-child { + margin-right: 0; } + + .row.flex-justify, + .row-nowrap.flex-justify { + justify-content: space-between; } + + .row.flex-justify > [class*="span"], + .row-nowrap.flex-justify > [class*="span"] { + flex: 1 1 0; } + + .row.flex-justify > .flex-col, + .row-nowrap.flex-justify > .flex-col { + margin-right: 14px; + margin-right: 1.40845%\9; } + + .row.flex-wrap, + .row-nowrap.flex-wrap { + flex-wrap: wrap; } + + .align-items-top { + align-items: flex-start; } + + .align-items-center { + align-items: center; } + + .align-items-bottom { + align-items: flex-end; } + + .align-self-top { + align-self: flex-start; } + + .align-self-center { + align-self: center; } + + .align-self-bottom { + align-self: flex-end; } + + .row .fixed-230 { + flex: 0; + display: block; + width: 230px; + vertical-align: top; + min-width: 230px; + background-color: #efefef; } + + .row .fluid-space { + flex: 1 1 0; + display: block; + vertical-align: top; + padding-left: 0; + padding-right: 20px; + width: 100%; } + + .row .fixed-230 + .fluid-space { + padding-left: 20px; + padding-right: 20px; } + + .row .fluid-space:last-child { + padding-right: 0; } + + .span1 { + width: 7.042253521126761%; } + + .span2 { + width: 15.49295774647887%; } + + .span3 { + width: 23.94366197183099%; } + + .span4 { + width: 32.3943661971831%; } + + .span5 { + width: 40.84507042253521%; } + + .span6 { + width: 49.29577464788733%; } + + .span7 { + width: 57.74647887323944%; } + + .span8 { + width: 66.19718309859155%; } + + .span9 { + width: 74.64788732394367%; } + + .span10 { + width: 83.09859154929578%; } + + .span11 { + width: 91.54929577464789%; } + + .span12 { + width: 100%; } + + .offset1 { + margin-left: 8.450704225352113%; } + + .offset2 { + margin-left: 16.90140845070423%; } + + .offset3 { + margin-left: 25.35211267605634%; } + + .offset4 { + margin-left: 33.8028169%; } + + .offset5 { + margin-left: 42.25352113%; } + + .offset6 { + margin-left: 50.70422535%; } + + .offset7 { + margin-left: 59.15492958%; } + + .offset8 { + margin-left: 67.6056338%; } + + .offset9 { + margin-left: 76.05633803%; } + + .offset10 { + margin-left: 84.50704225%; } + + .offset11 { + margin-left: 92.95774648%; } + + .align-center { + margin: 0 auto; + text-align: center; } + + [class*="span"].align-center { + margin: 0 auto !important; + float: none; } + + .align-left .container { + padding-left: 0 !important; + margin: 0 !important; } + + /* BEGIN RESPONSIVE-4.LESS ************** */ + @media (min-width: 1025px) { + .row > [class*="span"], + .row-nowrap > [class*="span"] { + margin-right: 20px; + margin-right: 1.487301587301587%\9; } + .container { + padding-left: 20px; + padding-right: 20px; + max-width: 1260px; } + /* 1col = 6.878306878306879 */ + /* 1colgutter = 1.587301587301587 */ + .span0 { + display: none; } + .span1 { + width: 6.878306878306879%; } + .span2 { + width: 15.34391534391534%; } + .span3 { + width: 23.80952380952381%; } + .span4 { + width: 32.27513227513228%; } + .span5 { + width: 40.74074074074074%; } + .span6 { + width: 49.20634920634921%; } + .span7 { + width: 57.67195767195767%; } + .span8 { + width: 66.13756613756614%; } + .span9 { + width: 74.60317460317461%; } + .span10 { + width: 83.06878306878308%; } + .span11 { + width: 91.53439153439154%; } + .span12 { + width: 100%; } + .offset1 { + margin-left: 8.465608465608466%; } + .offset2 { + margin-left: 16.93121693121693%; } + .offset3 { + margin-left: 25.3968253968254%; } + .offset4 { + margin-left: 33.86243386%; } + .offset5 { + margin-left: 42.32804233%; } + .offset6 { + margin-left: 50.79365079%; } + .offset7 { + margin-left: 59.25925926%; } + .offset8 { + margin-left: 67.72486772%; } + .offset9 { + margin-left: 76.19047619%; } + .offset10 { + margin-left: 84.65608466%; } + .offset11 { + margin-left: 93.12169312%; } + .tooltip-size-control { + position: relative; + width: 400px; } + .thumbnails > li { + margin-left: 1.40845070422535%; } + .row .thumbnails { + margin-left: 0; } } + + /* END RESPONSIVE-4.LESS ****************** */ + /* BEGIN RESPONSIVE-3.LESS ******************* */ + @media (min-width: 768px) and (max-width: 1024px) { + .hidden-desktop { + display: inherit !important; } + .visible-desktop { + display: none !important; } + .visible-tablet { + display: inherit !important; } + .hidden-tablet { + display: none !important; } + .container { + width: 100%; + margin: 0 auto; + padding-left: 20px; + padding-right: 20px; } + .span0-md { + display: none; } + .span1-md { + width: 7.042253521126761%; } + .span2-md { + width: 15.49295774647887%; } + .span3-md { + width: 23.94366197183099%; } + .span4-md { + width: 32.3943661971831%; } + .span5-md { + width: 40.84507042253521%; } + .span6-md { + width: 49.29577464788733%; } + .span7-md { + width: 57.74647887323944%; } + .span8-md { + width: 66.19718309859155%; } + .span9-md { + width: 74.64788732394367%; } + .span10-md { + width: 83.09859154929578%; } + .span11-md { + width: 91.54929577464789%; } + .span12-md { + width: 100%; } + .offset1-md { + margin-left: 8.450704225352113%; } + .offset2-md { + margin-left: 16.90140845070423%; } + .offset3-md { + margin-left: 25.35211267605634%; } + .offset4-md { + margin-left: 33.8028169%; } + .offset5-md { + margin-left: 42.25352113%; } + .offset6-md { + margin-left: 50.70422535%; } + .offset7-md { + margin-left: 59.15492958%; } + .offset8-md { + margin-left: 67.6056338%; } + .offset9-md { + margin-left: 76.05633803%; } + .offset10-md { + margin-left: 84.50704225%; } + .offset11-md { + margin-left: 92.95774648%; } + .tooltip-size-control { + position: relative; + width: 300px; } } + + /* END RESPONSIVE-3.LESS ******************* */ + /* BEGIN RESPONSIVE-2.LESS *************** */ + @media (max-width: 767px) { + .hidden-desktop { + display: inherit !important; } + .visible-desktop { + display: none !important; } + .visible-phone { + display: inherit !important; } + .visible-tablet { + display: inherit !important; } + .hidden-phone { + display: none !important; } + .hidden-tablet { + display: none !important; } + .container { + width: auto; + padding-left: 15px; + padding-right: 15px; } + /*.row{ display:block; }*/ + .row > [class*="span"] { + float: none; + margin-left: 0; + margin-right: 0; + width: 100%; } + .row { + display: block; } + .row.flex > .flex-col, + .row-nowrap.flex > .flex-col { + margin-right: 0; } + .row .fixed-230 { + display: block; + width: 100%; } + .row .fluid-space { + display: block; + padding-left: 0; + padding-right: 0; + width: auto; } + .row .fluid-space + .fixed-230 { + padding-left: 0; } + .row .fluid-space:last-child { + padding-right: 0; } + .span0-sm { + display: none; } + .span1-sm { + width: 7.042253521126761%; } + .span2-sm { + width: 15.49295774647887%; } + .span3-sm { + width: 23.94366197183099%; } + .span4-sm { + width: 32.3943661971831%; } + .span5-sm { + width: 40.84507042253521%; } + .span6-sm { + width: 49.29577464788733%; } + .span7-sm { + width: 57.74647887323944%; } + .span8-sm { + width: 66.19718309859155%; } + .span9-sm { + width: 74.64788732394367%; } + .span10-sm { + width: 83.09859154929578%; } + .span11-sm { + width: 91.54929577464789%; } + .span12-sm { + width: 100%; } + .offset1-sm { + margin-left: 8.450704225352113%; } + .offset2-sm { + margin-left: 16.90140845070423%; } + .offset3-sm { + margin-left: 25.35211267605634%; } + .offset4-sm { + margin-left: 33.8028169%; } + .offset5-sm { + margin-left: 42.25352113%; } + .offset6-sm { + margin-left: 50.70422535%; } + .offset7-sm { + margin-left: 59.15492958%; } + .offset8-sm { + margin-left: 67.6056338%; } + .offset9-sm { + margin-left: 76.05633803%; } + .offset10-sm { + margin-left: 84.50704225%; } + .offset11-sm { + margin-left: 92.95774648%; } + input { + padding: 8px 15px 8px 15px; } + .field-group input.input-emphasized[type="search"] + .reset-field:after { + top: 14px; } + .field-group input.input-emphasized[type="search"] + .reset-field { + height: 46px; + top: 1px; } + .marquee { + margin-bottom: 30px; } + .marquee .blur-overlay { + border-radius: 0; + position: absolute; + bottom: 0; + left: 0; + width: 100%; + margin: 0; + padding: 34px 15px 30px; } + .marquee + div { + margin-top: 30px; } + .marquee h1 { + font-size: 1.8rem; + letter-spacing: -0.035px; } + .marquee .lead { + font-size: 3.0rem; + line-height: 3.6rem; + margin-bottom: 0; } + .marquee p:not(.lead) { + font-family: "Omnes-ECOMP-W02-Light", Arial; + font-size: 1.8rem; + margin-bottom: 0; } + .marquee .btn-fullwidth { + margin-top: 10px; + width: 100%; + float: none; } + .tooltip-size-control { + width: 100%; } + .table-wrapper, + .accordion-table-layout { + margin-left: -15px; + margin-right: -15px; } + .table-wrapper caption { + padding-left: 15px; } } + + @media (max-width: 480px) { + .span1-xsm { + width: 7.042253521126761%; } + .span2-xsm { + width: 15.49295774647887%; } + .span3-xsm { + width: 23.94366197183099%; } + .span4-xsm { + width: 32.3943661971831%; } + .span5-xsm { + width: 40.84507042253521%; } + .span6-xsm { + width: 49.29577464788733%; } + .span7-xsm { + width: 57.74647887323944%; } + .span8-xsm { + width: 66.19718309859155%; } + .span9-xsm { + width: 74.64788732394367%; } + .span10-xsm { + width: 83.09859154929578%; } + .span11-xsm { + width: 91.54929577464789%; } + .span12-xsm { + width: 100%; } + .offset1-xsm { + margin-left: 8.450704225352113%; } + .offset2-xsm { + margin-left: 16.90140845070423%; } + .offset3-xsm { + margin-left: 25.35211267605634%; } + .offset4-xsm { + margin-left: 33.8028169%; } + .offset5-xsm { + margin-left: 42.25352113%; } + .offset6-xsm { + margin-left: 50.70422535%; } + .offset7-xsm { + margin-left: 59.15492958%; } + .offset8-xsm { + margin-left: 67.6056338%; } + .offset9-xsm { + margin-left: 76.05633803%; } + .offset10-xsm { + margin-left: 84.50704225%; } + .offset11-xsm { + margin-left: 92.95774648%; } } + + /* END RESPONSIVE-2.LESS ******************* */ + /* BEGIN RESPONSIVE-1.LESS ************** */ + .xxxxxxxx-begin-responsive-480px.less { + /* placeholder */ } + + @media (max-width: 480px) { + .hidden-desktop { + display: inherit !important; } + .hidden-tablet { + display: inherit !important; } + .hidden-phone { + display: none !important; } + .visible-desktop { + display: none !important; } + .visible-tablet { + display: none !important; } + .visible-phone { + display: inherit !important; } + .container { + width: auto; + padding-left: 15px; + padding-right: 15px; } } + + [class*="icon-primary-"], + .nav-links a:after, + .bellyband-link a:after, + .breadcrumb > li:after, + .checkbox input:checked + .skin:after, + .checkbox input.indeterminate + .skin:after, + .checkbox input:indeterminate + .skin:after, + .selectWrap.large:before, + .form-row.error .error-msg:before, + .close:before, + .reset-field:before, + .cssIcon-globe:before, + .selectWrap:after { + color: #0568ae; + left: 6px; + top: -3px; + width: 2px; + height: 3px; + border: solid white; + border-width: 0 3px 3px 0; + -webkit-transform: rotate(45deg); + -ms-transform: rotate(45deg); + transform: rotate(45deg);} + + [class*="icoWeather-"], [class*="icoTrans-"], [class*="icoBubble-"], [class*="icoRetail-"], [class*="icoPeople-"], [class*="icoNumslets-"], [class*="icoLocation-"], [class*="icoHealthcare-"], [class*="icoDocuments-"], [class*="icoDevices-"], [class*="icoDatanetwork-"], [class*="icoControls-"], [class*="icoBuilding-"], [class*="icoArrows-"] { + color: #0568ae; + display: inline-block; + font-style: normal; + font-size: 20px; + font-weight: normal; + font-variant: normal; + font-style: normal; + width: 20px; + text-transform: none; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + position: relative; + speak: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + vertical-align: middle; } + + [class*="icon-primary-"]:before, + [class*="icon-primary-"]:after { + box-sizing: border-box; + display: inline-block; + font-size: 1em; + height: 1em; + position: relative; + top: 0; + left: 0; + vertical-align: middle; + width: 1em; } + + .icon-primary-att-globe:before, + .cssIcon-globe:before { + content: "\e900"; + color: #44c7f5; } + + .icon-primary-hamburger:before { + content: "\e903"; } + + .icon-primary-secure:before { + content: "\e918"; } + + .icon-primary-secureL:before { + content: "\e919"; } + + .icon-primary-padlockopen:before { + content: "\e916"; } + + .icon-primary-padlockopenL:before { + content: "\e917"; } + + .icon-primary-shoppingcart:before { + content: "\e914"; } + + .icon-primary-shoppingcartL:before { + content: "\e915"; } + + .icon-primary-print:before { + content: "\e921"; } + + .icon-primary-printL:before { + content: "\e922"; } + + .icon-primary-mobilesmartphone:before { + content: "\e908"; } + + .icon-primary-mobilesmartphoneL:before { + content: "\e90c"; } + + .icon-primary-tablet:before { + content: "\e904"; } + + .icon-primary-tabletL:before { + content: "\e905"; } + + .icon-primary-tv:before { + content: "\e906"; } + + .icon-primary-tvL:before { + content: "\e907"; } + + .icon-primary-calendar { + width: 100% !important; } + + .icon-primary-calendar:before { + content: "\e91a"; + z-index: 1; } + + .icon-primary-calendarL:before { + content: "\e91b"; } + + .icon-primary-star:before { + content: "\e96c"; } + + .icon-primary-close:before, + .close:before, + .reset-field:before { + content: "\e910"; } + + .icon-primary-down:before { + content: "\ea3c"; } + + + + .icon-primary-add-maximize:before { + content: "\e91f"; } + + + + .icon-primary-questionmark:before { + content: "\e90f"; } + + .icon-primary-badgealert:before, + .form-row.error .error-msg:before { + content: "\e90e"; } + + .icon-primary-approval:before { + content: "\e925"; } + + .icon-primary-flat-info:before { + content: "\e927"; } + + .icon-primary-alert:before { + content: "\e913"; } + + .icon-primary-tooltip:before, + .icon-primary-flat-faq:before { + content: "\e90d"; } + + .icon-primary-tooltip { + font-size: 20px; } + + .nav-links a:after, + .bellyband-link a:after, + .breadcrumb > li:after, + .icon-primary-right:before { + content: "\ea3c"; + transform: rotate(-90deg); } + + .icon-primary-left:before { + content: "\ea3c"; + transform: rotate(90deg); } + + .icon-primary-accordion-plus:after, + .icon-primary-collapsed:after, + .icon-primary-accordion-minus:after, + .icon-primary-expanded:after { + content: ""; + position: absolute; + top: 0; + z-index: 1; } + + .icon-primary-accordion-minus, + .icon-primary-expanded, + .icon-primary-accordion-plus, + .icon-primary-collapsed { + font-size: 20px !important; } + + :not(.ds2-no-colors) .icon-primary-accordion-minus:before, + :not(.ds2-no-colors) .icon-primary-expanded:before { + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2021%2021%22%3E%3Cpath%20fill%3D%22%230568ae%22%20d%3D%22M15.1%2011.3H5.9c-.4%200-.8-.3-.8-.8s.3-.8.8-.8h9.3c.4%200%20.8.3.8.8s-.4.8-.9.8z%22%2F%3E%3Cpath%20fill%3D%22%23d2d2d2%22%20d%3D%22M10.5%2021C4.7%2021%200%2016.3%200%2010.5S4.7%200%2010.5%200%2021%204.7%2021%2010.5%2016.3%2021%2010.5%2021zm0-20C5.3%201%201%205.3%201%2010.5S5.3%2020%2010.5%2020s9.5-4.3%209.5-9.5S15.7%201%2010.5%201z%22%2F%3E%3C%2Fsvg%3E"); + content: ""; } + + :not(.ds2-no-colors) .icon-primary-accordion-plus:before, + :not(.ds2-no-colors) .icon-primary-collapsed:before { + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2021%2021%22%3E%3Cpath%20fill%3D%22%230568ae%22%20d%3D%22M10.5%2015.9c-.4%200-.8-.3-.8-.8V5.9c0-.4.3-.8.8-.8s.8.3.8.8v9.3c0%20.4-.4.7-.8.7z%22%2F%3E%3Cpath%20fill%3D%22%230568ae%22%20d%3D%22M15.1%2011.3H5.9c-.4%200-.8-.3-.8-.8s.3-.8.8-.8h9.3c.4%200%20.8.3.8.8s-.4.8-.9.8z%22%2F%3E%3Cpath%20fill%3D%22%23d2d2d2%22%20d%3D%22M10.5%2021C4.7%2021%200%2016.3%200%2010.5S4.7%200%2010.5%200%2021%204.7%2021%2010.5%2016.3%2021%2010.5%2021zm0-20C5.3%201%201%205.3%201%2010.5S5.3%2020%2010.5%2020s9.5-4.3%209.5-9.5S15.7%201%2010.5%201z%22%2F%3E%3C%2Fsvg%3E"); + content: ""; } + + .ds2-no-colors .icon-primary-accordion-minus:before, + .ds2-no-colors .icon-primary-expanded:before { + background-image: none; + content: "\e901"; } + + .ds2-no-colors .icon-primary-accordion-minus:after, + .ds2-no-colors .icon-primary-expanded:after { + content: "\e902"; } + + .ds2-no-colors .icon-primary-accordion-plus:before, + .ds2-no-colors .icon-primary-collapsed:before { + background-image: none; + content: "\e90b"; } + + .ds2-no-colors .icon-primary-accordion-plus:after, + .ds2-no-colors .icon-primary-collapsed:after { + content: "\e911"; } + + .icon-primary-circle-arrow { + outline: 1px solid transparent; + border-radius: 50%; + font-size: 20px !important; + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08); + margin-right: 7px; } + + .icon-primary-circle-arrow:after { + background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2036%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20baseProfile%3D%22tiny%22%3E%3Ccircle%20r%3D%2217%22%20cy%3D%2218%22%20cx%3D%2218%22%20stroke-width%3D%221%22%20fill%3D%22transparent%22%20stroke%3D%22%23ccc%22%2F%3E%3C%2Fsvg%3E"); + content: ""; + position: absolute; + top: 0; + z-index: 2; } + + .icon-primary-circle-arrow:before { + border-radius: 50%; + content: "\ea3c"; + font-size: 12px; + top: 0; + position: absolute; + transform: rotate(-90deg); + width: 20px; + z-index: 1; } + + [class*="icon-primary-"] [class*="icon-primary-"] { + display: inline-block; + float: left; + font-size: 1em; + margin-left: -1em; + position: absolute; } + + [class*="icon-primary-"].white, [class^="ico"][class*="-"].white { + color: #fff; } + + [class*="icon-primary-"].black, [class^="ico"][class*="-"].black { + color: #000; } + + [class*="icon-primary-"].blue, [class^="ico"][class*="-"].blue { + color: #0568ae; } + + [class*="icon-primary-"].green, [class^="ico"][class*="-"].green { + color: #007a3e; } + + @-webkit-viewport { + width: device-width; } + + @-moz-viewport { + width: device-width; } + + @-ms-viewport { + width: device-width; } + + @-o-viewport { + width: device-width; } + + @viewport { + width: device-width; } + + .clearfix:before, + .clearfix:after { + display: table; + content: ""; + line-height: 0; } + + .clearfix:after { + clear: both; } + + .pull-right { + float: right !important; } + + .pull-left { + float: left !important; } + + .float-children-left:before, + .float-children-left:after { + display: table; + content: ""; + line-height: 0; } + + .float-children-left:after { + clear: both; } + + .float-children-left > div { + float: left; + white-space: nowrap; } + + .block { + display: block !important; } + + .inline { + display: inline !important; } + + .inline-block { + display: inline-block !important; } + + .table-cell { + display: table-cell !important; + width: 1%; + vertical-align: middle; } + + @media (max-width: 767px) { + .full-bleed { + width: auto; + margin-left: -15px; + margin-right: -15px; + padding: 15px; } } + + @media (min-width: 768px) { + .full-bleed { + width: auto; + margin-left: -20px; + margin-right: -20px; + padding: 20px; } } + + @media (max-width: 480px) { + .full-bleed { + width: auto; + margin-left: -15px; + margin-right: -15px; + padding: 0 15px; } } + + .fade { + opacity: 0; + filter: alpha(opacity=0); + transition: opacity .15s linear; } + + .fade.in { + opacity: 1; + filter: alpha(opacity=100); } + + .b2bCollapse { + display: none; } + + .collapse.in { + height: auto; } + + .nowrap { + white-space: nowrap; } + + .pre { + white-space: pre; } + + .hidden-spoken { + border: 0 none !important; + clip: rect(0px, 0px, 0px, 0px) !important; + height: 1px !important; + letter-spacing: 0; + line-height: 0; + overflow: hidden !important; + margin-top: -1px; + padding: 0 !important; + position: absolute !important; + width: 1px !important; } + + [data-sr-text].hidden-spoken:before { + border: 0 none !important; + content: attr(data-sr-text); + clip: rect(0px, 0px, 0px, 0px) !important; + height: 1px !important; + letter-spacing: 0; + line-height: 0; + overflow: hidden !important; + padding: 0 !important; + position: absolute !important; + width: 100% !important; + z-index: -1; } + + [data-sr-text].hidden-spoken { + position: relative !important; + width: auto !important; } + + [data-show-between] { + display: none; + visibility: hidden; } + + .noscroll-y { + overflow-y: hidden !important; } + + .invisible { + visibility: hidden !important; + opacity: 0 !important; } + + .transparent { + background-color: rgba(255, 255, 255, 0) !important; } + + .hide { + display: none !important; } + + .show { + display: block !important; } + + .rel { + position: relative !important; } + + .legend-pad { + padding: 0 15px; } + + .border-top { + border-top-width: 1px !important; } + + .border-left { + border-left-width: 1px !important; } + + .border-right { + border-right-width: 1px !important; } + + .border-bottom { + border-bottom-width: 1px !important; } + + .border-dark { + border-color: #000; } + + .border-light { + border-color: #fff; } + + .no-border-top { + border-top-width: 0 !important; } + + .no-border-left { + border-left-width: 0 !important; } + + .no-border-right { + border-right-width: 0 !important; } + + .no-border-bottom { + border-bottom-width: 0 !important; } + + .align-middle { + margin: 0 auto !important; } + + .align-top { + position: absolute; + top: 0; } + + .align-bottom { + position: absolute; + bottom: 0; } + + .valign-top { + vertical-align: top !important; } + + .valign-middle { + vertical-align: middle !important; } + + .valign-bottom { + vertical-align: bottom !important; } + + .align-children-middle > * { + margin: 0 auto; } + + [class*="valign-children-"] { + display: table; } + + [class*="valign-children-"] > * { + display: table-cell; } + + .valign-children-top > * { + vertical-align: top; } + + .valign-children-middle > * { + vertical-align: middle; } + + .valign-children-bottom > * { + vertical-align: bottom; } + + .no-pad { + padding: 0 !important; } + + .top-space { + margin-top: 60px !important; } + + .bottom-space { + margin-bottom: 60px !important; } + + .top-pad { + padding-top: 60px !important; } + + .bottom-pad { + padding-bottom: 60px !important; } + + @media (max-width: 767px) { + .top-space { + margin-top: 30px !important; } + .bottom-space { + margin-bottom: 30px !important; } + .top-pad { + padding-top: 30px !important; } + .bottom-pad { + padding-bottom: 30px !important; } } + + .affix { + position: fixed; } + + .img-landscape, + .img-portrait { + position: relative; } + + @media (orientation: landscape) { + .img-landscape { + display: block; } + .img-portrait { + display: none !important; } } + + @media (orientation: portrait) { + .img-landscape { + display: none !important; } + .img-portrait { + display: block; } } + + .dark-bg { + background-color: #222222; } + + /* ... JAVASCRIPT HOOKS ................. + ... used by javascript ............... */ + .autoSize, + .autoSize-this { + position: relative; } + + .truncate { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } + + .placeholdersjs { + color: #5a5a5a !important; } + + .jshook-return-focus-here { + display: block; } + + .visible-print { + display: none !important; } + + .hidden-print { + display: inherit !important; } + + @media print { + .visible-print { + display: inherit !important; } + .hidden-print { + display: none !important; } + * { + color: #000 !important; + background: transparent !important; + box-shadow: none !important; } + a, + a:visited { + text-decoration: underline; } + pre, + blockquote { + border: 1px solid #000; + page-break-inside: avoid; } + thead { + display: table-header-group; } + tr, + img { + page-break-inside: avoid; } + img { + max-width: 100% !important; } + @page { + margin: 0.5cm; } + p, + h2, + h3 { + orphans: 3; + widows: 3; } + h2, + h3 { + page-break-after: avoid; } } + + .mar-top-0 { + margin-top: 0px; } + + .mar-top-30 { + margin-top: 30px; } + + a:focus { + outline: thin dotted #191919; } + + h1, + h2, + h3, + h4, + h5, + h6 { + font-weight: normal; + text-rendering: optimizeLegibility; + margin: 0; + line-height: 1; } + + .heading-page { + font-size: 3.8rem !important; + font-family: "Omnes-ECOMP-W02-Light", Arial; + margin-bottom: 40px; } + + h1.heading-page.ng-scope {} + + .heading-major-section { + font-size: 3rem !important; + font-family: "Omnes-ECOMP-W02-Light", Arial; + margin-bottom: 40px !important; } + + .heading-sub-section { + font-size: 2.4rem !important; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 40px; } + + .heading-group { + font-size: 2rem !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + color: #ea7400; + margin-bottom: 20px !important; } + + .heading-medium { + font-size: 2rem !important; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; } + + .heading-medium-emphasis { + font-size: 2rem !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + margin-bottom: 20px; } + + .heading-small { + font-size: 1.8rem !important; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; } + + .heading-small-emphasis { + font-size: 1.8rem !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + margin-bottom: 20px; } + + .heading-micro { + font-size: 1.3rem !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + text-transform: uppercase; + color: #da0081; + margin-bottom: 10px; } + + * + .heading-major-section { + margin-top: 60px; } + + * + .heading-sub-section { + margin-top: 60px; } + + * + .heading-group { + margin-top: 40px !important; } + + * + .heading-medium { + margin-top: 40px; } + + * + .heading-medium-emphasis { + margin-top: 40px; } + + * + .heading-small { + margin-top: 40px; } + + * + .heading-small-emphasis { + margin-top: 40px; } + + * + .heading-micro { + margin-top: 20px; } + + .lead { + color: #666; + font-family: "Omnes-ECOMP-W02-Light-Italic", Arial; + font-size: 2.4rem; + line-height: 2.8rem; + margin-top: 10px; + letter-spacing: -0.024rem; } + + .eyebrow { + text-transform: uppercase; + line-height: .65 !important; } + + .eyebrow, + .subheading { + font-size: 1.4rem !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + color: #666; } + + .eyebrow + .heading-major-section, + .eyebrow + .heading-sub-section { + margin-top: 4px; } + + .subheading { + margin-top: 10px; } + + @media (max-width: 767px) { + h1, + h2, + h3, + h4, + h5, + h6, + .heading-page { + font-size: 2rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 30px; } + .heading-major-section { + font-size: 2rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 30px; } + .heading-sub-section { + font-size: 2rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; } + .heading-medium { + font-size: 2rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; } + .heading-medium-emphasis { + font-size: 2rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; } + .heading-small { + font-size: 1.6rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 10px; } + .heading-small-emphasis { + font-size: 1.6rem; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + margin-bottom: 5px; } + * + .heading-major-section { + margin-top: 30px; } + * + .heading-sub-section { + margin-top: 30px; } + * + .heading-group { + margin-top: 20px; } + * + .heading-medium { + margin-top: 20px; } + * + .heading-medium-emphasis { + margin-top: 20px; } + * + .heading-small { + margin-top: 20px; } + * + .heading-small-emphasis { + margin-top: 20px; } + * + .heading-micro { + margin-top: 10px; } } + + /* Standard Type styles */ + .zeromargin { + margin: 0 !important; } + + a { + color: #0568ae; + text-decoration: none; } + + a:hover, + a:focus { + text-decoration: underline; } + + a:active { + color: #0568ae; } + + .a-min { + font-size: 12px; } + + .a-small { + font-size: 14px; } + + .a-max { + font-size: 18px; } + + a.show-qualifier { + margin-right: 25px; + position: relative; } + + a.show-qualifier:after { + color: #333333; + display: inline-block; + white-space: pre !important; } + + a[href$="pdf"].show-qualifier:after, + a.show-qualifier.pdf:after { + content: " (PDF)"; } + + a[href$="psd"].show-qualifier:after, + a.show-qualifier.psd:after { + content: " (PSD)"; } + + .standalone-link { + display: flex; } + + /* 20px for the icon, 10px left of icon */ + .standalone-link.small { + font-size: 1.4rem; } + + .standalone-link.small i[class*="icon-primary-"] { + font-size: 16px; + top: 2px; } + + .standalone-link.large { + font-size: 1.8rem; } + + .standalone-link.large i[class*="icon-primary-"] { + font-size: 24px; + top: -1px; } + + p { + margin: 0 0 12px 0; + line-height: 2rem; } + + .p-small { + font-size: 1.4rem; + line-height: 1.8rem; } + + p + .p-small { + margin: 10px 0 0; } + + .p-micro { + font-size: 1.2rem; + line-height: 1.5rem; } + + p + .p-micro { + margin: 10px 0 0; } + + .p-max { + font-size: 1.8rem; } + + p + .p-max { + margin: 10px 0 0; } + + b, + strong { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-weight: normal; } + + i, + em { + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; } + + .strike { + text-decoration: line-through; } + + sup { + display: inline-block; + font-style: normal; + height: 1em; + position: relative; + vertical-align: text-top; + width: auto; } + + .text-legal { + color: #5a5a5a; + font-size: 1.1rem; + line-height: 1.5rem; + margin: 0 0 10px; } + + .text-legal.legal-module { + line-height: 1.3rem; + margin: 0 0 12px; } + + .text-legal b, + .text-legal strong { + font-weight: bold; } + + .text-legal a { + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + .text-left { + text-align: left !important; } + + .text-right { + text-align: right !important; } + + .text-center { + text-align: center !important; } + + .text-justified { + text-align: justify !important; } + + ul { + padding: 0; + margin: 0; + list-style: none; } + + ul.bullet, + ul.no-bullet, + ul.lower-alpha, + ul.lower-roman, + ol { + padding: 0; + margin: 12px 0 0 20px; } + + ul.bullet li, + ul.no-bullet li, + ul.lower-alpha li, + ul.lower-roman li, + ol li { + padding-left: 15px; + line-height: 20px; + position: relative; } + + ul.bullet li + li, + ul.no-bullet li + li, + ul.lower-alpha li + li, + ul.lower-roman li + li, + ol li + li { + margin-top: 12px; } + + ul.bullet > li:before, + ul.no-bullet > li:before, + ul.lower-alpha > li:before, + ul.lower-roman > li:before, + ol > li:before { + background-color: #333333; + border: 2px solid #333333; + border-radius: 100%; + content: " "; + display: block; + height: 1px; + left: 0; + position: absolute; + top: 8px; + width: 1px; } + + ul.bullet ul, + ul.no-bullet ul, + ul.lower-alpha ul, + ul.lower-roman ul, + ol ul, + ul.bullet ol, + ul.no-bullet ol, + ul.lower-alpha ol, + ul.lower-roman ol, + ol ol { + margin-top: 12px; } + + ul + *, + ol + * { + margin-top: 20px; } + + ul.no-bullet, + ul.lower-alpha, + ul.lower-roman { + margin: 0; } + + ul.no-bullet > li, + ul.lower-alpha > li, + ul.lower-roman > li { + padding-left: 0; } + + ul.no-bullet > li:before, + ul.lower-alpha > li:before, + ul.lower-roman > li:before { + display: none !important; } + + ol { + margin: 20px 0 0 32px; } + + ol li { + padding-left: 3px; } + + ol li:before { + display: none; } + + ol ol { + margin-left: 25px; } + + ol ul { + margin-left: -5px; } + + ul ul, + ul ol, + ol ol, + ol ul { + margin-top: 0; } + + ul.lower-roman { + list-style-type: lower-roman; + margin-top: 12px; + margin-left: 35px; + margin-bottom: 0; } + + ul.lower-alpha { + list-style-type: lower-alpha; + margin-top: 12px; + margin-left: 35px; + margin-bottom: 0; } + + dl { + display: table; + margin: 0 0 20px; + width: 100%; } + + dt, + dd { + display: table-cell; } + + .btn { + background-color: transparent; + background-clip: padding-box; + border: 1px solid transparent; + border-radius: 8px; + box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15); + cursor: pointer; + display: inline-block; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 1.9rem; + font-weight: normal; + line-height: 1; + margin: 0 7px 10px 0; + max-width: 470px; + min-width: 70px; + padding: 14px 19px 11px 18px; + position: relative; + text-align: center; + vertical-align: middle; + white-space: nowrap; + overflow: hidden; } + .btn:focus { + outline: 1px dotted #000; + outline-offset: -5px; } + .btn:last-child { + margin-right: 0; } + .btn::-moz-focus-inner { + padding: 0; + border: 0; } + .btn i[class*="icon-primary-"].icon-primary-small { + font-size: 24px; + top: -2px; } + .btn i[class*="icon-primary-"].icon-primary-medium { + font-size: 30px; + top: -2px; } + .btn i[class*="icon-primary-"].icon-primary-large { + font-size: 36px; + top: -2px; } + + a.btn { + vertical-align: middle; } + a.btn:hover { + text-decoration: none; } + + .field-group + .btn { + margin-left: 20px; } + + .btn-primary { + border-color: #ea7400 transparent #d16500; + background-color: #ea7400 transparent #d16500; + background: linear-gradient(to bottom, #ea7400 0%, #d16500 100%); + color: #ffffff; + font-family: "Omnes-ECOMP-W02", Arial; + font-weight: bold; } + .btn-primary:hover { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + .btn-primary:focus { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + .btn-primary:active { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + + .btn-arrow { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 1.6rem; + font-weight: normal; + background-color: transparent; + border: none; + padding: 5px 0 0; + top: -4px; + color: #333333; + position: relative; } + .btn-arrow:hover { + text-decoration: underline; } + .btn-arrow:hover .btn-primary { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + .btn-arrow:hover .btn-secondary { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + .btn-arrow:hover .btn-alt { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); } + .btn-arrow:hover .btn-specialty { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + .btn-arrow:focus { + text-decoration: underline; + outline: 1px dotted #666; } + .btn-arrow:focus .btn-primary { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + .btn-arrow:focus .btn-secondary { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + .btn-arrow:focus .btn-alt { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); } + .btn-arrow:focus .btn-specialty { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + .btn-arrow:active .btn-primary { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + .btn-arrow:active .btn-secondary { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + .btn-arrow:active .btn-alt { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); } + .btn-arrow:active .btn-specialty { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + .btn-arrow .btn-alt { + border-color: #087ac2 transparent #0568ae; + background-color: #0568ae; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); + color: #ffffff; } + .btn-arrow .btn-alt:hover { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + .btn-arrow .btn-alt:focus { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + .btn-arrow .btn-alt:active { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + .btn-arrow::-moz-focus-inner { + padding: 0; + border: 0; } + .btn-arrow .btn { + border: 1px solid transparent; + border-radius: 100%; + height: 36px; + margin-bottom: 0; + margin-right: 7px; + max-width: 36px; + min-width: 20px; + padding: 0; + margin-top: -4px; + vertical-align: middle; + width: 36px; } + .btn-arrow .btn .icon-primary-left { + bottom: 0; + display: block; + height: 100%; + left: 0; + line-height: 0; + position: absolute; + right: 0; + text-indent: 0; + top: 0; } + .btn-arrow .btn .icon-primary-left:before { + position: absolute; + font-size: 1.6rem; + left: 1px; + top: 9px; } + .btn-arrow .btn .icon-primary-right { + bottom: 0; + display: block; + height: 100%; + left: 0; + line-height: 0; + position: absolute; + right: 0; + text-indent: 0; + top: 0; + color: #ffffff; } + .btn-arrow .btn .icon-primary-right:before { + position: absolute; + font-size: 1.6rem; + left: 17px; + top: 9px; } + .btn-arrow .btn.btn-primary .icon-primary-left { + color: #fff; } + .btn-arrow .btn.btn-primary .icon-primary-right { + color: #fff; } + .btn-arrow .btn.btn-alt .icon-primary-left { + color: #fff; } + .btn-arrow .btn.btn-alt .icon-primary-right { + color: #fff; } + .btn-arrow .btn.btn-secondary { + border: 1px solid #d2d2d2; } + .btn-arrow .btn.btn-secondary .icon-primary-left { + color: #0568ae; } + .btn-arrow .btn.btn-secondary .icon-primary-right { + color: #0568ae; } + .btn-arrow .btn.btn-small { + height: 20px; + max-width: 20px; + min-width: 20px; + width: 20px; + top: -1px; } + .btn-arrow .btn.btn-small .icon-primary-left:before { + font-size: 10px; + top: 4px; + left: 0; } + .btn-arrow .btn.btn-small .icon-primary-right:before { + font-size: 10px; + top: 4px; + left: 10px; } + .btn-arrow .btn.btn-large .icon-primary-left:before { + font-size: 112%; + top: 12px; + left: 23px; } + .btn-arrow .btn.btn-large .icon-primary-right:before { + font-size: 112%; + top: 12px; + left: 23px; } + + .btn-secondary { + border: 1px solid #d2d2d2; + background-color: #f2f2f2; + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + color: #0568ae; + box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.15); + padding: 14px 18px 11px 17px; } + .btn-secondary:hover { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + .btn-secondary:focus { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + .btn-secondary:active { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + + .btn-alt { + border-color: #087ac2 transparent #0568ae; + background-color: #0568ae; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); + color: #ffffff; } + .btn-alt:hover { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + .btn-alt:focus { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + .btn-alt:active { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + + .btn-specialty { + border-color: #008744 transparent #007a3e; + background-color: #007a3e; + background: linear-gradient(to bottom, #008744 0%, #007a3e 100%); + color: #ffffff; } + .btn-specialty:hover { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + .btn-specialty:focus { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + .btn-specialty:active { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + + .btn-clear { + background: transparent !important; + border-color: transparent !important; + font-weight: normal; + font-family: "Omnes-ECOMP-W02", Arial; + box-shadow: none; + text-decoration: none; + color: #0568ae; } + .btn-clear:focus { + text-decoration: underline; } + .btn-clear:hover { + text-decoration: underline; } + + .isIE .btn:focus { + outline: none !important; + text-decoration: none !important; } + .isIE .btn:focus:after { + display: block; + content: ""; + position: absolute; + top: 4px; + left: 4px; + right: 4px; + bottom: 4px; + border: 1px dotted #000; } + + .isIE .btn:active { + outline: none !important; + text-decoration: none !important; } + .isIE .btn:active:after { + display: block; + content: ""; + position: absolute; + top: 4px; + left: 4px; + right: 4px; + bottom: 4px; + border: 1px dotted #000; } + + .isIE .btn.active { + outline: none !important; + text-decoration: none !important; } + .isIE .btn.active:not(:focus):after { + border: 1px solid #000; } + .isIE .btn.active:after { + display: block; + content: ""; + position: absolute; + top: 4px; + left: 4px; + right: 4px; + bottom: 4px; + border: 1px dotted #000; } + + .isIE .btn.btn-primary:focus:after { + border: 2px dashed #fff; } + + .isIE .btn.btn-specialty:focus:after { + border: 2px dashed #fff; } + + .isIE .btn.btn-alt:focus:after { + border: 2px dashed #fff; } + + .btn.disabled { + background-image: none; + background-color: #767676; + box-shadow: none; + cursor: not-allowed; + color: #ffffff; + border-color: transparent; + outline: 0 !important; } + .btn.disabled:hover { + color: #f2f2f2; + outline: none !important; } + .btn.disabled:focus { + color: #f2f2f2; + outline: none !important; } + + .btn[disabled] { + background-image: none; + background-color: #767676; + box-shadow: none; + cursor: not-allowed; + color: #ffffff; + border-color: transparent; + outline: 0 !important; } + .btn[disabled]:hover { + color: #f2f2f2; + outline: none !important; } + .btn[disabled]:focus { + color: #f2f2f2; + outline: none !important; } + + .btn[disabled="disabled"] { + background-image: none; + background-color: #767676; + box-shadow: none; + cursor: not-allowed; + color: #ffffff; + border-color: transparent; + outline: 0 !important; } + .btn[disabled="disabled"]:hover { + color: #f2f2f2; + outline: none !important; } + .btn[disabled="disabled"]:focus { + color: #f2f2f2; + outline: none !important; } + + .btn-arrow[disabled] .btn { + background-image: none; + background-color: #767676; + box-shadow: none; + cursor: not-allowed; + color: #ffffff; + border-color: transparent; + outline: 0 !important; } + .btn-arrow[disabled] .btn:hover { + color: #f2f2f2; + outline: none !important; } + .btn-arrow[disabled] .btn:focus { + color: #f2f2f2; + outline: none !important; } + + .btn-arrow[disabled] .icon-primary-left { + color: #fff !important; } + + .btn-arrow[disabled] .icon-primary-right { + color: #fff !important; } + + .btn-arrow.disabled .btn { + background-image: none; + background-color: #767676; + box-shadow: none; + cursor: not-allowed; + color: #ffffff; + border-color: transparent; + outline: 0 !important; } + .btn-arrow.disabled .btn:hover { + color: #f2f2f2; + outline: none !important; } + .btn-arrow.disabled .btn:focus { + color: #f2f2f2; + outline: none !important; } + + .btn-arrow.disabled .icon-primary-left { + color: #fff !important; } + + .btn-arrow.disabled .icon-primary-right { + color: #fff !important; } + + .btn-medium { + padding: 12px 19px 11px 18px; + font-size: 1.7rem; } + + .btn-small { + padding: 10px 19px 9px 18px; + font-size: 1.5rem; + border-radius: 8px; } + + .btn-fullwidth { + width: 100%; } + + *:not(.btn-arrow) > .btn > i[class*="icon-primary-"] { + margin-top: -20px; + margin-bottom: -20px; } + + .enhanced-cta-group { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: row-reverse; + flex-direction: row-reverse; + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewport%3D%220%200%201%201%22%20style%3D%22width%3A100%25%3B%20height%3A1px%3B%22%3E%3Cstyle%3Eline%7Bstroke%3A%23959595%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cline%20y2%3D%221%22%20y1%3D%221%22%20x1%3D%221%22%20x2%3D%22100%25%22%20stroke-dasharray%3D%221%2C%203%22%2F%3E%3C%2Fsvg%3E") !important; + background-position: 0 -1px; + background-repeat: repeat-x; } + .enhanced-cta-group > .cta-button-group { + border-top: 0; + background-image: none !important; } + .enhanced-cta-group > .cta-button-group + .cta-button-group a { + font-size: 1.4rem; + line-height: 1em; } + .enhanced-cta-group > .cta-button-group + .cta-button-group a a { + margin-right: 0; } + .enhanced-cta-group > .cta-button-group hr { + min-height: 14px; } + .enhanced-cta-group > .cta-button-group + .cta-button-group { + -ms-flex-align: center; + -ms-grid-row-align: center; + align-items: center; + -ms-flex-direction: row; + flex-direction: row; + padding: 10px 0; } + + .cta-button-group { + text-align: right; + -ms-flex-align: baseline; + align-items: baseline; + padding: 20px 0 10px; + width: 100%; } + .cta-button-group.nodots { + background-image: none !important; } + .cta-button-group .hidden-phone { + margin-right: 14px; } + .cta-button-group .btn + .btn { + margin-right: 20px !important; } + .cta-button-group .btn:not(.hidden-phone):not(.visible-phone) { + margin-right: 0; } + + .isMobile .btn-arrow .btn.btn-small .icon-primary-left:before { + left: -1px; } + + .isMobile .btn-arrow .btn.btn-large .icon-primary-left:before { + left: 24px; } + + .isMobile .btn-arrow .btn.btn-large .icon-primary-right:before { + left: 24px; } + + @media (max-width: 1024px) { + .field-group + .btn { + margin-left: 15px; } } + + @media (max-width: 767px) { + .cta-button-group { + text-align: center; } + .cta-button-group > .btn { + display: block; + float: none; + width: 100%; + margin-left: auto !important; + margin-right: auto !important; } } + + .btn-group { + border-radius: 8px; + box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.15); + display: -ms-flexbox; + display: flex; + -ms-flex-pack: justify; + justify-content: space-between; + margin-bottom: 10px; + max-width: 470px; + min-width: 290px; + position: relative; + vertical-align: middle; + width: 100%; } + .btn-group > .btn { + box-shadow: none; + -ms-flex: 1; + flex: 1; + position: relative; + float: left; + margin-right: -1px; + margin-bottom: 0; + padding-left: 0; + padding-right: 0; + text-align: center; } + .btn-group:not([data-select-color]) .btn.active:not(:first-child) { + margin-right: -1px; + border-left: 1px solid #d2d2d2 !important; } + .btn-group:not([data-select-color]) .btn[disabled]:not(:first-child) { + border-left: 1px solid #d2d2d2 !important; } + .btn-group:not([data-select-color]) .btn[disabled] + .btn[disabled] { + border-left: 1px solid #ebebeb !important; } + .btn-group:not([data-select-color]) > .btn.active { + border-color: #087ac2 transparent #0568ae; + background-color: #0568ae; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); + color: #ffffff; } + .btn-group:not([data-select-color]) > .btn.active:hover { + color: #ffffff; + outline-color: #ffffff !important; + background: #0563a6; + border-color: #0563a6; } + .btn-group:not([data-select-color]) > .btn.active:focus { + color: #ffffff; + outline-color: #ffffff !important; + background: #0563a6; + border-color: #0563a6; } + .btn-group:not([data-select-color]) > .btn.active:active { + color: #ffffff; + outline-color: #ffffff !important; + background: #0563a6; + border-color: #0563a6; } + .btn-group:not([data-select-color]) > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { + border-radius: 0; } + .btn-group:not([data-select-color]) > .btn:first-child:not(:last-child):not(.dropdown-toggle) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + .btn-group:not([data-select-color]) > .btn:last-child:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + .btn-group:not([data-select-color]) > .dropdown-toggle:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + .btn-group > .active { + text-decoration: none; + outline: 1px dotted transparent; } + .btn-group > .active:focus { + outline: 1px dotted #ffffff; } + + .btn-group.btn-fullwidth > .btn { + -ms-flex: 1; + flex: 1; } + + .btn-group[data-select-color] { + margin-top: 5px; + box-shadow: none; + -ms-flex-pack: start; + justify-content: flex-start; + -ms-flex-wrap: wrap; + flex-wrap: wrap; } + .btn-group[data-select-color] .btn { + border: 1px solid #959595; + border-radius: 4px; + box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.15); + margin-right: 10px; + margin-bottom: 10px; + height: 40px; + font-size: 16px; + color: #333333; + max-width: 60px; + min-width: 60px; + -ms-flex: 0; + flex: 0; } + .btn-group[data-select-color] > .btn.active:focus { + outline: 1px dotted #191919; + outline-offset: 4px; } + + button .btn-fill { + background-clip: padding-box; + border: 0; + border-radius: 4px; + bottom: 0; + display: block; + height: auto; + left: 0; + margin: 5px; + position: absolute; + right: 0; + top: 0; + width: auto; } + + button .btn-fill[style*="#fff"] { + border: 1px solid #d2d2d2; } + + [data-select-color] .btn.active { + background: none !important; + outline: 0; + margin-right: 10px; + border-width: 3px; + color: #333333; + line-height: 12px; } + [data-select-color] .btn.active > .btn-fill { + margin: 3px; } + [data-select-color] .btn.active:hover { + color: #333333; } + + [data-select-color] .btn:active { + background: none !important; + outline: 0; + margin-right: 10px; + border-width: 3px; + color: #333333; + line-height: 12px; } + [data-select-color] .btn:active > .btn-fill { + margin: 3px; } + [data-select-color] .btn:active:hover { + color: #333333; } + + .btn-group[data-select-color="orange"] > .btn.active { + border-color: #ea7400; } + + .btn-group[data-select-color="blue"] > .btn.active { + border-color: #0568ae; } + + .btn-group[data-select-color="green"] > .btn.active { + border-color: #007a3e; } + + .btn-spinbutton-toggle.btn-group { + display: block !important; + height: 40px !important; + margin-top: 5px; + max-width: 138px; + min-width: 138px; + white-space: nowrap; } + + .btn-spinbutton-toggle .btn { + border-radius: 6px; + font-weight: normal; + -ms-flex: unset; + flex: unset; + height: 40px; + letter-spacing: normal; + min-width: auto; + padding: 3px 0 0; + text-align: center; + min-width: 46px; + width: 46px; } + + .btn-spinbutton-toggle .btn[data-max-value] { + border-bottom: 1px solid #d2d2d2; + border-top: 1px solid #d2d2d2; + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.08) inset; + background-color: #fff; + cursor: text; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 2rem; + font-weight: normal; + padding: 4px 0 0; + text-align: center; + min-width: 46px !important; + width: 46px; } + .btn-spinbutton-toggle .btn[data-max-value]:focus { + border-color: #0568ae; + outline: none; } + .btn-spinbutton-toggle .btn[data-max-value]:focus + .btn { + border-left: 1px solid #0568ae; + transition: border 0.3s linear 0s; } + + .btn-spinbutton-toggle .icon-primary-subtractminimize { + font-size: 30px !important; + color: #0568ae !important; } + + .btn-spinbutton-toggle .icon-primary-add-maximize { + font-size: 30px !important; + color: #0568ae !important; } + + .btn-spinbutton-toggle .btn[disabled].icon-primary-subtractminimize { + background-color: #d2d2d2; + color: #767676 !important; } + + .btn-spinbutton-toggle .btn[disabled].icon-primary-add-maximize { + background-color: #d2d2d2; + color: #767676 !important; } + + .btn-spinbutton-toggle input.btn[disabled] { + background-color: #d2d2d2; + color: #5a5a5a; + cursor: not-allowed; } + + .btn-group.btn-spinbutton-toggle .btn[disabled] + .btn[disabled] { + border-left: 1px solid #f0f0f0 !important; } + + .btn-group.btn-spinbutton-toggle .btn[data-max-value]:focus + .btn:not(:first-child) { + border-left: 1px solid #0568ae !important; } + + @media (max-width: 480px) { + .btn-group:not([data-select-color]) > .btn { + font-size: 1.3rem; + min-width: auto; } } + + .reset-field, + .close { + float: right; + background: none; + width: 34px; + height: 34px; + padding: 0; + overflow: hidden; + display: inline-block; } + + .reset-field { + display: none; } + + .reset-field:before { + font-size: 22px; + color: #5a5a5a; } + + .input-emphasized + .reset-field:before { + font-size: 29px; + color: #5a5a5a; } + + .reset-field:active, + .reset-field:hover, + .reset-field:focus { + display: block !important; } + + button.close { + border: 0; + appearance: none; } + + .corner-button { + box-shadow: 0 -50px 0 0 #f2f2f2 inset; + height: 69px; + /*overflow: hidden;*/ + position: absolute; + right: -35px; + top: -35px; + transform: rotate(45deg); + width: 69px; } + + .corner-button .close:before { + bottom: -7px; + color: #0568ae; + display: block; + font-size: 20px; + height: 50px; + left: -11px; + position: absolute; + width: 50px; } + + .corner-button .close { + float: none; + height: 45px; + margin: 0; + position: absolute; + right: 12px; + top: 45px; + transform: rotate(45deg); + width: 45px; } + + .corner-button .close:focus { + outline: 1px dotted black; } + + .ds2-no-colors .corner-button .close { + border: 1px solid black; } + + .field-group input + .reset-field { + background: none; + height: 36px; + width: 45px; + display: none; + padding: 0; + position: absolute; + right: 0; + top: 0; + box-shadow: none; + border: none; + content: " "; } + + .field-group input[type="search"] + .reset-field, + .field-group input[type="search"] + .btn-search + .reset-field, + .tooltip-onclick input + .reset-field, + .tooltip-onclick input + .icon-primary-tooltip + .reset-field, + .tooltip-onclick textarea + .reset-field, + .tooltip-onclick textarea + .icon-primary-tooltip + .reset-field { + right: 45px; } + + .field-group input[type="search"] + .reset-field:after, + .field-group input[type="search"] + .btn-search + .reset-field:after, + .tooltip-onclick input + .reset-field:after, + .tooltip-onclick input + .icon-primary-tooltip + .reset-field:after, + .tooltip-onclick textarea + .reset-field:after, + .tooltip-onclick textarea + .icon-primary-tooltip + .reset-field:after { + background-color: #d2d2d2; + content: ""; + display: block; + height: 20px; + position: absolute; + right: 0; + top: 8px; + width: 1px; } + + .tooltip-onclick input + .reset-field, + .tooltip-onclick input + .icon-primary-tooltip + .reset-field { + right: 50px !important; } + + .tooltip-onclick textarea + .reset-field, + .tooltip-onclick textarea + .icon-primary-tooltip + .reset-field { + right: 45px !important; + width: 40px; } + + .field-group input.input-emphasized + .reset-field { + width: 45px; + height: 46px; + right: 6px; } + + .field-group input.input-emphasized + .reset-field:after { + top: 14px; } + + .field-group [disabled] + .reset-field { + display: none; } + + .ds2_touchevents .field-group input + .reset-field:focus, + .ds2_touchevents .field-group input:focus + .reset-field, + .ds2_touchevents textarea:focus + .reset-field, + .ds2_touchevents textarea + .reset-field:focus { + display: block; + position: absolute; + right: 0px; + top: 0; + border: none; } + + .ds2_touchevents .field-group input { + padding: 8px 55px 8px 15px; + -webkit-appearance: none; } + + .ds2_touchevents textarea:focus { + padding: 15px 55px 15px 15px; } + + .ds2_touchevents textarea:focus + .reset-field { + border: none; + position: absolute; + right: 6px; + top: 5px; } + + .ds2_touchevents textarea.hasScrollbar:focus { + padding: 15px 35px 15px 15px; } + + .ds2_touchevents textarea.hasScrollbar:focus + .reset-field { + right: 22px; } + + .ds2-no-colors .b2b-tmpl-card-corner-button { + border: none !important; } + + .ds2-no-colors .b2b-tmpl-card-corner-button .close { + border: 1px solid black; + top: 0px !important; + right: 0px !important; } + + .form-row.error .error-msg { + display: block; + font-size: 14px; + line-height: 14px; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + position: relative; + padding-left: 18px; } + + .form-row.error .error-msg:before { + color: #cf2a2a; + font-size: 14px; + left: 0; + line-height: 14px; + position: absolute; + vertical-align: middle; } + + .form-row.error label, + .form-row.error .error-msg, + .form-row.error button.awd-select, + .form-row.error select.awd-select + span, + .form-row.error .checkbox, + .form-row.error .radio, + .form-row.error legend.error, + .form-row.error input { + color: #cf2a2a; } + + .form-row.error .btn-group > .btn, + .form-row.error button.awd-select, + .form-row.error .awd-select-list, + .form-row.error select.awd-select + span, + .form-row.error textarea, + .form-row.error input, + .form-row.error .checkbox .skin, + .form-row.error .radio .skin { + border-color: #cf2a2a !important; } + + .form-row.error .checkbox input:checked:not(:disabled) + .skin { + background-color: #cf2a2a; } + + .form-row.error .radio input:checked + .skin:after { + background-color: #cf2a2a; } + + .error .tooltip-onclick .icon-primary-tooltip.active + .error-msg { + margin-top: -11px; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } + + .error .tooltip-onclick .icon-primary-tooltip.active + .error-msg + .helpertext { + margin: 0 0 10px; } + + .error .tooltip-onclick .icon-primary-tooltip.active + .error-msg + .helpertext:before, + .error .tooltip-onclick .icon-primary-tooltip.active + .error-msg + .helpertext:after { + display: none; } + + .error .helpertext { + border-color: #cf2a2a; + /*border-radius:0;*/ } + + .error .helpertext:before { + border-top-color: #cf2a2a; } + + .error .tooltip-onfocus .helpertext { + margin: 14px 0 10px 0; } + + .error [class*="price"], + .error [class*="pricing-"] { + color: #cf2a2a; } + + input:-ms-clear { + display: none; } + + input[type]::-webkit-inner-spin-button, + input[type]::-webkit-outer-spin-button { + -webkit-appearance: none; } + + input[type] { + -moz-appearance: textfield; } + + form { + margin: 0; } + + fieldset { + padding: 0; + margin: 0; + border: 0; } + + label, + legend { + display: inline-block; + font-size: 1.4rem; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + legend { + display: block; } + + .error-msg { + display: none; } + + select, + textarea, + input { + border-radius: 6px; + color: #5a5a5a; + display: inline-block; + font-size: 1.6rem; + margin: 0px; + padding: 0 15px 0 15px; + vertical-align: middle; + line-height: normal; } + + select::-webkit-input-placeholder, + textarea::-webkit-input-placeholder, + input::-webkit-input-placeholder { + color: #5a5a5a; + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; + opacity: 1; } + + select:-moz-placeholder, + textarea:-moz-placeholder, + input:-moz-placeholder { + color: #5a5a5a; + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; + opacity: 1; } + + select::-moz-placeholder, + textarea::-moz-placeholder, + input::-moz-placeholder { + color: #5a5a5a; + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; + opacity: 1; } + + select:-ms-input-placeholder, + textarea:-ms-input-placeholder, + input:-ms-input-placeholder { + color: #5a5a5a; + font-family: "Omnes-ECOMP-W02-Italic", Arial; + transition: none; + opacity: 1; } + + select:placeholder, + textarea:placeholder, + input:placeholder { + color: #5a5a5a; + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; + opacity: 1; } + + select:last-child, + textarea:last-child, + input:last-child { + margin-right: 0; } + + input:not([type="button"]) { + height: 36px; } + + input.input-emphasized { + font-size: 1.8rem; + height: 48px; + padding: 13px 20px 13px; } + + input[type="search"]:focus { + padding-right: 88px; } + + input[type="search"] { + padding-right: 40px; + -webkit-appearance: none !important; } + + input[type="search"].input-emphasized { + padding-right: 45px; } + + .btn-search[class*="btn"] { + background-color: transparent; + background-position: 50% 50%; + background-size: 20px; + background-repeat: no-repeat; + border: none; + height: 100%; + margin-left: 0; + margin-top: 0; + min-width: 45px !important; + outline-offset: 0; + padding: 0 !important; + position: absolute; + right: 0; + top: 0; + border-radius: 0 5px 5px 0; + min-width: 44px; + width: 44px; } + + .input-emphasized + .btn-search[class*="btn"], + .input-emphasized + .reset-field + .btn-search[class*="btn"] { + background-size: 26px; + height: 46px; + top: 1px; + outline-offset: -3px; + margin-bottom: 0; + border-radius: 0 5px 5px 0; } + + input[type="search"].input-emphasized + .reset-field { + right: 45px !important; } + + .search-suggestion-wrapper { + position: relative; + margin-bottom: 15px; } + + /*styles from dropdown*/ + .search-suggestion-list { + box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); + border-radius: 0 0 6px 6px; + position: relative; + border: 1px solid #0568ae; + border-top: 0; + padding: 15px 0; + background-color: #f2f2f2; + z-index: 1000; + width: 100%; + max-height: 400px; + overflow-y: auto; } + + .search-suggestion-list:empty { + display: none; } + + .search-suggestion-item { + position: relative; + z-index: -1; + padding: 0 15px; + line-height: 4.0rem; + color: #5a5a5a; } + + .search-suggestion-item a { + text-decoration: none; + color: #5a5a5a; } + + .search-suggestion-item:hover, + .search-suggestion-item:focus { + cursor: pointer; + background-color: #d2d2d2; } + + input[data-provide="datepicker"], + [data-provide="datepicker"]:-moz-placeholder, + [data-provide="datepicker"]:-ms-input-placeholder, + [data-provide="datepicker"]:-webkit-input-placeholder { + color: #0568ae !important; + opacity: 1; + filter: alpha(opacity=100); } + + input[disabled], + input[readonly], + select[disabled], + select[readonly], + textarea[disabled], + textarea[readonly], + i.icon-primary-calendar.disabled, + span.icon-primary-calendar.readonly { + cursor: not-allowed; + background-color: #f2f2f2; + box-shadow: none; } + + i.icon-primary-calendar.disabled input, + span.icon-primary-calendar.readonly input { + color: #959595 !important; } + + textarea { + display: block; + width: 400px; + max-width: 400px; + padding: 15px; } + + textarea.small { + line-height: 20px; } + + textarea + .reset-field { + display: none; } + + textarea::-webkit-input-placeholder { + line-height: .99; } + + textarea:-moz-placeholder { + line-height: .99; } + + textarea::-moz-placeholder { + line-height: .99; } + + textarea:-ms-input-placeholder { + line-height: .99; } + + textarea:placeholder { + line-height: .99; } + + textarea, + input { + background-color: #ffffff; + border: 1px solid #d2d2d2; + -webkit-appearance: none; + box-shadow: 2px 3px 2px -2px rgba(0, 0, 0, 0.08) inset; + transition: border .3s linear 0s; + font-family: "Omnes-ECOMP-W02", Arial; } + + textarea:focus, + input:focus { + outline: 0; + border-color: #0568ae; } + + .input-append { + display: table; } + + .input-append > div { + display: table-cell; + width: 1%; } + + .input-append > .field-group { + width: 100%; } + + .row .field-group input[class*="span"] { + float: none; } + + .field-group { + position: relative; + display: inline-block; } + + label + .field-group, + label + .input-append, + label + .row, + label + .row-nowrap, + label + .form-row { + margin-top: 5px; } + + .field-group { + position: relative; + display: block; } + + .field-group input:not([type="button"])[disabled] { + padding-right: 15px; } + + input:invalid, + textarea:invalid, + select:invalid { + outline: none !important; } + + .form-row { + margin-top: 20px; } + + .form-row.nomar { + margin: 0; } + + .row-nowrap.no-flex.form-row > label + br { + margin-bottom: 5px; } + + span.form-row { + display: inline-block; } + + legend + .form-row { + margin-top: 20px; } + + .tooltip-onclick input { + padding-right: 45px; } + + .ds2_touchevents .tooltip-onclick input:focus { + padding-right: 95px; } + + .btn-calendar-icon { + position: absolute; + background-color: transparent !important; + top: 8px; + border: 0 !important; + width: 30px; + right: 15px; } + + .btn-calendar-icon .icon-primary-calendar:before { + position: absolute; + color: #0568ae; } + + .btn-calendar-icon .icon-primary-calendar.disabled { + background-color: #f2f2f2; } + + .btn-calendar-icon .icon-primary-calendar.disabled:before { + color: #959595; } + + span.icon-primary-calendar input { + padding-left: 35px; + color: #0568ae; + transition: border-color 0.3s linear 0s; + box-shadow: 2px 3px 2px -2px rgba(0, 0, 0, 0.08) inset; + position: absolute; + top: 0; + left: 0; } + + .faux-input + input.datepicker-input:not([disabled]) { + cursor: pointer; + margin-left: 0; + background-color: #fff; + position: absolute; + left: 0; + top: 0; + z-index: 0; } + + .faux-input { + background-color: transparent !important; + border: 1px solid transparent; + border-radius: 4px; + font-size: 1.6rem; + height: 35px; + left: 0; + line-height: 35px; + margin-bottom: 10px; + margin-right: 6px; + padding: 0 0 0 35px; + position: relative; + text-align: left; + top: 0; + vertical-align: middle; + width: 100%; + z-index: 1; } + + .faux-input:disabled { + cursor: not-allowed; } + + .faux-input:focus + .datepicker-input, + [data-calendar-state="opened"] + .datepicker-input { + border-color: #0568ae; + box-shadow: 2px 3px 2px -2px rgba(5, 116, 172, 0.35) inset; + outline: 0 none; } + + .form-row.error .error-msg { + display: block; + font-size: 14px; + line-height: 14px; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + position: relative; + padding-left: 18px; + margin-top: 10px; } + + .form-row.error .error-msg > .icon-primary-badgealert { + height: 14px; + width: 14px; + position: absolute; + left: 0; + margin-right: 0; } + + .form-row.error .error-msg > .icon-primary-badgealert:before { + color: #cf2a2a; + font-size: 14px; + left: 0; + line-height: 14px; + position: absolute; + vertical-align: middle; } + + .form-row.error label, + .form-row.error .error-msg, + .form-row.error button.awd-select, + .form-row.error select.awd-select + span, + .form-row.error .checkbox, + .form-row.error .radio, + .form-row.error legend.error, + .form-row.error input, + .form-row.error textarea { + color: #cf2a2a; } + + .form-row.error .btn-group > .btn, + .form-row.error button.awd-select, + .form-row.error .awd-select-list, + .form-row.error select.awd-select + span, + .form-row.error textarea, + .form-row.error input, + .form-row.error .checkbox .skin, + .form-row.error .radio .skin { + border-color: #cf2a2a !important; } + + .form-row.error .checkbox input:checked:not(:disabled) + .skin { + background-color: #cf2a2a; } + + .form-row.error .radio input:checked + .skin:after { + background-color: #cf2a2a; } + + .error [class*="price"], + .error [class*="pricing-"] { + color: #cf2a2a; } + + hr, + .hr-or { + display: block; + height: 1px; + margin: 15px 0; + border: none; + background-repeat: repeat-x; + background-color: #959595; + position: relative; } + + hr.dark { + background-color: #959595; } + + hr.lite { + background-color: #d2d2d2; } + + .hr-or:before { + background-color: #fff; + color: #666; + content: " OR "; + display: block; + font-size: 1.4rem; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + height: 16px; + left: 50%; + line-height: 1.6rem; + margin-left: -15px; + margin-top: -8px; + position: absolute; + text-align: center; + top: 50%; + width: 30px; + z-index: 1111; } + + hr.is-vertical.dark, + hr.hr-or.dark, + hr.is-vertical.lite, + hr.hr-or.lite { + display: inline-block; + height: auto; + margin: 0 15px; + min-height: 20px; + width: 1px; } + + hr.is-vertical.dark, + hr.hr-or.dark { + background-color: #959595; } + + hr.is-vertical.lite, + hr.hr-or.lite { + background-color: #d2d2d2; } + + .hr-dotted.is-vertical.dark, + .hr-dotted.is-vertical.lite { + background-color: transparent; + background-repeat: repeat-y; + background-size: 1px 4px; + height: auto; + min-height: 20px; + width: 1px; } + + .row-nowrap > .span + hr.is-vertical, + .row > .span + hr.is-vertical { + margin: 0 0 0 -20px; } + + + + hr.bottom-space-only { + margin-top: 0; } + + .hr-nomargin { + margin: 0; } + + .radio { + position: relative; + min-height: 24px; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 1.6rem; + margin-bottom: 5px; } + .radio input { + -webkit-tap-highlight-color: transparent; + height: 10px; + margin: 6px; + opacity: 0; + outline: none; + position: absolute; + left: 1px; + top: 1px; + width: 10px; } + .radio input:focus + .skin { + border-color: #0568ae; } + .radio input:focus + .skin:before { + content: ""; + height: 34px; + left: -6px; + top: -6px; + outline: 1px dotted #000000; + position: absolute; + width: 34px; } + .radio input + .skin { + border-radius: 100%; } + .radio input:checked + .skin:after { + background-color: #0568ae; + border-radius: 100%; + border: 3px solid #FFFFFF; + content: ""; + display: block; + height: 16px; + position: absolute; + width: 16px; } + .radio input:disabled + .skin { + cursor: not-allowed; + background-color: #d2d2d2; + border-color: #d2d2d2; + color: #666666; } + .radio input:disabled + .skin + span { + cursor: not-allowed; + color: #666666; } + .radio input:disabled:checked + .skin:after { + background-color: #666666; } + .radio input:invalid + .skin { + border: solid 1px #cf2a2a; } + .radio .skin { + background-color: #FFFFFF; + border: 1px solid #d2d2d2; + border-radius: 3px; + display: inline-block; + height: 24px; + left: 0; + position: absolute; + top: 0; + width: 24px; } + .radio span { + display: inline-block; + margin-left: 34px; + margin-top: 0; + position: relative; + top: 3px; } + .radio label { + font-size: 1.6rem; + font-family: "Omnes-ECOMP-W02", Arial; } + + .radio.inline { + display: inline-block; + margin-bottom: 10px; + vertical-align: middle; + margin-right: 10px; } + .radio.inline:last-child { + margin-right: 0; } + + .radio-box { + border: 1px solid #d2d2d2; + border-radius: 8px; } + .radio-box > [role="radio"] label { + padding: 15px 15px 20px 15px; + display: block; + width: 100%; } + .radio-box > [role="radio"] label .skin + span { + top: 2px; } + .radio-box > [role="radio"] + div { + padding: 0 15px 15px 47px; } + .radio-box > [aria-checked="false"] label > input { + top: 15px; + left: 15px; } + .radio-box > [aria-checked="false"] label .skin { + top: 15px; + left: 15px; } + .radio-box > [aria-checked="true"] label > input { + top: 13px; + left: 13px; } + .radio-box > [aria-checked="true"] label .skin { + top: 13px; + left: 13px; } + + .radio-box.active { + border: 3px solid #0568ae; } + .radio-box.active > [role="radio"] label { + padding: 13px 14px 19px 13px; } + + .checkbox { + position: relative; + min-height: 24px; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 1.6rem; + margin-bottom: 5px; } + .checkbox input { + -webkit-tap-highlight-color: transparent; + height: 10px; + margin: 6px; + opacity: 0; + outline: none; + position: absolute; + left: 1px; + top: 1px; + width: 10px; } + .checkbox input:focus + .skin { + border-color: #0568ae; } + .checkbox input:focus + .skin:before { + content: ""; + height: 34px; + left: -6px; + top: -6px; + outline: 1px dotted #000000; + position: absolute; + width: 34px; } + .checkbox input:checked:not(:disabled) + .skin { + background-color: #0568ae; + border-color: #0568ae; } + .checkbox input:checked:disabled + .skin:after { + color: #5A5A5A; } + .checkbox input:checked + .skin:after { + height: 20px; + width: 10px; + background-color: transparent; + font-size: 23.4px; + color: #FFFFFF; + line-height: 21px; } + .checkbox input:disabled + .skin { + cursor: not-allowed; + background-color: #d2d2d2; + border-color: #d2d2d2; + color: #666666; } + .checkbox input:disabled + .skin + span { + cursor: not-allowed; + color: #666666; } + .checkbox input:invalid + .skin { + border: solid 1px #cf2a2a; } + .checkbox input:indeterminate + .skin:after { + background-color: transparent; + font-size: 25px; + color: #0574ac; + content: "\e920"; } + .checkbox .skin { + background-color: #fff; + border: 1px solid #d2d2d2; + border-radius: 3px; + display: inline-block; + height: 24px; + width: 24px; + position: absolute; + left: 0; + top: 0; } + .checkbox span { + display: inline-block; + margin-left: 34px; + margin-top: 0; + position: relative; + top: 3px; } + .checkbox label { + font-size: 1.6rem; + font-family: "Omnes-ECOMP-W02", Arial; } + .checkbox input { + z-index: 9999; } + .checkbox input.indeterminate + .skin:after { + font-size: 22px; + color: #0568ae; } + + .checkbox.inline { + display: inline-block; + margin-bottom: 10px; + vertical-align: middle; + margin-right: 10px; } + .checkbox.inline:last-child { + margin-right: 0; } + + .checkbox.checkbox-selectall { + margin: 20px 0 0 24px; } + + .terms-after-checkbox { + margin-top: 15px; } + + .indeterminate-margin { + padding-left: 24px; } + + .tiny-accordion { + border-bottom: 1px solid #d2d2d2; } + + .toggle-header, + .inactive-toggle-header { + border-color: #fff; + color: #0568ae; + cursor: pointer; + display: block; + font-size: 2.0rem; + line-height: 2.2rem; + min-height: 41px; + position: relative; + padding: 16px 55px 16px 15px; } + + .toggle-header.opened { + color: #333333; } + + .tiny-accordion .toggle-header, + .tiny-accordion .inactive-toggle-header { + padding: 16px 55px 16px 15px; + border-top: 1px solid #d2d2d2; } + + .tiny-accordion .toggle-header:focus { + text-decoration: underline; } + + .tiny-accordion.iconleft .toggle-header, + .tiny-accordion.iconleft .inactive-toggle-header { + padding: 15px 15px 15px 50px; } + + .accordion-content { + font-size: 1.4rem; } + + .accordion-content .toggle-header:first-child { + margin-top: 16px; } + + .tiny-accordion .toggle-header + .accordion-content { + padding: 0 50px 15px 15px; } + + .tiny-accordion.iconleft .toggle-header + .accordion-content { + padding: 0 15px 15px 50px; } + + .toggle-header .icon-primary-accordion-plus, + .toggle-header .icon-primary-accordion-minus { + display: inline-block; + font-size: 20px; + margin: 0; + padding: 0; + position: absolute; + right: 15px; + vertical-align: middle; + top: 16px; + font-weight: bold; } + + .tiny-accordion.iconleft .toggle-header .icon-primary-accordion-plus, + .tiny-accordion.iconleft .toggle-header .icon-primary-accordion-minus { + left: 15px; } + + .inactive-toggle-header:hover { + cursor: inherit; } + + .tiny-accordion-to-tabs, + .tiny-tabs { + position: relative; + width: 100%; + margin: 0px; + padding: 0px; } + + .tiny-tabs [class*="icon-primary-accordion-"] { + display: none !important; } + + .tiny-accordion-to-tabs:before, + .tiny-accordion-to-tabs:after, + .tiny-tabs:before, + .tiny-tabs:after { + display: table; + content: ""; + line-height: 0; } + + .tiny-accordion-to-tabs:after, + .tiny-tabs:after { + clear: both; } + + .tiny-accordion-to-tabs:before, + .tiny-accordion-to-tabs:after, + .tiny-tabs:before, + .tiny-tabs:after { + display: table; + content: ""; + line-height: 0; } + + .tiny-accordion-to-tabs:after, + .tiny-tabs:after { + clear: both; } + + .tiny-tabs > .toggle-header { + display: inline-block; + float: left; + border-top: none; + overflow: hidden; + height: 70px; + text-align: center; + background-color: #fff; + border-radius: 0px; + padding: 26px 20px 25px 20px !important; + border-top: 1px solid #fff; + -webkit-filter: none; + filter: none; + background-clip: padding-box; + border-bottom: 1px solid #d2d2d2; + font-weight: normal; + border-right: 1px solid #d2d2d2; + white-space: nowrap; } + + .tiny-tabs .toggle-header + div { + left: 0px; + position: absolute; + top: 69px; + border-top: 1px solid #d2d2d2; + padding: 0; + display: block; + border-bottom: none; + width: 100%; } + + .accordion-pad { + padding-top: 30px; + padding-bottom: 30px; } + + .tiny-tabs .opened { + color: #333333; + border-top: 5px solid #0568ae !important; + padding-top: 22px !important; + border-bottom: none; + background-color: #fff; + -webkit-filter: none; + filter: none; + cursor: default; + z-index: 999; } + + .tiny-tabs .toggle-header:focus { + text-decoration: underline; + outline: thin dotted #666; + outline-offset: 0; } + + .tiny-tabs .toggle-header:first-child { + border-left: none; + margin-left: 0; } + + .tiny-tabs .toggle-header:first-child { + border-left: 1px solid #fff; } + + .tiny-tabs .opened:first-child { + border-left: 1px solid #d2d2d2; } + + .tiny-tabs .toggle-header:nth-last-of-type(2) { + border-right-color: #fff; } + + .tiny-tabs .opened:nth-last-of-type(2) { + border-right: 1px solid #d2d2d2; } + + @media (max-width: 767px) { + .tiny-accordion, + .tiny-accordion-to-tabs { + margin-left: -15px; + margin-right: -15px; + width: auto; } + .tiny-accordion-to-tabs { + display: block; + border-bottom: 1px solid #d2d2d2; } + .tiny-accordion-to-tabs .toggle-header { + display: block; + min-height: 41px; + padding: 16px 50px 16px 15px; + border-top: 1px solid #d2d2d2; } + .tiny-accordion-to-tabs .toggle-header:focus { + text-decoration: underline; } + .tiny-accordion-to-tabs .toggle-header + .accordion-content { + padding: 0 50px 15px 15px; } } + + @media (min-width: 768px) { + .tiny-accordion-to-tabs [class*="icon-primary-accordion-"] { + display: none !important; } + .tiny-accordion-to-tabs > .toggle-header { + display: inline-block; + float: left; + border-top: none; + /*overflow: hidden;*/ + height: 70px; + text-align: center; + background-color: #fff; + border-radius: 0px; + padding: 26px 20px 25px 20px !important; + border-top: 1px solid #fff; + -webkit-filter: none; + filter: none; + background-clip: padding-box; + border-bottom: 1px solid #d2d2d2; + font-weight: normal; + border-right: 1px solid #d2d2d2; + white-space: nowrap; } + .tiny-accordion-to-tabs .toggle-header + div { + left: 0px; + position: absolute; + top: 69px; + border-top: 1px solid #d2d2d2; + padding-top: 30px; + padding-left: 20px; + display: block; + border-bottom: none; + width: 100%; } + .tiny-accordion-to-tabs .opened { + color: #333333; + border-top: 5px solid #0568ae !important; + padding-top: 22px !important; + border-bottom: none; + background-color: #fff; + -webkit-filter: none; + filter: none; + cursor: default; + text-decoration: none; + z-index: 999; } + .tiny-accordion-to-tabs .toggle-header:focus { + text-decoration: underline; + outline: thin dotted #666; + outline-offset: 0px; } + .tiny-accordion-to-tabs .toggle-header:nth-last-of-type(2) { + border-right: none; } + .tiny-accordion-to-tabs .toggle-header:first-child { + border-left: none; + margin-left: 0; } + .tiny-accordion-to-tabs .toggle-header:first-child { + border-left: 1px solid #fff; } + .tiny-accordion-to-tabs .opened:first-child { + border-left: 1px solid #d2d2d2; } + .tiny-accordion-to-tabs .opened:nth-last-of-type(2) { + border-right: 1px solid #d2d2d2; } } + + .toggle-header .tooltip .icon-primary-tooltip { + margin-top: -5px; } + + .accordion-content { + transition: all 0.8s linear; } + + .opaque-content { + opacity: 0; } + + .tiny-tabs .toggle-header { + display: inline-block; + float: left; + border-top: none; + overflow: hidden; + height: 70px; + text-align: center; + background-color: #fff; + border-radius: 0px; + padding: 22px 20px 25px 20px !important; + border-top: 5px solid #fff; + -webkit-filter: none; + filter: none; + background-clip: padding-box; + border-bottom: 1px solid #ccc; + font-weight: normal; + border-right: 1px solid #ccc; + white-space: nowrap; } + + .tiny-tabs .toggle-header:first-child { + margin-left: 0; } + + .tiny-tabs div:first-child .toggle-header { + margin-left: 30px; } + + .tiny-tabs > div .toggle-header.opened { + border-bottom: 0 !important; } + + .tiny-accordion-to-tabs > div > div.toggle-header { + background-clip: padding-box; + background-color: #fff; + border-bottom: 1px solid #ccc; + border-radius: 0; + border-top: 5px solid #fff; + display: inline-block; + filter: none; + float: left; + font-weight: normal; + overflow: hidden; + padding: 22px 20px 21px !important; + text-align: center; + white-space: nowrap; } + + .tiny-accordion-to-tabs .toggle-header:first-child { + margin-left: 0; } + + .tiny-accordion-to-tabs div:first-child .toggle-header { + margin-left: 30px; + border-bottom: 0 !important; } + + .tiny-accordion-to-tabs > div .toggle-header.opened { + border-bottom: 0 !important; } + + @media (max-width: 767px) { + .tiny-accordion-to-tabs { + display: block !important; + border-bottom: 1px solid #ccc !important; } + .tiny-accordion-to-tabs > div > div.toggle-header { + display: block !important; + float: none; + text-align: left; + min-height: 41px !important; + padding: 15px 50px 15px 15px !important; + border-top: 1px solid #ccc; } + .tiny-accordion-to-tabs > div > div.toggle-header:first-child { + margin-left: 0 !important; } + .tiny-accordion-to-tabs > div > div.toggle-header + .accordion-content { + padding: 0 50px 15px 15px; } + .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-plus { + background-position: 0 0; + background-size: 20px 40px; } + .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-minus { + background-position: 0 -20px; + background-size: 20px 40px; } + .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-plus, + .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-minus { + display: inline-block; + height: 20px; + margin: 0; + padding: 0; + position: absolute; + right: 15px; + vertical-align: middle; + width: 20px; } } + + .alert { + background-color: #5a5a5a; + border-radius: 8px; + color: #fff; + margin-top: 15px; + padding: 0; + position: relative; + border: 0; } + + .alert h3, + .alert h4 { + color: #fff; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 1.6rem; + margin: 0 20px 5px 0; } + + .alert div { + padding: 15px 20px; } + + .alert div:first-child { + border-radius: 8px 0 0 8px; + width: 1%; } + + .alert div:first-child + div { + border: 1px solid transparent; + border-left: none; + border-radius: 0 8px 8px 0; } + + .alert-error { + background-color: #cf2a2a; + border: 1px solid #cf2a2a; } + + .alert-info { + background-color: #44c8f5; + border: 1px solid #44c8f5; } + + .alert-success { + background-color: #c5d63d; + border: 1px solid #c5d63d; } + + .alert [class*="icon-primary-"] { + color: #fff; + font-size: 30px; + margin-right: 0; } + + .alert .close { + height: 30px; + position: absolute; + right: 1px; + top: 1px; + width: 30px; } + + .alert .close:before { + color: #fff; + margin-right: 0; + position: absolute; + right: 9px; + top: 9px; } + + .alert a { + color: #fff; + text-decoration: underline; } + + .alert .close:focus { + outline: 1px dotted #666; } + + .alert p { + font-size: 1.4rem; } + + .alert p:last-child { + margin-bottom: 0; } + + .alert .standalone-link i[class*="icon-primary-"] { + font-size: 20px; + margin-right: 5px; } + + @media (max-width: 767px) { + .alert { + border-radius: 0; + margin: 0 -15px; } + .alert + .alert { + margin-top: 4px; } + .alert div { + padding: 15px 10px; } + .alert div:first-child { + border-radius: 0; + padding: 15px; } + .alert h3, + .alert h4 { + font-size: 1.4rem; } + .alert p { + font-size: 1.2rem; } + .alert .close { + right: 5px; + top: 5px; } + .alert .standalone-link i[class*="icon-primary-"] { + font-size: 16px; } } + + .alert h3 { + margin: 0; + font-size: 16px; } + + .alert p { + font-size: 14px; } + + .alert p a { + color: #FFFFFF; + text-decoration: underline; } + + .alert div:first-child + div { + padding-right: 25px; } + + .alert div:last-child { + padding-right: 20px !important; } + + .alert p [class*="icon-primary-"] { + color: #fff; + font-size: 20px; + margin-right: 0; } + + @media (max-width: 767px) { + .alert h3 { + font-size: 14px; } + .alert div:first-child + div { + padding-right: 20px; } + .alert div:last-child { + padding-right: 15px !important; } + .alert div:first-child { + padding: 15px; } + .alert p { + font-size: 12px; } + .alert p [class*="icon-primary-"] { + font-size: 16px; } } + + .b2b-audio { + width: auto; + margin: 10px auto; + height: 35px; } + .b2b-audio .controls-wrapper { + display: inline-block; + font-size: 25px; + cursor: pointer; } + .b2b-audio .controls-wrapper i { + font-size: 25px; + margin-right: 0px; + color: #444; } + .b2b-audio .controls-wrapper i:hover { + color: #0574AC; } + .b2b-audio .seek-bar-container-wrapper { + display: inline-block; + outline: 0; + min-width: 180px; + margin-right: 10px; + margin-left: 10px; + height: 14px; + padding-top: 5px; } + .b2b-audio .seek-bar-container-wrapper .timing-container { + padding-top: 13px; + color: #333; + font-size: 12px; } + .b2b-audio .seek-bar-container-wrapper .timing-container .timing-container-left { + float: left; + line-height: 100%; } + .b2b-audio .seek-bar-container-wrapper .timing-container .timing-container-right { + float: right; + line-height: 100%; } + .b2b-audio .seek-bar-container-wrapper .timing-container .timing-container-spacer { + clear: both; } + .b2b-audio .seek-bar-tooltip { + text-align: center; + min-width: 76px; } + + .b2b-audio-popover { + width: 22px; } + .b2b-audio-popover .volume-popover { + height: 100px !important; + width: 6px !important; + margin: 7px auto; } + .b2b-audio-popover .min-label { + margin-top: 5px; } + + .b2b-audio-native { + width: auto; + height: auto; } + + .b2b-audio-recorder { + border: 1px solid #ccc; + box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.15); + height: 63px; + min-height: 63px; + min-width: 347px; } + .b2b-audio-recorder .b2b-elapsed-time { + margin: 23px 0 24px 15px; + font-size: 16px; + font-style: italic; + color: #767676; } + .b2b-audio-recorder .b2b-controls { + width: 68px; + cursor: pointer; } + .b2b-audio-recorder .b2b-controls i.icoControls-record { + font-size: 64px; + color: black; + float: right; + margin-right: 10px; } + .b2b-audio-recorder .b2b-controls i.icoControls-record:focus, .b2b-audio-recorder .b2b-controls i.icoControls-record:hover { + color: #0568ae; } + .b2b-audio-recorder .b2b-controls i.icoControls-stop { + font-size: 36px; + color: black; + float: right; + margin-right: 20px; + margin-top: 12px; } + .b2b-audio-recorder .b2b-controls i.icoControls-stop:focus, .b2b-audio-recorder .b2b-controls i.icoControls-stop:hover { + color: #0568ae; } + + .b2b-top-btn { + height: 36px; + width: 36px; + border-radius: 7px; } + + .b2b-top-btn > i { + position: absolute; + top: 13px; + left: 9px; + width: 11px; + height: 18px; } + + .b2b-badge { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + background-color: #5A5A5A; + border-radius: 12px; + color: #FFFFFF; + display: inline-block; + font-size: 1.5rem; + font-weight: normal; + height: 20px; + line-height: 0; + margin-top: 0; + min-width: 20px; + padding: 0 5px; + text-align: center; + vertical-align: baseline; } + .b2b-badge:empty { + display: none; } + + * + .b2b-heading-micro { + margin-top: 20px !important; } + + .b2b-heading-micro { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-weight: normal; + text-rendering: optimizeLegibility; + font-size: 1.2rem !important; + text-transform: uppercase !important; + margin-bottom: 20px !important; + line-height: 1.2 !important; } + + .b2b-no-colors .b2b-badge { + border: 1px solid transparent; } + + .btn > .b2b-badge { + margin-right: 5px; } + + a > .b2b-badge { + margin-right: 6px; + padding-top: 10px; } + + .b2b-badge-urgent { + background-color: #cf2a2a; } + + .bellyband-container { + margin: 0 -15px; } + + .bellyband-group { + width: auto; } + + .bellyband-link { + border-top: 1px solid #d2d2d2; } + + .bellyband-link a { + display: block; + height: 40px; + line-height: 40px; + padding: 0 15px; + position: relative; + text-decoration: none; } + + .bellyband-link a:hover > div span, + .bellyband-link a:focus > div span { + text-decoration: underline; } + + .bellyband-link a:after { + color: #666; + font-size: 2.3rem; + height: 20px; + position: absolute; + right: 5px; + top: 12px; + width: 18px; } + + .dark-bg .bellyband-link a:after { + color: white; } + + .bellyband-link img[src$="svg"].hidden-desktop, + .bellyband-link [class*="icon-primary-"].hidden-desktop { + display: inline-block !important; + float: left; + font-size: 24px; + height: 24px; + margin-right: 5px; + margin-top: 8px; + width: 24px; } + + .dark-bg .bellyband-link [class*="icon-primary-"].hidden-desktop, + .dark-bg .bellyband-link [class*="icon-primary-"].visible-desktop { + color: #fff; } + + .bellyband-link img[src$="svg"].visible-desktop { + display: none !important; } + + .bellyband-link p { + margin-top: -10px; + margin-left: 29px; + font-size: 1.4rem; + color: #666; } + + @media (min-width: 481px) and (max-width: 767px) { + .bellyband-container { + display: flex; + margin: 0; } + .bellyband-group { + align-content: flex-start; + align-items: stretch; + display: inline-flex; + flex-direction: column; + flex-wrap: wrap; + margin-top: 1px; + width: 100%; } + .bellyband-group .row { + display: flex !important; } + .bellyband-link { + padding-top: 0; + position: relative; + border-top: none; + margin-bottom: 20px; + width: 50%; } + .bellyband-link a { + height: inherit; + line-height: inherit; + display: flex; + padding: 0; } + .bellyband-link a:after { + display: none; } + .bellyband-link a span { + display: block; + padding-top: 10px; } + .bellyband-link p { + display: block; + padding: 0 15px 0 0; + margin-bottom: 0; + margin-left: 0; + margin-top: 0; } + .bellyband-link a:focus p { + text-decoration: none; } } + + @media (min-width: 768px) { + .bellyband-group { + margin: 0; + max-width: 100%; + display: flex; + flex-wrap: wrap; + justify-content: center; } + .bellyband-group .row { + display: block; } + .bellyband-group .row .span { + float: none; + margin-right: 0; + margin-bottom: 30px; + display: flex; + justify-content: space-between; } + .bellyband-link { + border-top: none; + flex: 0 0 auto; + margin-right: 0; + margin-bottom: 30px; } + .bellyband-link:last-child { + margin-right: 0; } + .bellyband-link a { + height: auto; + line-height: 1; + text-align: center; } + .bellyband-link a:after { + display: none; } + .bellyband-link img[src$="svg"].hidden-desktop, + .bellyband-link [class*="icon-primary-"].hidden-desktop { + display: none !important; } + .bellyband-link img[src$="svg"].visible-desktop, + .bellyband-link [class*="icon-primary-"].visible-desktop { + display: block !important; + font-size: 50px; + height: 50px; + margin-right: 0; + margin-top: 0; + margin-left: auto; + margin-right: auto; + width: auto; } + .bellyband-link a span { + display: block; + margin-top: 12px; + line-height: 2rem; } + .bellyband-link p { + display: block; + text-align: center; + margin-top: 6px; + margin-left: 0; + padding-left: 0 !important; + color: #666; + line-height: 1.8rem; } } + + @media (max-width: 480px) { + .bellyband-link-tall a { + height: auto; + padding: 0 40px 10px 15px; } + .bellyband-link-tall p { + line-height: 1.8rem; + margin-bottom: 0; } + .bellyband-link-tall > a:after { + margin-top: -8px; + top: 50%; } } + + .b2b-boardstrip { + display: inline-block; + width: 100%; + border-bottom: 1px solid #9d9d9d; + position: relative; + padding-top: 15px; } + .b2b-boardstrip .boardstrip-reel { + margin-bottom: 15px; } + .b2b-boardstrip .boardstrip-item--add { + border: 1px dashed #ccc; + background: #FFFFFF; + color: #0574ac; + width: 140px; + height: 80px; + font-size: 14px; + font-family: "Omnes-ECOMP-W02", Arial; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + position: absolute; + left: 29px; + top: 15px; } + .b2b-boardstrip .boardstrip-item--add:hover, .b2b-boardstrip .boardstrip-item--add:focus { + border: 2px solid #007A3E; + cursor: pointer; } + .b2b-boardstrip .boardstrip-item--add i { + font-size: 14px; + margin-left: auto; + margin-right: auto; + text-align: initial; } + .b2b-boardstrip .boardstrip-item--add .centered { + margin-left: auto; + margin-right: auto; + margin-top: 27px; + margin-bottom: 35px; + display: block; } + .b2b-boardstrip .board-viewport { + float: left; + margin-left: 210px; + max-height: 95px; + position: relative; + height: 95px; + overflow: hidden; + width: 0px; } + .b2b-boardstrip .board-viewport .boardstrip-container { + width: 0px; + margin-left: 0; + left: 0px; + position: absolute; + list-style: none; + -webkit-transition: left 1000ms; + transition: left 1000ms; } + .b2b-boardstrip .board-viewport .board-item { + width: 140px; + height: 80px; + border: 1px solid #ccc; + margin: 0 15px 15px 0; + background-color: #FFFFFF; + border-radius: 3px; + float: left; + overflow: hidden; } + .b2b-boardstrip .board-viewport .board-item:hover, .b2b-boardstrip .board-viewport .board-item:focus { + border: 2px solid #007A3E; + background-color: white; + cursor: pointer; } + .b2b-boardstrip .board-viewport .board-item .board-img { + width: 61px; + height: 40px; + margin: 0 auto; } + .b2b-boardstrip .board-viewport .board-item .board-img img { + max-width: 100%; } + .b2b-boardstrip .board-viewport .board-item .title { + text-align: center; + line-height: 16px; + color: #666; + font-size: 14px; + font-family: "Omnes-ECOMP-W02", Arial; + padding: 10px 0; } + .b2b-boardstrip .board-viewport .board-item.selected { + background-color: #FFFFFF; + border: 2px solid #0574ac; } + .b2b-boardstrip .board-viewport .board-item .board-caret { + cursor: default; + outline: 0; + position: absolute; + bottom: 7px; } + .b2b-boardstrip .board-viewport .board-item .board-caret .board-caret-indicator { + border-left: 8px solid transparent; + border-right: 8px solid transparent; + border-bottom: 8px solid #999; + width: 0px; + height: 0px; + position: absolute; + left: 61px; + bottom: -7px; } + .b2b-boardstrip .board-viewport .board-item .board-caret .board-caret-arrow-up { + width: 0px; + height: 0px; + border-style: solid; + border-width: 0 8px 8px 8px; + border-color: transparent transparent #FFFFFF transparent; + left: 61px; + position: absolute; } + .b2b-boardstrip .arrow { + font-size: 14px; + cursor: pointer; + color: #0574ac; } + .b2b-boardstrip .arrow:hover { + color: #0574ac; } + .b2b-boardstrip .arrow.disabled { + color: #767676 !important; + cursor: not-allowed; } + .b2b-boardstrip .prev-items { + display: inline-block; + margin-top: auto; + margin-bottom: auto; + margin-right: 15px; + position: absolute; + left: 0; + top: 45px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -o-user-select: none; + user-select: none; } + .b2b-boardstrip .next-items { + display: inline-block; + margin-top: 30px; + margin-bottom: auto; + margin-left: 10px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -o-user-select: none; + user-select: none; } + .b2b-boardstrip .centered { + display: table-cell; + text-align: center; + vertical-align: middle; } + + .breadcrumb { + padding: 10px 15px; + height: 40px; + list-style: none; + border-bottom: 1px solid #d2d2d2; + font-size: 1.2rem; + width: 100%; + z-index: 1000; } + + .breadcrumb > li { + position: relative; + display: inline-block; + margin-right: 15px; } + + .breadcrumb > li:after { + font-size: 8px; + margin-right: 0; + right: -8px; + color: #333333; } + + .breadcrumb > li:last-child { + color: #333333; } + + .breadcrumb > li:last-child:after { + content: ""; } + + .breadcrumb li > * { + float: none !important; + margin: 0; } + + .breadcrumb { + padding: 10px 15px !important; } + + /* ARROW */ + /* spanish */ + .datepicker { + background-color: #FFFFFF; + padding: 0; + border-radius: 5px; + direction: ltr; } + .datepicker > div { + display: none; } + .datepicker table { + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + margin: 0 0 0 0; } + .datepicker td { + text-align: center; + display: block; + width: 30px; + height: 30px; + border: none; } + .datepicker td span { + display: block; + width: 23%; + height: 54px; + line-height: 54px; + float: left; + margin: 1%; + cursor: pointer; + border-radius: 4px; } + .datepicker td span:hover { + background: #eeeeee; } + .datepicker td span.disabled { + background: none; + color: #5A5A5A; + cursor: default; } + .datepicker td span.disabled:hover { + background: none; + color: #5A5A5A; + cursor: default; } + .datepicker td span.active { + color: #FFFFFF; + background-color: #0568ae; + border-color: #357ebd; } + .datepicker td span.active:hover { + color: #FFFFFF; + background-color: #0568ae; + border-color: #357ebd; } + .datepicker td span.active.disabled { + color: #FFFFFF; + background-color: #0568ae; + border-color: #357ebd; } + .datepicker th { + text-align: center; + display: block; + width: 30px; + height: 30px; + border: none; } + .datepicker tbody:focus { + outline: none; } + .datepicker td.day { + background-color: transparent; + color: #0568ae; + cursor: pointer; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 16px; + height: 34px; + line-height: 30rem; + margin: -2px -1px 0 0; + overflow: hidden; + text-align: center; + width: 42px; } + .datepicker:focus { + outline: 1px dotted #191919; + outline-offset: -2px; } + .datepicker th[tabindex]:focus { + outline-offset: -15px; } + .datepicker td.day.focused { + background: #ededed; + cursor: pointer; } + .datepicker td.day.focused.active { + background-color: #ededed; + color: #0568ae; } + .datepicker td.disabled { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5A5A5A; + cursor: default; } + .datepicker td.disabled:hover { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5A5A5A; + cursor: default; } + .datepicker td.disabled:hover .show-date { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5A5A5A; } + .datepicker td.disabled .show-date { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5A5A5A; } + .datepicker td.today { + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today:hover { + color: #FFFFFF; + background-color: #0568ae; + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today:active { + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today:focus { + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today.disabled { + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today.active { + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today.active:hover { + color: #FFFFFF; } + .datepicker td.selected { + color: #FFFFFF; + background-color: #959595; } + .datepicker td.selected:hover { + color: #FFFFFF; + background-color: #959595; } + .datepicker td.selected.disabled { + color: #FFFFFF; + background-color: #959595; } + .datepicker td.active:not(.new) { + color: #FFFFFF; + border-color: #357ebd; } + .datepicker td.active:not(.new) .show-date { + color: #0568ae; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + .datepicker td.active:hover:not(.new) { + color: #FFFFFF; + border-color: #357ebd; } + .datepicker td.active:hover:not(.new) .show-date { + color: #0568ae; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + .datepicker .start-date .show-date { + background-color: #0568ae; + color: #FFFFFF !important; + border-radius: 5px 0 0 5px; + z-index: 1; } + .datepicker .start-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: 20px; + position: absolute; + width: 100%; + z-index: -1; } + .datepicker .between-date .show-date { + background-color: #0568ae; + color: #FFFFFF !important; } + .datepicker .between-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: 0; + position: absolute; + width: 100%; + z-index: -1; } + .datepicker .between-date:first-child .show-date:before { + background-color: #FFFFFF; + content: ""; + height: 26px; + position: absolute; + left: 0; + width: 8px; } + .datepicker .end-date .show-date { + background-color: #0568ae; + color: #FFFFFF !important; + border-radius: 0 5px 5px 0; } + .datepicker .end-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: -20px; + position: absolute; + width: 100%; + z-index: -1; } + .datepicker .end-date:first-child .show-date:after { + background-color: #FFFFFF; + content: ""; + height: 26px; + position: absolute; + left: 0; + width: 8px; } + .datepicker .end-date:first-child .show-date::before { + background-color: #FFFFFF; } + .datepicker tr td.start-date:last-child .show-date:after { + background-color: #FFFFFF; + content: ""; + height: 26px; + position: absolute; + right: 0; + width: 8px; } + .datepicker tr td.start-date:last-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker tr td.start-date:first-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker tr td.between-date:last-child .show-date:after { + background-color: #FFFFFF; + content: ""; + height: 26px; + position: absolute; + right: 0; + width: 8px; } + .datepicker tr td.between-date:last-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker tr td.between-date:first-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker tr td.end-date:last-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker tr td.end-date:first-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker th.datepicker-switch { + width: 198px; + font-size: 20px; + font-weight: normal; + cursor: default !important; } + .datepicker thead tr:first-child th { + cursor: pointer; + height: 60px; + line-height: 60px; } + .datepicker thead tr:first-child th.cw { + cursor: default; + background-color: transparent; } + .datepicker tfoot tr th { + cursor: pointer; + height: 60px; + line-height: 60px; + height: auto; + line-height: normal; } + .datepicker tfoot tr th li { + margin-bottom: 5px; } + .datepicker .prev { + color: transparent; + font-size: 0; + margin: 0 -1px -1px 0; + width: 46px; } + .datepicker .prev i { + color: #0568ae; + position: absolute; + font-size: 27px; + margin: 0; + top: 15px; + left: 8px; } + .datepicker .next { + color: transparent; + font-size: 0; + margin: 0 -1px -1px 0; + width: 46px; } + .datepicker .next i { + color: #0568ae; + position: absolute; + font-size: 27px; + margin: 0; + top: 15px; + right: 8px; } + .datepicker .cw { + font-size: 10px; + width: 12px; + padding: 0 2px 0 5px; + vertical-align: middle; } + .datepicker .due-date .show-date { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + background-color: #cf2a2a; + border-radius: 5px; + color: #FFFFFF !important; } + .datepicker .day.active .show-date:after { + border: 2px solid #0568ae; + border-radius: 7px; + content: ""; + display: block; + height: 30px; + left: 4px; + position: absolute; + top: 0; + width: 30px; } + .datepicker .day:focus .show-date:after { + border: 2px solid #0568ae; + border-radius: 7px; + content: ""; + display: block; + height: 30px; + left: 4px; + position: absolute; + top: 0; + width: 30px; + height: 30px; + left: 4px; + top: 0; + width: 30px; } + .datepicker .due-date.disabled .show-date:after { + border: 2px solid #0568ae; + border-radius: 7px; + content: ""; + display: block; + height: 30px; + left: 4px; + position: absolute; + top: 0; + width: 30px; } + .datepicker .day.due-date:focus .show-date:after { + height: 30px; + left: 4px; + top: 0; + width: 30px; } + .datepicker .due-date.old:after { + visibility: hidden; } + .datepicker .due-date.new:after { + visibility: hidden; } + .datepicker .due-date.active:after { + border-color: #FFFFFF; } + .datepicker .due-date.active.focused { + color: #0568ae !important; } + .datepicker .due-date.active.focused:after { + border-color: #cf2a2a !important; } + .datepicker .dow { + height: 24px; + width: 42px; + font-weight: normal; + position: relative; + overflow: hidden; + color: transparent; + letter-spacing: -6px; + margin: 0 -1px -1px 0; } + .datepicker .dow span[aria-hidden="true"] { + bottom: 0; + color: #5A5A5A; + display: block; + left: 1px; + letter-spacing: 0; + line-height: .9; + margin: 0 auto; + padding: 0; + position: relative; + width: 22px; } + .datepicker .calendar-legend { + margin-top: 3px; + margin-bottom: 20px; } + .datepicker .calendar-legend li { + font-size: 1.4rem; + font-weight: normal; + margin-bottom: 5px; + padding-left: 10px; + padding-top: 5px; + position: relative; } + .datepicker i.legend-due-date { + background-color: #cf2a2a; + border-radius: 5px; + height: 18px; + width: 18px; + margin-right: 8px; + vertical-align: middle; + display: inline-block; } + .datepicker i.legend-selected-date { + background-color: #FFFFFF; + border: 2px solid #0568ae; + border-radius: 5px; + height: 18px; + width: 18px; + margin-right: 8px; + vertical-align: middle; + display: inline-block; } + .datepicker i.legend-selectedisdue { + background-color: #FFFFFF; + border: 2px solid #0568ae; + border-radius: 5px; + display: inline-block; + height: 18px; + margin-right: 8px; + position: relative; + vertical-align: middle; + width: 18px; } + .datepicker i.legend-selectedisdue:after { + background-color: #cf2a2a; + border-radius: 3px; + content: ""; + display: block; + height: 10px; + left: 2px; + position: absolute; + top: 2px; + width: 10px; } + .datepicker .text-left { + width: 100%; } + .datepicker .active.old { + background-color: #ededed !important; + color: #ededed !important; } + + .datepicker-inline { + width: 220px; } + + .datepicker.datepicker-rtl { + direction: rtl; } + .datepicker.datepicker-rtl td span { + float: right; } + + .datepicker-dropdown { + top: 0; + left: 0; } + .datepicker-dropdown:before { + content: " "; + display: inline-block; + border-left: 10px solid transparent; + border-right: 10px solid transparent; + border-bottom: 10px solid #d2d2d2; + border-top: 0; + border-bottom-color: rgba(0, 0, 0, 0.2); + position: absolute; } + .datepicker-dropdown:after { + content: " "; + display: inline-block; + border-left: 10px solid transparent; + border-right: 10px solid transparent; + border-bottom: 10px solid #fff; + border-top: 0; + position: absolute; } + + .datepicker-dropdown.datepicker-orient-left:before { + left: 16px; } + + .datepicker-dropdown.datepicker-orient-left:after { + left: 16px; } + + .datepicker-dropdown.datepicker-orient-right:before { + right: 16px; } + + .datepicker-dropdown.datepicker-orient-right:after { + right: 16px; } + + .datepicker-dropdown.datepicker-orient-top:before { + top: -10px; } + + .datepicker-dropdown.datepicker-orient-top:after { + top: -9px; } + + .datepicker-dropdown.datepicker-orient-bottom:before { + bottom: -7px; + border-bottom: 0; + border-top: 7px solid #959595; } + + .datepicker-dropdown.datepicker-orient-bottom:after { + bottom: -6px; + border-bottom: 0; + border-top: 6px solid #fff; } + + .datepicker.days div.datepicker-days { + display: block; } + + .datepicker.months div.datepicker-months { + display: block; } + + .datepicker.years div.datepicker-years { + display: block; } + + .show-date { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + color: #0568ae; + height: 26px; + line-height: 26px; + margin: 4px auto 0; + width: 26px; } + + .input-group.date .input-group-addon i { + cursor: pointer; + width: 16px; + height: 16px; } + + .datepicker.dropdown-menu { + box-shadow: 0 10px 15px -10px rgba(0, 0, 0, 0.7); + position: absolute; + top: 100%; + left: 0; + float: left; + display: none; + margin-top: 13px; + width: 290px; + list-style: none; + background-color: #FFFFFF; + border: 1px solid #d2d2d2; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 5px; + color: #333333; + font-size: 13px; + line-height: 1.428571429; + z-index: 1050; } + .datepicker.dropdown-menu th { + display: block; + float: left; + padding: 0; + position: relative; } + .datepicker.dropdown-menu td { + display: block; + float: left; + padding: 0; + position: relative; } + + .s { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: -62px 0; } + + .m { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: -5px 0; } + + .t { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: -19px 0; } + + .w { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: -34px 0; } + + .f { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: -49px 0; } + + .d { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: 0 0; } + + .l { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: 0 0; } + + .v { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: 0 0; } + + .j { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: 0 0; } + + .b2b-coachmark-label { + z-index: 1060; + opacity: 1; + cursor: not-allowed; + position: relative; } + + .b2b-coachmark-highlight { + border: 1px solid #d3d3d3; + cursor: default; + z-index: 1045; + opacity: 1; + background-color: #ffffff; + border-radius: 10px; + position: relative; + box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.25); + padding: 10px; + position: absolute; } + + .b2b-coachmark-highlight-mask { + z-index: 1100; + opacity: .1; } + + .b2b-coachmark-container { + border: 1px solid #cccccc; + width: 316px; + pointer-events: auto; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + font-size: 16px; + -webkit-transition: opacity .2s ease-out; + -moz-transition: opacity .2s ease-out; + transition: opacity .2s ease-out; + background: #fff; + border-radius: 20px; + box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.15); + color: #333; + line-height: 20px; + position: absolute; + top: 50px; + left: -97px; + display: block; + background-color: #ffffff; + z-index: 1050; + opacity: 1; } + .b2b-coachmark-container i.b2b-coachmark-caret { + position: absolute; + top: -12px; + left: 47%; + opacity: 1; + z-index: 1050; } + .b2b-coachmark-container i.b2b-coachmark-caret:before { + content: ""; + border-left: 12px solid transparent; + border-right: 12px solid transparent; + border-bottom: 12px solid #d3d3d3; + position: absolute; + top: -1px; } + .b2b-coachmark-container i.b2b-coachmark-caret:after { + content: ""; + border-left: 12px solid transparent; + border-right: 12px solid transparent; + border-bottom: 12px solid #fff; + position: absolute; } + .b2b-coachmark-container .b2b-coachmark-header { + position: relative; + height: 47px; + overflow: hidden; } + .b2b-coachmark-container .b2b-coachmark-header .corner-button { + box-shadow: 0 -24px 0 0 #f2f2f2 inset; + height: 69px; + position: absolute; + right: -33px; + top: -38px; + transform: rotate(45deg); + width: 69px; } + .b2b-coachmark-container .b2b-coachmark-countlabel { + font-size: 12px; + font-family: "Omnes-ECOMP-W02", Arial; + color: #333333; + margin-left: 20px; + margin-top: 20px; } + .b2b-coachmark-container .b2b-coachmark-content { + padding: 0px 20px 20px 20px; + float: left; } + .b2b-coachmark-container .b2b-coachmark-content .icon-misc-dimmer { + font-size: 32px; + float: left; + margin-right: 10px; + width: 32px; } + .b2b-coachmark-container .b2b-coachmark-content .offscreen-text { + position: absolute; + left: -10000px; + top: auto; + width: 1px; + height: 1px; + overflow: hidden; } + .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-content-header { + font-size: 16px; + color: #333333; + line-height: 18px; + float: left; + width: 220px; } + .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-description { + font-size: 14px; + line-height: 18px; + color: #333333; + width: 100%; + float: left; + margin-top: 15px; } + .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-btn-group { + margin-top: 20px; + float: left; + text-align: right; + width: 100%; } + .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-btn-group .b2b-coachmark-link { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 15px; + color: #0574ac; + line-height: 18px; + margin-right: 20px; } + .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-btn-group button { + font-size: 15px; + margin: 0px; } + + .datepicker { + background-color: #fff; + padding: 0; + border-radius: 5px; + direction: ltr; } + + .datepicker-inline { + width: 220px; } + + .datepicker.datepicker-rtl { + direction: rtl; } + + .datepicker.datepicker-rtl td span { + float: right; } + + .datepicker-dropdown { + top: 0; + left: 0; } + + /* ARROW */ + .datepicker-dropdown:before { + content: " "; + display: inline-block; + border-left: 10px solid transparent; + border-right: 10px solid transparent; + border-bottom: 10px solid #d2d2d2; + border-top: 0; + border-bottom-color: rgba(0, 0, 0, 0.2); + position: absolute; } + + .datepicker-dropdown:after { + content: " "; + display: inline-block; + border-left: 10px solid transparent; + border-right: 10px solid transparent; + border-bottom: 10px solid #fff; + border-top: 0; + position: absolute; } + + .datepicker-dropdown.datepicker-orient-left:before, + .datepicker-dropdown.datepicker-orient-left:after { + left: 255px; } + + .datepicker-dropdown.datepicker-orient-right:before, + .datepicker-dropdown.datepicker-orient-right:after { + right: 16px; } + + .datepicker-dropdown.datepicker-orient-top:before { + top: -10px; } + + .datepicker-dropdown.datepicker-orient-top:after { + top: -9px; } + + .datepicker-dropdown.datepicker-orient-bottom:before { + bottom: -7px; + border-bottom: 0; + border-top: 7px solid #959595; } + + .datepicker-dropdown.datepicker-orient-bottom:after { + bottom: -6px; + border-bottom: 0; + border-top: 6px solid #fff; } + + .datepicker > div { + display: none; } + + .datepicker.days div.datepicker-days { + display: block; } + + .datepicker.months div.datepicker-months { + display: block; } + + .datepicker.years div.datepicker-years { + display: block; } + + .datepicker table { + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + margin: 0 0 0 0; } + + .datepicker td, + .datepicker th { + text-align: center; + display: block; + width: 30px; + height: 30px; + border: none; } + + .datepicker tbody :focus { + outline: none; } + + .datepicker td.day { + background-color: transparent; + color: #0568ae; + cursor: pointer; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 16px; + height: 34px; + line-height: 30rem; + margin: -2px -1px 0 0; + overflow: hidden; + text-align: center; + width: 42px; } + + .datepicker :focus { + outline: 1px dotted #000; + outline-offset: -2px; } + + .datepicker td.day.focused { + background: #ededed; + cursor: pointer; } + + .datepicker td.day.focused.active { + background-color: #ededed; + color: #0568ae; } + + .datepicker td.disabled, + .datepicker td.disabled:hover { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5a5a5a; + cursor: default; } + + .datepicker td.today, + .datepicker td.today:hover, + .datepicker td.today.disabled { + color: #fff; + background-color: #0568ae; } + + .datepicker td.today.active, + .datepicker td.today:active, + .datepicker td.today:hover, + .datepicker td.today:focus { + color: #fff; + background-color: #0568ae; } + + .datepicker td.today.active:hover { + color: #fff; } + + .datepicker td.selected, + .datepicker td.selected:hover, + .datepicker td.selected.disabled { + color: #ffffff; + background-color: #959595; } + + .datepicker td.active:not(.new), + .datepicker td.active:hover:not(.new) { + color: #ffffff; + border-color: #357ebd; } + + .show-date { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + color: #0568ae; + height: 26px; + line-height: 26px; + margin: 4px auto 0; + width: 26px; } + + .datepicker .start-date .show-date, + .datepicker .between-date .show-date, + .datepicker .end-date .show-date { + background-color: #0568ae; + color: #fff !important; } + + .datepicker .start-date .show-date { + border-radius: 5px 0 0 5px; + z-index: 1; } + + .datepicker .start-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: 20px; + position: absolute; + width: 100%; + z-index: -1; } + + .datepicker .between-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: 0; + position: absolute; + width: 100%; + z-index: -1; } + + .datepicker .end-date .show-date { + border-radius: 0 5px 5px 0; } + + .datepicker .end-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: -20px; + position: absolute; + width: 100%; + z-index: -1; } + + .datepicker .between-date:first-child .show-date:before { + background-color: #fff; + content: ""; + height: 26px; + position: absolute; + left: 0; + width: 8px; } + + .datepicker .end-date:first-child .show-date:after { + background-color: #fff; + content: ""; + height: 26px; + position: absolute; + left: 0; + width: 8px; } + + .datepicker .end-date:first-child .show-date::before { + background-color: #fff; } + + .datepicker tr td.start-date:last-child .show-date:after, + .datepicker tr td.between-date:last-child .show-date:after { + background-color: #fff; + content: ""; + height: 26px; + position: absolute; + right: 0; + width: 8px; } + + .datepicker tr td.start-date:last-child:focus .show-date:after, + .datepicker tr td.end-date:last-child:focus .show-date:after, + .datepicker tr td.between-date:last-child:focus .show-date:after, + .datepicker tr td.start-date:first-child:focus .show-date:after, + .datepicker tr td.end-date:first-child:focus .show-date:after, + .datepicker tr td.between-date:first-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + + .datepicker td.active:not(.new) .show-date, + .datepicker td.active:hover:not(.new) .show-date { + color: #0568ae; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + .datepicker td.disabled .show-date, + .datepicker td.disabled:hover .show-date { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5a5a5a; } + + .datepicker td span { + display: block; + width: 23%; + height: 54px; + line-height: 54px; + float: left; + margin: 1%; + cursor: pointer; + border-radius: 4px; } + + .datepicker td span:hover { + background: #eeeeee; } + + .datepicker td span.disabled, + .datepicker td span.disabled:hover { + background: none; + color: #5a5a5a; + cursor: default; } + + .datepicker td span.active, + .datepicker td span.active:hover, + .datepicker td span.active.disabled { + color: #ffffff; + background-color: #0568ae; + border-color: #357ebd; } + + .datepicker th.datepicker-switch { + width: 198px; + font-size: 20px; + font-weight: normal; + cursor: default !important; } + + .datepicker thead tr:first-child th, + .datepicker tfoot tr th { + cursor: pointer; + height: 60px; + line-height: 60px; } + + .datepicker tfoot tr th { + height: auto; + line-height: normal; } + + .datepicker tfoot tr th li { + margin-bottom: 5px; } + + .datepicker .prev, + .datepicker .next { + color: transparent; + font-size: 0; + margin: 0 -1px -1px 0; + width: 46px; } + + .datepicker .prev i, + .datepicker .next i { + color: #0568ae; + position: absolute; + font-size: 27px; + margin: 0; + top: 15px; } + + .datepicker .prev i { + left: 8px; } + + .datepicker .next i { + right: 8px; } + + .datepicker .cw { + font-size: 10px; + width: 12px; + padding: 0 2px 0 5px; + vertical-align: middle; } + + .datepicker thead tr:first-child th.cw { + cursor: default; + background-color: transparent; } + + .input-group.date .input-group-addon i { + cursor: pointer; + width: 16px; + height: 16px; } + + .datepicker.dropdown-menu { + box-shadow: 0 10px 15px -10px rgba(0, 0, 0, 0.7); + position: absolute; + top: 100%; + left: 0; + float: left; + display: none; + margin-top: 13px; + width: 290px; + list-style: none; + background-color: #ffffff; + border: 1px solid #d2d2d2; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 5px; + color: #333333; + font-size: 13px; + line-height: 1.428571429; + z-index: 1050; } + + .datepicker.dropdown-menu th, + .datepicker.dropdown-menu td { + display: block; + float: left; + padding: 0; + position: relative; } + + .datepicker .due-date .show-date { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + background-color: #cf2a2a; + border-radius: 5px; + color: #fff !important; } + + .datepicker .day.active .show-date:after, + .datepicker .day:focus .show-date:after, + .datepicker .due-date.disabled .show-date:after { + border: 2px solid #0568ae; + border-radius: 7px; + content: ""; + display: block; + height: 30px; + left: 4px; + position: absolute; + top: 0; + width: 30px; } + + .datepicker .day:focus .show-date:after { + height: 30px; + left: 4px; + top: 0; + width: 30px; } + + .datepicker .day.due-date:focus .show-date:after { + height: 30px; + left: 4px; + top: 0; + width: 30px; } + + .datepicker .due-date.old:after, + .datepicker .due-date.new:after { + visibility: hidden; } + + .datepicker .due-date.active:after { + border-color: #fff; } + + .datepicker .due-date.active.focused { + color: #0568ae !important; } + + .datepicker .due-date.active.focused:after { + border-color: #cf2a2a !important; } + + .datepicker .dow { + height: 24px; + width: 42px; + font-weight: normal; + position: relative; + overflow: hidden; + color: transparent; + letter-spacing: -6px; + margin: 0 -1px -1px 0; } + + .datepicker .dow span[aria-hidden="true"] { + bottom: 0; + color: #5a5a5a; + display: block; + left: 1px; + letter-spacing: 0; + line-height: .9; + margin: 0 auto; + padding: 0; + position: relative; + width: 22px; } + + .datepicker .calendar-legend { + margin-top: 3px; + margin-bottom: 20px; } + + .datepicker .calendar-legend li { + font-size: 1.4rem; + font-weight: normal; + margin-bottom: 5px; + padding-left: 10px; + padding-top: 5px; + position: relative; } + + .datepicker i.legend-due-date { + background-color: #cf2a2a; + border-radius: 5px; + height: 18px; + width: 18px; + margin-right: 8px; + vertical-align: middle; + display: inline-block; } + + .datepicker i.legend-selected-date { + background-color: #fff; + border: 2px solid #0568ae; + border-radius: 5px; + height: 18px; + width: 18px; + margin-right: 8px; + vertical-align: middle; + display: inline-block; } + + .datepicker i.legend-selectedisdue { + background-color: #fff; + border: 2px solid #0568ae; + border-radius: 5px; + display: inline-block; + height: 18px; + margin-right: 8px; + position: relative; + vertical-align: middle; + width: 18px; } + + .datepicker i.legend-selectedisdue:after { + background-color: #cf2a2a; + border-radius: 3px; + content: ""; + display: block; + height: 10px; + left: 2px; + position: absolute; + top: 2px; + width: 10px; } + + .datepicker .text-left { + width: 100%; } + + .datepicker .active.old { + background-color: #ededed !important; + color: #ededed !important; } + + .s, + .m, + .t, + .w, + .f, + .d, + .l, + .v, + .j { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: white; + background-repeat: no-repeat; } + + .s { + background-position: -62px 0; } + + .m { + background-position: -5px 0; } + + .t { + background-position: -19px 0; } + + .w { + background-position: -34px 0; } + + .f { + background-position: -49px 0; } + + /* spanish */ + .d { + background-position: 0 0; } + + .l { + background-position: 0 0; } + + .v { + background-position: 0 0; } + + .j { + background-position: 0 0; } + + .datepicker-container { + position: relative; } + + .btn-calendar-icon:focus .icon-primary-calendar { + outline: 1px dotted #191919; } + + .btn-calendar-icon:focus { + outline: none; } + + /* remove focus outline when dropdown is opened */ + /*resolve blue focus outline over dropdown with error*/ + select { + margin-right: -1; + max-width: 400px; + height: 36px; + line-height: 25px; + width: 400px; + background-color: #f2f2f2; } + + .selectWrap.disabled .icon-primary-down { + color: #767676; } + + .selectWrap.disabled input.awd-select { + z-index: 0; + padding: 10px 45px 10px 15px; + text-indent: 0; } + + .selectWrap.disabled button.awd-select { + z-index: 0; + text-indent: 15px; } + + .selectWrap.disabled:after { + color: #5A5A5A; + cursor: not-allowed; } + + input.awd-select { + background-color: transparent; + border: 1px solid #d2d2d2; + border-radius: 6px; + box-shadow: 1px 5px 2px -5px rgba(0, 0, 0, 0.15); + color: #333333; + display: block; + font-family: "Omnes-ECOMP-W02", Arial; + /*font-size: 1.6rem;*/ + height: 36px; + line-height: 0; + margin-bottom: 0; + position: relative; + text-align: left; + top: 0; + width: 100%; + z-index: 10; + padding: 12px 45px 8px 15px; + user-select: none; } + input.awd-select:focus { + border-color: #0568ae !important; + text-overflow: ellipsis; + padding-right: 45px; } + + button.awd-select { + background-color: transparent; + border: 1px solid #d2d2d2; + border-radius: 6px; + box-shadow: 1px 5px 2px -5px rgba(0, 0, 0, 0.15); + color: #333333; + display: block; + font-family: "Omnes-ECOMP-W02", Arial; + /*font-size: 1.6rem;*/ + height: 36px; + line-height: 36px; + margin-bottom: 0; + position: relative; + text-align: left; + top: 0; + width: 100%; + z-index: 10; } + button.awd-select:not(.large) { + text-indent: 15px; + white-space: nowrap; + overflow: hidden; + text-overflow: clip; + text-overflow: ellipsis; } + button.awd-select img { + height: 26px; + margin-right: 7px; + margin-top: -10px; + position: relative; + top: 2px; + vertical-align: text-bottom; } + button.awd-select:focus { + border-color: #0568ae !important; } + button.awd-select i { + font-size: 23px; + position: absolute; + right: 33px; + top: 5px; + z-index: 1000; } + + button.awd-select.large { + align-items: center; + display: flex; + height: 60px; + line-height: 20px; + overflow: hidden; + padding-left: 70px; + vertical-align: middle; } + button.awd-select.large img { + height: 40px; + left: 20px; + position: absolute; + top: 20px; + width: 40px; } + + .selectWrap.large { + height: 60px; } + .selectWrap.large .awd-select-list-item { + align-items: center; + display: flex; + height: 60px; + line-height: 20px; + overflow: hidden; + padding-left: 70px; + vertical-align: middle; } + .selectWrap.large .awd-select-list-item img { + height: 40px; + left: 20px; + position: absolute; + top: 20px; + width: 40px; + top: 10px; } + + .inputWrap { + border-radius: 6px; + position: relative; + height: 36px; + line-height: 44px; + display: block; + margin: 0; + } + + button.awd-select.active { + border-radius: 6px 6px 0 0; } + button.awd-select.active:focus { + border-color: #d2d2d2 !important; } + + input.awd-select.active { + border-radius: 6px 6px 0 0; } + input.awd-select.active:focus { + border-color: #d2d2d2 !important; } + + .selectWrapper { + position: relative; } + + span.selectWrap input[readonly]:focus { + color: transparent; + text-shadow: 0 0 0 #000; } + + .isIE.ds2-no-colors .awd-select:focus { + outline: 1px dashed transparent; } + + .awd-select-list { + box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); + border-radius: 0 0 6px 6px; + position: absolute; + border: 1px solid #d2d2d2; + border-top: 0; + padding: 0; + background-color: #f2f2f2; + z-index: 1000; + width: 100%; + max-height: 320px; + overflow-y: auto; } + + .awd-select-list-item { + cursor: pointer; + height: 100%; + min-height: 36px; + line-height: 20px; + overflow: hidden; + padding: 8px 15px; + position: relative; + z-index: 1000; } + .awd-select-list-item:hover { + cursor: pointer; + background-color: #d2d2d2; + outline: 1px dashed transparent; } + .awd-select-list-item:focus { + cursor: pointer; + background-color: #d2d2d2; + outline: 1px dashed transparent; } + .awd-select-list-item img { + margin-top: 0; + margin-right: 7px; + height: 26px; + width: 26px; } + + .selectWrap { + border-radius: 6px; + position: relative; + height: 36px; + line-height: 28px; + display: block; + margin: 0; + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + background: -webkit-linear-gradient(top, #fcfcfc 0%, #f2f2f2 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="@att-gray-highlight", endColorstr="@att-functional-bg-gray", GradientType=0); } + .selectWrap:not(.large) .awd-select-list-item:first-child { + margin-top: 15px; } + .selectWrap:not(.large) .awd-select-list-item:last-child { + margin-bottom: 15px; } + .selectWrap .icon-primary-down { + font-size: 23px; + margin-top: -11px; + position: absolute; + right: 4px; + top: 50%; } + .selectWrap + [aria-expanded="true"] { + padding-bottom: 9px; + padding-top: 20px; } + + .awd-select-list-item[data-hover="true"] { + background-color: #d2d2d2; } + + span input.awd-select { + width: 100%; + cursor: pointer; + text-overflow: ellipsis; + padding-right: 45px; } + + li.optgroup-wrapper { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + cursor: default !important; + padding: 0px 15px; } + li.optgroup-wrapper:first-child { + padding-top: 10px; } + li.optgroup-wrapper:hover { + background-color: #f2f2f2; } + + ul.optgroup { + font-family: "Omnes-ECOMP-W02", Arial; + cursor: pointer !important; + margin: 0 -15px; } + ul.optgroup li { + padding: 0 0 0 33px; } + + label + .selectWrap { + margin-top: 4px; } + + .selectorModule { + border-radius: 6px; + position: relative; + height: 36px; + line-height: 28px; + display: block; + margin: 0; + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + background: -webkit-linear-gradient(top, #fcfcfc 0%, #f2f2f2 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="@att-gray-highlight", endColorstr="@att-functional-bg-gray", GradientType=0); } + + .group .selectWrap { + margin: 0 0 10px 0; } + + select.awd-select { + position: relative; + top: 0; + left: 0; + font-size: 16px; + z-index: 1010; + height: 33px; + min-width: 100%; + opacity: 0.01; } + select.awd-select > optgroup { + padding-left: 8px; + font-style: normal; + margin-top: 10px; } + select.awd-select > optgroup:first-child { + margin-top: 0; } + select.awd-select > optgroup > option { + padding-left: 8px; } + select.awd-select > option { + padding-left: 8px; } + select.awd-select + span { + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + background: -webkit-linear-gradient(top, #fcfcfc 0%, #f2f2f2 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="@att-gray-highlight", endColorstr="@att-functional-bg-gray", GradientType=0); + position: absolute; + top: 0; + left: 0; + z-index: 0; + display: block; + border: 1px solid #d2d2d2; + border-radius: 6px; + height: 35px; + line-height: 0; + padding: 18px 45px 15px 15px; + width: 100%; + font-size: 1.6rem; + padding-right: 45px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } + select.awd-select + span > i { + font-size: 23px; + position: absolute; + right: 33px; + top: 5px; + z-index: 1000; } + select.awd-select + span > i:before { + left: 1px; + position: absolute; + top: -1px; } + select.awd-select:focus + span { + border-color: #0568ae; } + + .isIE select.awd-select + span { + line-height: 1; } + + [data-default-option="true"] { + color: #767676 !important; + font-family: "Omnes-ECOMP-W02-Italic", Arial; } + + .placeholdercolor { + color: #767676 !important; + font-family: "Omnes-ECOMP-W02-Italic", Arial; } + + .filterTank button.awd-select { + border-color: #d2d2d2; + background-color: #333333; + color: #FFFFFF; + color: #333333; } + .filterTank button.awd-select:after { + background-color: #FFFFFF !important; + border-color: #d2d2d2; } + + .utility-bg button.awd-select { + border-color: #d2d2d2; + background-color: #333333; + color: #FFFFFF; + color: #333333; } + .utility-bg button.awd-select:after { + background-color: #FFFFFF !important; + border-color: #d2d2d2; } + + .utility-bg select.awd-select + span { + border-color: #d2d2d2; + border-color: #d2d2d2; + background-color: #333333; + background-color: #333333; + color: #FFFFFF; + color: #FFFFFF; } + .utility-bg select.awd-select + span:after { + background-color: #FFFFFF !important; + background-color: #FFFFFF !important; + border-color: #d2d2d2; + border-color: #d2d2d2; } + + .utility-bg select.awd-select:focus + span { + border-color: #d2d2d2; + border-color: #d2d2d2; + background-color: #333333; + background-color: #333333; + color: #FFFFFF; + color: #FFFFFF; } + .utility-bg select.awd-select:focus + span:after { + background-color: #FFFFFF !important; + background-color: #FFFFFF !important; + border-color: #d2d2d2; + border-color: #d2d2d2; } + + .utility-bg select.awd-select:hover + span { + border-color: #d2d2d2; + border-color: #d2d2d2; + background-color: #333333; + background-color: #333333; + color: #FFFFFF; + color: #FFFFFF; } + .utility-bg select.awd-select:hover + span:after { + background-color: #FFFFFF !important; + background-color: #FFFFFF !important; + border-color: #d2d2d2; + border-color: #d2d2d2; } + + input.awd-select[disabled] { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + input.awd-select[disabled] + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + + button.awd-select[disabled] { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + button.awd-select[disabled]:after { + background-color: #d2d2d2 !important; + border-color: #d2d2d2; } + + select.awd-select[disabled] + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + select.awd-select[disabled] + span:after { + background-color: #d2d2d2 !important; + border-color: #d2d2d2; } + + select.awd-select[disabled]:focus + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + + select.awd-select[disabled]:hover + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + + input.awd-select[disabled="disabled"] { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + input.awd-select[disabled="disabled"] + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + + select.awd-select[disabled="disabled"] + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + select.awd-select[disabled="disabled"] + span:after { + background-color: #d2d2d2 !important; + border-color: #d2d2d2; } + + select.awd-select[disabled="disabled"]:focus + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + select.awd-select[disabled="disabled"]:focus + span:after { + background-color: #d2d2d2 !important; + border-color: #d2d2d2; } + + select.awd-select[disabled="disabled"]:hover + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + select.awd-select[disabled="disabled"]:hover + span:after { + background-color: #d2d2d2 !important; + border-color: #d2d2d2; } + + .ddexpand-wrapper > h2 { + margin-bottom: 11px; } + .ddexpand-wrapper > h2 + p { + margin-bottom: 4px; } + + .ddexpand-wrapper .selectWrap + [aria-expanded="true"] .form-row { + margin-top: 11px; } + + .ddexpand-wrapper .selectWrap + [aria-expanded="true"] .row + .row .form-row { + margin-top: 14px; } + + .modal .awd-select-list { + z-index: 1060 !important; } + + .form-row.error button.awd-select.active:focus { + border-color: #cf2a2a !important; } + + .form-row.error input.awd-select.active:focus { + border-color: #cf2a2a !important; } + + .awd-module-list .module-list-item[aria-selected="true"] { + background-color: #f2f2f2; } + + li.module-list-item[aria-selected="true"]:before { + color: #0568ae; + display: inline-block; + font-family: "icoControls" !important; + font-style: normal; + font-size: 20px; + font-weight: normal; + font-variant: normal; + height: 1em; + margin-right: 7px; + text-transform: none; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + position: relative; + speak: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + vertical-align: middle; + width: 1em; + content: "\e907"; + box-sizing: border-box; + display: inline-block; + font-size: 2em; + height: 1em; + position: absolute; + top: 20px; + right: 0px; + vertical-align: middle; + width: 1em; + color: #007a3e; } + + @media (min-width: 768px) { + span[class*="large"] { + max-width: 370px; } + .large { + max-width: 370px; } } + + @media (max-width: 767px) { + .selectWrap.large:after { + right: 5px; } + .selectWrap.large .awd-select-list-item { + padding-right: 41px; } + .selectWrap + div > h4 { + margin-bottom: 0; + font-size: 16px; } } + + /**********************Dropdown Chrome scrolling fix start ********************/ + input.awd-select { + -webkit-user-select: text; + -moz-user-select: text; + -ms-user-select: text; + user-select: text; } + + /**********************Dropdown Chrome scrolling fix end ********************/ + .mpc-expanders { + border-bottom: 1px solid #e4e4e4; + border-top: 1px solid #e4e4e4; } + + .mpc-expanders + .mpc-expanders { + border-top: 0px; } + + .mpc-expanders .heading-medium { + margin-bottom: 10px; } + + .mpc-expanders .p-small { + margin-top: 5px; } + + .mpc-expander-body { + border-top: 1px solid #e4e4e4; } + + .mpc-expander-body .mpc-expanders { + border-bottom: 1px solid #e4e4e4; + border-top: 0; } + + .mpc-expander-body .mpc-expanders:last-child { + border-bottom: 0px; } + + .ddh-blue { + color: #0574ac; } + + .b2b-dragdrop { + border: 1px dashed #bbb; + border-radius: 5px; + padding: 0; + text-align: center; + color: #bbb; + position: relative; } + + .b2b-dragdrop-over { + background: #0091d9; + color: #006496; } + .b2b-dragdrop-over:after { + content: "Drop the file"; + color: #fff; + width: 80px; + height: 20px; + overflow: hidden; + margin: auto; + position: absolute; + top: 0; + left: 0; + bottom: 0; + right: 0; } + + .b2b-file-container { + position: relative; + overflow: hidden; + display: inline-table; + font-weight: 400; } + .b2b-file-container [type=file] { + position: absolute; + cursor: inherit; + display: block; + font-size: 0; + opacity: 0; + height: 0; + width: 0; + left: 0; + top: 0; + -ms-filter: "alpha(Opacity=0)"; } + + .b2b-upload-link { + color: #0568ae; } + + .b2b-flyout { + position: relative; + display: inline-block; + cursor: default; } + + .b2b-flyout-icon { + cursor: pointer; } + .b2b-flyout-icon:focus { + outline: thin dotted #666; + outline-offset: -1px; } + + .b2b-flyout .b2b-flyout-container { + border: 1px solid #d3d3d3; + width: 300px; + padding: 20px; + pointer-events: auto; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + font-size: 16px; + -webkit-transition: opacity .2s ease-out; + -moz-transition: opacity .2s ease-out; + transition: opacity .2s ease-out; + background: #fff; + border-radius: 6px; + box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.25); + color: #333; + line-height: 20px; + position: absolute; + top: 35px; + opacity: 0; + z-index: 1010; + display: none; } + .b2b-flyout .b2b-flyout-container.open-flyout { + opacity: 1; + display: block; } + + .b2b-flyout i.b2b-flyout-caret { + position: absolute; + top: -8px; + left: 50%; + opacity: 0; + z-index: 1011; + display: none; } + .b2b-flyout i.b2b-flyout-caret.open-flyout { + opacity: 1; + display: block; } + .b2b-flyout i.b2b-flyout-caret:before { + content: ""; + border-left: 8px solid transparent; + border-right: 8px solid transparent; + border-bottom: 8px solid #d3d3d3; + position: absolute; + top: -1px; } + .b2b-flyout i.b2b-flyout-caret:after { + content: ""; + border-left: 8px solid transparent; + border-right: 8px solid transparent; + border-bottom: 8px solid #fff; + position: absolute; } + + .b2b-flyout .b2b-flyout-container.b2b-flyout-left i.b2b-flyout-caret { + left: 16px !important; } + + .b2b-flyout .b2b-flyout-container.b2b-flyout-right i.b2b-flyout-caret { + left: inherit !important; + right: 30px !important; } + + .b2b-flyout .b2b-flyout-container.b2b-flyout-above { + box-shadow: 0 -5px 6px 0 rgba(0, 0, 0, 0.25); } + .b2b-flyout .b2b-flyout-container.b2b-flyout-above i.b2b-flyout-caret { + top: auto; + bottom: 0px; } + .b2b-flyout .b2b-flyout-container.b2b-flyout-above i.b2b-flyout-caret:before { + top: auto; + bottom: -9px; + border-top: 8px solid #d3d3d3; + border-bottom: none; } + .b2b-flyout .b2b-flyout-container.b2b-flyout-above i.b2b-flyout-caret:after { + border-top: 8px solid #fff; + border-bottom: none; } + + .b2b-flyout .b2b-flyout-container.b2b-flyout-centerLeft i.b2b-flyout-caret { + left: inherit !important; + right: -7px !important; + top: 8px; + transform: rotate(90deg); } + + .b2b-flyout .b2b-flyout-container.b2b-flyout-centerRight i.b2b-flyout-caret { + left: -8px !important; + top: 296px; + transform: rotate(-90deg); } + + .b2b-flyout .buttons-group { + margin-top: 20px; } + .b2b-flyout .buttons-group .cta-button-group { + width: 100%; + border-top: 1px solid #ccc; + padding: 20px 0 0; } + .b2b-flyout .buttons-group .cta-button-group button { + margin-bottom: 0; } + + .b2b-flyout .heading { + font-size: 20px; + margin-bottom: 10px; } + + .b2b-flyout .body-text { + font-size: 14px; + margin-bottom: 30px; } + + .b2b-footer-wrapper { + width: 100%; + background-color: #222; } + + .b2b-footer-container { + width: 980px; + margin: 0 auto; + padding-top: 15px; } + .b2b-footer-container .footer-columns { + display: inline-block; + text-align: left; + vertical-align: top; } + .b2b-footer-container .footer-columns.three-column, .b2b-footer-container .footer-columns.four-column, .b2b-footer-container .footer-columns.five-column { + padding-top: 30px; } + .b2b-footer-container .footer-columns.three-column { + width: 33.3%; + padding-left: 75px; } + .b2b-footer-container .footer-columns.four-column { + width: 25%; + padding-left: 75px; } + .b2b-footer-container .footer-columns.five-column { + width: 20%; } + .b2b-footer-container .footer-columns .b2b-footer-header { + color: #009fdb; + font-size: 18px; + font-style: normal; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + line-height: 23.9px; + margin: 0; } + .b2b-footer-container .footer-columns li { + padding: 7.5px 0; } + .b2b-footer-container .footer-columns ul li:first-child { + padding-top: 15px; } + .b2b-footer-container .footer-columns li a { + color: #fff; + font-size: 16px; + font-family: "Omnes-ECOMP-W02", Arial; } + .b2b-footer-container .footer-nav-content { + padding-bottom: 10px; } + .b2b-footer-container .footer-nav-content li { + display: inline; + font-size: 14px; + color: #fff; + vertical-align: middle; } + .b2b-footer-container .footer-nav-content li a { + color: #fff; + font-size: 14px; + vertical-align: middle; + margin-right: 5px; + font-family: "Omnes-ECOMP-W02", Arial; } + + .b2b-footer-wrapper .b2b-footer-container hr { + background: #d2d2d2; + margin-top: 50px; } + + .b2b-footer-wrapper .divider-bottom-footer { + padding: 45px 0 50px 0; } + + .b2b-footer-wrapper .footerLogo { + margin: 10px 0 0 0px; + vertical-align: top; } + .b2b-footer-wrapper .footerLogo div { + display: inline-block; } + .b2b-footer-wrapper .footerLogo .icon-primary-att-globe { + font-size: 40px; } + .b2b-footer-wrapper .footerLogo .logo-title { + color: #fff; + margin-left: 10px; + display: inline-block; + font-size: 26px; + margin-top: 0px; } + + .b2b-footer-wrapper .copyright-text { + color: #fff; + font-size: 11px; + text-align: left; + font-family: "Omnes-ECOMP-W02", Arial; } + .b2b-footer-wrapper .copyright-text a { + color: #fff; + text-decoration: underline; + display: inline-block; } + .b2b-footer-wrapper .copyright-text a:hover { + text-decoration: none; } + + @media (max-width: 768px) { + .b2b-footer-wrapper { + padding: 0 15px; } + .b2b-footer-container { + width: 100%; } + .b2b-footer-container .footer-columns.three-column, .b2b-footer-container .footer-columns.four-column, .b2b-footer-container .footer-columns.five-column { + width: 50%; } + .b2b-footer-wrapper .divider-bottom-footer { + padding-top: 15px; } + .b2b-footer-wrapper .divider-bottom-footer .footer-links { + width: 100%; } + .b2b-footer-wrapper .footerLogo { + margin: 30px 0 0 0; } + .b2b-footer-wrapper .footerLogo .footer-logo { + margin: 0; + padding-left: 10px; } } + + .b2b-header-tabs { + background-color: #222; + width: 100%; + position: relative; + height: 45px; } + .b2b-header-tabs .icon-primary-att-globe { + color: #0568ae; } + .b2b-header-tabs a:focus { + border: 1px solid white; } + .b2b-header-tabs .header__items { + width: 980px; + margin: 0 auto; + display: block; + list-style: none; + padding: 6px 0px 0px 0px; + border-spacing: 30px 0; } + .b2b-header-tabs .header__item { + display: inline-block; + text-align: left; + width: auto; + font-size: 16px; + font-family: "Omnes-ECOMP-W02", Arial; + cursor: pointer; + padding: 5px 15px; + color: #fff; } + .b2b-header-tabs .header__item.b2b-headermenu { + padding: 0; } + .b2b-header-tabs .header__item.b2b-headermenu:last-child { + background: none; } + .b2b-header-tabs .header__item.b2b-headermenu a.menu__item { + color: #fff; + text-decoration: none; + display: inline-block; + padding: 5px 15px; } + .b2b-header-tabs .header__item.active { + background-color: #fff; + border-radius: 2px; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } + .b2b-header-tabs .header__item.active a.menu__item { + color: #0578ae; } + .b2b-header-tabs li:focus { + outline: 2px solid #0578ae; } + .b2b-header-tabs .header__item .header-secondary-wrapper, .b2b-header-tabs .header__item .header-tertiary-wrapper { + background-color: #fff; + position: absolute; + width: 100%; + left: 0; + top: 42px; + border-bottom: solid 1px #ccc; + -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + display: none; + z-index: 111; } + .b2b-header-tabs .header-secondary, .b2b-header-tabs .header-tertiary { + background-color: #fff; + width: 980px; + margin: 0 auto; } + .b2b-header-tabs .header__item.active .header-secondary-wrapper { + display: block; } + .b2b-header-tabs .header-secondary .header-subitem { + display: inline-block; + width: auto; + margin: 0 15px; } + .b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary-wrapper { + display: block; } + .b2b-header-tabs .header-secondary .header-subitem a.menu__item { + display: inline-block; + padding: 15px 0; + color: #333; } + .b2b-header-tabs .header-secondary .header-subitem a.menu__item:hover, .b2b-header-tabs .header-secondary .header-subitem a.menu__item:focus { + color: #0578ae; } + + /** Secondary Menu **/ + .b2b-labelhide { + position: absolute; + clip: rect(1px, 1px, 1px, 1px); } + + /** Tertiary Level Menu **/ + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { + position: absolute; + z-index: 111; + top: 25px; } + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after, .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { + content: ''; + border-left: 8px solid transparent; + border-right: 8px solid transparent; + position: absolute; + -webkit-transition: left .2s ease-out; + -moz-transition: left .2s ease-out; + transition: left .2s ease-out; } + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after { + border-bottom: 8px solid #fff; + top: 10px; } + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { + border-bottom: 8px solid #ccc; + top: 9px; } + + .b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary { + border-top: solid 1px #ccc; } + + .b2b-header-tabs .header-tertiary:after { + content: ''; + clear: both; + display: block; } + + .b2b-header-tabs .header-tertiary li { + display: inline-block; + padding: 0; + float: left; } + .b2b-header-tabs .header-tertiary li a { + color: #333; + display: block; + padding: 10px 15px; } + .b2b-header-tabs .header-tertiary li label { + text-align: left; + display: block; + font-size: 16px; + font-weight: bold; + color: #857B7B; + padding: 15px 0 0 15px; } + + .b2b-header-tabs .header__item.skip { + padding: 0; + display: inline-block; + cursor: default !important; } + .b2b-header-tabs .header__item.skip a { + color: transparent; + font-size: 12px; + line-height: 15px; + text-decoration: none; } + .b2b-header-tabs .header__item.skip a:focus { + color: #fff; + outline: 2px solid #0578ae; } + + .b2b-header-tabs .selectWrap { + min-width: 150px; } + .b2b-header-tabs .selectWrap button.awd-select { + height: 30px; + line-height: 31px; + font-size: 1rem; + display: inline-block; } + .b2b-header-tabs .selectWrap .awd-select-list { + background-color: #fff; + color: #333; + -webkit-transition: opacity .2s ease-out; + -moz-transition: opacity .2s ease-out; + transition: opacity .2s ease-out; + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176); } + + @media (max-width: 768px) { + .b2b-header-tabs { + padding: 0 15px; } + .b2b-header-tabs .header__items, .b2b-header-tabs .header-secondary, .b2b-header-tabs .header-tertiary { + width: 100%; } + .b2b-header-tabs .header__item { + padding: 5px 0; } + .b2b-header-tabs .globe-text { + display: none; } + .b2b-header-tabs .header__item.b2b-headermenu a.menu__item { + padding: 5px 7px 9px 7px; } + .b2b-header-tabs .header__item .header-tertiary-wrapper { + top: 30px; } + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { + top: 14px; } + .b2b-header-tabs .header__item .header-secondary-wrapper { + top: 45px; } + .b2b-header-tabs .header__item.profile { + padding-left: 15px; + float: none; } } + + /************* Header - Start *************/ + .b2b-header-tabs { + background-color: #222; + width: 100%; + position: relative; + height: 45px; } + + .b2b-header-tabs .icon-primary-primary-att-globe { + color: #0568ae; + font-size: 34px; + bottom: 1px; } + + /* + *TODO: delete below .icon-primary-att-globel will not be used + *instead the one above, icon-primary-primary-att-globe not available here + */ + .b2b-header-tabs .icon-primary-att-globe { + color: #0568ae; + font-size: 34px; } + + .b2b-header-tabs .globe-text { + margin-left: 20px; + font-size: 2rem; } + + .b2b-header-tabs .header__items { + width: 980px; + margin: 0 auto; + display: block; + list-style: none; + border-spacing: 30px 0; + padding: 3px 0px 0px 0px; } + + .b2b-header-tabs .header__item { + display: inline-block; + text-align: left; + width: auto; + font-size: 14px; + font-family: "Omnes-ECOMP-W02", Arial; + cursor: pointer; + padding: 0 15px 4px 15px; + /*margin-top:-3px;*/ + color: #fff; } + + .b2b-header-tabs .header__item.b2b-headermenu { + padding: 0; } + + .b2b-header-tabs .header__item.b2b-headermenu a.menu__item { + color: #fff; + text-decoration: none; + display: inline-block; + padding: 8px 15px 12px 15px; + font-size: 16px; } + + .b2b-header-tabs .header__item.active { + background-color: #fff; + border-radius: 2px; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } + + .b2b-header-tabs .header__item.active a.menu__item { + color: #0578ae; } + + .b2b-header-tabs li:focus { + outline: 2px solid #0578ae; } + + /** profile pop Over **/ + .b2b-header-tabs .header__item.profile { + position: relative; + float: right; } + + /** Secondary Menu **/ + .b2b-header-tabs .header__item .header-secondary-wrapper, .b2b-header-tabs .header__item .header-tertiary-wrapper { + background-color: #fff; + position: absolute; + width: 100%; + left: 0; + top: 42px; + border-bottom: solid 1px #ccc; + -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + display: none; + z-index: 111; } + + .b2b-header-tabs .header-secondary, .b2b-header-tabs .header-tertiary { + background-color: #fff; + width: 980px; + margin: 0 auto; } + + .b2b-header-tabs .header__item.active .header-secondary-wrapper, + .b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary-wrapper { + display: block; } + + .b2b-header-tabs .header-secondary .header-subitem { + display: inline-block; + width: auto; + margin: 0 15px; } + + .b2b-header-tabs .header-secondary .header-subitem a.menu__item { + display: inline-block; + padding: 15px 0; + color: #333; + font-size: 14px; } + + .b2b-header-tabs .header-secondary .header-subitem a.menu__item:hover, .b2b-header-tabs .header-secondary .header-subitem a.menu__item:focus { + color: #0578ae; } + + .b2b-label-hide { + position: absolute; + clip: rect(1px, 1px, 1px, 1px); } + + /** Tertiary Level Menu **/ + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after, + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { + content: ''; + border-left: 8px solid transparent; + border-right: 8px solid transparent; + position: absolute; + -webkit-transition: left .2s ease-out; + -moz-transition: left .2s ease-out; + transition: left .2s ease-out; } + + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { + position: absolute; + z-index: 111; + top: 25px; } + + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after { + border-bottom: 8px solid #fff; + top: 10px; } + + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { + border-bottom: 8px solid #ccc; + top: 9px; } + + /** Tertiary Level Menu **/ + .b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary { + border-top: solid 1px #ccc; } + + .b2b-header-tabs .header-tertiary:after { + content: ''; + clear: both; + display: block; } + + .b2b-header-tabs .header-tertiary li { + display: inline-block; + padding: 0; + float: left; } + + .b2b-header-tabs .header-tertiary li a { + color: #333; + display: block; + padding: 7px 15px; + max-width: 228px; } + + .b2b-header-tabs .header-tertiary li label { + text-align: left; + display: block; + font-size: 14px !important; + font-weight: bold; + color: #857B7B; + padding: 15px 0 0 15px; } + + /** Quarternary Level Menu **/ + .b2b-header-tabs .header-quarternary { + width: 100%; + float: left; } + + .b2b-header-tabs .header-quarternary li { + padding-left: 15px; + font-family: "Omnes-ECOMP-W02", Arial; + display: none; } + + .b2b-header-tabs .header-quarternary li.active { + display: block; } + + .b2b-header-tabs .header-quarternary li a { + color: #666666; + font-size: 14px; + padding: 0px 10px 10px 10px; } + + /** Skip Navigation**/ + .b2b-header-tabs .header__item.skip { + padding: 0; + display: inline-block; + cursor: default !important; } + + .b2b-header-tabs .header__item.skip a { + color: transparent; + font-size: 12px; + line-height: 15px; + text-decoration: none; } + + .b2b-header-tabs .header__item.skip a:focus { + color: #fff; + outline: 2px solid #0578ae; } + + /** Dropdown css inside Header ****/ + .b2b-header-tabs .selectWrap { + min-width: 150px; } + + .b2b-header-tabs .selectWrap button.awd-select, .b2b-header-tabs .selectWrap input.awd-select { + height: 36px; + line-height: 31px; + font-size: 1rem; + display: inline-block; } + + .b2b-header-tabs .selectWrap .awd-select-list { + background-color: #fff; + color: #333; + -webkit-transition: opacity .2s ease-out; + -moz-transition: opacity .2s ease-out; + transition: opacity .2s ease-out; + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176); } + + /* + * responsive header media queries + */ + @media screen and (max-width: 1100px) { + .b2b-header-tabs .globe-text { + display: none; } + .b2b-header-tabs .header__item.profile { + padding-left: 15px; + float: none; } + .b2b-header-tabs .header__items { + padding-top: 0px; } } + + @media screen and (max-width: 950px) { + .header__item.profile { + top: 20px; } + .b2b-header-tabs { + height: 90px; } + .header__item .selectWrap { + bottom: 15px; } + .b2b-header-tabs .header__items { + padding-top: 25px; } + .b2b-header-tabs .header__item .header-secondary-wrapper, .b2b-header-tabs .header__item .header-tertiary-wrapper { + top: 80px; } + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { + top: 35px; } + .b2b-header-tabs .header__item.b2b-headermenu a.menu__item { + padding-bottom: 30px; } + .b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary { + margin-top: -28px; } } + + /*************** Header - END ******************/ + .hp-container { + display: block; + max-width: 408px; } + .hp-container i:focus { + outline: thin dotted #666; } + .hp-container .icon-misc-pen { + cursor: pointer; } + .hp-container .icon-misc-trash { + cursor: pointer; } + + .hp-selected { + border-bottom: 1px solid #ccc; + border-bottom: 1px solid #ccc; + margin-bottom: 16px; + padding-bottom: 16px; } + .hp-selected .selected-days { + padding-bottom: 16px; } + .hp-selected .selected-days .day { + padding-top: 10px; + float: left; } + + .hp-checkbox { + padding-top: 20px; + margin: 16px auto 0 auto; } + .hp-checkbox label { + position: relative; + width: 20px; + margin-right: 34px; } + .hp-checkbox label span { + position: absolute; + top: -20px; + left: 0px; + margin-left: 0px; } + + .hp-dropdowns { + margin-top: 15px; + display: flex; + display: -webkit-flex; + display: -ms-flexbox; } + + .hp-buttons { + margin-top: 20px; + display: flex; + display: -webkit-flex; + display: -ms-flexbox; } + + .hp-dropdowns .radio-buttons { + margin-top: 30px; } + .hp-dropdowns .radio-buttons .radio { + margin-right: 15px; } + + + + /* TODO: Build a reference page for these classes */ + .font-regular { + font-family: "Omnes-ECOMP-W02", Arial !important; } + + .font-light { + font-family: "Omnes-ECOMP-W02-Light", Arial !important; } + + .font-italic { + font-family: "Omnes-ECOMP-W02-Italic", Arial !important; } + + .font-light-italic { + font-family: "Omnes-ECOMP-W02-Light-Italic", Arial !important; } + + .font-medium { + font-family: "Omnes-ECOMP-W02-Medium", Arial !important; } + + .font-medium-italic { + font-family: "Omnes-ECOMP-W02-Medium-Italic",Arial !important; } + + .font-reset { + font-style: normal; + font-variant: normal; + font-weight: normal; + text-transform: none; } + + .b2b-nav-menu { + background-color: #efefef; + border: 1px solid #efefef; + width: 230px; + font-size: 1.4rem; } + + .b2b-subnav-container > ul { + padding: 0px; } + + .b2b-subnav-content { + margin: 0; + margin-bottom: 10px; } + + .b2b-subnav-content > li { + border-bottom: 1px solid #999999; + position: relative; + cursor: pointer; } + + .b2b-subnav-content > li > a { + text-decoration: none; + line-height: 18px; + display: block; + padding: 10px; } + + .b2b-subnav-content > li > a.expand { + color: #333; } + + .b2b-subnav-content > li ul { + overflow: hidden; + max-height: 0; + transition-duration: 0.5s; + transition-timing-function: cubic-bezier(0, 1, 0.5, 1); } + + .b2b-subnav-content > li ul.expand { + transition-duration: 0.7s; + transition-timing-function: ease-in-out; + max-height: 1000px; + overflow: hidden; } + + .b2b-subnav-content > li > a:focus, .b2b-subnav-content > li ul > li > a:focus { + outline: thin dotted #666; } + + .b2b-subnav-content > li ul > li > a { + line-height: 18px; + padding: 8px 0; + display: block; + outline-offset: -4px; + padding-left: 10px; } + + .b2b-icon-primary-plus-minus { + display: inline-block; + height: 20px; + margin-right: 10px; + padding: 0; + position: absolute; + right: 0px; + top: 10px; + vertical-align: middle; + width: 20px; } + + @media (min-width: 320px) and (max-width: 767px) { + .b2b-nav-menu { + background-color: #fff; + border: 1px solid white; + width: 100%; } + .b2b-subnav-content > li { + padding-left: 10px; } + .b2b-subnav-container > ul:first-child { + border-top: 1px solid #999; } + .b2b-icon-primary-plus-minus { + right: 10px; } + .b2b-subnav-content > li li > a.active { + color: #0574ac; + text-decoration: none; + font-family: "Omnes-ECOMP-W02", Arial; } } + + .b2b-list-box-item { + white-space: nowrap; + margin: 1px; + border: 1px solid transparent; + outline: none; + visibility: inherit; + display: inherit; + text-align: left; + overflow: hidden; + cursor: pointer; + padding: 5px 0 5px; + padding-left: 15px; + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; } + .b2b-list-box-item:focus { + border: 2px solid #5e8cb3; } + + .b2b-list-box-item--selected { + background-color: #cfdde9; } + + .btn.disabled[ddh-load-button] { + line-height: 46px; + padding: 0 19px 0 18px; } + + .btn.disabled[ddh-load-button] { + color: #666666; } + + .icon-primary-spinner-ddh.large { + height: 50px; + width: 50px; } + + .icon-primary-spinner-ddh.small { + height: 30px; + width: 30px; } + + .icon-primary-spinner-ddh { + -webkit-animation: 1s linear infinite spinner; + animation: 1s linear infinite spinner; + background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzNiAzNiIgaWQ9InN2Zy1zcGlubmVyIiB4PSIwcHgiIHk9IjBweCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CiAgIDxwYXRoIGZpbGw9IiNGNUY1RjUiIGQ9Ik0xOCAzNkM4LjEgMzYgMCAyNy45IDAgMThTOC4xIDAgMTggMHMxOCA4LjEgMTggMTgtOC4xIDE4LTE4IDE4em0wLTMxLjVjLTcuNSAwLTEzLjUgNi0xMy41IDEzLjVTMTAuNiAzMS41IDE4IDMxLjVjNy41IDAgMTMuNS02LjEgMTMuNS0xMy41IDAtNy41LTYtMTMuNS0xMy41LTEzLjV6Ii8+CiAgIDxwYXRoIGZpbGw9IiMwNTY4QUUiIGlkPSJzcGlubmVyIiBkPSJNMzAuNyA1LjNsLTMuMSAzLjJjMi40IDIuNCAzLjkgNS44IDMuOSA5LjUgMCA3LjQtNi4xIDEzLjUtMTMuNSAxMy41UzQuNSAyNS40IDQuNSAxOCAxMC42IDQuNSAxOCA0LjVWMEM4LjEgMCAwIDguMSAwIDE4czguMSAxOCAxOCAxOCAxOC04LjEgMTgtMThjMC01LTItOS41LTUuMy0xMi43eiIgdHJhbnNmb3JtPSIiPiAgICAgIAogICA8L3BhdGg+Cjwvc3ZnPg==); } + + .btn-small .icon-primary-spinner-ddh { + height: 30px !important; + width: 30px !important; } + + .btn-small .icon-primary-spinner { + height: 30px; + width: 30px; } + + .load-backdrop { + position: absolute; + top: 50%; + left: 50%; } + + .small-modal-loader { + width: 420px !important; + height: 212px !important; + text-align: center; } + + .small-modal-loader .icon-primary-spinner { + margin-bottom: 5px; } + + .body.styled-by-modal { + position: fixed; } + + .b2b-modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: -1; } + + .b2b-modal-backdrop.fade { + background-color: #000; + opacity: 0; + filter: alpha(opacity=0); + transition: all 0.3s linear 0s; } + + .b2b-modal-backdrop.fade.in { + z-index: 1040; + opacity: 0.7; + filter: alpha(opacity=70); + background-color: #000; + transition: opacity 0.3s linear 0s; } + + .modalwrapper { + height: 100%; + width: 100%; + left: 0; + overflow-y: hidden; + position: absolute; + right: 0; + padding: 20px; + top: 0; + z-index: -1; } + + .modalwrapper.active { + z-index: 1050; + overflow-y: auto; } + + .modal { + background-clip: padding-box; + background-color: #ffffff; + border: 1px solid rgba(0, 0, 0, 0.1); + border-radius: 8px; + box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.4); + margin: 0 auto; + /*margin-bottom:10%;*/ + outline: medium none; + /*position: absolute;*/ + height: 0; + min-height: 150px; + overflow: hidden; + /*top: 10%;*/ + width: 100%; + z-index: -1; } + + .modalwrapper.modal-docked .modal { + max-height: 80%; + height: 80%; + overflow: hidden; + top: 0; } + + .modal.fade.in { + position: relative; + height: auto; + overflow: auto; + top: 10%; + z-index: 1060; + transition: opacity .5s linear 0s; } + + .modal.fade.in.modal-landscape { + overflow-y: auto; } + + .modal.fade { + transition: opacity .5s linear 0s; } + + .fade.in { + opacity: 1; } + + .fade { + opacity: 0; } + + .b2b-modal-header { + align-items: center; + border-radius: 8px 8px 0 0; + display: flex; + min-height: 60px; + overflow: hidden; + padding: 30px 46px 30px 30px; + position: relative; } + + .b2b-modal-header > h2 { + line-height: 1; + margin: 0; + padding: 0; } + + .modal-header-portrait { + -webkit-overflow-scrolling: auto; } + + .modal-header-landscape { + -webkit-overflow-scrolling: auto; } + + .b2b-modal-body { + -webkit-overflow-scrolling: touch; + padding: 0 30px 20px; + position: relative; + width: auto; } + + .b2b-modal-body:focus { + outline: 1px dotted #333333; } + + .modal-form { + margin-bottom: 0; } + + .b2b-modal-footer { + background-color: #fff; + width: 100%; + padding: 0 30px; + border-radius: 0; + position: absolute; + bottom: 0; } + + :not(.modal-docked) .b2b-modal-footer { + position: relative; } + + .modal-landscape .b2b-modal-footer { + position: relative; } + + .b2b-modal-footer .cta-button-group { + display: flex; + justify-content: flex-end; + padding: 20px 0 5px; + width: 100%; + border-top: 1px solid #d2d2d2; } + + .b2b-modal-footer .cta-button-group .btn { + margin-left: auto; + margin-right: auto; + float: right; + margin-left: 10px; } + + .b2b-modal-footer .cta-button-group .marginLeft0 { + margin-left: 0px; } + + .b2b-modal-footer .cta-button-group .btn-footer-left { + margin-right: auto; } + + .b2b-modal-footer .cta-button-group .btn + .btn { + margin-right: 0 !important; } + + [class*="modal-"] { + width: 100%; } + + .modal-small { + max-width: 420px; } + + .modal-medium { + max-width: 620px; } + + .modal-large { + max-width: 720px; } + + .modal-xlarge { + max-width: 860px; } + + .modal-jumbo { + max-width: 1000px; } + + .modalwrapper.modal-docked { + height: 100%; + display: flex; + align-items: center; } + + .modalwrapper.modal-docked .b2b-modal-body { + height: 80%; + overflow-y: scroll; + padding-bottom: 60px; } + + .modalwrapper.modal-docked .modal { + max-height: 80%; + height: 80%; + overflow: hidden; + top: 0; } + + .modalwrapper.modal-docked .b2b-modal-body > *:last-child { + margin-bottom: 60px; } + + @media (max-width: 767px) { + .modalwrapper { + padding: 15px; + overflow-x: hidden; } + .modal.fade.in { + top: 0; + right: 0; + left: 0; + margin-bottom: 15px; + border: none; } + .b2b-modal-header { + padding: 20px 46px 20px 15px; } + .b2b-modal-body { + width: 100%; + padding: 0 15px 15px; } + .modalwrapper.modal-docked { + position: absolute; + height: 100%; + padding: 0; } + .modalwrapper.modal-docked .modal.fade.in { + margin-bottom: 0; + width: 100% !important; + max-height: 100%; + height: 100%; + border-radius: 0; } + .modalwrapper.modal-docked .b2b-modal-body { + overflow-y: scroll; + height: 100%; } + .modalwrapper.modal-docked.modal-landscape { + overflow-y: hidden; + position: fixed; } + .modalwrapper.modal-docked.modal-landscape .modal { + overflow-y: scroll; + max-width: 100%; } + .modalwrapper.modal-docked.modal-landscape .b2b-modal-body { + height: auto; + overflow-y: hidden; } + .b2b-modal-footer { + padding: 0 15px; } + .b2b-modal-footer .cta-button-group { + display: block; + padding: 15px 0; } + .b2b-modal-footer .cta-button-group .btn { + float: none; } + .b2b-modal-footer .cta-button-group .btn + .btn { + margin-bottom: 0; } + .b2b-modal-footer .cta-button-group a.visible-phone { + align-items: center; + display: flex !important; + height: 42px; + justify-content: center; } } + + .b2b-modal-footer > .cta-button-group { + line-height: 40px; } + + .ajaxed, + .modal.fade.in .b2b-modal-header, + .modal.fade.in .b2b-modal-body, + .modal.fade.in .b2b-modal-footer { + animation-duration: 0.01s; + -o-animation-duration: 0.01s; + -ms-animation-duration: 0.01s; + -moz-animation-duration: 0.01s; + -webkit-animation-duration: 0.01s; + animation-name: DOMinsertion; + -o-animation-name: DOMinsertion; + -ms-animation-name: DOMinsertion; + -moz-animation-name: DOMinsertion; + -webkit-animation-name: DOMinsertion; } + + .monthselector thead tr th { + min-width: 46px; } + + .monthselector thead tr:after { + content: ""; + position: absolute; + left: 20px; + top: 52px; + height: 1px; + width: 85%; + border-bottom: 1px solid #ccc; } + + .monthselector tbody tr:last-child { + height: 50px; } + + .monthselector td.day { + margin: 1px 4px !important; + width: 64px !important; } + + .monthselector .datepicker-switch { + width: 195px !important; } + + .monthselector .show-date { + width: 30px !important; } + + .monthselector button.faux-input { + width: 100%; } + .monthselector button.faux-input:focus { + border: 1px solid #0574ac; } + .monthselector button.faux-input:disabled { + cursor: not-allowed; } + + .monthselector .cta-button-group { + padding: 0 20px; } + .monthselector .cta-button-group a { + margin-right: 20px; } + + .monthselector .day.active .show-date:after, .monthselector .day:focus .show-date:after, .monthselector .due-date.disabled .show-date:after { + height: 30px; + left: 9px !important; + top: 0; + width: 42px !important; } + + .monthselector .disabled.day:focus .show-date:after { + border: none; } + + .monthselector .icon-primary-calendar { + display: block; } + + .b2b-ml-nav { + padding: 0 10px 0 10px; + width: 320px; } + + .b2b-ml-nav ul { + list-style: none; + list-style-type: none; } + + .b2b-ml-nav a { + display: block; + padding: 0 0 5px 30px; + line-height: 22px; + margin-left: -10px; + color: #0568ae; + font-size: 1.4rem; } + + .b2b-ml-nav a:focus { + outline-offset: 1px; } + + .b2b-ml-nav li:focus { + outline: none; } + + .b2b-ml-nav li:focus > a { + outline: thin dotted #666; + outline-offset: 1px; } + + .b2b-ml-nav ul li { + border-left: 1px solid #ccc; } + + .b2b-ml-nav ul ul { + padding: 0 0 0 20px; } + + .b2b-ml-nav ul > li { + position: relative; + line-height: 18px; } + + .b2b-ml-nav a > span { + background-color: #FFF; + display: inline; + margin: 0; + padding: 0; + position: absolute; + left: -11px; + top: 0; } + + .b2b-ml-nav a > span > i { + font-size: 20px; } + + .b2b-ml-nav a:only-child > span { + left: -6px; + border-radius: 50%; + line-height: 7px; + top: 5px; } + + .b2b-ml-nav a:only-child > span > i { + background-color: inherit; + background: #fff; + font-size: 10px; } + + .b2b-ml-nav ul li:first-child > a:only-child > span { + left: -6px; + border-radius: 50%; + line-height: 12px; + top: 0px; } + + .b2b-ml-nav li a + ul { + display: none; } + + .b2b-ml-nav li a.active + ul { + display: block; } + + .b2b-ml-nav .selected { + color: #333; } + + /*to overide ng-doc inline property for library demo - TODO: Move to docs.css*/ + .b2b-ml-nav a [class^="icon-primary-"], a [class*=" icon-primary-"], a [class^="icon-primary-"]:before, a [class*=" icon-primary-"]:before { + display: inline-block; } + + .b2b-alerts-messages { + background-color: #fff; + border-radius: 8px; + height: auto; } + .b2b-alerts-messages h3 { + color: #333 !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + margin-bottom: 0 !important; + margin: 1em 0 5px; + line-height: 27px; + font-size: 18px; } + .b2b-alerts-messages h4 { + color: #333 !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + margin-bottom: 0 !important; } + .b2b-alerts-messages .alert-info { + background-color: #0574ac; + border: 0; } + .b2b-alerts-messages .alert-error { + background-color: #cf2a2a; + border: 0; } + .b2b-alerts-messages .alert-success { + background-color: #1b7e28; + border: 0; } + .b2b-alerts-messages div:nth-child(2) { + padding: 0 0 15px 10px; + vertical-align: baseline; } + .b2b-alerts-messages .close:before { + color: #767676; } + .b2b-alerts-messages p { + font-size: 14px; + color: #333; + font-family: "Omnes-ECOMP-W02", Arial; } + .b2b-alerts-messages p a { + color: #333; } + .b2b-alerts-messages .btn-small { + margin-bottom: 0px; } + + .b2b-alerts-success { + border: 1px solid #1b7e28; } + + .b2b-alerts-error { + border: 1px solid #cf2a2a; } + + .b2b-alerts-info { + border: 1px solid #0574ac; } + + /* TODO: Rearange this and move to patches if needed */ + .b2b-breadcrumb-css-override > li { + margin-right: 24px; } + + .b2b-breadcrumb-css-override li > * { + float: left !important; } + + .b2b-css-override ul.nav-tabs { + margin-bottom: 0; } + + .b2b-css-override div.tab-content { + margin-top: 0; + border-top: none; } + + .b2b-css-override .tab-content .prettyprint, .b2b-css-override .usage .prettyprint { + max-height: 500px; + overflow-y: auto; } + + .b2b-top-nav-buttons-css-override { + margin-bottom: 0; + margin-top: 2px; } + + .b2b-auto-width { + width: auto !important; } + + .b2b-toggle-header-active { + color: #0568ae; } + + .b2b-toggle-header-inactive { + color: #333333; } + + .b2b-toggle-header-icon { + cursor: pointer; } + + .tab-content > .tab-pane { + display: none; } + + .tab-content > .active { + display: block; } + + .icon-primary-circle:before { + background-image: url("data:image/svg+xml,%3Csvg%20baseProfile%3D%22tiny%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%3E%3Ccircle%20fill%3D%22transparent%22%20stroke%3D%22%23666%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2218%22%20cy%3D%2218%22%20r%3D%2216%22%2F%3E%3C%2Fsvg%3E"); + content: ""; + position: absolute; + top: 0; + z-index: 1; } + + .ds2-no-colors .icon-primary-circle:before { + background-image: none; + content: "\e902"; } + + i:focus { + outline: thin dotted #666; } + + .p-col-md-12 { + width: 50%; } + + .pager__item { + border-radius: 0; + cursor: default; + display: inline-block; + margin: 5px; + width: 22px; + height: 23px; + vertical-align: baseline; } + + .pager { + padding-top: 10px; + padding-bottom: 20px; + text-align: center; + margin: 0 auto; } + + .pager__item--input { + color: #067ab4; + max-height: 32px; + max-width: 40px; + padding-left: 0; + padding-right: 0; + text-align: center; + margin-left: 10px; } + + .row.section-row { + margin-bottom: 20px; } + + .pager__item--active { + border-bottom: 2px solid #0574ac; + border-radius: 0; + color: #333333; } + + .pager a.pager__item--active:hover { + cursor: default; } + + .pager a:hover, .pager a:focus { + text-decoration: none; + color: #333333; + cursor: pointer; } + + .pager a.disabled:hover, .pager a.disabled:focus { + cursor: not-allowed; } + + .row.section-row.b2b-page { + display: block; } + + a.pager__item--next:focus, a.pager__item--prev:focus { + text-decoration: none; + border: 0; } + + .pager__item--next, .pager__item--prev { + margin: 5px; + padding: 1.5px 6px 1.5px 6px; } + + .pager .disabled i { + pointer-events: none; + cursor: default; + color: #c4c4c4; } + + .fieldLabel { + color: #666666; } + + .fieldLabel input { + color: #666666; } + + .pSelect { + float: right; + width: 150px; } + + .numericResult { + margin-bottom: 20px; + font-size: 1.6rem; + margin-top: 20px; + display: inline-block; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + .mobile-view > .pager__item { + margin: 5px 10px; + width: 24px; + height: 34px; + vertical-align: middle; + line-height: 34px; } + + .fade1, .fadel { + opacity: 0.4; } + + .fade2, .fadesl { + opacity: 0.6; } + + h4#pagination-truncated { + margin-top: 50px; } + + h4#pagination-large-count { + margin-top: 50px; } + + .p-col-md-12 input { + margin-left: 20px; } + + .pager a .icon-primary-right:before { + display: inline-block; } + + .pager a .icon-primary-left:before { + display: inline-block; } + + .page-heading { + background: white none repeat scroll 0 0; + margin-bottom: -12px; + padding-left: 10px; + padding-right: 10px; + position: relative; } + + .numericResult:focus { + outline: 1px dotted #0574ac; } + + .page-heading-group { + color: #ef6f00; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + .pager > div > span.fieldLabel { + margin-left: 18px; } + + .pager .fieldLabel .btn-arrow { + top: 0; + left: 10px; + margin-left: -5px; } + + .b2b-p-col-md-12 { + width: 50%; } + .b2b-p-col-md-12 input { + margin-left: 20px; } + + .b2b-pager__item { + border-radius: 0; + cursor: default; + display: inline-block; + margin: 0px 5px 0 5px; + height: 23px; + vertical-align: baseline; } + + .b2b-pager__item--noclick { + pointer-events: none !important; + cursor: default !important; } + + .b2b-pager__item--droppable { + pointer-events: all !important; } + + .b2b-pager { + padding-top: 10px; + padding-bottom: 20px; + text-align: center; + margin: 0 auto; } + .b2b-pager a:hover { + text-decoration: none; + color: #333333; + cursor: pointer; } + .b2b-pager a:focus { + text-decoration: none; + color: #333333; + cursor: pointer; } + .b2b-pager a .icon-primary-right:before { + display: inline-block; } + .b2b-pager a .icon-primary-left:before { + display: inline-block; } + .b2b-pager .disabled i { + pointer-events: none; + cursor: default; + color: #c4c4c4; } + + .b2b-pager__item--input { + color: #067ab4; + max-height: 32px; + max-width: 60px; + padding-left: 0; + padding-right: 0; + text-align: center; + margin-left: 5px; } + + .row.section-row { + margin-bottom: 20px; } + + .b2b-pager__item--active { + border-bottom: 2px solid #0574ac; + border-radius: 0; + color: #333333; } + + .row.section-row.b2b-page { + display: block; } + + a.b2b-pager__item--next:focus { + text-decoration: none; + border: 0; } + + a.b2b-pager__item--next-disabled { + outline: 0; } + + a.b2b-pager__item--next-disabled > [class^="icon-primary-"] { + color: #cccccc; + cursor: not-allowed; + outline: 0; } + + a.b2b-pager__item--prev:focus { + text-decoration: none; + border: 0; } + + a.b2b-pager__item--prev-disabled { + outline: 0; } + + a.b2b-pager__item--prev-disabled > [class^="icon-primary-"] { + color: #cccccc; + cursor: not-allowed; } + + .b2b-pager__item--next { + padding: 1.5px 0px 1.5px 0px; } + + .b2b-pager__item--prev { + padding: 1.5px 0px 1.5px 0px; } + + .fieldLabel { + color: #666666; } + .fieldLabel input { + color: #666666; } + .fieldLabel .btn-arrow { + top: 0; + left: 10px; } + + .b2b-pSelect { + float: right; + width: 150px; } + + .b2b-numericResult { + margin-bottom: 20px; + font-size: 1.6rem; + margin-top: 20px; } + + .b2b-mobile-view > .b2b-pager__item { + margin: 5px 10px; + min-width: 23px; + height: 34px; + vertical-align: middle; + line-height: 34px; } + + .b2b-fade1 { + opacity: 0.4; } + + .b2b-fade2 { + opacity: 0.6; } + + .b2b-fadesl { + opacity: 0.6; } + + h4#b2b-pagination-truncated { + margin-top: 50px; } + + h4#b2b-pagination-large-count { + margin-top: 50px; } + + .b2b-page-heading { + background: white none repeat scroll 0 0; + margin-bottom: -12px; + padding-left: 10px; + padding-right: 10px; + position: relative; } + + .b2b-numericResult:focus { + outline: 1px dotted #0574ac; } + + .b2b-page-heading-group { + color: #ef6f00; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + .b2b-pager > div > span.fieldLabel { + margin-left: 18px; } + + .b2b-go-to-page { + margin-top: 14px; } + + .b2b-go-to-page-inline { + display: inline-block; } + + input.b2b-phone-mask-input { + padding-right: 15px; } + input.b2b-phone-mask-input:hover, input.b2b-phone-mask-input:focus { + padding-right: 15px; } + + /************************** Start - Should be removed after the styling in global is fixed *******************/ + input::-ms-clear { + display: none; } + + /************************** End - Should be removed after the styling in global is fixed *******************/ + @media (max-width: 767px) { + input::-ms-clear { + display: block; } } + + .pivot-link-group { + background-color: #5a5a5a; + border-top: 1px solid #959595; } + + .pivot-links > li { + border-bottom: 1px solid #959595; } + + .pivot-links > li > a { + color: #fff; + display: block; + padding: 12px 15px 10px; + line-height: normal; } + + .b2b-profile-block-container { + min-height: 200px; + height: auto; + background-color: #fff; + border-radius: 8px; + border: 1px solid #ccc; + box-shadow: 0px 1px 1px 1px #ccc; + display: inline-table; + margin: 15px 15px; } + + .b2b-profile-block-details p, .b2b-profile-block-details div { + padding: 2px 7px; + font-size: 1.4rem; } + + .b2b-profile-block-details .radio-label, .b2b-profile-block-details a { + font-size: 1.4rem; } + + .b2b-profile-block-details p label, .b2b-profile-block-details p span { + padding-left: 10px; } + + .b2b-profile-block-footer { + margin-bottom: 12px; + margin-top: 5px; + height: 35px; } + + .b2b-profile-block-details p { + word-wrap: break-word; + height: 61px; } + .b2b-profile-block-details p:first-child { + margin-top: 10px; } + .b2b-profile-block-details p:after { + content: ' '; + display: block; + border: 0.2px solid #ccc; + margin-top: 12px; } + + .b2b-profile-block-details .radio { + margin-left: 15px; + height: 30px; } + + .b2b-approval-icon { + color: #1b7e28; + float: right; + position: relative; + left: 10px; } + .b2b-approval-icon i { + color: #1b7e28; + float: right; } + + .b2b-profile-link { + float: right; + position: relative; + left: -4px; } + + a.link-profile { + position: relative; + left: -5px; + float: right; + margin-bottom: 16px; } + + .b2b-profile-block-radio { + position: relative; + top: -5px; } + + .b2b-profile-card { + min-width: 229px; + min-height: 354px; + margin: 10px; + border: solid 1px #CCC; + font-family: "Omnes-ECOMP-W02", Arial; + display: inline-block; + vertical-align: top; } + .b2b-profile-card .top-block { + padding: 15px 20px; + + max-height: 153px; } + .b2b-profile-card .bottom-block { + padding: 15px 20px 15px 20px; + background-color: #fff; } + .b2b-profile-card .profile-image { + background: #e4e4e4; + margin-bottom: 15px; + text-align: center; } + .b2b-profile-card .profile-image .default-img { + display: inline-block; + width: 60px; + height: 60px; + margin-bottom: 10px; + border: 6px solid #fff; + border-radius: 99em; + -webkit-border-radius: 99em; + -moz-border-radius: 99em; + /* background-color: #eee; */ } + + .profile-image img { + display: inline-block; + width: 60px; + height: 60px; + margin-bottom: 10px; + border: 6px solid #fff; + border-radius: 99em; + -webkit-border-radius: 99em; + -moz-border-radius: 99em; + /* background-color: #eee; */ } + + .b2b-profile-card .profile-image .default-img { + font-family: "Omnes-ECOMP-W02", Arial; + color: #333; + background-color: #fff; + font-size: 32px; + line-height: 22px; + padding: 5px; + padding-top: 13px; + width: 60px; + height: 60px; + text-transform: uppercase; } + + .b2b-profile-card .profile-image .name { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 16px; + color: #333; + text-align: center; + margin-bottom: 5px; + margin-top: 5px; + overflow: hidden; + word-break: break-word; + white-space: normal; + text-transform: capitalize; } + + .b2b-profile-card .profile-image .status-icon { + border-radius: 10px; + border: 1px solid #fff; + margin: 0 3px 0 0; + width: 10px; + height: 10px; + display: inline-block; + vertical-align: middle; } + + .b2b-profile-card .profile-image .status { + font-size: 12px; + line-height: 15px; + text-align: center; + margin: 0 15px 0 0; + color: #444; } + + .b2b-profile-card .status .circle { + width: 10px; + height: 10px; + border-radius: 50%; + margin: 30px 6px 0px 20px; + text-align: center; + background-color: #444; } + + .b2b-profile-card .profile-image .status-green { + background-color: #0c0; } + + .b2b-profile-card .profile-image .status-red { + background-color: red; } + + .b2b-profile-card .profile-image .status-blue { + background-color: #00f; } + + .b2b-profile-card .profile-image .status-yellow { + background-color: #ff0; } + + .b2b-profile-card .profile-image .status .status-badge { + margin-left: 5px; + border: dotted 1px #444; + background-color: transparent; + font-weight: 400; + color: #444; + height: 17px; + padding: 0 5px; + font-size: 11px; + padding-left: 5px; + padding-right: 5px; } + + .b2b-profile-card .profile-details { + background: #fff; } + .b2b-profile-card .profile-details label { + display: block; + cursor: text; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-weight: bolder; + font-size: 14px; + color: #333; + padding: 0; + margin: 0; } + .b2b-profile-card .profile-details div { + margin: 0; + font-size: 14px; + color: #333; + padding-bottom: 6.5px; } + + .b2b-profile-card .b2b-add-user { + background: white; + border-style: dotted; + font-size: 16px; + color: #333; + position: relative; } + .b2b-profile-card .b2b-add-user i { + font-size: 30px; + padding-bottom: 15px; } + + .b2b-profile-card .atcenter { + cursor: pointer; + margin-top: 60%; + vertical-align: middle; + text-align: center; } + + .b2b-profile-card .tooltip { + cursor: pointer; } + .b2b-profile-card .tooltip .helpertext { + position: relative; + color: white; } + + .b2b-profile-card .tooltip-wrapper { + position: relative; } + + /* Overrides for tooltip absolute positioning */ + @media (min-width: 1025px) { + .b2b-profile-card .tooltip-size-control { + width: 100% !important; } } + + @-webkit-keyframes progress-bar-stripes { + from { + background-position: 0 0; } + to { + background-position: 80px 0; } } + + @keyframes progress-bar-stripes { + from { + background-position: 0 0; } + to { + background-position: 80px 0; } } + + .progress { + background-color: #e4e4e4; + border-radius: 4px; + height: 14px; + margin-bottom: 20px; + min-width: 250px; + overflow: hidden; + padding: 0; + position: relative; } + + a .progress { + margin-bottom: 0; } + + .progress .bar { + background-color: #666; + border-radius: 4px; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + height: 100%; + width: 0; } + + .progress-arrow { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + -webkit-justify-content: flex-end; + -ms-flex-pack: end; + justify-content: flex-end; } + + .progress-link + .usage-bar { + margin-top: 5px; } + + .progress-success .bar, .progress .bar-success { + background-color: #1b7e28; } + + .progress-warning .bar, .progress .bar-warning { + background-color: #ef6f00; } + + .progress-danger .bar, .progress .bar-danger { + background-color: #cf2a2a; } + + .progress.increment { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; } + + .progress.increment .bar:first-child:not(:last-child) { + border-right: none; + border-radius: 4px 0 0 4px; } + + .progress.increment .bar:last-child:not(:first-child) { + border-left: none; + border-radius: 0 4px 4px 0; } + + .progress.increment .bar + .bar:not(:last-child) { + border-left: none; + border-right: none; + border-radius: 0; } + + .progress.increment .bar:not(:first-child) { + border-left: 1px solid white !important; } + + .usage-bar { + display: table; + float: none; + width: 100%; + margin-bottom: 1px; } + + .usage-bar > .usage-text { + display: table-cell; + width: 1%; } + + .progress + .usage-bar { + margin-top: -15px; } + + .usage-bar .usage-text { + font-size: 1.4rem; } + + .usage-bar .usage-text:first-child { + white-space: nowrap; } + + .usage-bar .usage-text.text-right { + vertical-align: top; + font-size: 1.4rem; + width: auto !important; } + + .usage-bar .usage-text.text-right:before { + content: ""; + display: table; + height: .1em; } + + .usage-bar.billing-cycle .usage-text { + font-size: 1.4rem; } + + .usage-bar.billing-cycle .usage-text.text-right { + vertical-align: bottom; } + + .progress.autocolor [data-percentage="1"], .progress.autocolor [data-percentage="2"], .progress.autocolor [data-percentage="3"], .progress.autocolor [data-percentage="4"], .progress.autocolor [data-percentage="5"], .progress.autocolor [data-percentage="6"], .progress.autocolor [data-percentage="7"], .progress.autocolor [data-percentage="8"], .progress.autocolor [data-percentage="9"], .progress.autocolor [data-percentage="10"] .progress.autocolor [data-percentage^="2"], .progress.autocolor [data-percentage^="3"], .progress.autocolor [data-percentage^="4"], .progress.autocolor [data-percentage^="5"], .progress.autocolor [data-percentage="60"], .progress.autocolor [data-percentage="61"], .progress.autocolor [data-percentage="62"], .progress.autocolor [data-percentage="63"], .progress.autocolor [data-percentage="64"] { + background-color: #1b7e28; } + + .progress.autocolor [data-percentage="65"], .progress.autocolor [data-percentage="66"], .progress.autocolor [data-percentage="67"], .progress.autocolor [data-percentage="68"], .progress.autocolor [data-percentage="69"], .progress.autocolor [data-percentage^="7"], .progress.autocolor [data-percentage^="8"] { + background-color: #ef6f00; } + + .progress.autocolor [data-percentage^="9"], .progress.autocolor [data-percentage="100"] { + background-color: #cf2a2a; } + + .b2b-seek-bar-container { + position: relative; } + .b2b-seek-bar-container div { + position: absolute; } + .b2b-seek-bar-container .b2b-seek-bar-track-container { + width: 100%; } + .b2b-seek-bar-container .b2b-seek-bar-track { + width: 100%; + height: 6px; + background-color: #cccccc; + border-radius: 10px; } + .b2b-seek-bar-container .b2b-seek-bar-track-fill { + width: 100%; + height: 6px; + background-color: #cccccc; + border-radius: 10px; + width: 0; + background-color: #157BB2; + transition: width 0s linear; } + + .seek-bar-container .seek-bar-knob-container { + transition: left 0s linear; } + + .b2b-seek-bar-container .b2b-seek-bar-knob { + width: 14px; + height: 14px; + border-radius: 10px; + top: -4px; + left: -8px; + border: 1px solid #cccccc; + background: white; + cursor: pointer; } + + .b2b-seek-bar-container .b2b-seek-bar-knob:focus { + outline: thin dotted #666; } + + .b2b-seek-bar-container.vertical { + width: 100%; + height: 100%; + margin: 0 auto; + position: relative; + border-radius: 10px; } + .b2b-seek-bar-container.vertical .b2b-seek-bar-track-container { + position: relative; + height: 100%; } + .b2b-seek-bar-container.vertical .b2b-seek-bar-track { + position: absolute; + height: 100%; } + .b2b-seek-bar-container.vertical .b2b-seek-bar-track-fill { + position: absolute; + bottom: 0; + height: 0; + width: 100%; } + .b2b-seek-bar-container.vertical .b2b-seek-bar-knob-container { + transition: bottom .01s linear; + position: relative; + bottom: 0; } + .b2b-seek-bar-container.vertical .b2b-seek-bar-knob { + position: absolute; + border-radius: 10px; + top: -7px; + left: -4px; } + + .form-search .search-query { + width: 100% !important; } + + .form-search .well { + margin-top: 0; } + + .form-search > ul.nav > li.section { + min-height: 20px !important; } + + input.b2b-search-input-field { + margin-bottom: 0px; } + + .search-suggestion-list { + background-color: #FFFFFF; + border: 1px solid #ccc; + border-radius: 0 0 6px 6px; + box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); + margin-top: -5px; + max-height: 400px; + overflow-x: hidden; + overflow-y: auto; + padding: 15px 0; + position: absolute; + width: 100%; + z-index: 1000; } + .search-suggestion-list > li.active { + background-color: #cccccc; } + .search-suggestion-list:empty { + display: none; } + + .b2b-search-hightlight { + font-weight: bold; } + + input[type="text"]::-moz-placeholder { + color: #767676; + font-family: "Omnes-ECOMP-W02-Italic", Arial; } + + input[type="text"]:focus { + z-index: 1000; } + + input[type="text"] + .reset-field { + background-color: #FFFFFF; + height: 90%; + top: 5%; } + + .btn-search:focus { + outline: 1px dotted #0574ac; } + + .field-group input:not([type="button"])[disabled] ~ .btn-search { + background-color: #eee; } + + .btn-search[class*="btn"] { + background-color: #FFFFFF; + background-size: 20px 20px; + border-radius: 0 1.5rem 1.5rem 0; + height: 3rem; + min-width: 4.4rem !important; + right: 0.15rem; + top: 0.15rem; + width: 4.4rem; } + + .search-suggestion-wrapper { + margin-bottom: 15px; + position: relative; } + .search-suggestion-wrapper .no-result { + padding: 0px 15px; } + + .search-suggestion-item { + color: #333333; + line-height: 4rem; + padding: 0 15px; + position: relative; + z-index: 1000; } + .search-suggestion-item:hover { + background-color: #e4e4e4; + cursor: pointer; } + .search-suggestion-item:focus { + background-color: #e4e4e4; + cursor: pointer; } + .search-suggestion-item a { + color: #333333; + text-decoration: none; } + + .btn-search i { + color: #767676; } + + input.b2b-search-input-field:focus ~ .btn-search > i, .btn-search:focus > i { + color: #0568ae; } + + button.btn-search[disabled] { + cursor: not-allowed; } + button.btn-search[disabled] i { + color: #767676; } + + .innershadow { + -webkit-background-blend-mode: mutilply; + box-shadow: 0 3px 0 2px rgba(0, 0, 0, 0.08); } + + .linkSelectorModule { + position: relative; + height: 32px; + line-height: 20px; + border: 0px; + width: auto; + display: block; } + .linkSelectorModule .icon-primary-down { + font-size: 23px; + margin-top: -10px; + position: absolute; + top: 50%; + margin-left: -30px; } + .linkSelectorModule .selectModule { + background-color: transparent; + border: none; + color: #0568ae; + cursor: pointer; + border: 1px solid transparent; + box-shadow: none; + padding-right: 35px; + position: relative; + user-select: none; + font-size: 1.6rem; } + .linkSelectorModule .selectModule:focus { + border: 1px dotted #ccc; + box-shadow: none; + -moz-user-select: none; } + .linkSelectorModule .selectModule:hover { + text-decoration: underline; } + .linkSelectorModule .active + .moduleWrapper:before { + background-color: #FFFFFF; + border-color: #d2d2d2; + border-style: solid; + border-width: 1px 1px 0 0; + content: ""; + display: block; + height: 15px; + right: 122px; + margin: 0; + position: absolute; + top: -8px; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + width: 15px; } + .linkSelectorModule .moduleWrapper { + top: 40px; } + .linkSelectorModule ul.awd-module-list { + border-radius: 6px 6px 0px 0px; } + + .selectorModule .icon-primary-down { + font-size: 23px; + margin-top: -11px; + position: absolute; + right: 4px; + top: 50%; } + + .selectorModule .selectModule { + border: 1px solid #d2d2d2; + border-radius: 6px; + box-shadow: 1px 5px 2px -5px rgba(0, 0, 0, 0.15); + display: block; + width: 100%; + padding-left: 15px; + background-color: transparent; + cursor: pointer; } + .selectorModule .selectModule:focus { + border: 1px solid #0568ae; + -moz-user-select: none; } + .selectorModule .selectModule span.module-data { + position: absolute; + bottom: 6px; + line-height: 20px; } + .selectorModule .selectModule img + span.module-data { + padding-left: 45px; } + + .selectorModule .selectModule.active { + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; } + + .selectorModule .moduleWrapper { + position: absolute; + width: 100% !important; + border-top: none; } + + .selectorModule ul.awd-module-list { + border-radius: 0px 0px 6px 6px; } + + .selectorModule .large > img { + height: 30px; + position: absolute; + width: 30px; + top: 20px; + left: 15px; } + + .selectModule { + background-color: transparent; + font-family: "Omnes-ECOMP-W02", Arial; + color: #333333; + font-size: 1.6rem; + height: 36px; + line-height: 35px; + margin-bottom: 0; + position: relative; + text-align: left; + top: 0; + z-index: 10; + padding: 0px; + margin: 0px; + cursor: pointer; } + + .moduleWrapper { + background-color: #FFFFFF; + position: absolute; + color: #191919; + z-index: 9999; + box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15); + border-radius: 0px 0px 6px 6px; } + .moduleWrapper .module-list-item img { + height: 30px; + position: absolute; + width: 30px; + top: 30px; + left: 15px; + align-self: center; } + .moduleWrapper span { + display: block; + white-space: nowrap; + font-size: 1.5rem; } + + .awd-module-list { + overflow-y: auto; + z-index: 9999; + max-height: 360px; + border: 1px solid #d2d2d2; } + .awd-module-list .module-list-item > .module-data { + overflow: ellipsis; + white-space: nowrap; + line-height: 20px; + font-size: 1.6rem; + border-bottom: 1px dotted #959595; + margin: 0px 15px 0px 15px; + padding-right: 50px; + padding-bottom: 14px; + padding-top: 14px; + align-self: center; + width: 100%; } + .awd-module-list .module-list-item:hover { + background-color: #f2f2f2; } + .awd-module-list .module-list-item:active { + background-color: #f2f2f2; } + .awd-module-list .module-list-item[aria-selected="true"] { + background-color: #f2f2f2; } + + .module-list-item { + cursor: pointer; + overflow: hidden; + position: relative; + overflow: ellipsis; + white-space: nowrap; + z-index: 1000; + color: #191919; + display: flex; } + .module-list-item:last-of-type .module-data { + border-bottom: none; } + .module-list-item img + span.module-data { + padding-left: 45px; } + + .module-groups:first-of-type .module-list-item:last-of-type .module-data { + border-bottom: 1px solid #959595; } + + .module-groupitem { + padding-bottom: 4px; } + + .selectorModule.large { + height: 72px; + vertical-align: middle; + text-align: left; } + .selectorModule.large .moduleWrapper { + top: 71px; } + .selectorModule.large input { + height: 72px; + vertical-align: middle; + text-align: left; } + .selectorModule.large button { + height: 72px; + vertical-align: middle; + text-align: left; } + .selectorModule.large .selectModule img { + left: 15px; + top: 21px; } + + ul.module-groupitem li { + margin: 0 -15px 0 -15px; } + + span.module-data span { + display: block; + line-height: 20px; + font-size: 1.5rem; } + + li.module-groups { + cursor: default !important; + padding: 18px 15px 0px 15px; } + + li.module-list-item[selected]:before { + box-sizing: border-box; + display: inline-block; + font-size: 2em; + height: 1em; + position: absolute; + top: 20px; + right: 0px; + vertical-align: middle; + width: 1em; + color: #007a3e; } + + ul.module-optinalcta { + position: relative; + height: 44px; + margin-top: 0px; + border-bottom: 1px solid #d2d2d2; + border-left: 1px solid #d2d2d2; + border-right: 1px solid #d2d2d2; + border-radius: 0px 0px 6px 6px; } + ul.module-optinalcta li { + position: absolute; + bottom: 10px; } + ul.module-optinalcta a { + text-indent: 15px; + padding: 15px; } + + .b2b-slider-container { + position: relative; } + .b2b-slider-container.slider-disabled { + cursor: not-allowed !important; } + .b2b-slider-container div { + position: absolute; } + .b2b-slider-container .slider-track-container { + width: 100%; + cursor: pointer; } + .b2b-slider-container .slider-track { + width: 100%; + height: 6px; + background-color: #cccccc; + border-radius: 10px; + border: 1px solid #cccccc; } + .b2b-slider-container .slider-track-fill { + width: 100%; + height: 6px; + background-color: #cccccc; + border-radius: 10px; + width: 0; + background-color: #157BB2; + transition: width 0s linear; + border: 1px solid #cccccc; } + .b2b-slider-container .slider-knob-container { + transition: left 0s linear; } + .b2b-slider-container .slider-knob-container.slider-knob-hidden { + display: none !important; } + .b2b-slider-container .slider-knob { + width: 14px; + height: 14px; + border-radius: 10px; + top: -4px; + left: -8px; + border: 1px solid #cccccc; + background: white; + cursor: pointer; } + .b2b-slider-container .slider-knob:focus { + outline: thin dotted #666; } + + .b2b-slider-endpoints-container { + margin-top: 13px; + color: #333; + font-size: 12px; } + .b2b-slider-endpoints-container .b2b-slider-endpoints-left { + float: left; + line-height: 100%; } + .b2b-slider-endpoints-container .b2b-slider-endpoints-right { + float: right; + line-height: 100%; } + .b2b-slider-endpoints-container::after { + clear: both; + content: ""; + display: block; } + + .b2b-slider-container.vertical { + width: 100%; + height: 100%; + margin: 0 auto; + position: relative; + border-radius: 10px; } + .b2b-slider-container.vertical .slider-track-container { + position: relative; + height: 100%; } + .b2b-slider-container.vertical .slider-track { + position: absolute; + height: 100%; } + .b2b-slider-container.vertical .slider-track-fill { + position: absolute; + bottom: 0; + height: 0; + width: 100%; } + .b2b-slider-container.vertical .slider-knob-container { + transition: bottom 0s linear; + position: relative; + bottom: 0; } + .b2b-slider-container.vertical .slider-knob-container.slider-knob-hidden { + display: none !important; } + .b2b-slider-container.vertical .slider-knob { + position: absolute; + border-radius: 10px; + top: -7px; + left: -4px; } + + .icon-primary-spinner { + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%20id%3D%22svg-spinner%22%20x%3D%220px%22%20y%3D%220px%22%20xml%3Aspace%3D%22preserve%22%3E%0A%20%20%20%3Cpath%20fill%3D%22%23F5F5F5%22%20d%3D%22M18%2036C8.1%2036%200%2027.9%200%2018S8.1%200%2018%200s18%208.1%2018%2018-8.1%2018-18%2018zm0-31.5c-7.5%200-13.5%206-13.5%2013.5S10.6%2031.5%2018%2031.5c7.5%200%2013.5-6.1%2013.5-13.5%200-7.5-6-13.5-13.5-13.5z%22%2F%3E%0A%20%20%20%3Cpath%20fill%3D%22%230568AE%22%20id%3D%22spinner%22%20d%3D%22M30.7%205.3l-3.1%203.2c2.4%202.4%203.9%205.8%203.9%209.5%200%207.4-6.1%2013.5-13.5%2013.5S4.5%2025.4%204.5%2018%2010.6%204.5%2018%204.5V0C8.1%200%200%208.1%200%2018s8.1%2018%2018%2018%2018-8.1%2018-18c0-5-2-9.5-5.3-12.7z%22%3E%0A%20%20%20%20%20%20%3CanimateTransform%20%0A%20%20%20%20%20%20%20%20%20attributeType%3D%22xml%22%0A%20%20%20%20%20%20%20%20%20attributeName%3D%22transform%22%0A%20%20%20%20%20%20%20%20%20type%3D%22rotate%22%0A%20%20%20%20%20%20%20%20%20from%3D%220%2018%2018%22%0A%20%20%20%20%20%20%20%20%20to%3D%22360%2018%2018%22%0A%20%20%20%20%20%20%20%20%20dur%3D%221.0s%22%0A%20%20%20%20%20%20%20%20%20repeatCount%3D%22indefinite%22%0A%20%20%20%20%20%20%2F%3E%0A%20%20%20%3C%2Fpath%3E%0A%3C%2Fsvg%3E"); + height: 50px; + width: 50px; } + + .icon-primary-spinner.small { + margin-right: 5px; + height: 30px !important; + width: 30px !important; } + + .isIE .icon-primary-spinner, + .isIE .icon-primary-spinner.small { + animation: spinner 1s linear infinite; } + + .ds2-no-colors .icon-primary-spinner { + animation: spinner 1s linear infinite; + border: 5px dotted transparent; + border-radius: 50%; } + + @keyframes spinner { + 0% { + transform: rotate(0deg); } + 100% { + transform: rotate(359deg); } } + + .b2b-status-tracker > .btn-arrow:nth-of-type(1) { + margin-right: 10px; } + + .b2b-status-tracker > .btn-arrow:nth-of-type(2) { + margin-left: 20px; } + + .b2b-status-tracker > .btn-arrow { + height: 20px; + margin-top: 25px; + overflow: visible; } + .b2b-status-tracker > .btn-arrow > .btn-secondary > .icon-primary-left { + margin-right: 5px; + color: #0574ac; } + .b2b-status-tracker > .btn-arrow > .btn-secondary > .icon-primary-right { + color: #0574ac; } + + .b2b-status-tracker > .b2b-status-tracker-step { + padding: 0; + position: relative; } + + .b2b-status-tracker-step { + margin-left: 5px; } + + .b2b-status-tracker > .b2b-status-tracker-step .b2b-status-tracker-heading { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 14px; + color: #191919; + margin-bottom: 10px; } + + .b2b-status-tracker > .b2b-status-tracker-step.complete > .progress > .progress-bar { + width: 100%; + background-color: #1b7e28; } + + .b2b-status-tracker > .b2b-status-tracker-step.complete .icoControls-approval { + color: #1b7e28; } + + .b2b-status-tracker > .b2b-status-tracker-step.current > .progress > .progress-bar { + width: 100%; + background-color: #333333; } + + .b2b-status-tracker > .b2b-status-tracker-step.current .icon-misc-time { + color: #333333; } + + .b2b-status-tracker > .b2b-status-tracker-step.pending > .progress > .progress-bar { + width: 100%; + background-color: #ffb81c; } + + .b2b-status-tracker > .b2b-status-tracker-step.pending .icoControls-statusokay { + color: #ffb81c; } + + .b2b-status-tracker > .b2b-status-tracker-step.actionRequired > .progress > .progress-bar { + width: 100%; + background-color: #cf2a2a; } + + .b2b-status-tracker > .b2b-status-tracker-step.actionRequired .icoSecurityalerts-alert { + color: #cf2a2a; } + + .b2b-status-tracker > .b2b-status-tracker-step.notAvailable > .progress > .progress-bar { + width: 100%; + background-color: #767676; } + + .b2b-status-tracker > .b2b-status-tracker-step.notAvailable .icoControls-restricted { + color: #767676; } + + .b2b-status-tracker > .b2b-status-tracker-step > .progress { + position: relative; + border-radius: 1.5px; + height: 3px; + margin-bottom: 10px; + background-color: #c5c5c5; } + .b2b-status-tracker > .b2b-status-tracker-step > .progress > .progress-bar { + width: 0; + height: 3px; } + + .b2b-status-tracker > .b2b-status-tracker-step > .b2b-status-tracker-estimate { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 14px; + color: #191919; + margin-bottom: 10px; } + + .b2b-status-tracker > .b2b-status-tracker-step > .b2b-status-tracker-description { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 12px; + color: #767676; + padding-right: 15px; } + .b2b-status-tracker > .b2b-status-tracker-step > .b2b-status-tracker-description a { + cursor: pointer; } + + .step-indicator { + height: auto; + padding: 40px 0; } + + .step-heading { + color: #333333; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 3.8rem; + line-height: 0.8; } + + .steps { + display: flex; + height: 5px; + margin-top: 60px; + position: relative; } + + .steps li { + color: #5a5a5a; + flex: 1; + margin-right: 5px; + background-color: #c4c4c4; + outline: 1px solid transparent; } + + .steps li:first-child { + border-radius: 4px 0 0 4px; } + + .steps li:last-child { + margin-right: 0; + border-radius: 0 4px 4px 0; } + + .steps li.step-on, + .steps li.step-done { + background-color: #007a3e; + color: #007a3e; + border: 1px solid transparent; } + + .step-text { + bottom: 29px; + display: inline-block; + font-size: 1.8rem; + margin-top: 0; + position: relative; + white-space: nowrap; } + + .step-on .step-text { + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + .steps li .step-text[data-large-text]:before { + content: attr(data-large-text) " "; } + + .step-confirmation { + color: #007a3e; + margin-bottom: 30px; } + + .step-confirmation > div { + display: flex; } + + .step-confirmation > div i { + color: #007a3e; + font-size: 50px; + margin-right: 10px; } + + .step-confirmation.centered > div i { + margin-left: -60px; } + + .step-confirmation > div h3 { + font-size: 2.4rem; + margin: 26px 0 20px; } + + .step-confirmation > p { + margin: 0; } + + @media (max-width: 1024px) { + .step-indicator { + padding: 25px 0; } + .steps { + margin-top: 0; } + .step-heading { + font-size: 2.4rem; + margin-bottom: 11px; } + .step-text { + display: none; } + .step-on .step-text { + bottom: 6px; + display: block; + font-size: 1.2rem; + left: 0; + line-height: 1; + margin-top: 10px; + position: absolute; + top: 4px; } + .steps li .step-text[data-sm-text]:before { + content: attr(data-sm-text) " "; + color: #333333; } + .step-confirmation { + margin-top: 30px !important; } } + + @media (max-width: 767px) { + .step-confirmation.centered > div i { + margin-left: 0; } + .step-confirmation.centered > p { + margin-left: 40px; } + .step-confirmation > div h3 { + font-size: 1.8rem; + margin: 13px 0 10px; } + .step-confirmation > div i { + font-size: 30px; + margin-right: 10px; } } + + .step-indicator.vertical { + height: auto; } + + .vertical .step-heading { + font-size: 24px; } + + .vertical .steps { + display: block; + height: inherit; + width: 100%; } + + .vertical .steps li { + align-items: center; + background-color: transparent; + display: flex; + height: 60px; + margin: 0 0 4px; + padding: 0 0 0 20px; + position: relative; } + + .vertical .steps li .step-text { + align-self: center; + color: #0568ae; + display: block; + margin: 0; + position: relative; + font-size: 14px; + top: 0; } + + .vertical .steps li .step-text[data-large-text]:before { + content: attr(data-large-text) " "; } + + .vertical .steps li:after { + background-color: transparent; + border-left: 4px solid #d2d2d2; + content: ""; + height: 60px; + left: 0; + margin: 0; + padding: 0; + position: absolute; + top: 0; + width: 4px; } + + .vertical .steps li.step-on:after, + .vertical .steps li.step-done:after { + border-color: #0568ae; } + + .b2b-step-tracker { + height: auto; + padding: 0px 0px 0px 0px; } + .b2b-step-tracker .btn.btn-left { + margin-right: 10px; } + .b2b-step-tracker .btn.btn-right { + margin-left: 5px; } + .b2b-step-tracker .b2b-left-arrow { + float: left; + margin-top: -5px; } + .b2b-step-tracker .b2b-right-arrow { + float: right; + margin-top: -5px; } + .b2b-step-tracker .b2b-steps { + display: flex; + height: 5px; + margin-top: 30px; + position: relative; } + .b2b-step-tracker .b2b-steps li { + color: #767676; + flex: 1; + margin-right: 5px; + background-color: #767676; + outline: 1px solid transparent; + height: 3px; } + .b2b-step-tracker .b2b-steps li.b2b-step-done { + background-color: #1b7e28; + color: #007a3e; + height: 3px; } + .b2b-step-tracker .b2b-steps li.b2b-step-on { + background-color: #333333; + color: #333333; + height: 3px; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + .b2b-step-tracker .b2b-steps li .b2b-step-text { + bottom: 29px; + display: inline-block; + font-size: 14px; + margin-top: 0; + position: relative; + white-space: nowrap; } + .b2b-step-tracker .b2b-steps li .b2b-step-text[data-large-text]:before { + content: attr(data-large-text) " "; } + .b2b-step-tracker .b2b-steps li:first-child { + border-radius: 2px 0 0 2px; } + .b2b-step-tracker .b2b-steps li:last-child { + margin-right: 0; + border-radius: 0 2px 2px 0; } + + @media (max-width: 1024px) { + .b2b-step-tracker { + padding: 25px 0; } + .b2b-step-tracker .b2b-steps { + margin-top: 0; } + .b2b-step-tracker .b2b-steps li .b2b-step-text { + display: none; } + .b2b-step-tracker .b2b-steps li .b2b-step-text[data-sm-text]:before { + content: attr(data-sm-text) " "; + color: #333333; } + .b2b-step-tracker .b2b-steps li.b2b-step-on .b2b-step-text { + bottom: 6px; + display: block; + font-size: 10px; + left: 0; + line-height: 1; + margin-top: 10px; + position: absolute; + top: 4px; } } + + .strength-meter-container { + height: 26px; + max-width: 450px; } + + .strength-meter-gauge { + border-radius: 2px; + background-color: #d2d2d2; + height: 5px; + display: block; + position: relative; + outline: 1px solid transparent; } + + .strength-meter-gauge-fill { + height: 100%; + display: block; + border-radius: 2px; + text-indent: -9999px; + width: 0%; + border: 2px solid transparent; } + + .strength-meter-gauge-fill.strength-meter-animate { + transition: width 0.5s linear, background-color 0.5s linear; } + + .strength-meter-animate[style*="20"] { + background-color: #cf2a2a; } + + .strength-meter-animate[style*="20"] + .strength-meter-divider + .strength-meter-content:after { + content: "Unacceptable"; } + + .strength-meter-animate[style*="40"] { + background-color: #ea7400; } + + .strength-meter-animate[style*="40"] + .strength-meter-divider + .strength-meter-content:after { + content: "Weak"; } + + .strength-meter-animate[style*="60"] { + background-color: #ea7400; } + + .strength-meter-animate[style*="60"] + .strength-meter-divider + .strength-meter-content:after { + content: "Fair"; } + + .strength-meter-animate[style*="80"] { + background-color: #007a3e; } + + .strength-meter-animate[style*="80"] + .strength-meter-divider + .strength-meter-content:after { + content: "Good"; } + + .strength-meter-animate[style*="100"] { + background-color: #007a3e; } + + .strength-meter-animate[style*="100"] + .strength-meter-divider + .strength-meter-content:after { + content: "Excellent"; } + + .strength-meter-divider { + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + display: flex; + overflow: hidden; } + + .strength-meter-divider span { + background: transparent; + display: block; + flex-grow: 1; + border-right: solid 1px #fff; } + + .strength-meter-divider span:first-child { + border-radius: 2px 0 0 2px; } + + .strength-meter-divider span + .strength-meter-divider span { + border-radius: 0; } + + .strength-meter-divider span:last-child { + border-radius: 0 2px 2px 0; + border-right: 0; } + + .strength-meter-content { + font-size: 14px; + line-height: 1; + padding-top: 7px; + position: absolute; } + + .strength-meter-content:before { + font-family: "Omnes-ECOMP-W02", Arial; + content: "Password strength: "; } + + .strength-meter-content:after { + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + .strength-meter-container { + height: 26px; + min-width: 290px; + max-width: 450px; } + + .strength-meter-container .strength-meter-gauge { + border-radius: 2px; + background-color: #cccccc; + box-shadow: 0 1px 1px -1px #333 inset; + height: 5px; + display: block; + overflow: hidden; + position: relative; } + + .strength-meter-container > .strength-meter-gauge > .strength-meter-gauge-fill { + height: 100%; + box-shadow: 0 1px 1px -1px #999 inset; + display: block; + text-indent: -9999px; + width: 0%; } + + .strength-meter-container > .strength-meter-gauge > .strength-meter-gauge-fill.strength-meter-animate { + transition: width 0ms ease-out, background-color 0ms ease-in; } + + .strength-meter-container > .strength-meter-gauge > .strength-meter-divider { + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + display: flex; } + + .strength-meter-container > .strength-meter-gauge > .strength-meter-divider span { + background: transparent; + display: block; + flex-grow: 1; + border-right: solid 1px #fff; } + + .strength-meter-container > .strength-meter-gauge > .strength-meter-divider span:last-child { + border-right: 0; } + + .strength-meter-container > .strength-meter-content { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 14px; + line-height: 1; + padding-top: 7px; } + + .strength-meter-container > .strength-meter-content:before { + content: none; } + + .strength-meter-container > .strength-meter-content > .strength-meter-content-state { + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + .btn-switch-label { + display: flex; + align-items: center; } + .btn-switch-label:focus .btn-switch { + outline: 1px dotted #666; + outline-offset: 5px; } + .btn-switch-label input:focus .btn-switch { + outline: 1px dotted #666; + outline-offset: 5px; } + .btn-switch-label > span { + flex: 1; } + + .btn-switch { + background-color: #fff; + border: 1px solid #d2d2d2; + border-radius: 16px; + box-shadow: 0 4px 5px -5px rgba(0, 0, 0, 0.15) inset, 0 5px 5px -5px rgba(0, 0, 0, 0.15); + height: 32px; + overflow: hidden; + position: relative; + width: 80px; + user-select: none; } + .btn-switch input[type="checkbox"] { + left: 0; + margin: 0; + opacity: 0; + position: absolute; + top: 0; + transition: none; } + .btn-switch input[type="checkbox"] + .switch-overlay .btn-slider-on .activo { + font: 0px/0 "Omnes-ECOMP-W02", Arial; } + .btn-switch input[type="checkbox"] + .switch-overlay .btn-slider-on + .btn + .btn-slider-off .inactivo { + font: 0px/0 "Omnes-ECOMP-W02", Arial; } + .btn-switch input:checked + .switch-overlay { + left: 0; + transition: all .3s linear .0s; } + .btn-switch input:checked + .switch-overlay .switch-handle { + background-color: #007a3e; + background: linear-gradient(to bottom, #008744 0%, #007a3e 100%); + transition: background-color 0.3s linear 0s; + border: 1px solid transparent; } + .btn-switch input + .switch-overlay { + left: -48px; + transition: all .3s linear .0s; } + .btn-switch input + .switch-overlay .switch-handle { + background-color: #f2f2f2; + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + transition: background-color 0.3s linear 0s; + border: 1px solid #d2d2d2; } + .btn-switch input[disabled] + .switch-overlay { + left: 0; + width: 100% !important; + background-color: #d2d2d2; + color: #959595; + cursor: not-allowed !important; } + .btn-switch input[disabled] + .switch-overlay .btn-slider-on { + display: none; } + .btn-switch input[disabled] + .switch-overlay .activo { + display: none; } + .btn-switch input[disabled] + .switch-overlay .switch-handle { + display: none; } + .btn-switch input[disabled] + .switch-overlay .btn-slider-off { + left: 0; + text-align: center; + padding: 0; } + .btn-switch input[disabled]:checked + .switch-overlay { + left: 0; + width: 100% !important; + background-color: #fff; } + .btn-switch input[disabled]:checked + .switch-overlay .btn-slider-off { + display: none; } + .btn-switch input[disabled]:checked + .switch-overlay .btn-slider-off + .inactivo { + display: none; } + .btn-switch input[disabled]:checked + .switch-overlay .switch-handle { + display: none; } + .btn-switch input[disabled]:checked + .switch-overlay .btn-slider-on { + display: block; + text-align: center; + padding: 0; + color: #007a3e !important; + font-weight: bold; } + .btn-switch input[disabled]:checked + .switch-overlay .activo { + display: block; + text-align: center; + padding: 0; + color: #007a3e !important; + font-weight: bold; } + .btn-switch input[disabled]:checked + .btn-slider-on { + display: block; } + .btn-switch input[disabled] + .btn-slider-on + .switch-handle { + width: 100%; + margin: 0; } + .btn-switch input[disabled] + .btn-slider-on + .switch-handle + .btn-slider-off { + display: block; } + .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on { + display: none; } + .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on .activo { + border: medium none; + color: #666; + font: 16px/32px "Omnes-ECOMP-W02", Arial; + height: auto; + margin: 0 auto; + width: auto; } + .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on .activo:before { + display: none; } + .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off { + display: block; + padding: 0; + text-align: center; + color: #333333; } + .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off .inactivo { + border: medium none; + color: #666; + font: 16px/32px "Omnes-ECOMP-W02", Arial; + height: auto; + margin: 0 auto; + width: auto; } + .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off .inactivo:before { + display: none; } + .btn-switch input[type="checkbox"][disabled]:checked + .switch-overlay .btn-slider-on { + display: block; + padding: 0; + text-align: center; + color: #007a3e; } + .btn-switch input[type="checkbox"][disabled]:checked + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off { + display: none; } + .btn-switch input[type="checkbox"][disabled]:checked + .switch-overlay .activo { + color: #007a3e; + font-weight: bold; } + + .switch-overlay { + border-radius: 16px; + color: black !important; + font-size: 1.6rem; + height: 32px; + left: 0; + position: absolute; + top: -1px; + width: 126px; + overflow: hidden; } + + .btn-slider-on { + left: -1px; + text-align: left; + padding-left: 12px; + display: inline-block; + font-family: "Omnes-ECOMP-W02", Arial; + height: 32px; + line-height: 32px; + position: absolute; + top: 1px; + width: 80px; } + + .btn-slider-off { + display: inline-block; + font-family: "Omnes-ECOMP-W02", Arial; + height: 32px; + line-height: 32px; + position: absolute; + top: 1px; + width: 80px; + right: 1px; + text-align: right; + padding-right: 11px; } + + .switch-handle { + border-radius: 50%; + display: inline-block; + height: 26px; + left: 50px; + position: absolute; + top: 3px; + width: 26px; } + + .activo { + display: block; + font-size: 0.1px; + line-height: 40px; + overflow: hidden; } + .activo:before { + background-image: none; + border-left: 3px solid #007a3e; + content: " "; + height: 18px; + left: 22px; + margin: 2px auto; + position: absolute; + top: 5px; + width: 0; } + + .inactivo { + font-size: 0.1px; + line-height: 40px; } + .inactivo:before { + background-image: none; + border: 3px solid #959595; + border-radius: 100%; + content: " "; + display: block; + position: absolute; + top: 4px; + right: 3px; + height: 16px; + width: 16px; } + + .btn-switch.focused { + outline: 1px dotted #000; + outline-offset: 5px; } + + table { + max-width: 100%; + background-color: transparent; + border-collapse: collapse; + border-spacing: 0; + width: 100%; + margin-bottom: 20px; } + + table caption { + text-align: left; } + + table thead th { + vertical-align: bottom; } + + table th, + table td { + padding: 19px 20px; + line-height: 1; + font-size: 1.4rem; + text-align: left; + vertical-align: top; + word-wrap: break-word; } + + table th { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 1.6rem; + font-weight: normal; + color: #333333; + padding: 13px 20px; } + + table tbody td { + border-left: 1px solid #d2d2d2; + border-top: 1px solid #d2d2d2; } + + table tbody td:first-child { + border-left: none; } + + .tiny-accordion.iconleft.accordion-table-layout .toggle-header, + .tiny-accordion.iconleft.accordion-table-layout .toggle-header + .accordion-content, + .tiny-accordion.iconleft.accordion-table-layout .inactive-toggle-header { + padding: 0 0 0 50px; } + + .faux-table-cell, + .inactive-toggle-header .faux-table-cell { + display: table-cell; + width: 100%; + padding: 13px 0 10px 0; + font-size: 16px; + color: #333333; } + + .accordion-content .faux-table-cell { + display: table-cell; + width: 100%; + padding: 0 0 10px 0; } + + .faux-table-cell:last-child { + text-align: right; + min-width: 100px; + max-width: 150px; + width: 1%; + background-color: #f2f2f2; + color: #333333; + font-size: 14px; + border-left: 1px solid #d2d2d2; + padding: 0 20px 0 10px; } + + .tiny-accordion.iconleft.accordion-table-layout .toggle-header.opened .hide-when-expanded { + opacity: 1; } + + .tiny-accordion.iconleft.accordion-table-layout .toggle-header.opened .hide-when-expanded { + opacity: 0; + transition: opacity .3s linear .2s; } + + @media (max-width: 767px) { + table th, + table td { + padding: 19px 10px; } + table th:first-child, + table td:first-child { + padding: 19px 15px; } } + + .data-row-list ul > li { + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewport%3D%220%200%201%201%22%20style%3D%22width%3A100%25%3B%20height%3A1px%3B%22%3E%3Cstyle%3Eline%7Bstroke%3Argba(153%2C153%2C153%2C1)%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cline%20y2%3D%221%22%20y1%3D%221%22%20x1%3D%221%22%20x2%3D%22100%25%22%20stroke-dasharray%3D%221%2C%203%22%2F%3E%3C%2Fsvg%3E") !important; } + + table { + border-bottom: 1px solid #d2d2d2; } + + table th, + table td { + padding: 15px 15px 10px; } + + .data-row .col-1 { + white-space: nowrap; + padding: 15px 15px 0 15px; + position: relative; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 1.4rem; + border-top: 1px solid #d2d2d2; } + + .data-row.has-button .col-1 { + padding: 0; } + + .complex-table .data-row .col-1 { + color: #0568ae; + cursor: pointer; } + + .data-row.opened { + box-shadow: 0 -2px 0 0 #d2d2d2; } + + .data-row.opened td, + .data-row.opened th { + border-left: 1px solid transparent; + border-bottom: 1px solid transparent; } + + .data-row.opened + .data-row-list { + box-shadow: 0 1px 0 0 #d2d2d2; } + + .data-row.opened + .data-row-list > td { + padding-top: 0; } + + .data-row.opened + .data-row-list + .data-row.opened { + box-shadow: 0 -1px 0 0 #d2d2d2; } + + .data-row button { + background-color: transparent; + border: medium none; + border-radius: 0; + color: #0568ae; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 1.4rem; + left: 0; + margin: 0; + padding: 12px 15px 7px; + position: relative; + text-align: left; + top: 0; + vertical-align: middle; } + + .data-row button:focus { + outline: 1px dotted black; } + + .data-row .col-1 i { + top: -1px; + margin-right: 10px; + display: inline-block !important; } + + .data-row-list th:first-child { + background-color: inherit !important; + border-top: none; + padding: 0 15px 15px; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 1.4rem; } + + .data-row-list ul { + margin: 0 0 0 30px; } + + .data-row-list ul > li:before { + display: none; } + + .data-row-list ul > li { + /* background-image in tables.less */ + background-position: left 13px; + background-repeat: repeat-x; + background-size: 4px 1px; + display: table; + padding-left: 0; + width: 100%; } + + .data-row-list li div { + display: table-cell; + background-color: white; + float: left; + text-align: left; + padding-left: 0; + padding-right: 7px; } + + .data-row-list li div + div { + float: right; + text-align: right; + padding-right: 0; + padding-left: 7px; } + + .complex-table td:nth-child(1), + .complex-table td:nth-child(2), + .complex-table td:nth-child(3), + .complex-table td:nth-child(4), + .complex-table td:nth-child(5), + .complex-table td:nth-child(6), + .complex-table td:nth-child(7), + .complex-table td:nth-child(8), + .complex-table td:nth-child(9) { + white-space: nowrap; } + + th:nth-child(8) { + word-wrap: break-word; + word-spacing: 0; } + + .align-col-right { + text-align: right; } + + .complex-table th:not(:first-child), + .complex-table td:not(:first-child) { + text-align: right; } + + .striped tbody > tr td { + background-color: transparent !important; } + + .striped tbody > tr.data-row.odd, + .striped tbody > tr.data-row.odd + .data-row-list, + .striped tbody > tr.data-row.odd + .data-row-list li div { + background-color: #f2f2f2 !important; } + + .striped tbody > tr:not('.data-row'):nth-child(even) { + background-color: #f2f2f2; } + + .b2b-table-div .selectWrap { + width: 290px; + position: relative; + display: inline-table; + margin-bottom: 0px; } + + .b2b-external-sort-div { + float: right; + padding-bottom: 25px; } + + .b2b-external-sort-div .sortButton { + font-size: 36px; + border: 1px solid #ccc; + background: #FFF; + border-radius: 6px; + text-align: center; + background: linear-gradient(#fcfcfc, #f2f2f2); + background-blend-mode: multiply; + width: 1em; } + + .b2b-external-sort-label { + padding-bottom: 10px; } + + .b2b-external-sort-div a:hover { + cursor: pointer; } + + .b2b-external-sort-div a:hover, .b2b-external-sort-div a:focus { + text-decoration: none; } + + .b2b-external-sort-label label { + position: relative; } + + .b2b-external-sort-margin { + margin-right: 13px !important; } + + .b2b-table-sorter-icon [class*="icoArrows-"]:before { + font-size: 20px; } + + @media screen and (max-width: 950px) { + .b2b-external-sort-margin .selectWrap { + bottom: 0px !important; } } + + .tablesorter-default .tablesorter-header.sorter-false .tablesorter-header-inner { + background: 0 0; + cursor: default; } + + .tablesorter-default .tablesorter-header .tablesorter-header-inner { + /* background-image: url(images/tables/upanddown.png);*/ + background-position: center right; + background-repeat: no-repeat; + cursor: pointer; + white-space: normal; + display: inline-block; + vertical-align: baseline; + zoom: 1; + *display: inline; + *vertical-align: auto; + /* padding: 0 24px 0 0;*/ } + + .tablesorter-default .tablesorter-header.sorter-false .tablesorter-header-inner { + padding: 0; } + + .tablesorter-default .tablesorter-header.tablesort-sortable .tablesorter-header-inner span { + margin-right: 24px; + display: inline-block; } + + /* + .tablesorter-default thead .headerSortUp .tablesorter-header-inner,.tablesorter-default thead .tablesorter-headerAsc .tablesorter-header-inner,.tablesorter-default thead .tablesorter-headerSortUp .tablesorter-header-inner { + background-image: url(images/tables/up.png); + } + + .tablesorter-default thead .headerSortDown .tablesorter-header-inner,.tablesorter-default thead .tablesorter-headerDesc .tablesorter-header-inner,.tablesorter-default thead .tablesorter-headerSortDown .tablesorter-header-inner { + background-image: url(images/tables/down.png); + } + */ + .tablesorter-default thead .headerSortUp .tablesorter-header-inner, + .tablesorter-default thead .tablesorter-headerAsc .tablesorter-header-inner, + .tablesorter-default thead .tablesorter-headerSortUp .tablesorter-header-inner, + .tablesorter-default thead .headerSortDown .tablesorter-header-inner, + .tablesorter-default thead .tablesorter-headerDesc .tablesorter-header-inner, + .tablesorter-default thead .tablesorter-headerSortDown .tablesorter-header-inner { + padding-right: 0; + line-height: 16px; } + + .tablesorter-default thead .headerSortUp .tablesorter-header-inner:after, + .tablesorter-default thead .tablesorter-headerAsc .tablesorter-header-inner:after, + .tablesorter-default thead .tablesorter-headerSortUp .tablesorter-header-inner:after { + font-family: 'icoPrimary' !important; + speak: none; + font-style: normal; + font-size: 24px; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 14px; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + -moz-user-select: none; + -ms-user-select: none; + -webkit-user-select: none; + user-select: none; + content: "\ea3c"; + /* position: relative;*/ + position: absolute; + text-decoration: inherit; + display: inline-block; + transform: rotate(180deg); + margin-left: -22px; + margin-top: 2px; } + + .tablesorter-default thead .headerSortDown .tablesorter-header-inner:after, + .tablesorter-default thead .tablesorter-headerDesc .tablesorter-header-inner:after, + .tablesorter-default thead .tablesorter-headerSortDown .tablesorter-header-inner:after { + font-family: 'icoPrimary' !important; + speak: none; + font-style: normal; + font-size: 24px; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 14px; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + -moz-user-select: none; + -ms-user-select: none; + -webkit-user-select: none; + user-select: none; + content: "\ea3c"; + /* position: relative;*/ + position: absolute; + text-decoration: inherit; + display: inline-block; + margin-left: -22px; + margin-top: 2px; } + + .tablesorter-search-highlight { + font-weight: 700; } + + .tablesorter-headerRow th:focus { + outline: thin dotted #666; + outline-offset: -1px; } + + .b2b-table-message { + font-family: "Omnes-ECOMP-W02", Arial; } + .b2b-table-message .b2b-magnify-glass { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%20enable-background%3D%22new%200%200%2036%2036%22%3E%3Cpath%20d%3D%22M27.847%208.26c-1.805-1.803-4.202-2.795-6.751-2.795-2.548%200-4.945.993-6.749%202.796-1.803%201.803-2.796%204.2-2.796%206.75%200%201.879.543%203.681%201.576%205.242l-7.059%207.059c-.357.356-.554.831-.554%201.336-.001.505.196.98.554%201.337.357.356.832.552%201.336.552.503%200%20.977-.196%201.336-.553l7.047-7.048c1.576%201.062%203.402%201.622%205.309%201.622%202.55%200%204.948-.993%206.751-2.796%201.803-1.804%202.796-4.201%202.796-6.751%200-2.549-.993-4.947-2.796-6.751zm-6.761.96c3.186%200%205.778%202.592%205.778%205.778%200%203.186-2.592%205.778-5.778%205.778-3.186%200-5.778-2.592-5.778-5.778%200-3.185%202.592-5.778%205.778-5.778z%22%20fill%3D%22%23767676%22%2F%3E%3C%2Fsvg%3E"); + background-repeat: no-repeat; + background-position: center; + height: 50px; } + .b2b-table-message .b2b-alert { + font-size: 50px; } + .b2b-table-message .b2b-loading-dots { + font-size: 50px; + margin-bottom: 20px; } + .b2b-table-message .b2b-message { + text-align: center; + padding-bottom: 45px; + padding-top: 40px; + border-style: solid; + border-width: 1px; + border-top: none; + padding-bottom: 45px; + border-color: #d2d2d2; + width: 100%; + min-height: 220px; } + .b2b-table-message .b2b-error-title { + font-family: "Omnes-ECOMP-W02", Arial; + color: #444444; + line-height: 26px; + margin-top: 10px; } + .b2b-table-message .b2b-message-title { + color: #444; + font-family: "Omnes-ECOMP-W02", Arial; } + + .b2b-table-scrollbar { + border: 1px solid; + width: 651px; + position: relative; } + .b2b-table-scrollbar .b2b-table-inner-container { + width: 650px; + padding-left: 150px; + overflow-x: scroll; } + .b2b-table-scrollbar th:first-child { + background-color: #FFFFFF; } + .b2b-table-scrollbar td:first-child { + background-color: #FFFFFF; + border-top: 1px solid #cccccc; + border-right: 1px solid #cccccc; + margin-top: -0.5px; } + .b2b-table-scrollbar tr { + th: nth-child(2), td; } + .b2b-table-scrollbar tr :nth-child(2) { + border-left: none; } + .b2b-table-scrollbar tr:last-child > td:first-child { + border-bottom: 1px solid #cccccc; } + + .b2b-scrollbar-arrow-left { + float: left; + margin: 10px; } + + .b2b-scrollbar-arrow-right { + float: right; + clear: right; + margin: 10px; } + .b2b-scrollbar-arrow-right.btn-arrow .btn { + margin-right: 0; } + + .b2b-table-scrollbar ::-webkit-scrollbar { + height: 10px; } + + .b2b-table-scrollbar ::-webkit-scrollbar-thumb { + background: #666666; + border-radius: 5px; } + + .tabs { + margin-left: 0; + margin-bottom: 20px; + list-style: none; } + + .tabs > li > a { + display: block; } + + .tabs > li > a:hover, + .tabs > li > a:focus { + text-decoration: none; + background-color: #d2d2d2; } + + .tabs > .pull-right { + float: right; } + + .tabs:before, + .tabs:after { + display: table; + content: ""; + line-height: 0; } + + .tabs:after { + clear: both; } + + .tabs > li { + float: left; } + + .tabs > li > a { + padding-right: 20px; + padding-left: 20px; + margin-right: 3px; + line-height: 16px; } + + .tabs { + margin: 0; } + + .tabs > li { + margin-bottom: -1px; } + + .tabs > li:first-child { + margin-left: 20px; } + + .tabs > li > a { + padding: 12px 20px; + border: 1px solid #d2d2d2; + border-radius: 6px 6px 0 0; + background-color: #f2f2f2; + color: #5a5a5a; + border-color: #d2d2d2; } + + .tabs > li > a { + margin-right: 6px; } + + .tabs > li > a, + .tabs > li > a:hover, + .tabs > li > a:focus { + background-image: none; + background-color: #ffffff; + color: #5a5a5a; + border-color: #d2d2d2; + border-bottom: 1px solid transparent; + cursor: pointer; } + + .tabs.tabs-justified, + .tabs.promo-tabs { + width: 100%; + border-bottom: 0; + margin-bottom: -1px; } + + .tabs.tabs-justified > li, + .tabs.promo-tabs > li { + display: table-cell; + float: none; + width: 1%; + border-left: 1px solid #d2d2d2; } + + .tabs.tabs-justified > li.active, + .tabs.promo-tabs > li.active { + position: relative; + z-index: 1000; } + + .tabs.tabs-justified > li > a { + padding-right: 5px; + padding-left: 5px; } + + .tabs.tabs-justified > li > a, + .tabs.promo-tabs > li > a { + text-align: center; } + + .tabs.promo-tabs > li > a { + padding: 0; + margin: 0; + border-radius: 0; + border: none; + color: #0568ae; + font-size: 1.2rem; + text-align: center; + padding: 6px 10px 10px; + border-top: 4px solid #e6e6e6; + filter: none; + border-bottom: 1px solid #d2d2d2; + background-color: #f9f9f9; } + + .tabs > li:last-child > a { + margin-right: 0; } + + .tabs.promo-tabs > li.active > a { + color: #333333; + border-top: 4px solid #ea7400; + border-bottom-color: white; + background-color: #fff !important; + filter: none; + cursor: default; } + + .tabs.promo-tabs > li:first-child { + border-left: none; } + + .tabs.promo-tabs > li > a img { + max-width: inherit; + max-height: 39px; + margin: 0 auto 5px auto; + display: block; } + + .tabbable:before, + .tabbable:after { + display: table; + content: ""; + line-height: 0; } + + .tabbable:after { + clear: both; } + + .tab-content { + overflow: auto; + border: 1px solid #e6e6e6; } + + .tabs.promo-tabs + .tab-content { + border: none; + border-bottom: 1px solid #e6e6e6; } + + .tab-content > .tab-pane { + padding: 10px 15px; } + + .tab-content.noborder { + border: none; } + + .tab-content.noborder > .tab-pane { + padding: 0; } + + .tab-content > .tab-pane { + display: none; } + + .tab-content > .active { + display: block; } + + .tabs.promo-tabs > li > a { + font-size: 2.0rem; + height: 70px; + padding: 20px 20px 24px; + background-color: #FFFFFF; + border-top: 5px solid #FFFFFF; + white-space: nowrap; } + + .tabs.promo-tabs > li.active > a { + border-top: 5px solid #0574ac; } + + .tabs.promo-tabs > li > a:hover { + color: #333333; } + + .tabs.promo-tabs > li { + width: auto; } + + .tabs > li[disabled="disabled"] > a:hover { + cursor: not-allowed; } + + .b2b-tags { + background-color: #f2f2f2; + -webkit-transition: all .3s ease-out; + -moz-transition: all .3s ease-out; + transition: all .3s ease-out; + margin: 3px 5px 3px 0; + padding: 2px 15px; + border-radius: 6px; + border: 1px solid #c9c9c9; + display: inline-block; } + .b2b-tags .tags__item { + font-size: 14px; + vertical-align: baseline; + zoom: 1; + color: #333; } + .b2b-tags .tags__item i { + color: #0574ac; + font-size: 14px; + font-weight: bold; + margin-left: 10px; } + .b2b-tags .tags__item i:hover { + cursor: pointer; } + .b2b-tags .tags__item i:focus { + outline: thin dotted #666; } + .b2b-tags .tags__item:last-child { + margin-right: 0; } + .b2b-tags .tags__item:hover { + text-decoration: none; } + .b2b-tags .tags__item:focus { + outline: 1px dotted #666; } + + .tooltip-size-control { + display: block; } + + .tooltip { + display: inline-block; + height: 20px; + vertical-align: middle; + margin: 1px 0 0 7px; } + + p .tooltip { + margin: -3px 7px 0 0; } + + label .tooltip { + margin: 1px 0 0 7px; } + + .tooltip .icon-primary-tooltip { + background: none; + border: none; + display: inline-block; + font-size: 20px; + height: 20px; + margin: 0; + position: relative; + width: 20px; } + + .tooltip .icon-primary-tooltip:before { + top: 0; } + + .tooltip .icon-primary-tooltip:focus { + text-decoration: none; + outline: 1px dotted black; } + + .tooltip.active .icon-primary-tooltip:focus { + outline: none; } + + .tooltip .arrow { + display: none; + border-color: transparent; + border-style: solid; + background-color: #0568ae; + height: 20px; + width: 20px; + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + opacity: 0; + transform: rotate(45deg); + z-index: 20; } + + .tooltip.active .icon-primary-tooltip[data-placement="top"] .arrow { + display: block; + bottom: 32px; + top: auto; + border-width: 0 1px 1px 0; } + + .tooltip.active .icon-primary-tooltip[data-placement="bottom"] .arrow { + border-width: 1px 0 0 1px; + display: block; + bottom: -33px; + top: auto; } + + .tooltip.active .arrow { + opacity: 1; } + + .tooltip .closingtooltip { + display: block; } + + .tooltip.active .closingtooltip { + display: none; } + + .tooltip-wrapper { + position: absolute; + margin-top: 20px; + left: 15px; + right: 15px; + display: none; + opacity: 0; + z-index: 1010; + text-align: left; } + + .helpertext { + background-color: #0568ae; + border: 1px solid transparent; + border-radius: 6px; + color: #fff; + display: none; + margin: 0; + padding: 25px; + position: relative; + text-align: left; + width: 100%; + top: 0; + z-index: 1009; } + + .tooltip .helpertext { + position: absolute; } + + .tooltip.active .icon-primary-tooltip[data-placement="bottom"] + .tooltip-wrapper .helpertext { + bottom: inherit; + top: 19px; } + + .tooltip.active .icon-primary-tooltip[data-placement="top"] + .tooltip-wrapper .helpertext { + top: inherit; + bottom: 38px; } + + .tooltip.active .tooltip-wrapper { + opacity: 1; + display: block; + margin-top: 0; } + + .tooltip.active .tooltip-wrapper .helpertext { + display: block; } + + .tooltip-onclick .btn.icon-primary-tooltip { + border: medium none; + box-shadow: none; + color: #0568ae; + font-size: 20px; + height: 34px; + line-height: 36px; + margin: 0; + min-width: 50px; + padding: 0; + position: absolute; + right: 0; + top: 0; } + + .tooltip-onclick .icon-primary-tooltip:before { + display: inline; + position: relative; } + + .tooltip-onclick textarea + .reset-field + .icon-primary-tooltip { + top: 4px; + right: 5px; + min-width: 40px; } + + .tooltip-onclick.active .helpertext:before, + .tooltip-onfocus.active .helpertext:before { + background-color: #0568ae; + border-color: transparent; + border-style: solid; + border-width: 1px 1px 0 0; + content: ""; + display: block; + height: 15px; + left: 17px; + margin: 0; + position: absolute; + top: -7px; + transform: rotate(-45deg); + width: 15px; } + + .tooltip-onclick.active .helpertext { + display: block; + opacity: 1; + margin: 14px 0 0; } + + .tooltip-onclick.active .helpertext:before { + left: inherit; + right: 18px; } + + .tooltip-onclick .reset-field { + right: 37px; } + + .tooltip-onclick .reset-field:before { + position: relative; + top: -1px; } + + .tooltip-onfocus.active .helpertext { + display: block; + margin: 14px 0 10px 0; } + + .popover-title { + display: block; + font-size: 14px; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-weight: bold; + margin-bottom: 8px; + white-space: normal; } + + .popover-content { + display: block; + font-size: 12px; + font-family: "Omnes-ECOMP-W02", Arial; + line-height: 1.5rem; + white-space: normal; } + + .popover-content span, + .popover-content p { + line-height: 1.5rem; } + + .popover-content p:last-child { + margin-bottom: 0; } + + .tooltip .tooltip-element { + position: relative; } + + .tooltip .icon-primary-tooltip:hover { + text-decoration: none; } + + .tooltip.active .tooltip-element[data-placement="top"] .arrow { + display: block; + bottom: 32px; + top: auto; } + + .tooltip.active .tooltip-element[data-placement="bottom"] .arrow { + display: block; + border-color: transparent transparent #0574ac; + bottom: -33px; + top: auto; } + + .tooltip.active .tooltip-element[data-placement="bottom"] + .tooltip-wrapper .helpertext { + bottom: inherit; + top: 19px; } + + .tooltip.active .tooltip-element[data-placement="top"] + .tooltip-wrapper .helpertext { + top: inherit; + bottom: 38px; } + + .b2b-tree { + padding: 0 10px 0 10px; + width: 320px; } + .b2b-tree ul { + list-style: none; + list-style-type: none; } + .b2b-tree a { + display: block; + padding: 0 0 5px 30px; + line-height: 22px; + margin-left: -10px; + font-size: 1.4rem; + outline-offset: -1px; } + .b2b-tree li:focus { + outline: none; } + .b2b-tree li:focus > a { + outline: thin dotted #666; + outline-offset: -1px; } + .b2b-tree ul li { + border-left: 1px solid #ccc; } + .b2b-tree ul li .b2b-tree-tooltip { + display: none; + position: absolute; + top: -25px; + left: 100%; + white-space: nowrap; + margin-left: 10px; + z-index: 1010; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 12px; } + .b2b-tree ul li .b2b-tree-tooltip-content { + background-color: #0568ae; + margin-left: 9px; + border-radius: 6px; + color: #fff; + padding: 25px; } + .b2b-tree ul li .b2b-tree-arrow-left { + width: 0; + height: 0; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + border-right: 10px solid #0568ae; + position: absolute; + top: 25px; } + .b2b-tree ul li.activeTooltip > a .b2b-tree-tooltip { + display: block; } + .b2b-tree ul ul { + padding: 0 0 0 20px; } + .b2b-tree ul > li { + position: relative; + line-height: 18px; } + .b2b-tree a > span.b2b-tree-node-icon { + background-color: #FFF; + display: inline; + margin: 0; + padding: 0; + position: absolute; + left: -11px; + top: 0; + line-height: 14px; + width: 11px; } + .b2b-tree a > span.b2b-tree-node-icon > i { + font-size: 20px; } + .b2b-tree a:only-child { + color: #0574ac; } + .b2b-tree a:only-child > span.b2b-tree-node-icon { + left: -11px; + border-radius: 50%; + line-height: 7px; + top: 0; } + .b2b-tree a:only-child > span.b2b-tree-node-icon > i { + background-color: inherit; + background: #fff; } + .b2b-tree a > span.b2b-tree-node-icon > i.icon-primary-circle { + background-color: inherit; + background: #fff; + font-size: 10px; } + .b2b-tree a.b2b-locked-node:after { + content: "\ec58"; + float: right; + font-family: 'icoSecurityalerts' !important; } + .b2b-tree a:hover .b2b-locked-node:after { + text-decoration: none; } + .b2b-tree ul li:first-child > a:only-child > span.b2b-tree-node-icon { + left: -11px; + border-radius: 50%; + line-height: 12px; } + .b2b-tree ul li:last-child > a:only-child > span.b2b-tree-node-icon { + height: 27px; + background-color: #fff; } + .b2b-tree li a + ul { + height: 0; + overflow: hidden; } + .b2b-tree li a.active + ul { + height: auto; + overflow: visible; } + .b2b-tree li a.grp { + font-family: "Omnes-ECOMP-W02-Italic", Arial; } + .b2b-tree li a.grp.active { + color: #333; } + .b2b-tree span.end { + left: -6px !important; + top: 5px !important; } + .b2b-tree span.first-link { + width: 3px !important; + height: 15px !important; + top: 0px !important; + left: -2px !important; + background: #fff; } + + .b2b-tree-checkbox { + padding: 0 10px 0 10px; + width: 320px; } + .b2b-tree-checkbox ul { + list-style: none; + list-style-type: none; } + .b2b-tree-checkbox a { + display: block; + padding: 0 0 5px 30px; + line-height: 22px; + margin-left: -10px; + font-size: 14px; + outline-offset: -1px; } + .b2b-tree-checkbox li:focus { + outline: none; } + .b2b-tree-checkbox li:focus > a { + outline: thin dotted #666; + outline-offset: -1px; } + .b2b-tree-checkbox ul li { + border-left: 1px solid #ccc; } + .b2b-tree-checkbox ul ul { + padding: 0 0 0 20px; } + .b2b-tree-checkbox ul > li { + position: relative; + line-height: 18px; } + .b2b-tree-checkbox a > span.nodeIcon { + background-color: #FFF; + display: inline; + margin: 0; + padding: 0; + position: absolute; + left: -11px; + top: 0; + line-height: 14px; + width: 11px; } + .b2b-tree-checkbox a > span.nodeIcon > i { + font-size: 20px; } + .b2b-tree-checkbox a > span.nodeIcon.end { + margin-top: 10px; } + .b2b-tree-checkbox a:only-child { + color: #0574ac; } + .b2b-tree-checkbox a:only-child > span.nodeIcon { + left: -11px; + border-radius: 50%; + line-height: 7px; + top: 0; } + .b2b-tree-checkbox a:only-child > span.nodeIcon > i { + background-color: inherit; + background: #fff; } + .b2b-tree-checkbox a > span.nodeIcon > i.icon-primary-circle { + background-color: inherit; + background: #fff; + font-size: 10px; } + .b2b-tree-checkbox ul li:first-child > a:only-child > span { + left: -11px; + border-radius: 50%; + line-height: 12px; + top: 0px; } + .b2b-tree-checkbox ul li:first-child > a:only-child > span.end { + margin-top: 0px; } + .b2b-tree-checkbox ul li:first-child > a:only-child > span i.icon-primary-circle { + top: 8px; } + .b2b-tree-checkbox ul li:last-child > a:only-child > span { + height: 34px; + background-color: #fff; } + .b2b-tree-checkbox li a + ul { + height: 0; + overflow: hidden; } + .b2b-tree-checkbox li a.active + ul { + height: auto; } + .b2b-tree-checkbox li a.grp { + font-family: "Omnes-ECOMP-W02-Italic", Arial; } + .b2b-tree-checkbox span.end { + left: -6px !important; } + .b2b-tree-checkbox .checkbox { + margin-bottom: 0px; + margin-top: 2px; + font-size: 14px; } + .b2b-tree-checkbox .checkbox input:indeterminate + .skin:after { + content: "\2014"; + padding-left: 2px; + font-family: inherit !important; + line-height: inherit !important; } + .b2b-tree-checkbox span.first-link { + width: 3px !important; + height: 15px !important; + top: 0px !important; + left: -2px !important; + background: #fff; } + + .b2b-widget-window { + width: 147px; + right: 5px; + top: 60px; + position: absolute; + border: 1px solid #ccc; + background-color: #fff; + border-radius: 8px; + z-index: 1000; } + .b2b-widget-window li { + margin: 15px; } + + .b2b-widget-container { + background-color: #fff; + border-radius: 8px; + border: 1px solid #ccc; + position: relative; } + .b2b-widget-container .b2b-widget-header { + font-family: "Omnes-ECOMP-W02", Arial; + color: #333; + height: 55px; + padding-left: 15px; + padding-top: 19px; } + .b2b-widget-container .b2b-widget-header .header { + font-size: 18px; } + .b2b-widget-container .b2b-widget-header-icons { + font-size: 16px; + color: #0574ac; } + + .b2b-widget-header-icons button { + border: none; + background: transparent; + color: #0574ac; } + .b2b-widget-header-icons button:focus { + outline-style: solid; + outline-width: 1px; + outline-color: #0574ac; } + .b2b-widget-header-icons button:first-child { + margin-right: 0px; } + + .b2b-widget-container .b2b-widget-content { + height: 325px; + margin: 0; + padding: 20px; + position: relative; + border-top: 1px solid #ccc; } + + .b2b-widget-content .form-row:first-child { + margin-top: 0; } + + .b2b-widget-header-icons button.icoControls-gear:focus, .b2b-widget-header-icons button.icon-primary-close:focus { + outline: thin dotted #666; } + + .b2b-widget-header .icon-primary-close:before { + content: '-'; + display: inline-block; + margin: 0; + padding: 0; + outline: none; } + + .b2b-widget-window .arrow_box { + background: #fff; + border: 1px solid #ccc; } + + .b2b-widget-window.arrow_box:after, .b2b-widget-window.arrow_box:before { + bottom: 100%; + left: 75%; + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; + pointer-events: none; } + + .b2b-widget-window.arrow_box:after { + border-color: rgba(255, 255, 255, 0); + border-bottom-color: #fff; + border-width: 10px; + margin-left: 1px; } + + .b2b-widget-window.arrow_box:before { + border-color: rgba(204, 204, 204, 0); + border-bottom-color: #ccc; + border-width: 11px; + margin-left: 0px; } + + /************************** Overrides for Filters ***************************/ + .filter-container .filter-header h2 { + line-height: 1 !important; + margin: 0 !important; } + + .filter-container .icon-primary-spinner:before { + content: none; } + + .filter-container .fixed-230-subnav { + margin: 10px !important; + width: inherit !important; } + + .filter-container .unlinked:focus { + outline: thin dotted #666 !important; } + + .filter-container .unlinked.active { + color: inherit !important; } + + .filter-container .fixed-230-subnav a > i { + background: none; } + + .filter-container .fixed-230-subnav ul { + margin: 0 0 10px 10px; } + + /************************** Overrides for Filters ***************************/ + .row .filter-container { + background-color: #fff; } + + .filter-header { + overflow: hidden; + padding: 20px 0; + position: relative; } + + .filter-header h2 { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 2.4rem; + margin-bottom: 0; } + + .filter-selected { + border-top: 1px solid #ccc; + padding-top: 20px; } + + .filter-selected > span { + font-size: 1.3rem; + text-transform: uppercase; } + + .filter-selected > a.clear-all-filters { + float: right; + font-size: 1.4rem; } + + .filter-selected > span, + .filter-selected > a.clear-all-filters { + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + .filter-selected-group { + padding-top: 15px; } + + .filter-selected-badge { + background-color: #f2f2f2; + border-radius: 15px; + display: inline-block; + font-size: 1.4rem; + margin-bottom: 10px; + padding: 0 0 0 12px; } + + .filter-selected-badge .icoControls-optionsoff { + background: transparent none repeat scroll 0 0; + border: medium none; + font-size: 2.5em; + margin: 0; + padding: 0; } + + .filters .fixed-230-subnav > ng-transclude > div:first-child { + border-top: 1px solid #ccc; } + + .filters .fixed-230-subnav > ng-transclude > div { + border-bottom: 1px solid #ccc; } + + .filter-results { + align-items: center; + border-bottom: 1px solid #ccc; + display: flex; + flex-wrap: wrap; + height: 50px; + -webkit-justify-content: space-between; + -ms-flex-pack: justify; + justify-content: space-between; } + + .filter-results-sortby > span { + text-transform: uppercase; } + + .filter-results-view .icon-primary-content-gridguide { + font-size: 2em; + margin-right: 0; } + + .filter-container .fixed-230-subnav > ng-transclude > div > a { + font-size: 1.8rem; + margin: 0; + padding: 15px 20px 15px 0; + color: #0574ac !important; + cursor: pointer !important; + font-family: "Omnes-ECOMP-W02", Arial !important; + outline-offset: inherit !important; + position: relative; + height: auto; + width: auto; } + + .filter-container .fixed-230-subnav a > i { + right: 0; + top: 15px; } + + .filter-container .fixed-230-subnav .icon-primary-collapsed:before, .filter-container .fixed-230-subnav .icon-primary-expanded:before { + float: right; } + + .filter-container .fixed-230-subnav ul.collapse { + position: inherit; + transition: height 0.5s ease; + height: 0; + overflow: hidden; } + + .filter-container .checkbox .icon-primary-spinner { + height: 24px; + position: absolute; + width: 24px; } + + .fixed-230-subnav.affix { + margin: -28px 0 0; } + + #nav-menu .b2b-menu, + #nav-menu .fixed-230-subnav { + margin: 0; } + + .b2b-menu > li, + .fixed-230-subnav > div { + border-bottom: 1px solid #ccc; + line-height: 4.0rem; } + + .b2b-menu > li:first-child, + .fixed-230-subnav > li:first-child { + border-top: 1px solid #ccc; } + + .b2b-menu div > a, + .fixed-230-subnav div > a { + color: #0574ac; + cursor: pointer; + display: block; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 1.4rem; + margin: 0; + outline-offset: -1px; + padding: 0 10px; + position: relative; } + + .fixed-230-subnav div > a.live { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + color: #666; } + + .fixed-230-subnav > ng-transclude > div li > a { + display: block; + font-size: 1.4rem; + line-height: 20px; } + + .fixed-230-subnav > ng-transclude > div li > a.active { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + text-decoration: none; + color: #666; } + + #nav-menu .fixed-230-subnav a > i { + top: 10px; } + + .fixed-230-subnav > li > a.active > i:after { + display: none; } + + .b2b-menu ul, + .fixed-230-subnav ul { + margin: 0 0 10px 0; } + + .b2b-menu ul div a, + .fixed-230-subnav ul div a { + padding: 0 10px; } + + .unlinked { + outline: medium none !important; + text-decoration: none !important; } + + @media (max-width: 1024px) { + .filter-container .fixed-230-subnav { + margin: 0 20px; + width: auto; } + .filter-container .fixed-230-subnav > li { + margin: 0; } + .row .filter-container { + display: none; + height: 100%; + left: 0; + position: fixed; + overflow: auto; + top: 0; + transition: all 0.5s ease 0s; + width: 285px; + z-index: 9999; } + .filter-header { + padding-left: 20px; } + .filter-selected { + margin: 0 20px 10px; } } + + .b2b-pane-selector-wrapper { + width: 100%; + display: block; + border-top: solid 1px #ccc; + border-bottom: solid 1px #ccc; } + .b2b-pane-selector-wrapper .side-nav { + width: 20% !important; + display: inline-block; + float: left; } + .b2b-pane-selector-wrapper .pane-container { + width: 80%; + vertical-align: top; + margin: 0; + padding-top: 30px; + border-left: solid 1px #ccc; + font-family: "Omnes-ECOMP-W02", Arial; + display: none; } + .b2b-pane-selector-wrapper .pane-container.active { + display: inline-block; } + .b2b-pane-selector-wrapper .pane-container .pane-container-top { + padding-left: 15px; } + .b2b-pane-selector-wrapper .pane-container .panes { + display: -webkit-flex; + display: flex; + border-top: solid 1px #ccc; + margin-top: 30px; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block { + height: inherit; + overflow-y: auto; + border-right: solid 1px #ccc; + position: relative; + flex: 1; + -webkit-flex: 1; + /* Safari 6.1+ */ + -ms-flex: 1; + /* IE 10 */ } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block:focus { + outline: dotted 1px #333333; } + .b2b-pane-selector-wrapper .pane-container .search-block { + position: relative; + float: right; } + .b2b-pane-selector-wrapper .pane-container .search-block input[type="search"]:focus { + padding-right: 40px; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row p { + margin-top: 15px; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block div { + border-bottom: solid 1px #ccc; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row { + display: block; + padding: 19px 14px 19px 14px; + margin-top: 0px; + border: dotted 1px transparent; + border-bottom: solid 1px #ccc; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row:focus { + border: dotted 1px #333333 !important; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row:last-child { + border-bottom: none; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block > .no-content { + text-align: center; + border-bottom: none; + display: block; + position: absolute; + top: 45%; + left: 0; + right: 0; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block div:last-child { + border-bottom: none; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row span.margin-chk { + margin: 15px 15px 0px 15px; + float: left; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row .checkbox-selectall { + margin: 0px 0 0 24px !important; } + .b2b-pane-selector-wrapper .side-nav li { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + border: none; + border-top: solid 1px #ccc; + display: block !important; + width: auto !important; + margin-left: 0px !important; } + .b2b-pane-selector-wrapper .side-nav li.active { + background-color: #f6f6f6; + position: inherit !important; } + .b2b-pane-selector-wrapper .side-nav li.active > a { + font-size: 16px; + color: #333; + text-decoration: none; + border: none; + background-color: transparent; + padding: 20px 15px; + display: block; + height: auto; + border-left: 4px solid #0574ac; } + .b2b-pane-selector-wrapper .side-nav li > a { + font-size: 16px; + color: #333; + text-decoration: none; + border: none; + background-color: transparent; + padding: 20px 15px; + display: block; + height: auto; + text-align: left; } + .b2b-pane-selector-wrapper .side-nav li > a:focus { + border-right: dotted 1px #333333; } + .b2b-pane-selector-wrapper .side-nav li:first-child { + border-top: none; + margin-left: none !important; } + /********************* Utility CSS Starts **********************/ + .offscreen-text { + position: absolute; + left: -10000px; + top: auto; + width: 1px; + height: 1px; + overflow: hidden; } + + /********************* Utility CSS Ends **********************/ + /* Fix for alignment issue on Cancel link inside modal */ + .modal-footer > .cta-button-group { + line-height: 40px; } + + /* .att-dark-green { // Not used + color: #007a3e; + } */ + .colors-off-msg { + display: none; } + + button .colors-off-msg { + position: relative; } + + .ds2-no-colors .colors-off-msg { + display: block; } + + .ds2-no-colors [data-colordatatext] button .colors-off-msg { + font-size: 1.1rem; + line-height: normal; + padding: 5px 0; + position: absolute; + top: 0; + white-space: normal; + width: 60px; } + + /* Not used + .make-all-white * { + color: #fff; + } + .make-all-white a { + text-decoration: underline; + } */ + .loader > span { + display: block; + padding-top: 20px; } + + .modal > .loader { + left: 50%; + margin-left: -25px; + margin-top: -25px; + position: absolute; + top: 50%; } + + #pageLevelLoader.modal { + background-color: transparent; + border: none; + box-shadow: none; + top: 40%; } + + .modal.fade .loader { + display: none; } + + .modal.fade.in .loader { + display: block; } + + .btn.disabled[data-loading-text] { + padding: 0 19px 0 18px; + line-height: 46px; } + + .btn.disabled[data-loading-text] img { + position: relative; + top: 2px; } + + /* Seems to already be in docs.css + .fixed-230.leftnav { + position: relative; + } + .fixed-230-subnav { + margin: 10px; + } + .fixed-230-subnav > li:first-child { + border-top: none; + } + .fixed-230-subnav > li { + border-bottom: 1px solid #d2d2d2; + } + .fixed-230-subnav > li > a { + display: block; + font-size: 1.4rem; + line-height: normal; + margin: 0 -9px; + padding: 11px 35px 12px 9px; + outline-offset: 0; + position: relative; + } + .fixed-230-subnav > li > a.live { + color: #333333; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + } + .fixed-230-subnav a > i { + right: 10px; + margin: 0; + position: absolute; + top: 10px; + } + .fixed-230-subnav a > i:after { + display: none; + } + .fixed-230-subnav > li li > a { + display: block; + font-size: 1.4rem; + line-height: 18px; + } + .fixed-230-subnav > li li > a.active { + color: #333333; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + text-decoration: none; + } + .fixed-230-subnav ul { + margin: 0 0 10px; + } */ + .unlinked { + color: #0568ae !important; + font-family: "Omnes-ECOMP-W02", Arial !important; } + + .unlinked.active { + color: inherit !important; } + + /* @media (max-width: 767px) { + .row.has-leftnav { + flex-wrap: wrap; + } + .row.has-leftnav .fluid-space { + padding-right: 0; + } + .row .fixed-230 { + background-color: #fff; + width: auto; + } + .row .leftnav { + background-color: #fff !important; + display: block !important; + } + .fixed-230-subnav { + margin: 10px 0 0; + width: 100%; + } + .fixed-230-subnav > li { + margin-left: -15px; + margin-right: -15px; + } + .fixed-230-subnav > li:first-child { + border-top: 1px solid #d2d2d2; + } + .fixed-230-subnav > li > a { + margin: 0; + } + .fixed-230-subnav a:hover, + .fixed-230-subnav a:focus { + text-decoration: none !important; + } + .fixed-230-subnav > li li > a { + padding: 5px 10px; + } + .fixed-230-subnav > li li > a.active { + color: inherit; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + } + } */ + @keyframes DOMinsertion { + from { + outline-color: transparent; } + to { + outline-color: transparent; } } + + @-moz-keyframes DOMinsertion { + from { + outline-color: transparent; } + to { + outline-color: transparent; } } + + @-webkit-keyframes DOMinsertion { + from { + outline-color: transparent; } + to { + outline-color: transparent; } } + + @-ms-keyframes DOMinsertion { + from { + outline-color: transparent; } + to { + outline-color: transparent; } } + + @-o-keyframes DOMinsertion { + from { + outline-color: transparent; } + to { + outline-color: transparent; } } + + .ajaxed, + .modal.fade.in .modal-header, + .modal.fade.in .modal-body, + .modal.fade.in .modal-footer { + animation-duration: 0.01s; + -o-animation-duration: 0.01s; + -ms-animation-duration: 0.01s; + -moz-animation-duration: 0.01s; + -webkit-animation-duration: 0.01s; + animation-name: DOMinsertion; + -o-animation-name: DOMinsertion; + -ms-animation-name: DOMinsertion; + -moz-animation-name: DOMinsertion; + -webkit-animation-name: DOMinsertion; } + + .dda-css-override ul.nav-tabs { + margin-bottom: 0; } + + .dda-css-override div.tab-content { + margin-top: 0; + border-top: none; } + + .dda-css-override .tab-content .prettyprint, .dda-css-override .usage .prettyprint { + max-height: 500px; + overflow-y: auto; } + + .formsWithinProcessButton { + margin-right: 0px; } + + .heading-sub-section-form { + font-size: 2.4rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; + margin-top: 10px; } + + .heading-small-form { + font-size: 1.6rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-top: 0px; } + + .icon-primary-form-sizeL { + font-size: 50px; } + + .icon-primary-form-size { + font-size: 30px; } + + .spanformfix { + margin-right: 15px !important; } + + @media (max-width: 767px) { + .heading-sub-section-form { + font-size: 1.8rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; + padding-top: 10px; + margin-top: 30px; } + .heading-small-form { + font-size: 1.4rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-top: 0px; } } + + @media (max-width: 479px) { + .icon-primary-form-resizeL { + display: none; } + .icon-primary-form-resize { + display: none; } + .heading-center-form { + margin-left: 20px; } } + + @media (min-width: 480px) { + .icon-primary-form-resizeL { + display: none; } + .icon-primary-form-resize { + display: inherit; } + .icon-primary-center-min { + margin-top: 30px; } } + + @media (min-width: 768px) { + .icon-primary-form-resizeL { + display: inherit; + margin-top: 30px; } + .icon-primary-form-resize { + display: none; } + .center-form-align { + margin-top: 35px; } } + + @media (min-width: 1024px) { + .icon-primary-form-resizeL { + display: inherit; + margin-top: 0px; } + .icon-primary-form-resize { + display: none; } + .center-form-align { + margin-top: 5px; } } + + .data-row.has-button td.col-1 { + padding: 0; } + + .tab-content > .tab-pane { + display: none; } + + .tab-content > .active { + display: block; } + + .icon-primary-circle:before { + background-image: url("data:image/svg+xml,%3Csvg%20baseProfile%3D%22tiny%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%3E%3Ccircle%20fill%3D%22transparent%22%20stroke%3D%22%23666%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2218%22%20cy%3D%2218%22%20r%3D%2216%22%2F%3E%3C%2Fsvg%3E"); + content: ""; + position: absolute; + top: 0; + z-index: 1; } + + .b2b-drag-handle { + cursor: move; + -ms-interpolation-mode: bicubic; + margin-bottom: 40px; + height: 23px; + padding-right: 10px; + float: left; } + + .b2b-drag-over { + background-color: #d1d1d1; } + + .b2-drag-element { + background-color: #e8e8e8; } + + [draggable] { + -moz-user-select: none; + -khtml-user-select: none; + -webkit-user-select: none; + user-select: none; } + /* Flyout inputs color is not aligned */ + textarea, input { + color: #333; } + + .isIE .btn-primary.btn:focus::after, + .isIE .btn-specialty.btn:focus::after, + .isIE .btn-alt.btn:focus::after { + border: 1px dashed #fff !important; } + .b2b-config-section-container { + height: auto; + min-height: 330px; + width: 815px; + background-color: #fff; + border: 1px solid #ccc; + display: inline-table; + border-radius: 6px; } + + .b2b-config-section-first-div { + border-right: 1px solid #ccc; + height: auto; + min-height: 330px; } + + .b2b-config-section-icon-primary-font { + font-size: 50px; + height: 31px; + line-height: 31px; } + + .b2b-config-section-padding { + padding: 20px 20px 15px 15px; + height: auto; } + + .b2b-config-sec-flyout { + position: relative; + left: 10px; + float: right; + color: #0574ac; + font-size: 16px; + font-family: "Omnes-ECOMP-W02", Arial; } + + .b2b-config-sec-divider { + border-bottom: 1px solid #ccc; } + + .b2b-confi-sec-span-border { + border-right: 1px solid; + height: auto; } + + .b2b-config-sec-speed-div { + text-align: center; + margin-top: 20px; } + + .b2b-config-sec-label-font { + font-size: 16px; } + + .b2b-config-sec-expander-main { + padding: 0 5px 0px 15px; } + + .b2b-config-sec-expander-body .b2b-config-vlan-padding { + padding: 5px 15px 10px 0px; } + + .b2b-conif-sec-row-height { + height: 110px; } + + .b2b-config-sec-expander-body { + font-size: 14px; } + .b2b-config-sec-expander-body .b2b-config-vlan-data { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + padding-left: 15px; } + + .b2b-config-sec-expander-body-first-div { + border-top: 1px solid #ccc; } + + .b2b-config-sec-expander-body .tooltip { + position: static; + opacity: 1; } + + .b2b-config-section-container .row > [class*="span"] { + margin-right: 0px; } + + .b2b-config-vlan-icons { + font-size: 16px; + float: right; + margin-right: 0px; } + + .b2b-config-section-container .span6 { + width: 50%; } + + .b2b-config-sec-data-link-style { + position: relative; + left: 95%; + top: 30px; + border-radius: 50%; + width: 23px; + height: 23px; + background: #fff; + border: 1px solid #ccc; + color: #666666; } + + .b2b-config-sec-text-align { + text-align: center; + margin-top: 15px; + margin-bottom: 35px; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 14px; + color: #333333; } + + .b2b-config-port-text-align { + text-align: center; + margin-top: 15px; + margin-bottom: 8px; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 14px; + color: #333333; } + + .b2b-config-port-text-label { + margin-top: 6px; + margin-bottom: 8px; + font-size: 14px; + text-align: center; } + + .b2b-confi-sec-last-div p { + font-size: 14px; + padding: 10px 15px 0 15px; } + + .b2b-confi-sec-router-label { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 16px; + color: #333333; + float: left; + width: 100%; + margin-bottom: 7px; } + + .b2b-config-vlan-label { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 14px; + color: #333333; + margin-top: 1px; + margin-bottom: 9px; } + + .b2b-config-vlan-info { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 14px; + color: #333333; + margin-bottom: 1px; } + .b2b-config-vlan-info .icon-misc-pen { + padding-left: 7px; } + + .b2b-confi-sec-model-label { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 14px; + color: #333333; } + + .b2b-confi-sec-router-info { + float: left; + width: 62%; } + + .b2b-config-sec-speed-sec { + border-right: 1px solid #ccc; } + + .b2b-config-sec-speed-label { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 20px; + color: #333333; + text-align: center; } + .b2b-config-sec-speed-label i { + margin-left: 15px; + font-size: 16px; } + + .b2b-config-sec-yellow-flag-div { + width: 1.6%; + background-color: #ffb18c; } + + .b2b-config-sec-expander-icons { + margin-top: 6px; } + .b2b-config-sec-expander-icons .icon-misc-trash { + margin-right: 10px; } + + .b2b-config-sec-yellow-flag .b2b-config-sec-expander-icons { + left: 40px; } + + .b2b-config-sec-expander-body-icons .icon-misc-pen { + position: relative; + left: 18px; } + .b2b-directory-listing .center { + display: block; + margin: 2em auto; } + + .b2b-directory-listing .listBox { + height: 310px; + width: 450px; + padding-left: 1px; + padding-right: 1px; + font-family: "Omnes-ECOMP-W02", Arial; } + + .b2b-directory-listing .listBox:focus { + outline: thin dotted #666; } + + .b2b-directory-listing .b2b-directory-listing-no-results { + font-weight: bold; } + + .b2b-directory-listing .b2b-directory-listing-list { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5a5a5a; + overflow-x: hidden; + position: relative; + height: 300px; + border: 1px solid #333; + border-radius: 6px; + margin-bottom: 10px; } + + .b2b-directory-listing .b2b-directory-listing-item { + margin: 1px; + border: 1px solid transparent; + outline: none; + text-align: left; + overflow: hidden; + cursor: pointer; + padding-top: 13px; + padding-bottom: 7px; + padding-left: 15px; + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + word-wrap: break-word; } + .b2b-directory-listing .b2b-directory-listing-item:focus { + border: 1px #3399FF solid; } + + .b2b-directory-listing .b2b-directory-listing-item-selected { + color: #fff; + background-color: #3399FF; } + + .b2b-directory-listing input[type="text"] { + padding-right: 30px; } + .b2b-directory-listing input[type="text"]:focus, .b2b-directory-listing input[type="text"]:hover { + padding-right: 30px; } + + .b2b-directory-listing .row .btns { + margin-right: 90px; + margin-left: -115px; + margin-top: 100px; } + + .b2b-directory-listing .btn-remove { + margin-right: auto !important; + margin-bottom: 15px; } + .b2b-directory-listing .btn-remove i { + margin-right: 0; + color: #fff; + top: -1px; } + + .b2b-directory-listing .btn-remove-all { + margin-top: 0; + margin-bottom: 61px !important; + /* need to be removed */ + margin-right: auto !important; } + .b2b-directory-listing .btn-remove-all i { + margin-right: 0; + color: #fff; + top: -1px; } + + .b2b-directory-listing .btn-add { + margin-bottom: 15px !important; } + .b2b-directory-listing .btn-add i { + margin-right: 0; + color: #fff; + top: -1px; } + + .b2b-directory-listing .btn-add-all { + margin-top: 0; + margin-bottom: 61px !important; } + .b2b-directory-listing .btn-add-all i { + margin-right: 0; + color: #fff; + top: -1px; } + + .b2b-directory-listing .btn-search[class*="btn"] { + right: 0.09rem; } + + .b2b-directory-listing .btn { + width: 130px; } + + .b2b-directory-listing-disabled { + cursor: not-allowed; } + + .b2b-directory-listing-label-heading { + margin-top: 24px; + padding-bottom: 5px; } + + .b2b-dl-list-box option { + padding-top: 13px; + padding-bottom: 7px; + padding-left: 15px; } + + .b2b-dl-modal-button-div { + padding-top: 110px; + text-align: center; } + .b2b-tmpl-notification-card { + border-radius: 6px; + height: auto; + width: 420px; + background-color: #ffffff; + border: 1px solid rgba(0, 0, 0, 0.1); + border-radius: 8px; + overflow: hidden; } + .b2b-tmpl-notification-card .b2b-tmpl-card-header { + padding-left: 30px; + font-family: "Omnes-ECOMP-W02", Arial; + color: #333333; + font-size: 24px; + margin-top: 2px; + display: inline-block; + min-height: 60px; + position: relative; } + .b2b-tmpl-notification-card .b2b-tmpl-card-body { + + position: relative; } + .b2b-tmpl-notification-card .b2b-tmpl-card-header-title { + margin-top: 10px; } + .b2b-tmpl-notification-card .b2b-tmpl-card-corner-button { + box-shadow: 0 -50px 0 0 #f2f2f2 inset; + height: 69px; + position: absolute; + border-color: #f2f2f2 #f2f2f2 transparent transparent; + border-style: solid; + border-width: 35px; + height: 0; + right: -295px; + top: -4px; + width: 69px; + /*Old properties */ + box-shadow: none; + transform: none; } + .b2b-tmpl-notification-card .b2b-tmpl-card-corner-button .close { + height: 48px; + right: -40px; + top: -40px; + width: 48px; + position: relative; + /*Old properties */ + transform: none; } + .b2b-tmpl-notification-card .b2b-tmpl-card-corner-button .close:before { + color: #0568ae; + display: block; + font-size: 20px; + height: auto; + right: -4px; + top: 4px; + width: auto; + /*Old properties */ + left: auto; + height: auto; + bottom: auto; } + .b2b-tmpl-notification-card .b2b-tmpl-card-corner-button .close:focus { + outline: 1px dotted black; } + .b2b-tmpl-notification-card button.close { + -webkit-appearance: none; + moz-appearance: none; + appearance: none; } + .b2b-tmpl-notification-card .b2b-tmpl-card-icon-primary-cirlce { + width: 30px; + height: 30px; + border-radius: 50%; } + .b2b-tmpl-notification-card .b2b-tmpl-card-outer-cirlce { + border-radius: 50%; + height: 16px; + width: 16px; + vertical-align: middle; } + .b2b-tmpl-notification-card .b2b-tmpl-card-inner-cirlce { + background: #fff; + width: 22px; + height: 22px; + position: relative; + border-radius: 50%; + display: block; + left: 4px; + top: 4px; + border: 1px solid #767676; } + .b2b-tmpl-notification-card .b2b-tmpl-card-row { + padding-top: 10px; } + .b2b-tmpl-notification-card .b2b-tmpl-card-sub-header { + margin-top: 0px; } + .b2b-tmpl-notification-card .b2b-tmpl-favourite-view-item { + background-color: #fff; + margin-top: 25px; + border-top: 1px solid #ccc; } + .b2b-tmpl-notification-card .b2b-tmpl-favourite-view-item .cta-button-group { + line-height: 40px; + padding-top: 20px; } + .b2b-tmpl-notification-card .b2b-tmpl-card-edit-section .cta-button-group { + line-height: 40px; + padding-top: 15px; } + .b2b-tmpl-notification-card .b2b-tmpl-card-add-item-container { + padding-top: 30px; } + .b2b-tmpl-notification-card .b2b-tmpl-card-link-active { + pointer-events: none; + cursor: default; + color: #ccc; } + .b2b-tmpl-notification-card .b2b-tmpl-card-cursor:hover { + cursor: pointer; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-icon { + text-align: center; + margin-top: 91px; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-icon i { + font-size: 99px; + color: #1b7e28; } + + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-heading { + color: #333333; + text-align: center; + margin-top: 20px; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-heading h1 { + font-size: 38px; } + + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-sub-heading { + color: #333333; + text-align: center; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-sub-heading h5 { + font-size: 18px; } + + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-info { + padding-left: 18%; + font-size: 16px; + margin-top: 20px; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-info ul { + list-style-type: disc; + list-style-position: inside; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-info li { + padding-top: 5px; } + + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-link-section { + font-size: 15px; + color: #0574ac; + margin-top: 20px; + text-align: center; + margin-bottom: 55px; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-link-section .b2b-tmpl-order-confirmation-link { + margin-right: 8%; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-link-section a { + cursor: pointer; } + .b2b-tmpl-profile-block-container { + min-height: 200px; + height: auto; + background-color: #fff; + border-radius: 8px; + border: 1px solid #ccc; + box-shadow: 0px 1px 1px 1px #ccc; + display: inline-table; + margin: 15px 15px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-title { + font-weight: bold; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-footer { + margin-bottom: 12px; + margin-top: 5px; + height: 35px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p { + word-wrap: break-word; + height: 61px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p:first-child { + margin-top: 10px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p:after { + content: ' '; + display: block; + border: 0.2px solid #ccc; + margin-top: 12px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details .radio { + margin-left: 15px; + height: 30px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p, .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details div { + padding: 2px 7px; + font-size: 14px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details .radio-label, .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details a { + font-size: 14px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p label, .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p span { + padding-left: 10px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-approval-icon { + color: #1b7e28; + float: right; + position: relative; + left: 10px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-approval-icon i { + color: #1b7e28; + float: right; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-link { + float: right; + position: relative; + left: -4px; } + .b2b-tmpl-profile-block-container a.link-profile { + position: relative; + left: -5px; + float: right; + margin-bottom: 16px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-radio { + position: relative; + top: -5px; } + .b2b-static-route-container { + padding-left: 32px; + display: inline-block; } + + .b2b-static-route-label-heading { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 16px !important; + color: #333333; + font-style: normal; + text-align: left; } + + label.b2b-static-route-label-heading { + margin-bottom: 12px; + margin-top: 15px; + display: block; } + + #b2b-static-route-input { + margin: 5px 0 5px; } + + .b2b-static-route-list { + margin-bottom: 30px; + width: 216px; + float: left; + margin-right: 20px; + max-height: 540px; + overflow-y: auto; } + .b2b-static-route-list .status-text { + flex: 1; + display: flex; + align-items: center; + outline: 0; } + + .b2b-static-route-list-item { + border: 1px #cccccc solid; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 14px; + display: flex; + cursor: pointer; } + .b2b-static-route-list-item > .status-bar { + padding: 20px 0 20px; + background-color: #ea7400; + border-radius: 0; + width: 10px; + display: inline-block; + margin-right: 20px; + height: 100%; + float: left; } + .b2b-static-route-list-item > .status-bar:after { + content: '.'; + visibility: hidden; } + .b2b-static-route-list-item > .status-bar-unedited { + padding: 20px 0 20px; + background-color: #ffb81c; + border-radius: 0; + width: 10px; + display: inline-block; + margin-right: 20px; + height: 100%; + float: left; + background-color: transparent; } + .b2b-static-route-list-item > .status-bar-unedited:after { + content: '.'; + visibility: hidden; } + + .b2b-static-route-list-item:focus { + outline: 1px dashed #00f; } + + .b2b-static-route-list-item--selected { + background: #f2f2f2; } + + .b2b-static-route-content { + display: inline-block; } + + .selectWrap::after { + align-items: center; + background-position: 7px 7px; + background-repeat: no-repeat; + background-size: auto 23px; + border-left: 1px solid transparent; + color: #0568ae; + display: flex; + font-size: 23px; + height: 36px; + margin-right: 0; + overflow: hidden; + position: absolute; + right: 0; + text-indent: 7px; + top: 0; + user-select: none; + width: 41px; + z-index: 0; + position: absolute !important; + display: flex !important; + } + + + +.card{ + border-radius: 5px; +} + + .card-header{ + height: 30px; + background-color: white; +} + + .card-body{ + height: 150px; +} + +.card-footer{ + height: 50px; +} + +.dialog__close-btn { + border: 0; + background: #087ac2; + color: #ffffff; + position: absolute; + top: 8px; + right: 8px; + font-size: 1.2em; + display: block; + border: #087ac2 2px solid; + } + + .modalTitle{ + font-size: 35px; + } + + .overlay { + position: fixed; + top: 0; + bottom: 0; + left: 0; + right: 0; + background-color: rgba(0, 0, 0, 0.705); + z-index: 999; + } + + .dialog { + z-index: 1000; + position: fixed; + right: 0; + left: 0; + top: 20px; + margin-right: auto; + margin-left: auto; + margin-top: 50px; + height: 900px; + width: 1024px; + background-color: #fff; + padding: 12px; + box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.349), 0 13px 19px 2px rgba(0, 0, 0, 0.349), 0 5px 24px 4px rgba(0, 0, 0, 0.349); + } + + @media (min-width: 768px) { + .dialog { + top: 40px; + } + } + + .dialog__close-btn { + border: 0; + background: none; + color: #2d2d2d; + position: absolute; + top: 8px; + right: 8px; + font-size: 1.2em; + display: block; + border: #2d2d2d 1px solid; + } + diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields-add-edit/form-fields-add-edit.component.html b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields-add-edit/form-fields-add-edit.component.html new file mode 100644 index 00000000..87e89182 --- /dev/null +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields-add-edit/form-fields-add-edit.component.html @@ -0,0 +1,5 @@ +
+ + +
+
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields-add-edit/form-fields-add-edit.component.spec.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields-add-edit/form-fields-add-edit.component.spec.ts new file mode 100644 index 00000000..9b8c61ef --- /dev/null +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields-add-edit/form-fields-add-edit.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { FormFieldsAddEditComponent } from './form-fields-add-edit.component'; + +describe('FormFieldsAddEditComponent', () => { + let component: FormFieldsAddEditComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ FormFieldsAddEditComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(FormFieldsAddEditComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields-add-edit/form-fields-add-edit.component.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields-add-edit/form-fields-add-edit.component.ts new file mode 100644 index 00000000..de511fc3 --- /dev/null +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields-add-edit/form-fields-add-edit.component.ts @@ -0,0 +1,30 @@ +import { Component, OnInit, Input } from '@angular/core'; +import { trigger, transition, style, animate } from '@angular/animations'; + +@Component({ + selector: 'app-form-fields-add-edit', + templateUrl: './form-fields-add-edit.component.html', + styleUrls: ['./form-fields-add-edit.component.css'], + animations: [ + trigger('dialog', [ + transition('void => *', [ + style({ transform: 'scale3d(.3, .3, .3)' }), + animate(100) + ]), + transition('* => void', [ + animate(100, style({ transform: 'scale3d(.0, .0, .0)' })) + ]) + ]) + ] +}) +export class FormFieldsAddEditComponent implements OnInit { + + @Input() closable = true; + @Input() visible: boolean; + + constructor() { } + + ngOnInit() { + } + +} diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields.component.css b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields.component.css index 7207d3bb..499a3773 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields.component.css +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields.component.css @@ -1,10902 +1,10608 @@ + +.card{ + border-radius: 5px; +} + +.card-header{ + height: 50px; +} + +.card-body{ + height: 150px; +} + +.card-footer{ + height: 50px; +} + +.dialog__close-btn { + border: 0; + background: #087ac2; + color: #ffffff; + position: absolute; + top: 8px; + right: 8px; + font-size: 1.2em; + display: block; + border: #087ac2 2px solid; +} + +.modalTitle{ + font-size: 35px; +} + + +.full-width-table { + width: 100%; +} +.app-data-table { + margin-top: 35px; + /* margin-left: 250px; + margin-right: 250px; */ + /* overflow: scroll; */ +} + +.app-data-table1 { + margin-left: 150px; + margin-right: 150px; +} + +th{ + /* background-color: #2125299c; */ + color: rgb(0, 0, 0); + font-size: 15px; + border-radius: 2px; + +} + + +tr{ + /* background-color: #dddddd; */ + font-size: 2px; + + border-radius: 4px; + +} + +hr{ + background-color: #CCC; +} + + +.card{ + border-radius: 10px; + +} +.card-header{ + height: 30px; + background-color: white; + font-size: 20px; + border: 0; +} + +.card-body{ + height: 150px; +} + +.card-footer{ + height: 55px; + margin-right: 10px; +} + +.dialog__close-btn { + border: 0; + background: #087ac2; + color: #ffffff; + position: absolute; + top: 12px; + right: 12px; + font-size: 1em; + display: block; + border: #087ac2 2px solid; +} + +.modalTitle{ + font-size: 35px; + padding-bottom: 5px; +} + +::-webkit-scrollbar { + width: 5px; + background: transparent; +} + + +label { + float: left; + width: 24em; + margin-right: 2em; + text-align: right; +} + +.lds-ring { + display: inline-block; + position: relative; + width: 64px; + height: 64px; +} +.lds-ring div { + box-sizing: border-box; + display: block; + position: absolute; + width: 80px; + height: 80px; + margin: 6px; + margin-top: 10px; + border: 10px solid #006496; + border-radius: 80%; + animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite; + border-color: #006496 transparent transparent transparent; +} +.lds-ring div:nth-child(1) { + animation-delay: -0.45s; +} +.lds-ring div:nth-child(2) { + animation-delay: -0.3s; +} +.lds-ring div:nth-child(3) { + animation-delay: -0.15s; +} +@keyframes lds-ring { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } +} + + +mat-button-toggle{ + display: block; + width: 400px; + border-radius: 5px; +} + +label{ + size: 70px; +} + input { - width: 400px; - height: 20px; + width: 400px; + height: 20px; } -.tab-content{ - margin-right: 20px; - background-color: #006496; - color: white; +.Heading{ + font-size: 45px; } .stdForm{ - margin-left: 20px; + margin-left: 20px; } .field-group { - position: relative; - display: block; + position: relative; + display: block; } label + .field-group, label + .input-append, label + .row, label + .row-nowrap, label + .form-row { - margin-top: 5px; + margin-top: 5px; } -textarea { - display: block; - width: 400px; - max-width: 50%; - padding: 15px; -} select{ - display: block; - width: 400px; - max-width: 400px; - padding: 15px; - background-color: #cfcfcf7a + display: block; + width: 400px; + max-width: 400px; + padding: 15px; + background-color: #e6e6e61a } .webform-component-my-select select { - height: 200px; - } + height: 200px; +} - .checkbox .skin { - background-color: #fff; - border: 1px solid #d2d2d2; - border-radius: 3px; - display: inline-block; - height: 24px; - width: 24px; - position: absolute; - left: 0; - top: 0; +.checkbox .skin { + background-color: #fff; + border: 1px solid #d2d2d2; + border-radius: 3px; + display: inline-block; + height: 24px; + width: 24px; + position: absolute; + left: 0; + top: 0; } i, em { - font-family: "Omnes-ECOMP-W02-Italic", Arial; - font-style: normal; + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; } .b2b-horizontal-table ::-webkit-scrollbar { - height: 10px; } - - .b2b-horizontal-table ::-webkit-scrollbar-thumb { - background: #666666; - border-radius: 5px; } - - .b2b-horizontal-table .b2b-frozen-col { - font-size: 12px; - font-weight: normal; - font-style: italic; } - - .b2b-horizontal-table .b2b-horizontal-table-inner-container { - overflow-x: scroll; } - - .b2b-horizontal-table .b2b-horizontal-table-column-info { - text-align: center; } - - .b2b-horizontal-table .b2b-horizontal-table-legend div[b2b-flyout-toggler] { - color: #0568ae; - cursor: pointer; } - - .b2b-horizontal-table .b2b-horizontal-table-legend .b2b-frozen-cell { - width: 16px; - height: 16px; - background-color: #F2F2F2; - display: inline-block; - margin-right: 10px; } - - .b2b-horizontal-table .b2b-horizontal-table-arrows { - margin-bottom: 20px; } - .b2b-horizontal-table .b2b-horizontal-table-arrows .b2b-disabled-text { - color: #767676; } - .b2b-horizontal-table .b2b-horizontal-table-arrows .b2b-next-link { - padding-right: 15px; } - .b2b-horizontal-table .b2b-horizontal-table-arrows .b2b-prev-link { - padding-left: 15px; } - - @-moz-document url-prefix() { - .b2b-horizontal-table td:first-child { - border-top: none; } } - * { - box-sizing: border-box; } - - :root { - -ms-overflow-style: -ms-autohiding-scrollbar; - overflow-y: scroll; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; - box-sizing: border-box; - font: 0.625pc/1.5 sans-serif; - text-rendering: optimizeLegibility; } - - html { - overflow-y: scroll; - -webkit-overflow-scrolling: touch; - height: 100%; - position: relative; } - - h1, - h2, - h3, - h4, - h5, - p, - blockquote, - figure, - ol, - ul { - margin: 0; - padding: 0; } - - /* a:focus { - outline: thin dotted #191919; - } */ - sub, - sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: top; } - - sup { - top: .75em; - display: inline-block; } - - sub { - bottom: -0.25em; } - - img { - max-width: 100%; - height: auto; - vertical-align: middle; - border: 0; - -ms-interpolation-mode: bicubic; } - - .img-no-rwd { - max-width: inherit !important; } - - svg { - display: inline-block; } - - .responsive-img { - width: 100%; - height: auto; } - - button, - input, - select, - textarea { - margin: 0; - font-size: 100%; - vertical-align: middle; } - - ::-moz-focus-inner { - padding: 0; - border: 0; } - - button, - html input[type="button"], - input[type="reset"], - input[type="submit"] { - appearance: button; - cursor: pointer; } - - label, - select, - button, - input[type="button"], - input[type="reset"], - input[type="submit"], - input[type="radio"], - input[type="checkbox"] { - cursor: pointer; } - - input[type=search] { - -webkit-appearance: textfield; } - - input[type=search]:-webkit-search-cancel-button, - input[type=search]:-webkit-search-decoration { - -webkit-appearance: none; } - + height: 10px; } - - select { - -moz-appearance: none; - -webkit-appearance: none; } - - [aria-busy=true] { - cursor: progress; } - - [aria-controls] { - cursor: pointer; } - - body { - background-color: #ffffff; - color: #191919; - font-family: "Omnes-ECOMP-W02", Arial; - /* font-size: 1.6rem; - line-height: 2rem;*/ - margin: 0; - position: relative; - width: 100%; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; } - - small { - font-size: 1.6rem; } - - .container { - margin: 0 auto; - padding: 0; } - - .tooltip { - display: inline-block; - height: 20px; - margin: 1px 0 0 7px; - vertical-align: middle; } - - .tooltip-wrapper { - display: none; } - - - - /* TODO: Build a reference page for these classes */ - .font-regular { - font-family: "Omnes-ECOMP-W02", Arial !important; } - - .font-light { - font-family: "Omnes-ECOMP-W02-Light", Arial !important; } - - .font-italic { - font-family: "Omnes-ECOMP-W02-Italic", Arial !important; } - - .font-light-italic { - font-family: "Omnes-ECOMP-W02-Light-Italic", Arial !important; } - - .font-medium { - font-family: "Omnes-ECOMP-W02-Medium", Arial !important; } - - .font-medium-italic { - font-family: "Omnes-ECOMP-W02-Medium-Italic",Arial !important; } - - .font-reset { - font-style: normal; - font-variant: normal; - font-weight: normal; - text-transform: none; } - - .visible-phone { - display: none !important; } - - .visible-tablet { - display: none !important; } - - .hidden-desktop { - display: none !important; } - - .visible-desktop { - display: inherit !important; } - - .row, - .row-nowrap { - margin-left: 0; } - - .row:before, - .row-nowrap:before, - .row:after, - .row-nowrap:after { - display: table; - content: ""; - line-height: 0; } - - .row:after, - .row-nowrap:after { - clear: both; } - - .row:before, - .row-nowrap:before, - .row:after, - .row-nowrap:after { - display: table; - content: ""; - line-height: 0; } - - .row:after, - .row-nowrap:after { - clear: both; } - - .row, - .row-nowrap { - display: flex; } - - .row > [class*="span"], - .row-nowrap > [class*="span"] { - float: left; - margin-right: 14px; - margin-right: 1.40845%\9; } - - .row > [class*="span"]:last-child, - .row-nowrap > [class*="span"]:last-child { - margin-right: 0; } - - .row > [class*="span"].centered, - .row-nowrap > [class*="span"].centered { - margin-left: auto !important; - margin-right: auto !important; } - - .row.no-flex, - .row-nowrap.no-flex { - display: block; } - - .row.no-flex > [class*="span"], - .row-nowrap.no-flex > [class*="span"] { - margin-right: 1.408450704225352%; } - - .row.no-flex > [class*="span"]:last-child, - .row-nowrap.no-flex > [class*="span"]:last-child { - margin-right: 0; } - - .row.flex-justify, - .row-nowrap.flex-justify { - justify-content: space-between; } - - .row.flex-justify > [class*="span"], - .row-nowrap.flex-justify > [class*="span"] { - flex: 1 1 0; } - - .row.flex-justify > .flex-col, - .row-nowrap.flex-justify > .flex-col { - margin-right: 14px; - margin-right: 1.40845%\9; } - - .row.flex-wrap, - .row-nowrap.flex-wrap { - flex-wrap: wrap; } - - .align-items-top { - align-items: flex-start; } - - .align-items-center { - align-items: center; } - - .align-items-bottom { - align-items: flex-end; } - - .align-self-top { - align-self: flex-start; } - - .align-self-center { - align-self: center; } - - .align-self-bottom { - align-self: flex-end; } - - .row .fixed-230 { - flex: 0; - display: block; - width: 230px; - vertical-align: top; - min-width: 230px; - background-color: #efefef; } - - .row .fluid-space { - flex: 1 1 0; - display: block; - vertical-align: top; - padding-left: 0; - padding-right: 20px; - width: 100%; } - - .row .fixed-230 + .fluid-space { - padding-left: 20px; - padding-right: 20px; } - - .row .fluid-space:last-child { - padding-right: 0; } - - .span1 { - width: 7.042253521126761%; } - - .span2 { - width: 15.49295774647887%; } - - .span3 { - width: 23.94366197183099%; } - - .span4 { - width: 32.3943661971831%; } - +.b2b-horizontal-table ::-webkit-scrollbar-thumb { + background: #666666; + border-radius: 5px; } + +.b2b-horizontal-table .b2b-frozen-col { + font-size: 5px; + font-weight: normal; + font-style: italic; } +/* +.b2b-horizontal-table .b2b-horizontal-table-inner-container { + overflow-x: scroll; } */ + +.b2b-horizontal-table .b2b-horizontal-table-column-info { + text-align: center; } + +.b2b-horizontal-table .b2b-horizontal-table-legend div[b2b-flyout-toggler] { + color: #0568ae; + cursor: pointer; } + +.b2b-horizontal-table .b2b-horizontal-table-legend .b2b-frozen-cell { + width: 16px; + height: 16px; + background-color: #F2F2F2; + display: inline-block; + margin-right: 10px; } + +.b2b-horizontal-table .b2b-horizontal-table-arrows { + margin-bottom: 20px; } + .b2b-horizontal-table .b2b-horizontal-table-arrows .b2b-disabled-text { + color: #767676; } + .b2b-horizontal-table .b2b-horizontal-table-arrows .b2b-next-link { + padding-right: 15px; } + .b2b-horizontal-table .b2b-horizontal-table-arrows .b2b-prev-link { + padding-left: 15px; } + +@-moz-document url-prefix() { + .b2b-horizontal-table td:first-child { + border-top: none; } } +* { + box-sizing: border-box; } + +:root { + -ms-overflow-style: -ms-autohiding-scrollbar; + overflow-y: scroll; + -ms-text-size-adjust: 100%; + -webkit-text-size-adjust: 100%; + box-sizing: border-box; + font: 0.625pc/1.5 sans-serif; + text-rendering: optimizeLegibility; } + +html { + overflow-y: scroll; + -webkit-overflow-scrolling: touch; + height: 100%; + position: relative; } + +h1, +h2, +h3, +h4, +h5, +p, +blockquote, +figure, +ol, +ul { + margin: 0; + padding: 0; } + +/* a:focus { + outline: thin dotted #191919; +} */ +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: top; } + +sup { + top: .75em; + display: inline-block; } + +sub { + bottom: -0.25em; } + +img { + max-width: 100%; + height: auto; + vertical-align: middle; + border: 0; + -ms-interpolation-mode: bicubic; } + +.img-no-rwd { + max-width: inherit !important; } + +svg { + display: inline-block; } + +.responsive-img { + width: 100%; + height: auto; } + +button, +input, +select, +textarea { + margin-bottom: 5; + font-size: 100%; + vertical-align: middle; } + +::-moz-focus-inner { + padding: 0; + border: 0; } + +button, +html input[type="button"], +input[type="reset"], +input[type="submit"] { + appearance: button; + cursor: pointer; } + +label, +select, +button, +input[type="button"], +input[type="reset"], +input[type="submit"], +input[type="radio"], +input[type="checkbox"] { + cursor: pointer; } + +input[type=search] { + -webkit-appearance: textfield; } + +input[type=search]:-webkit-search-cancel-button, +input[type=search]:-webkit-search-decoration { + -webkit-appearance: none; } + + + +select { + -moz-appearance: none; + -webkit-appearance: none; } + +[aria-busy=true] { + cursor: progress; } + +[aria-controls] { + cursor: pointer; } + +body { + background-color: #ffffff; + color: #191919; + font-family: "Omnes-ECOMP-W02", Arial; +/* font-size: 1.6rem; + line-height: 2rem;*/ + margin: 0; + position: relative; + width: 100%; + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; } + +small { + font-size: 1.6rem; } + +.container { + margin: 0 auto; + padding: 0; } + +.tooltip { + display: inline-block; + height: 20px; + margin: 1px 0 0 7px; + vertical-align: middle; } + +.tooltip-wrapper { + display: none; } + + + +/* TODO: Build a reference page for these classes */ +.font-regular { + font-family: "Omnes-ECOMP-W02", Arial !important; } + +.font-light { + font-family: "Omnes-ECOMP-W02-Light", Arial !important; } + +.font-italic { + font-family: "Omnes-ECOMP-W02-Italic", Arial !important; } + +.font-light-italic { + font-family: "Omnes-ECOMP-W02-Light-Italic", Arial !important; } + +.font-medium { + font-family: "Omnes-ECOMP-W02-Medium", Arial !important; } + +.font-medium-italic { + font-family: "Omnes-ECOMP-W02-Medium-Italic",Arial !important; } + +.font-reset { + font-style: normal; + font-variant: normal; + font-weight: normal; + text-transform: none; } + +.visible-phone { + display: none !important; } + +.visible-tablet { + display: none !important; } + +.hidden-desktop { + display: none !important; } + +.visible-desktop { + display: inherit !important; } + +.row, +.row-nowrap { + margin-left: 0; } + +.row:before, +.row-nowrap:before, +.row:after, +.row-nowrap:after { + display: table; + content: ""; + line-height: 0; } + +.row:after, +.row-nowrap:after { + clear: both; } + +.row:before, +.row-nowrap:before, +.row:after, +.row-nowrap:after { + display: table; + content: ""; + line-height: 0; } + +.row:after, +.row-nowrap:after { + clear: both; } + +.row, +.row-nowrap { + display: flex; } + +.row > [class*="span"], +.row-nowrap > [class*="span"] { + float: left; + margin-right: 14px; + margin-right: 1.40845%\9; } + +.row > [class*="span"]:last-child, +.row-nowrap > [class*="span"]:last-child { + margin-right: 0; } + +.row > [class*="span"].centered, +.row-nowrap > [class*="span"].centered { + margin-left: auto !important; + margin-right: auto !important; } + +.row.no-flex, +.row-nowrap.no-flex { + display: block; } + +.row.no-flex > [class*="span"], +.row-nowrap.no-flex > [class*="span"] { + margin-right: 1.408450704225352%; } + +.row.no-flex > [class*="span"]:last-child, +.row-nowrap.no-flex > [class*="span"]:last-child { + margin-right: 0; } + +.row.flex-justify, +.row-nowrap.flex-justify { + justify-content: space-between; } + +.row.flex-justify > [class*="span"], +.row-nowrap.flex-justify > [class*="span"] { + flex: 1 1 0; } + +.row.flex-justify > .flex-col, +.row-nowrap.flex-justify > .flex-col { + margin-right: 14px; + margin-right: 1.40845%\9; } + +.row.flex-wrap, +.row-nowrap.flex-wrap { + flex-wrap: wrap; } + +.align-items-top { + align-items: flex-start; } + +.align-items-center { + align-items: center; } + +.align-items-bottom { + align-items: flex-end; } + +.align-self-top { + align-self: flex-start; } + +.align-self-center { + align-self: center; } + +.align-self-bottom { + align-self: flex-end; } + +.row .fixed-230 { + flex: 0; + display: block; + width: 230px; + vertical-align: top; + min-width: 230px; + background-color: #efefef; } + +.row .fluid-space { + flex: 1 1 0; + display: block; + vertical-align: top; + padding-left: 0; + padding-right: 20px; + width: 100%; } + +.row .fixed-230 + .fluid-space { + padding-left: 20px; + padding-right: 20px; } + +.row .fluid-space:last-child { + padding-right: 0; } + +.span1 { + width: 7.042253521126761%; } + +.span2 { + width: 15.49295774647887%; } + +.span3 { + width: 23.94366197183099%; } + +.span4 { + width: 32.3943661971831%; } + +.span5 { + width: 40.84507042253521%; } + +.span6 { + width: 49.29577464788733%; } + +.span7 { + width: 57.74647887323944%; } + +.span8 { + width: 66.19718309859155%; } + +.span9 { + width: 74.64788732394367%; } + +.span10 { + width: 83.09859154929578%; } + +.span11 { + width: 91.54929577464789%; } + +.span12 { + width: 100%; } + +.offset1 { + margin-left: 8.450704225352113%; } + +.offset2 { + margin-left: 16.90140845070423%; } + +.offset3 { + margin-left: 25.35211267605634%; } + +.offset4 { + margin-left: 33.8028169%; } + +.offset5 { + margin-left: 42.25352113%; } + +.offset6 { + margin-left: 50.70422535%; } + +.offset7 { + margin-left: 59.15492958%; } + +.offset8 { + margin-left: 67.6056338%; } + +.offset9 { + margin-left: 76.05633803%; } + +.offset10 { + margin-left: 84.50704225%; } + +.offset11 { + margin-left: 92.95774648%; } + +.align-center { + margin: 0 auto; + text-align: center; } + +[class*="span"].align-center { + margin: 0 auto !important; + float: none; } + +.align-left .container { + padding-left: 0 !important; + margin: 0 !important; } + +/* BEGIN RESPONSIVE-4.LESS ************** */ +@media (min-width: 1025px) { + .row > [class*="span"], + .row-nowrap > [class*="span"] { + margin-right: 20px; + margin-right: 1.487301587301587%\9; } + .container { + padding-left: 20px; + padding-right: 20px; + max-width: 1260px; } + /* 1col = 6.878306878306879 */ + /* 1colgutter = 1.587301587301587 */ + .span0 { + display: none; } + .span1 { + width: 6.878306878306879%; } + .span2 { + width: 15.34391534391534%; } + .span3 { + width: 23.80952380952381%; } + .span4 { + width: 32.27513227513228%; } .span5 { - width: 40.84507042253521%; } - + width: 40.74074074074074%; } .span6 { - width: 49.29577464788733%; } - + width: 49.20634920634921%; } .span7 { - width: 57.74647887323944%; } - + width: 57.67195767195767%; } .span8 { - width: 66.19718309859155%; } - + width: 66.13756613756614%; } .span9 { - width: 74.64788732394367%; } - + width: 74.60317460317461%; } .span10 { - width: 83.09859154929578%; } - + width: 83.06878306878308%; } .span11 { - width: 91.54929577464789%; } - + width: 91.53439153439154%; } .span12 { width: 100%; } - .offset1 { - margin-left: 8.450704225352113%; } - + margin-left: 8.465608465608466%; } .offset2 { - margin-left: 16.90140845070423%; } - + margin-left: 16.93121693121693%; } .offset3 { - margin-left: 25.35211267605634%; } - + margin-left: 25.3968253968254%; } .offset4 { - margin-left: 33.8028169%; } - + margin-left: 33.86243386%; } .offset5 { - margin-left: 42.25352113%; } - + margin-left: 42.32804233%; } .offset6 { - margin-left: 50.70422535%; } - + margin-left: 50.79365079%; } .offset7 { - margin-left: 59.15492958%; } - + margin-left: 59.25925926%; } .offset8 { - margin-left: 67.6056338%; } - + margin-left: 67.72486772%; } .offset9 { - margin-left: 76.05633803%; } - + margin-left: 76.19047619%; } .offset10 { - margin-left: 84.50704225%; } - + margin-left: 84.65608466%; } .offset11 { - margin-left: 92.95774648%; } - - .align-center { + margin-left: 93.12169312%; } + .tooltip-size-control { + position: relative; + width: 400px; } + .thumbnails > li { + margin-left: 1.40845070422535%; } + .row .thumbnails { + margin-left: 0; } } + +/* END RESPONSIVE-4.LESS ****************** */ +/* BEGIN RESPONSIVE-3.LESS ******************* */ +@media (min-width: 768px) and (max-width: 1024px) { + .hidden-desktop { + display: inherit !important; } + .visible-desktop { + display: none !important; } + .visible-tablet { + display: inherit !important; } + .hidden-tablet { + display: none !important; } + .container { + width: 100%; margin: 0 auto; - text-align: center; } - - [class*="span"].align-center { - margin: 0 auto !important; - float: none; } - - .align-left .container { - padding-left: 0 !important; - margin: 0 !important; } - - /* BEGIN RESPONSIVE-4.LESS ************** */ - @media (min-width: 1025px) { - .row > [class*="span"], - .row-nowrap > [class*="span"] { - margin-right: 20px; - margin-right: 1.487301587301587%\9; } - .container { - padding-left: 20px; - padding-right: 20px; - max-width: 1260px; } - /* 1col = 6.878306878306879 */ - /* 1colgutter = 1.587301587301587 */ - .span0 { - display: none; } - .span1 { - width: 6.878306878306879%; } - .span2 { - width: 15.34391534391534%; } - .span3 { - width: 23.80952380952381%; } - .span4 { - width: 32.27513227513228%; } - .span5 { - width: 40.74074074074074%; } - .span6 { - width: 49.20634920634921%; } - .span7 { - width: 57.67195767195767%; } - .span8 { - width: 66.13756613756614%; } - .span9 { - width: 74.60317460317461%; } - .span10 { - width: 83.06878306878308%; } - .span11 { - width: 91.53439153439154%; } - .span12 { - width: 100%; } - .offset1 { - margin-left: 8.465608465608466%; } - .offset2 { - margin-left: 16.93121693121693%; } - .offset3 { - margin-left: 25.3968253968254%; } - .offset4 { - margin-left: 33.86243386%; } - .offset5 { - margin-left: 42.32804233%; } - .offset6 { - margin-left: 50.79365079%; } - .offset7 { - margin-left: 59.25925926%; } - .offset8 { - margin-left: 67.72486772%; } - .offset9 { - margin-left: 76.19047619%; } - .offset10 { - margin-left: 84.65608466%; } - .offset11 { - margin-left: 93.12169312%; } - .tooltip-size-control { - position: relative; - width: 400px; } - .thumbnails > li { - margin-left: 1.40845070422535%; } - .row .thumbnails { - margin-left: 0; } } - - /* END RESPONSIVE-4.LESS ****************** */ - /* BEGIN RESPONSIVE-3.LESS ******************* */ - @media (min-width: 768px) and (max-width: 1024px) { - .hidden-desktop { - display: inherit !important; } - .visible-desktop { - display: none !important; } - .visible-tablet { - display: inherit !important; } - .hidden-tablet { - display: none !important; } - .container { - width: 100%; - margin: 0 auto; - padding-left: 20px; - padding-right: 20px; } - .span0-md { - display: none; } - .span1-md { - width: 7.042253521126761%; } - .span2-md { - width: 15.49295774647887%; } - .span3-md { - width: 23.94366197183099%; } - .span4-md { - width: 32.3943661971831%; } - .span5-md { - width: 40.84507042253521%; } - .span6-md { - width: 49.29577464788733%; } - .span7-md { - width: 57.74647887323944%; } - .span8-md { - width: 66.19718309859155%; } - .span9-md { - width: 74.64788732394367%; } - .span10-md { - width: 83.09859154929578%; } - .span11-md { - width: 91.54929577464789%; } - .span12-md { - width: 100%; } - .offset1-md { - margin-left: 8.450704225352113%; } - .offset2-md { - margin-left: 16.90140845070423%; } - .offset3-md { - margin-left: 25.35211267605634%; } - .offset4-md { - margin-left: 33.8028169%; } - .offset5-md { - margin-left: 42.25352113%; } - .offset6-md { - margin-left: 50.70422535%; } - .offset7-md { - margin-left: 59.15492958%; } - .offset8-md { - margin-left: 67.6056338%; } - .offset9-md { - margin-left: 76.05633803%; } - .offset10-md { - margin-left: 84.50704225%; } - .offset11-md { - margin-left: 92.95774648%; } - .tooltip-size-control { - position: relative; - width: 300px; } } - - /* END RESPONSIVE-3.LESS ******************* */ - /* BEGIN RESPONSIVE-2.LESS *************** */ - @media (max-width: 767px) { - .hidden-desktop { - display: inherit !important; } - .visible-desktop { - display: none !important; } - .visible-phone { - display: inherit !important; } - .visible-tablet { - display: inherit !important; } - .hidden-phone { - display: none !important; } - .hidden-tablet { - display: none !important; } - .container { - width: auto; - padding-left: 15px; - padding-right: 15px; } - /*.row{ display:block; }*/ - .row > [class*="span"] { - float: none; - margin-left: 0; - margin-right: 0; - width: 100%; } - .row { - display: block; } - .row.flex > .flex-col, - .row-nowrap.flex > .flex-col { - margin-right: 0; } - .row .fixed-230 { - display: block; - width: 100%; } - .row .fluid-space { - display: block; - padding-left: 0; - padding-right: 0; - width: auto; } - .row .fluid-space + .fixed-230 { - padding-left: 0; } - .row .fluid-space:last-child { - padding-right: 0; } - .span0-sm { - display: none; } - .span1-sm { - width: 7.042253521126761%; } - .span2-sm { - width: 15.49295774647887%; } - .span3-sm { - width: 23.94366197183099%; } - .span4-sm { - width: 32.3943661971831%; } - .span5-sm { - width: 40.84507042253521%; } - .span6-sm { - width: 49.29577464788733%; } - .span7-sm { - width: 57.74647887323944%; } - .span8-sm { - width: 66.19718309859155%; } - .span9-sm { - width: 74.64788732394367%; } - .span10-sm { - width: 83.09859154929578%; } - .span11-sm { - width: 91.54929577464789%; } - .span12-sm { - width: 100%; } - .offset1-sm { - margin-left: 8.450704225352113%; } - .offset2-sm { - margin-left: 16.90140845070423%; } - .offset3-sm { - margin-left: 25.35211267605634%; } - .offset4-sm { - margin-left: 33.8028169%; } - .offset5-sm { - margin-left: 42.25352113%; } - .offset6-sm { - margin-left: 50.70422535%; } - .offset7-sm { - margin-left: 59.15492958%; } - .offset8-sm { - margin-left: 67.6056338%; } - .offset9-sm { - margin-left: 76.05633803%; } - .offset10-sm { - margin-left: 84.50704225%; } - .offset11-sm { - margin-left: 92.95774648%; } - input { - padding: 8px 15px 8px 15px; } - .field-group input.input-emphasized[type="search"] + .reset-field:after { - top: 14px; } - .field-group input.input-emphasized[type="search"] + .reset-field { - height: 46px; - top: 1px; } - .marquee { - margin-bottom: 30px; } - .marquee .blur-overlay { - border-radius: 0; - position: absolute; - bottom: 0; - left: 0; - width: 100%; - margin: 0; - padding: 34px 15px 30px; } - .marquee + div { - margin-top: 30px; } - .marquee h1 { - font-size: 1.8rem; - letter-spacing: -0.035px; } - .marquee .lead { - font-size: 3.0rem; - line-height: 3.6rem; - margin-bottom: 0; } - .marquee p:not(.lead) { - font-family: "Omnes-ECOMP-W02-Light", Arial; - font-size: 1.8rem; - margin-bottom: 0; } - .marquee .btn-fullwidth { - margin-top: 10px; - width: 100%; - float: none; } - .tooltip-size-control { - width: 100%; } - .table-wrapper, - .accordion-table-layout { - margin-left: -15px; - margin-right: -15px; } - .table-wrapper caption { - padding-left: 15px; } } - - @media (max-width: 480px) { - .span1-xsm { - width: 7.042253521126761%; } - .span2-xsm { - width: 15.49295774647887%; } - .span3-xsm { - width: 23.94366197183099%; } - .span4-xsm { - width: 32.3943661971831%; } - .span5-xsm { - width: 40.84507042253521%; } - .span6-xsm { - width: 49.29577464788733%; } - .span7-xsm { - width: 57.74647887323944%; } - .span8-xsm { - width: 66.19718309859155%; } - .span9-xsm { - width: 74.64788732394367%; } - .span10-xsm { - width: 83.09859154929578%; } - .span11-xsm { - width: 91.54929577464789%; } - .span12-xsm { - width: 100%; } - .offset1-xsm { - margin-left: 8.450704225352113%; } - .offset2-xsm { - margin-left: 16.90140845070423%; } - .offset3-xsm { - margin-left: 25.35211267605634%; } - .offset4-xsm { - margin-left: 33.8028169%; } - .offset5-xsm { - margin-left: 42.25352113%; } - .offset6-xsm { - margin-left: 50.70422535%; } - .offset7-xsm { - margin-left: 59.15492958%; } - .offset8-xsm { - margin-left: 67.6056338%; } - .offset9-xsm { - margin-left: 76.05633803%; } - .offset10-xsm { - margin-left: 84.50704225%; } - .offset11-xsm { - margin-left: 92.95774648%; } } - - /* END RESPONSIVE-2.LESS ******************* */ - /* BEGIN RESPONSIVE-1.LESS ************** */ - .xxxxxxxx-begin-responsive-480px.less { - /* placeholder */ } - - @media (max-width: 480px) { - .hidden-desktop { - display: inherit !important; } - .hidden-tablet { - display: inherit !important; } - .hidden-phone { - display: none !important; } - .visible-desktop { - display: none !important; } - .visible-tablet { - display: none !important; } - .visible-phone { - display: inherit !important; } - .container { - width: auto; - padding-left: 15px; - padding-right: 15px; } } - - [class*="icon-primary-"], - .nav-links a:after, - .bellyband-link a:after, - .breadcrumb > li:after, - .checkbox input:checked + .skin:after, - .checkbox input.indeterminate + .skin:after, - .checkbox input:indeterminate + .skin:after, - .selectWrap.large:before, - .form-row.error .error-msg:before, - .close:before, - .reset-field:before, - .cssIcon-globe:before, - .selectWrap:after { - color: #0568ae; - display: inline-block; - font-family: 'icoPrimary'; - font-style: normal; - font-size: 20px; - font-weight: normal; - font-variant: normal; - height: 1em; - margin-right: 7px; - text-transform: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; + padding-left: 20px; + padding-right: 20px; } + .span0-md { + display: none; } + .span1-md { + width: 7.042253521126761%; } + .span2-md { + width: 15.49295774647887%; } + .span3-md { + width: 23.94366197183099%; } + .span4-md { + width: 32.3943661971831%; } + .span5-md { + width: 40.84507042253521%; } + .span6-md { + width: 49.29577464788733%; } + .span7-md { + width: 57.74647887323944%; } + .span8-md { + width: 66.19718309859155%; } + .span9-md { + width: 74.64788732394367%; } + .span10-md { + width: 83.09859154929578%; } + .span11-md { + width: 91.54929577464789%; } + .span12-md { + width: 100%; } + .offset1-md { + margin-left: 8.450704225352113%; } + .offset2-md { + margin-left: 16.90140845070423%; } + .offset3-md { + margin-left: 25.35211267605634%; } + .offset4-md { + margin-left: 33.8028169%; } + .offset5-md { + margin-left: 42.25352113%; } + .offset6-md { + margin-left: 50.70422535%; } + .offset7-md { + margin-left: 59.15492958%; } + .offset8-md { + margin-left: 67.6056338%; } + .offset9-md { + margin-left: 76.05633803%; } + .offset10-md { + margin-left: 84.50704225%; } + .offset11-md { + margin-left: 92.95774648%; } + .tooltip-size-control { position: relative; - speak: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - vertical-align: middle; - width: 1em; } - - [class*="icoWeather-"], [class*="icoTrans-"], [class*="icoBubble-"], [class*="icoRetail-"], [class*="icoPeople-"], [class*="icoNumslets-"], [class*="icoLocation-"], [class*="icoHealthcare-"], [class*="icoDocuments-"], [class*="icoDevices-"], [class*="icoDatanetwork-"], [class*="icoControls-"], [class*="icoBuilding-"], [class*="icoArrows-"] { - color: #0568ae; - display: inline-block; - font-style: normal; - font-size: 20px; - font-weight: normal; - font-variant: normal; - font-style: normal; - width: 20px; - text-transform: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - position: relative; - speak: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - vertical-align: middle; } - - [class*="icon-primary-"]:before, - [class*="icon-primary-"]:after { - box-sizing: border-box; - display: inline-block; - font-size: 1em; - height: 1em; - position: relative; - top: 0; - left: 0; - vertical-align: middle; - width: 1em; } - - .icon-primary-att-globe:before, - .cssIcon-globe:before { - content: "\e900"; - color: #44c7f5; } - - .icon-primary-hamburger:before { - content: "\e903"; } - - .icon-primary-secure:before { - content: "\e918"; } - - .icon-primary-secureL:before { - content: "\e919"; } - - .icon-primary-padlockopen:before { - content: "\e916"; } - - .icon-primary-padlockopenL:before { - content: "\e917"; } - - .icon-primary-shoppingcart:before { - content: "\e914"; } - - .icon-primary-shoppingcartL:before { - content: "\e915"; } - - .icon-primary-print:before { - content: "\e921"; } - - .icon-primary-printL:before { - content: "\e922"; } - - .icon-primary-mobilesmartphone:before { - content: "\e908"; } - - .icon-primary-mobilesmartphoneL:before { - content: "\e90c"; } - - .icon-primary-tablet:before { - content: "\e904"; } - - .icon-primary-tabletL:before { - content: "\e905"; } - - .icon-primary-tv:before { - content: "\e906"; } - - .icon-primary-tvL:before { - content: "\e907"; } - - .icon-primary-calendar { - width: 100% !important; } - - .icon-primary-calendar:before { - content: "\e91a"; - z-index: 1; } - - .icon-primary-calendarL:before { - content: "\e91b"; } - - .icon-primary-star:before { - content: "\e96c"; } - - .icon-primary-close:before, - .close:before, - .reset-field:before { - content: "\e910"; } - - .icon-primary-down:before { - content: "\ea3c"; } - - .checkbox input.indeterminate + .skin:after, - .icon-primary-subtractminimize:before { - content: "\e920"; } - - .icon-primary-add-maximize:before { - content: "\e91f"; } - - .icon-primary-check:before, - .checkbox input:checked + .skin:after { - content: "\e912"; } - - .icon-primary-questionmark:before { - content: "\e90f"; } - - .icon-primary-badgealert:before, - .form-row.error .error-msg:before { - content: "\e90e"; } - - .icon-primary-approval:before { - content: "\e925"; } - - .icon-primary-flat-info:before { - content: "\e927"; } - - .icon-primary-alert:before { - content: "\e913"; } - - .icon-primary-tooltip:before, - .icon-primary-flat-faq:before { - content: "\e90d"; } - - .icon-primary-tooltip { - font-size: 20px; } - - .nav-links a:after, - .bellyband-link a:after, - .breadcrumb > li:after, - .icon-primary-right:before { - content: "\ea3c"; - transform: rotate(-90deg); } - - .icon-primary-left:before { - content: "\ea3c"; - transform: rotate(90deg); } - - .icon-primary-accordion-plus:after, - .icon-primary-collapsed:after, - .icon-primary-accordion-minus:after, - .icon-primary-expanded:after { - content: ""; - position: absolute; - top: 0; - z-index: 1; } - - .icon-primary-accordion-minus, - .icon-primary-expanded, - .icon-primary-accordion-plus, - .icon-primary-collapsed { - font-size: 20px !important; } - - :not(.ds2-no-colors) .icon-primary-accordion-minus:before, - :not(.ds2-no-colors) .icon-primary-expanded:before { - background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2021%2021%22%3E%3Cpath%20fill%3D%22%230568ae%22%20d%3D%22M15.1%2011.3H5.9c-.4%200-.8-.3-.8-.8s.3-.8.8-.8h9.3c.4%200%20.8.3.8.8s-.4.8-.9.8z%22%2F%3E%3Cpath%20fill%3D%22%23d2d2d2%22%20d%3D%22M10.5%2021C4.7%2021%200%2016.3%200%2010.5S4.7%200%2010.5%200%2021%204.7%2021%2010.5%2016.3%2021%2010.5%2021zm0-20C5.3%201%201%205.3%201%2010.5S5.3%2020%2010.5%2020s9.5-4.3%209.5-9.5S15.7%201%2010.5%201z%22%2F%3E%3C%2Fsvg%3E"); - content: ""; } - - :not(.ds2-no-colors) .icon-primary-accordion-plus:before, - :not(.ds2-no-colors) .icon-primary-collapsed:before { - background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2021%2021%22%3E%3Cpath%20fill%3D%22%230568ae%22%20d%3D%22M10.5%2015.9c-.4%200-.8-.3-.8-.8V5.9c0-.4.3-.8.8-.8s.8.3.8.8v9.3c0%20.4-.4.7-.8.7z%22%2F%3E%3Cpath%20fill%3D%22%230568ae%22%20d%3D%22M15.1%2011.3H5.9c-.4%200-.8-.3-.8-.8s.3-.8.8-.8h9.3c.4%200%20.8.3.8.8s-.4.8-.9.8z%22%2F%3E%3Cpath%20fill%3D%22%23d2d2d2%22%20d%3D%22M10.5%2021C4.7%2021%200%2016.3%200%2010.5S4.7%200%2010.5%200%2021%204.7%2021%2010.5%2016.3%2021%2010.5%2021zm0-20C5.3%201%201%205.3%201%2010.5S5.3%2020%2010.5%2020s9.5-4.3%209.5-9.5S15.7%201%2010.5%201z%22%2F%3E%3C%2Fsvg%3E"); - content: ""; } - - .ds2-no-colors .icon-primary-accordion-minus:before, - .ds2-no-colors .icon-primary-expanded:before { - background-image: none; - content: "\e901"; } - - .ds2-no-colors .icon-primary-accordion-minus:after, - .ds2-no-colors .icon-primary-expanded:after { - content: "\e902"; } - - .ds2-no-colors .icon-primary-accordion-plus:before, - .ds2-no-colors .icon-primary-collapsed:before { - background-image: none; - content: "\e90b"; } - - .ds2-no-colors .icon-primary-accordion-plus:after, - .ds2-no-colors .icon-primary-collapsed:after { - content: "\e911"; } - - .icon-primary-circle-arrow { - outline: 1px solid transparent; - border-radius: 50%; - font-size: 20px !important; - background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08); - margin-right: 7px; } - - .icon-primary-circle-arrow:after { - background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2036%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20baseProfile%3D%22tiny%22%3E%3Ccircle%20r%3D%2217%22%20cy%3D%2218%22%20cx%3D%2218%22%20stroke-width%3D%221%22%20fill%3D%22transparent%22%20stroke%3D%22%23ccc%22%2F%3E%3C%2Fsvg%3E"); - content: ""; - position: absolute; - top: 0; - z-index: 2; } - - .icon-primary-circle-arrow:before { - border-radius: 50%; - content: "\ea3c"; - font-size: 12px; - top: 0; - position: absolute; - transform: rotate(-90deg); - width: 20px; - z-index: 1; } - - [class*="icon-primary-"] [class*="icon-primary-"] { - display: inline-block; - float: left; - font-size: 1em; - margin-left: -1em; - position: absolute; } - - [class*="icon-primary-"].white, [class^="ico"][class*="-"].white { - color: #fff; } - - [class*="icon-primary-"].black, [class^="ico"][class*="-"].black { - color: #000; } - - [class*="icon-primary-"].blue, [class^="ico"][class*="-"].blue { - color: #0568ae; } - - [class*="icon-primary-"].green, [class^="ico"][class*="-"].green { - color: #007a3e; } - - @-webkit-viewport { - width: device-width; } - - @-moz-viewport { - width: device-width; } - - @-ms-viewport { - width: device-width; } - - @-o-viewport { - width: device-width; } - - @viewport { - width: device-width; } - - .clearfix:before, - .clearfix:after { - display: table; - content: ""; - line-height: 0; } - - .clearfix:after { - clear: both; } - - .pull-right { - float: right !important; } - - .pull-left { - float: left !important; } - - .float-children-left:before, - .float-children-left:after { - display: table; - content: ""; - line-height: 0; } - - .float-children-left:after { - clear: both; } - - .float-children-left > div { - float: left; - white-space: nowrap; } - - .block { - display: block !important; } - - .inline { - display: inline !important; } - - .inline-block { - display: inline-block !important; } - - .table-cell { - display: table-cell !important; - width: 1%; - vertical-align: middle; } - - @media (max-width: 767px) { - .full-bleed { - width: auto; - margin-left: -15px; - margin-right: -15px; - padding: 15px; } } - - @media (min-width: 768px) { - .full-bleed { - width: auto; - margin-left: -20px; - margin-right: -20px; - padding: 20px; } } - - @media (max-width: 480px) { - .full-bleed { - width: auto; - margin-left: -15px; - margin-right: -15px; - padding: 0 15px; } } - - .fade { - opacity: 0; - filter: alpha(opacity=0); - transition: opacity .15s linear; } - - .fade.in { - opacity: 1; - filter: alpha(opacity=100); } - - .b2bCollapse { - display: none; } - - .collapse.in { - height: auto; } - - .nowrap { - white-space: nowrap; } - - .pre { - white-space: pre; } - - .hidden-spoken { - border: 0 none !important; - clip: rect(0px, 0px, 0px, 0px) !important; - height: 1px !important; - letter-spacing: 0; - line-height: 0; - overflow: hidden !important; - margin-top: -1px; - padding: 0 !important; - position: absolute !important; - width: 1px !important; } - - [data-sr-text].hidden-spoken:before { - border: 0 none !important; - content: attr(data-sr-text); - clip: rect(0px, 0px, 0px, 0px) !important; - height: 1px !important; - letter-spacing: 0; - line-height: 0; - overflow: hidden !important; - padding: 0 !important; - position: absolute !important; - width: 100% !important; - z-index: -1; } - - [data-sr-text].hidden-spoken { - position: relative !important; - width: auto !important; } - - [data-show-between] { - display: none; - visibility: hidden; } - - .noscroll-y { - overflow-y: hidden !important; } - - .invisible { - visibility: hidden !important; - opacity: 0 !important; } - - .transparent { - background-color: rgba(255, 255, 255, 0) !important; } - - .hide { - display: none !important; } - - .show { - display: block !important; } - - .rel { - position: relative !important; } - - .legend-pad { - padding: 0 15px; } - - .border-top { - border-top-width: 1px !important; } - - .border-left { - border-left-width: 1px !important; } - - .border-right { - border-right-width: 1px !important; } - - .border-bottom { - border-bottom-width: 1px !important; } - - .border-dark { - border-color: #000; } - - .border-light { - border-color: #fff; } - - .no-border-top { - border-top-width: 0 !important; } - - .no-border-left { - border-left-width: 0 !important; } - - .no-border-right { - border-right-width: 0 !important; } - - .no-border-bottom { - border-bottom-width: 0 !important; } - - .align-middle { - margin: 0 auto !important; } - - .align-top { - position: absolute; - top: 0; } - - .align-bottom { - position: absolute; - bottom: 0; } - - .valign-top { - vertical-align: top !important; } - - .valign-middle { - vertical-align: middle !important; } - - .valign-bottom { - vertical-align: bottom !important; } - - .align-children-middle > * { - margin: 0 auto; } - - [class*="valign-children-"] { - display: table; } - - [class*="valign-children-"] > * { - display: table-cell; } - - .valign-children-top > * { - vertical-align: top; } - - .valign-children-middle > * { - vertical-align: middle; } - - .valign-children-bottom > * { - vertical-align: bottom; } - - .no-pad { - padding: 0 !important; } - - .top-space { - margin-top: 60px !important; } - - .bottom-space { - margin-bottom: 60px !important; } - - .top-pad { - padding-top: 60px !important; } - - .bottom-pad { - padding-bottom: 60px !important; } - - @media (max-width: 767px) { - .top-space { - margin-top: 30px !important; } - .bottom-space { - margin-bottom: 30px !important; } - .top-pad { - padding-top: 30px !important; } - .bottom-pad { - padding-bottom: 30px !important; } } - - .affix { - position: fixed; } - - .img-landscape, - .img-portrait { - position: relative; } - - @media (orientation: landscape) { - .img-landscape { - display: block; } - .img-portrait { - display: none !important; } } - - @media (orientation: portrait) { - .img-landscape { - display: none !important; } - .img-portrait { - display: block; } } - - .dark-bg { - background-color: #222222; } - - /* ... JAVASCRIPT HOOKS ................. - ... used by javascript ............... */ - .autoSize, - .autoSize-this { - position: relative; } - - .truncate { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; } - - .placeholdersjs { - color: #5a5a5a !important; } - - .jshook-return-focus-here { - display: block; } - - .visible-print { + width: 300px; } } + +/* END RESPONSIVE-3.LESS ******************* */ +/* BEGIN RESPONSIVE-2.LESS *************** */ +@media (max-width: 767px) { + .hidden-desktop { + display: inherit !important; } + .visible-desktop { display: none !important; } - - .hidden-print { + .visible-phone { display: inherit !important; } - - @media print { - .visible-print { - display: inherit !important; } - .hidden-print { - display: none !important; } - * { - color: #000 !important; - background: transparent !important; - box-shadow: none !important; } - a, - a:visited { - text-decoration: underline; } - pre, - blockquote { - border: 1px solid #000; - page-break-inside: avoid; } - thead { - display: table-header-group; } - tr, - img { - page-break-inside: avoid; } - img { - max-width: 100% !important; } - @page { - margin: 0.5cm; } - p, - h2, - h3 { - orphans: 3; - widows: 3; } - h2, - h3 { - page-break-after: avoid; } } - - .mar-top-0 { - margin-top: 0px; } - - .mar-top-30 { - margin-top: 30px; } - - a:focus { - outline: thin dotted #191919; } - - h1, - h2, - h3, - h4, - h5, - h6 { - font-weight: normal; - text-rendering: optimizeLegibility; - margin: 0; - line-height: 1; } - - .heading-page { - font-size: 3.8rem !important; - font-family: "Omnes-ECOMP-W02-Light", Arial; - margin-bottom: 40px; } - - h1.heading-page.ng-scope {} - - .heading-major-section { - font-size: 3rem !important; - font-family: "Omnes-ECOMP-W02-Light", Arial; - margin-bottom: 40px !important; } - - .heading-sub-section { - font-size: 2.4rem !important; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 40px; } - - .heading-group { - font-size: 2rem !important; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - color: #ea7400; - margin-bottom: 20px !important; } - - .heading-medium { - font-size: 2rem !important; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 20px; } - - .heading-medium-emphasis { - font-size: 2rem !important; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - margin-bottom: 20px; } - - .heading-small { - font-size: 1.8rem !important; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 20px; } - - .heading-small-emphasis { - font-size: 1.8rem !important; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - margin-bottom: 20px; } - - .heading-micro { - font-size: 1.3rem !important; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - text-transform: uppercase; - color: #da0081; - margin-bottom: 10px; } - - * + .heading-major-section { - margin-top: 60px; } - - * + .heading-sub-section { - margin-top: 60px; } - - * + .heading-group { - margin-top: 40px !important; } - - * + .heading-medium { - margin-top: 40px; } - - * + .heading-medium-emphasis { - margin-top: 40px; } - - * + .heading-small { - margin-top: 40px; } - - * + .heading-small-emphasis { - margin-top: 40px; } - - * + .heading-micro { - margin-top: 20px; } - - .lead { - color: #666; - font-family: "Omnes-ECOMP-W02-Light-Italic", Arial; - font-size: 2.4rem; - line-height: 2.8rem; - margin-top: 10px; - letter-spacing: -0.024rem; } - - .eyebrow { - text-transform: uppercase; - line-height: .65 !important; } - - .eyebrow, - .subheading { - font-size: 1.4rem !important; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - color: #666; } - - .eyebrow + .heading-major-section, - .eyebrow + .heading-sub-section { - margin-top: 4px; } - - .subheading { - margin-top: 10px; } - - @media (max-width: 767px) { - h1, - h2, - h3, - h4, - h5, - h6, - .heading-page { - font-size: 2rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 30px; } - .heading-major-section { - font-size: 2rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 30px; } - .heading-sub-section { - font-size: 2rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 20px; } - .heading-medium { - font-size: 2rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 20px; } - .heading-medium-emphasis { - font-size: 2rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 20px; } - .heading-small { - font-size: 1.6rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 10px; } - .heading-small-emphasis { - font-size: 1.6rem; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - margin-bottom: 5px; } - * + .heading-major-section { - margin-top: 30px; } - * + .heading-sub-section { - margin-top: 30px; } - * + .heading-group { - margin-top: 20px; } - * + .heading-medium { - margin-top: 20px; } - * + .heading-medium-emphasis { - margin-top: 20px; } - * + .heading-small { - margin-top: 20px; } - * + .heading-small-emphasis { - margin-top: 20px; } - * + .heading-micro { - margin-top: 10px; } } - - /* Standard Type styles */ - .zeromargin { - margin: 0 !important; } - - a { - color: #0568ae; - text-decoration: none; } - - a:hover, - a:focus { - text-decoration: underline; } - - a:active { - color: #0568ae; } - - .a-min { - font-size: 12px; } - - .a-small { - font-size: 14px; } - - .a-max { - font-size: 18px; } - - a.show-qualifier { - margin-right: 25px; - position: relative; } - - a.show-qualifier:after { - color: #333333; - display: inline-block; - white-space: pre !important; } - - a[href$="pdf"].show-qualifier:after, - a.show-qualifier.pdf:after { - content: " (PDF)"; } - - a[href$="psd"].show-qualifier:after, - a.show-qualifier.psd:after { - content: " (PSD)"; } - - .standalone-link { - display: flex; } - - /* 20px for the icon, 10px left of icon */ - .standalone-link.small { - font-size: 1.4rem; } - - .standalone-link.small i[class*="icon-primary-"] { - font-size: 16px; - top: 2px; } - - .standalone-link.large { - font-size: 1.8rem; } - - .standalone-link.large i[class*="icon-primary-"] { - font-size: 24px; - top: -1px; } - - p { - margin: 0 0 12px 0; - line-height: 2rem; } - - .p-small { - font-size: 1.4rem; - line-height: 1.8rem; } - - p + .p-small { - margin: 10px 0 0; } - - .p-micro { - font-size: 1.2rem; - line-height: 1.5rem; } - - p + .p-micro { - margin: 10px 0 0; } - - .p-max { - font-size: 1.8rem; } - - p + .p-max { - margin: 10px 0 0; } - - b, - strong { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-weight: normal; } - - i, - em { - font-family: "Omnes-ECOMP-W02-Italic", Arial; - font-style: normal; } - - .strike { - text-decoration: line-through; } - - sup { - display: inline-block; - font-style: normal; - height: 1em; - position: relative; - vertical-align: text-top; - width: auto; } - - .text-legal { - color: #5a5a5a; - font-size: 1.1rem; - line-height: 1.5rem; - margin: 0 0 10px; } - - .text-legal.legal-module { - line-height: 1.3rem; - margin: 0 0 12px; } - - .text-legal b, - .text-legal strong { - font-weight: bold; } - - .text-legal a { - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - - .text-left { - text-align: left !important; } - - .text-right { - text-align: right !important; } - - .text-center { - text-align: center !important; } - - .text-justified { - text-align: justify !important; } - - ul { - padding: 0; - margin: 0; - list-style: none; } - - ul.bullet, - ul.no-bullet, - ul.lower-alpha, - ul.lower-roman, - ol { - padding: 0; - margin: 12px 0 0 20px; } - - ul.bullet li, - ul.no-bullet li, - ul.lower-alpha li, - ul.lower-roman li, - ol li { + .visible-tablet { + display: inherit !important; } + .hidden-phone { + display: none !important; } + .hidden-tablet { + display: none !important; } + .container { + width: auto; padding-left: 15px; - line-height: 20px; - position: relative; } - - ul.bullet li + li, - ul.no-bullet li + li, - ul.lower-alpha li + li, - ul.lower-roman li + li, - ol li + li { - margin-top: 12px; } - - ul.bullet > li:before, - ul.no-bullet > li:before, - ul.lower-alpha > li:before, - ul.lower-roman > li:before, - ol > li:before { - background-color: #333333; - border: 2px solid #333333; - border-radius: 100%; - content: " "; + padding-right: 15px; } + /*.row{ display:block; }*/ + .row > [class*="span"] { + float: none; + margin-left: 0; + margin-right: 0; + width: 100%; } + .row { + display: block; } + .row.flex > .flex-col, + .row-nowrap.flex > .flex-col { + margin-right: 0; } + .row .fixed-230 { display: block; - height: 1px; - left: 0; - position: absolute; - top: 8px; - width: 1px; } - - ul.bullet ul, - ul.no-bullet ul, - ul.lower-alpha ul, - ul.lower-roman ul, - ol ul, - ul.bullet ol, - ul.no-bullet ol, - ul.lower-alpha ol, - ul.lower-roman ol, - ol ol { - margin-top: 12px; } - - ul + *, - ol + * { - margin-top: 20px; } - - ul.no-bullet, - ul.lower-alpha, - ul.lower-roman { - margin: 0; } - - ul.no-bullet > li, - ul.lower-alpha > li, - ul.lower-roman > li { + width: 100%; } + .row .fluid-space { + display: block; + padding-left: 0; + padding-right: 0; + width: auto; } + .row .fluid-space + .fixed-230 { padding-left: 0; } - - ul.no-bullet > li:before, - ul.lower-alpha > li:before, - ul.lower-roman > li:before { - display: none !important; } - - ol { - margin: 20px 0 0 32px; } - - ol li { - padding-left: 3px; } - - ol li:before { + .row .fluid-space:last-child { + padding-right: 0; } + .span0-sm { display: none; } - - ol ol { - margin-left: 25px; } - - ol ul { - margin-left: -5px; } - - ul ul, - ul ol, - ol ol, - ol ul { - margin-top: 0; } - - ul.lower-roman { - list-style-type: lower-roman; - margin-top: 12px; - margin-left: 35px; - margin-bottom: 0; } - - ul.lower-alpha { - list-style-type: lower-alpha; - margin-top: 12px; - margin-left: 35px; - margin-bottom: 0; } - - dl { - display: table; - margin: 0 0 20px; + .span1-sm { + width: 7.042253521126761%; } + .span2-sm { + width: 15.49295774647887%; } + .span3-sm { + width: 23.94366197183099%; } + .span4-sm { + width: 32.3943661971831%; } + .span5-sm { + width: 40.84507042253521%; } + .span6-sm { + width: 49.29577464788733%; } + .span7-sm { + width: 57.74647887323944%; } + .span8-sm { + width: 66.19718309859155%; } + .span9-sm { + width: 74.64788732394367%; } + .span10-sm { + width: 83.09859154929578%; } + .span11-sm { + width: 91.54929577464789%; } + .span12-sm { width: 100%; } - - dt, - dd { - display: table-cell; } - - .btn { - background-color: transparent; - background-clip: padding-box; - border: 1px solid transparent; - border-radius: 8px; - box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15); - cursor: pointer; - display: inline-block; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 1.9rem; - font-weight: normal; - line-height: 1; - margin: 0 7px 10px 0; - max-width: 470px; - min-width: 70px; - padding: 14px 19px 11px 18px; - position: relative; - text-align: center; - vertical-align: middle; - white-space: nowrap; - overflow: hidden; } - .btn:focus { - outline: 1px dotted #000; - outline-offset: -5px; } - .btn:last-child { - margin-right: 0; } - .btn::-moz-focus-inner { - padding: 0; - border: 0; } - .btn i[class*="icon-primary-"].icon-primary-small { - font-size: 24px; - top: -2px; } - .btn i[class*="icon-primary-"].icon-primary-medium { - font-size: 30px; - top: -2px; } - .btn i[class*="icon-primary-"].icon-primary-large { - font-size: 36px; - top: -2px; } - - a.btn { - vertical-align: middle; } - a.btn:hover { - text-decoration: none; } - - .field-group + .btn { - margin-left: 20px; } - - .btn-primary { - border-color: #ea7400 transparent #d16500; - background-color: #ea7400 transparent #d16500; - background: linear-gradient(to bottom, #ea7400 0%, #d16500 100%); - color: #ffffff; - font-family: "Omnes-ECOMP-W02", Arial; - font-weight: bold; } - .btn-primary:hover { - text-decoration: none; - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } - .btn-primary:focus { - text-decoration: none; - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } - .btn-primary:active { - text-decoration: none; - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } - - .btn-arrow { - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 1.6rem; - font-weight: normal; - background-color: transparent; - border: none; - padding: 5px 0 0; - top: -4px; - color: #333333; - position: relative; } - .btn-arrow:hover { - text-decoration: underline; } - .btn-arrow:hover .btn-primary { - text-decoration: none; - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } - .btn-arrow:hover .btn-secondary { - color: #0568ae; - outline-color: #000000 !important; - background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } - .btn-arrow:hover .btn-alt { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); } - .btn-arrow:hover .btn-specialty { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } - .btn-arrow:focus { - text-decoration: underline; - outline: 1px dotted #666; } - .btn-arrow:focus .btn-primary { - text-decoration: none; - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } - .btn-arrow:focus .btn-secondary { - color: #0568ae; - outline-color: #000000 !important; - background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } - .btn-arrow:focus .btn-alt { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); } - .btn-arrow:focus .btn-specialty { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } - .btn-arrow:active .btn-primary { - text-decoration: none; - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } - .btn-arrow:active .btn-secondary { - color: #0568ae; - outline-color: #000000 !important; - background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } - .btn-arrow:active .btn-alt { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); } - .btn-arrow:active .btn-specialty { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } - .btn-arrow .btn-alt { - border-color: #087ac2 transparent #0568ae; - background-color: #0568ae; - background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); - color: #ffffff; } - .btn-arrow .btn-alt:hover { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } - .btn-arrow .btn-alt:focus { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } - .btn-arrow .btn-alt:active { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } - .btn-arrow::-moz-focus-inner { - padding: 0; - border: 0; } - .btn-arrow .btn { - border: 1px solid transparent; - border-radius: 100%; - height: 36px; - margin-bottom: 0; - margin-right: 7px; - max-width: 36px; - min-width: 20px; - padding: 0; - margin-top: -4px; - vertical-align: middle; - width: 36px; } - .btn-arrow .btn .icon-primary-left { - bottom: 0; - display: block; - height: 100%; - left: 0; - line-height: 0; - position: absolute; - right: 0; - text-indent: 0; - top: 0; } - .btn-arrow .btn .icon-primary-left:before { - position: absolute; - font-size: 1.6rem; - left: 1px; - top: 9px; } - .btn-arrow .btn .icon-primary-right { - bottom: 0; - display: block; - height: 100%; - left: 0; - line-height: 0; - position: absolute; - right: 0; - text-indent: 0; - top: 0; - color: #ffffff; } - .btn-arrow .btn .icon-primary-right:before { - position: absolute; - font-size: 1.6rem; - left: 17px; - top: 9px; } - .btn-arrow .btn.btn-primary .icon-primary-left { - color: #fff; } - .btn-arrow .btn.btn-primary .icon-primary-right { - color: #fff; } - .btn-arrow .btn.btn-alt .icon-primary-left { - color: #fff; } - .btn-arrow .btn.btn-alt .icon-primary-right { - color: #fff; } - .btn-arrow .btn.btn-secondary { - border: 1px solid #d2d2d2; } - .btn-arrow .btn.btn-secondary .icon-primary-left { - color: #0568ae; } - .btn-arrow .btn.btn-secondary .icon-primary-right { - color: #0568ae; } - .btn-arrow .btn.btn-small { - height: 20px; - max-width: 20px; - min-width: 20px; - width: 20px; - top: -1px; } - .btn-arrow .btn.btn-small .icon-primary-left:before { - font-size: 10px; - top: 4px; - left: 0; } - .btn-arrow .btn.btn-small .icon-primary-right:before { - font-size: 10px; - top: 4px; - left: 10px; } - .btn-arrow .btn.btn-large .icon-primary-left:before { - font-size: 112%; - top: 12px; - left: 23px; } - .btn-arrow .btn.btn-large .icon-primary-right:before { - font-size: 112%; - top: 12px; - left: 23px; } - - .btn-secondary { - border: 1px solid #d2d2d2; - background-color: #f2f2f2; - background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); - color: #0568ae; - box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.15); - padding: 14px 18px 11px 17px; } - .btn-secondary:hover { - color: #0568ae; - outline-color: #000000 !important; - background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } - .btn-secondary:focus { - color: #0568ae; - outline-color: #000000 !important; - background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } - .btn-secondary:active { - color: #0568ae; - outline-color: #000000 !important; - background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } - - .btn-alt { - border-color: #087ac2 transparent #0568ae; - background-color: #0568ae; - background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); - color: #ffffff; } - .btn-alt:hover { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } - .btn-alt:focus { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } - .btn-alt:active { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } - - .btn-specialty { - border-color: #008744 transparent #007a3e; - background-color: #007a3e; - background: linear-gradient(to bottom, #008744 0%, #007a3e 100%); - color: #ffffff; } - .btn-specialty:hover { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } - .btn-specialty:focus { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } - .btn-specialty:active { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } - - .btn-clear { - background: transparent !important; - border-color: transparent !important; - font-weight: normal; - font-family: "Omnes-ECOMP-W02", Arial; - box-shadow: none; - text-decoration: none; - color: #0568ae; } - .btn-clear:focus { - text-decoration: underline; } - .btn-clear:hover { - text-decoration: underline; } - - .isIE .btn:focus { - outline: none !important; - text-decoration: none !important; } - .isIE .btn:focus:after { - display: block; - content: ""; - position: absolute; - top: 4px; - left: 4px; - right: 4px; - bottom: 4px; - border: 1px dotted #000; } - - .isIE .btn:active { - outline: none !important; - text-decoration: none !important; } - .isIE .btn:active:after { - display: block; - content: ""; - position: absolute; - top: 4px; - left: 4px; - right: 4px; - bottom: 4px; - border: 1px dotted #000; } - - .isIE .btn.active { - outline: none !important; - text-decoration: none !important; } - .isIE .btn.active:not(:focus):after { - border: 1px solid #000; } - .isIE .btn.active:after { - display: block; - content: ""; - position: absolute; - top: 4px; - left: 4px; - right: 4px; - bottom: 4px; - border: 1px dotted #000; } - - .isIE .btn.btn-primary:focus:after { - border: 2px dashed #fff; } - - .isIE .btn.btn-specialty:focus:after { - border: 2px dashed #fff; } - - .isIE .btn.btn-alt:focus:after { - border: 2px dashed #fff; } - - .btn.disabled { - background-image: none; - background-color: #767676; - box-shadow: none; - cursor: not-allowed; - color: #ffffff; - border-color: transparent; - outline: 0 !important; } - .btn.disabled:hover { - color: #f2f2f2; - outline: none !important; } - .btn.disabled:focus { - color: #f2f2f2; - outline: none !important; } - - .btn[disabled] { - background-image: none; - background-color: #767676; - box-shadow: none; - cursor: not-allowed; - color: #ffffff; - border-color: transparent; - outline: 0 !important; } - .btn[disabled]:hover { - color: #f2f2f2; - outline: none !important; } - .btn[disabled]:focus { - color: #f2f2f2; - outline: none !important; } - - .btn[disabled="disabled"] { - background-image: none; - background-color: #767676; - box-shadow: none; - cursor: not-allowed; - color: #ffffff; - border-color: transparent; - outline: 0 !important; } - .btn[disabled="disabled"]:hover { - color: #f2f2f2; - outline: none !important; } - .btn[disabled="disabled"]:focus { - color: #f2f2f2; - outline: none !important; } - - .btn-arrow[disabled] .btn { - background-image: none; - background-color: #767676; - box-shadow: none; - cursor: not-allowed; - color: #ffffff; - border-color: transparent; - outline: 0 !important; } - .btn-arrow[disabled] .btn:hover { - color: #f2f2f2; - outline: none !important; } - .btn-arrow[disabled] .btn:focus { - color: #f2f2f2; - outline: none !important; } - - .btn-arrow[disabled] .icon-primary-left { - color: #fff !important; } - - .btn-arrow[disabled] .icon-primary-right { - color: #fff !important; } - - .btn-arrow.disabled .btn { - background-image: none; - background-color: #767676; - box-shadow: none; - cursor: not-allowed; - color: #ffffff; - border-color: transparent; - outline: 0 !important; } - .btn-arrow.disabled .btn:hover { - color: #f2f2f2; - outline: none !important; } - .btn-arrow.disabled .btn:focus { - color: #f2f2f2; - outline: none !important; } - - .btn-arrow.disabled .icon-primary-left { - color: #fff !important; } - - .btn-arrow.disabled .icon-primary-right { - color: #fff !important; } - - .btn-medium { - padding: 12px 19px 11px 18px; - font-size: 1.7rem; } - - .btn-small { - padding: 10px 19px 9px 18px; - font-size: 1.5rem; - border-radius: 8px; } - - .btn-fullwidth { - width: 100%; } - - *:not(.btn-arrow) > .btn > i[class*="icon-primary-"] { - margin-top: -20px; - margin-bottom: -20px; } - - .enhanced-cta-group { - display: -ms-flexbox; - display: flex; - -ms-flex-direction: row-reverse; - flex-direction: row-reverse; - background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewport%3D%220%200%201%201%22%20style%3D%22width%3A100%25%3B%20height%3A1px%3B%22%3E%3Cstyle%3Eline%7Bstroke%3A%23959595%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cline%20y2%3D%221%22%20y1%3D%221%22%20x1%3D%221%22%20x2%3D%22100%25%22%20stroke-dasharray%3D%221%2C%203%22%2F%3E%3C%2Fsvg%3E") !important; - background-position: 0 -1px; - background-repeat: repeat-x; } - .enhanced-cta-group > .cta-button-group { - border-top: 0; - background-image: none !important; } - .enhanced-cta-group > .cta-button-group + .cta-button-group a { - font-size: 1.4rem; - line-height: 1em; } - .enhanced-cta-group > .cta-button-group + .cta-button-group a a { - margin-right: 0; } - .enhanced-cta-group > .cta-button-group hr { - min-height: 14px; } - .enhanced-cta-group > .cta-button-group + .cta-button-group { - -ms-flex-align: center; - -ms-grid-row-align: center; - align-items: center; - -ms-flex-direction: row; - flex-direction: row; - padding: 10px 0; } - - .cta-button-group { - text-align: right; - -ms-flex-align: baseline; - align-items: baseline; - padding: 20px 0 10px; - width: 100%; } - .cta-button-group.nodots { - background-image: none !important; } - .cta-button-group .hidden-phone { - margin-right: 14px; } - .cta-button-group .btn + .btn { - margin-right: 20px !important; } - .cta-button-group .btn:not(.hidden-phone):not(.visible-phone) { - margin-right: 0; } - - .isMobile .btn-arrow .btn.btn-small .icon-primary-left:before { - left: -1px; } - - .isMobile .btn-arrow .btn.btn-large .icon-primary-left:before { - left: 24px; } - - .isMobile .btn-arrow .btn.btn-large .icon-primary-right:before { - left: 24px; } - - @media (max-width: 1024px) { - .field-group + .btn { - margin-left: 15px; } } - - @media (max-width: 767px) { - .cta-button-group { - text-align: center; } - .cta-button-group > .btn { - display: block; - float: none; - width: 100%; - margin-left: auto !important; - margin-right: auto !important; } } - - .btn-group { - border-radius: 8px; - box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.15); - display: -ms-flexbox; - display: flex; - -ms-flex-pack: justify; - justify-content: space-between; - margin-bottom: 10px; - max-width: 470px; - min-width: 290px; - position: relative; - vertical-align: middle; - width: 100%; } - .btn-group > .btn { - box-shadow: none; - -ms-flex: 1; - flex: 1; - position: relative; - float: left; - margin-right: -1px; - margin-bottom: 0; - padding-left: 0; - padding-right: 0; - text-align: center; } - .btn-group:not([data-select-color]) .btn.active:not(:first-child) { - margin-right: -1px; - border-left: 1px solid #d2d2d2 !important; } - .btn-group:not([data-select-color]) .btn[disabled]:not(:first-child) { - border-left: 1px solid #d2d2d2 !important; } - .btn-group:not([data-select-color]) .btn[disabled] + .btn[disabled] { - border-left: 1px solid #ebebeb !important; } - .btn-group:not([data-select-color]) > .btn.active { - border-color: #087ac2 transparent #0568ae; - background-color: #0568ae; - background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); - color: #ffffff; } - .btn-group:not([data-select-color]) > .btn.active:hover { - color: #ffffff; - outline-color: #ffffff !important; - background: #0563a6; - border-color: #0563a6; } - .btn-group:not([data-select-color]) > .btn.active:focus { - color: #ffffff; - outline-color: #ffffff !important; - background: #0563a6; - border-color: #0563a6; } - .btn-group:not([data-select-color]) > .btn.active:active { - color: #ffffff; - outline-color: #ffffff !important; - background: #0563a6; - border-color: #0563a6; } - .btn-group:not([data-select-color]) > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { - border-radius: 0; } - .btn-group:not([data-select-color]) > .btn:first-child:not(:last-child):not(.dropdown-toggle) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .btn-group:not([data-select-color]) > .btn:last-child:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - .btn-group:not([data-select-color]) > .dropdown-toggle:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - .btn-group > .active { - text-decoration: none; - outline: 1px dotted transparent; } - .btn-group > .active:focus { - outline: 1px dotted #ffffff; } - - .btn-group.btn-fullwidth > .btn { - -ms-flex: 1; - flex: 1; } - - .btn-group[data-select-color] { - margin-top: 5px; - box-shadow: none; - -ms-flex-pack: start; - justify-content: flex-start; - -ms-flex-wrap: wrap; - flex-wrap: wrap; } - .btn-group[data-select-color] .btn { - border: 1px solid #959595; - border-radius: 4px; - box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.15); - margin-right: 10px; - margin-bottom: 10px; - height: 40px; - font-size: 16px; - color: #333333; - max-width: 60px; - min-width: 60px; - -ms-flex: 0; - flex: 0; } - .btn-group[data-select-color] > .btn.active:focus { - outline: 1px dotted #191919; - outline-offset: 4px; } - - button .btn-fill { - background-clip: padding-box; - border: 0; - border-radius: 4px; - bottom: 0; - display: block; - height: auto; - left: 0; - margin: 5px; - position: absolute; - right: 0; - top: 0; - width: auto; } - - button .btn-fill[style*="#fff"] { - border: 1px solid #d2d2d2; } - - [data-select-color] .btn.active { - background: none !important; - outline: 0; - margin-right: 10px; - border-width: 3px; - color: #333333; - line-height: 12px; } - [data-select-color] .btn.active > .btn-fill { - margin: 3px; } - [data-select-color] .btn.active:hover { - color: #333333; } - - [data-select-color] .btn:active { - background: none !important; - outline: 0; - margin-right: 10px; - border-width: 3px; - color: #333333; - line-height: 12px; } - [data-select-color] .btn:active > .btn-fill { - margin: 3px; } - [data-select-color] .btn:active:hover { - color: #333333; } - - .btn-group[data-select-color="orange"] > .btn.active { - border-color: #ea7400; } - - .btn-group[data-select-color="blue"] > .btn.active { - border-color: #0568ae; } - - .btn-group[data-select-color="green"] > .btn.active { - border-color: #007a3e; } - - .btn-spinbutton-toggle.btn-group { - display: block !important; - height: 40px !important; - margin-top: 5px; - max-width: 138px; - min-width: 138px; - white-space: nowrap; } - - .btn-spinbutton-toggle .btn { - border-radius: 6px; - font-weight: normal; - -ms-flex: unset; - flex: unset; - height: 40px; - letter-spacing: normal; - min-width: auto; - padding: 3px 0 0; - text-align: center; - min-width: 46px; - width: 46px; } - - .btn-spinbutton-toggle .btn[data-max-value] { - border-bottom: 1px solid #d2d2d2; - border-top: 1px solid #d2d2d2; - box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.08) inset; - background-color: #fff; - cursor: text; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 2rem; - font-weight: normal; - padding: 4px 0 0; - text-align: center; - min-width: 46px !important; - width: 46px; } - .btn-spinbutton-toggle .btn[data-max-value]:focus { - border-color: #0568ae; - outline: none; } - .btn-spinbutton-toggle .btn[data-max-value]:focus + .btn { - border-left: 1px solid #0568ae; - transition: border 0.3s linear 0s; } - - .btn-spinbutton-toggle .icon-primary-subtractminimize { - font-size: 30px !important; - color: #0568ae !important; } - - .btn-spinbutton-toggle .icon-primary-add-maximize { - font-size: 30px !important; - color: #0568ae !important; } - - .btn-spinbutton-toggle .btn[disabled].icon-primary-subtractminimize { - background-color: #d2d2d2; - color: #767676 !important; } - - .btn-spinbutton-toggle .btn[disabled].icon-primary-add-maximize { - background-color: #d2d2d2; - color: #767676 !important; } - - .btn-spinbutton-toggle input.btn[disabled] { - background-color: #d2d2d2; - color: #5a5a5a; - cursor: not-allowed; } - - .btn-group.btn-spinbutton-toggle .btn[disabled] + .btn[disabled] { - border-left: 1px solid #f0f0f0 !important; } - - .btn-group.btn-spinbutton-toggle .btn[data-max-value]:focus + .btn:not(:first-child) { - border-left: 1px solid #0568ae !important; } - - @media (max-width: 480px) { - .btn-group:not([data-select-color]) > .btn { - font-size: 1.3rem; - min-width: auto; } } - - .reset-field, - .close { - float: right; - background: none; - width: 34px; - height: 34px; - padding: 0; - overflow: hidden; - display: inline-block; } - - .reset-field { - display: none; } - - .reset-field:before { - font-size: 22px; - color: #5a5a5a; } - - .input-emphasized + .reset-field:before { - font-size: 29px; - color: #5a5a5a; } - - .reset-field:active, - .reset-field:hover, - .reset-field:focus { - display: block !important; } - - button.close { - border: 0; - appearance: none; } - - .corner-button { - box-shadow: 0 -50px 0 0 #f2f2f2 inset; - height: 69px; - /*overflow: hidden;*/ - position: absolute; - right: -35px; - top: -35px; - transform: rotate(45deg); - width: 69px; } - - .corner-button .close:before { - bottom: -7px; - color: #0568ae; - display: block; - font-size: 20px; - height: 50px; - left: -11px; - position: absolute; - width: 50px; } - - .corner-button .close { - float: none; - height: 45px; - margin: 0; - position: absolute; - right: 12px; - top: 45px; - transform: rotate(45deg); - width: 45px; } - - .corner-button .close:focus { - outline: 1px dotted black; } - - .ds2-no-colors .corner-button .close { - border: 1px solid black; } - - .field-group input + .reset-field { - background: none; - height: 36px; - width: 45px; - display: none; - padding: 0; - position: absolute; - right: 0; - top: 0; - box-shadow: none; - border: none; - content: " "; } - - .field-group input[type="search"] + .reset-field, - .field-group input[type="search"] + .btn-search + .reset-field, - .tooltip-onclick input + .reset-field, - .tooltip-onclick input + .icon-primary-tooltip + .reset-field, - .tooltip-onclick textarea + .reset-field, - .tooltip-onclick textarea + .icon-primary-tooltip + .reset-field { - right: 45px; } - - .field-group input[type="search"] + .reset-field:after, - .field-group input[type="search"] + .btn-search + .reset-field:after, - .tooltip-onclick input + .reset-field:after, - .tooltip-onclick input + .icon-primary-tooltip + .reset-field:after, - .tooltip-onclick textarea + .reset-field:after, - .tooltip-onclick textarea + .icon-primary-tooltip + .reset-field:after { - background-color: #d2d2d2; - content: ""; - display: block; - height: 20px; - position: absolute; - right: 0; - top: 8px; - width: 1px; } - - .tooltip-onclick input + .reset-field, - .tooltip-onclick input + .icon-primary-tooltip + .reset-field { - right: 50px !important; } - - .tooltip-onclick textarea + .reset-field, - .tooltip-onclick textarea + .icon-primary-tooltip + .reset-field { - right: 45px !important; - width: 40px; } - - .field-group input.input-emphasized + .reset-field { - width: 45px; - height: 46px; - right: 6px; } - - .field-group input.input-emphasized + .reset-field:after { - top: 14px; } - - .field-group [disabled] + .reset-field { - display: none; } - - .ds2_touchevents .field-group input + .reset-field:focus, - .ds2_touchevents .field-group input:focus + .reset-field, - .ds2_touchevents textarea:focus + .reset-field, - .ds2_touchevents textarea + .reset-field:focus { - display: block; - position: absolute; - right: 0px; - top: 0; - border: none; } - - .ds2_touchevents .field-group input { - padding: 8px 55px 8px 15px; - -webkit-appearance: none; } - - .ds2_touchevents textarea:focus { - padding: 15px 55px 15px 15px; } - - .ds2_touchevents textarea:focus + .reset-field { - border: none; - position: absolute; - right: 6px; - top: 5px; } - - .ds2_touchevents textarea.hasScrollbar:focus { - padding: 15px 35px 15px 15px; } - - .ds2_touchevents textarea.hasScrollbar:focus + .reset-field { - right: 22px; } - - .ds2-no-colors .b2b-tmpl-card-corner-button { - border: none !important; } - - .ds2-no-colors .b2b-tmpl-card-corner-button .close { - border: 1px solid black; - top: 0px !important; - right: 0px !important; } - - .form-row.error .error-msg { - display: block; - font-size: 14px; - line-height: 14px; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - position: relative; - padding-left: 18px; } - - .form-row.error .error-msg:before { - color: #cf2a2a; - font-size: 14px; - left: 0; - line-height: 14px; - position: absolute; - vertical-align: middle; } - - .form-row.error label, - .form-row.error .error-msg, - .form-row.error button.awd-select, - .form-row.error select.awd-select + span, - .form-row.error .checkbox, - .form-row.error .radio, - .form-row.error legend.error, - .form-row.error input { - color: #cf2a2a; } - - .form-row.error .btn-group > .btn, - .form-row.error button.awd-select, - .form-row.error .awd-select-list, - .form-row.error select.awd-select + span, - .form-row.error textarea, - .form-row.error input, - .form-row.error .checkbox .skin, - .form-row.error .radio .skin { - border-color: #cf2a2a !important; } - - .form-row.error .checkbox input:checked:not(:disabled) + .skin { - background-color: #cf2a2a; } - - .form-row.error .radio input:checked + .skin:after { - background-color: #cf2a2a; } - - .error .tooltip-onclick .icon-primary-tooltip.active + .error-msg { - margin-top: -11px; - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; } - - .error .tooltip-onclick .icon-primary-tooltip.active + .error-msg + .helpertext { - margin: 0 0 10px; } - - .error .tooltip-onclick .icon-primary-tooltip.active + .error-msg + .helpertext:before, - .error .tooltip-onclick .icon-primary-tooltip.active + .error-msg + .helpertext:after { - display: none; } - - .error .helpertext { - border-color: #cf2a2a; - /*border-radius:0;*/ } - - .error .helpertext:before { - border-top-color: #cf2a2a; } - - .error .tooltip-onfocus .helpertext { - margin: 14px 0 10px 0; } - - .error [class*="price"], - .error [class*="pricing-"] { - color: #cf2a2a; } - - input:-ms-clear { - display: none; } - - input[type]::-webkit-inner-spin-button, - input[type]::-webkit-outer-spin-button { - -webkit-appearance: none; } - - input[type] { - -moz-appearance: textfield; } - - form { - margin: 0; } - - fieldset { - padding: 0; - margin: 0; - border: 0; } - - label, - legend { - display: inline-block; - font-size: 1.4rem; - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - - legend { - display: block; } - - .error-msg { - display: none; } - - select, - textarea, - input { - border-radius: 6px; - color: #5a5a5a; - display: inline-block; - font-size: 1.6rem; - margin: 0px; - padding: 0 15px 0 15px; - vertical-align: middle; - line-height: normal; } - - select::-webkit-input-placeholder, - textarea::-webkit-input-placeholder, - input::-webkit-input-placeholder { - color: #5a5a5a; - font-family: "Omnes-ECOMP-W02-Italic", Arial; - font-style: normal; - opacity: 1; } - - select:-moz-placeholder, - textarea:-moz-placeholder, - input:-moz-placeholder { - color: #5a5a5a; - font-family: "Omnes-ECOMP-W02-Italic", Arial; - font-style: normal; - opacity: 1; } - - select::-moz-placeholder, - textarea::-moz-placeholder, - input::-moz-placeholder { - color: #5a5a5a; - font-family: "Omnes-ECOMP-W02-Italic", Arial; - font-style: normal; - opacity: 1; } - - select:-ms-input-placeholder, - textarea:-ms-input-placeholder, - input:-ms-input-placeholder { - color: #5a5a5a; - font-family: "Omnes-ECOMP-W02-Italic", Arial; - transition: none; - opacity: 1; } - - select:placeholder, - textarea:placeholder, - input:placeholder { - color: #5a5a5a; - font-family: "Omnes-ECOMP-W02-Italic", Arial; - font-style: normal; - opacity: 1; } - - select:last-child, - textarea:last-child, - input:last-child { - margin-right: 0; } - - input:not([type="button"]) { - height: 36px; } - - input.input-emphasized { - font-size: 1.8rem; - height: 48px; - padding: 13px 20px 13px; } - - input[type="search"]:focus { - padding-right: 88px; } - - input[type="search"] { - padding-right: 40px; - -webkit-appearance: none !important; } - - input[type="search"].input-emphasized { - padding-right: 45px; } - - .btn-search[class*="btn"] { - background-color: transparent; - background-position: 50% 50%; - background-size: 20px; - background-repeat: no-repeat; - border: none; - height: 100%; - margin-left: 0; - margin-top: 0; - min-width: 45px !important; - outline-offset: 0; - padding: 0 !important; - position: absolute; - right: 0; - top: 0; - border-radius: 0 5px 5px 0; - min-width: 44px; - width: 44px; } - - .input-emphasized + .btn-search[class*="btn"], - .input-emphasized + .reset-field + .btn-search[class*="btn"] { - background-size: 26px; - height: 46px; - top: 1px; - outline-offset: -3px; - margin-bottom: 0; - border-radius: 0 5px 5px 0; } - - input[type="search"].input-emphasized + .reset-field { - right: 45px !important; } - - .search-suggestion-wrapper { - position: relative; - margin-bottom: 15px; } - - /*styles from dropdown*/ - .search-suggestion-list { - box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); - border-radius: 0 0 6px 6px; - position: relative; - border: 1px solid #0568ae; - border-top: 0; - padding: 15px 0; - background-color: #f2f2f2; - z-index: 1000; - width: 100%; - max-height: 400px; - overflow-y: auto; } - - .search-suggestion-list:empty { - display: none; } - - .search-suggestion-item { - position: relative; - z-index: -1; - padding: 0 15px; - line-height: 4.0rem; - color: #5a5a5a; } - - .search-suggestion-item a { - text-decoration: none; - color: #5a5a5a; } - - .search-suggestion-item:hover, - .search-suggestion-item:focus { - cursor: pointer; - background-color: #d2d2d2; } - - input[data-provide="datepicker"], - [data-provide="datepicker"]:-moz-placeholder, - [data-provide="datepicker"]:-ms-input-placeholder, - [data-provide="datepicker"]:-webkit-input-placeholder { - color: #0568ae !important; - opacity: 1; - filter: alpha(opacity=100); } - - input[disabled], - input[readonly], - select[disabled], - select[readonly], - textarea[disabled], - textarea[readonly], - i.icon-primary-calendar.disabled, - span.icon-primary-calendar.readonly { - cursor: not-allowed; - background-color: #f2f2f2; - box-shadow: none; } - - i.icon-primary-calendar.disabled input, - span.icon-primary-calendar.readonly input { - color: #959595 !important; } - - textarea { - display: block; - width: 400px; - max-width: 400px; - padding: 15px; } - - textarea.small { - line-height: 20px; } - - textarea + .reset-field { - display: none; } - - textarea::-webkit-input-placeholder { - line-height: .99; } - - textarea:-moz-placeholder { - line-height: .99; } - - textarea::-moz-placeholder { - line-height: .99; } - - textarea:-ms-input-placeholder { - line-height: .99; } - - textarea:placeholder { - line-height: .99; } - - textarea, - input { - background-color: #ffffff; - border: 1px solid #d2d2d2; - -webkit-appearance: none; - box-shadow: 2px 3px 2px -2px rgba(0, 0, 0, 0.08) inset; - transition: border .3s linear 0s; - font-family: "Omnes-ECOMP-W02", Arial; } - - textarea:focus, - input:focus { - outline: 0; - border-color: #0568ae; } - - .input-append { - display: table; } - - .input-append > div { - display: table-cell; - width: 1%; } - - .input-append > .field-group { - width: 100%; } - - .row .field-group input[class*="span"] { - float: none; } - - .field-group { - position: relative; - display: inline-block; } - - label + .field-group, - label + .input-append, - label + .row, - label + .row-nowrap, - label + .form-row { - margin-top: 5px; } - - .field-group { - position: relative; - display: block; } - - .field-group input:not([type="button"])[disabled] { - padding-right: 15px; } - - input:invalid, - textarea:invalid, - select:invalid { - outline: none !important; } - - .form-row { - margin-top: 20px; } - - .form-row.nomar { - margin: 0; } - - .row-nowrap.no-flex.form-row > label + br { - margin-bottom: 5px; } - - span.form-row { - display: inline-block; } - - legend + .form-row { - margin-top: 20px; } - - .tooltip-onclick input { - padding-right: 45px; } - - .ds2_touchevents .tooltip-onclick input:focus { - padding-right: 95px; } - - .btn-calendar-icon { - position: absolute; - background-color: transparent !important; - top: 8px; - border: 0 !important; - width: 30px; - right: 15px; } - - .btn-calendar-icon .icon-primary-calendar:before { - position: absolute; - color: #0568ae; } - - .btn-calendar-icon .icon-primary-calendar.disabled { - background-color: #f2f2f2; } - - .btn-calendar-icon .icon-primary-calendar.disabled:before { - color: #959595; } - - span.icon-primary-calendar input { - padding-left: 35px; - color: #0568ae; - transition: border-color 0.3s linear 0s; - box-shadow: 2px 3px 2px -2px rgba(0, 0, 0, 0.08) inset; - position: absolute; - top: 0; - left: 0; } - - .faux-input + input.datepicker-input:not([disabled]) { - cursor: pointer; - margin-left: 0; - background-color: #fff; - position: absolute; - left: 0; - top: 0; - z-index: 0; } - - .faux-input { - background-color: transparent !important; - border: 1px solid transparent; - border-radius: 4px; - font-size: 1.6rem; - height: 35px; - left: 0; - line-height: 35px; - margin-bottom: 10px; - margin-right: 6px; - padding: 0 0 0 35px; - position: relative; - text-align: left; - top: 0; - vertical-align: middle; - width: 100%; - z-index: 1; } - - .faux-input:disabled { - cursor: not-allowed; } - - .faux-input:focus + .datepicker-input, - [data-calendar-state="opened"] + .datepicker-input { - border-color: #0568ae; - box-shadow: 2px 3px 2px -2px rgba(5, 116, 172, 0.35) inset; - outline: 0 none; } - - .form-row.error .error-msg { - display: block; - font-size: 14px; - line-height: 14px; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - position: relative; - padding-left: 18px; - margin-top: 10px; } - - .form-row.error .error-msg > .icon-primary-badgealert { - height: 14px; - width: 14px; - position: absolute; - left: 0; - margin-right: 0; } - - .form-row.error .error-msg > .icon-primary-badgealert:before { - color: #cf2a2a; - font-size: 14px; - left: 0; - line-height: 14px; - position: absolute; - vertical-align: middle; } - - .form-row.error label, - .form-row.error .error-msg, - .form-row.error button.awd-select, - .form-row.error select.awd-select + span, - .form-row.error .checkbox, - .form-row.error .radio, - .form-row.error legend.error, - .form-row.error input, - .form-row.error textarea { - color: #cf2a2a; } - - .form-row.error .btn-group > .btn, - .form-row.error button.awd-select, - .form-row.error .awd-select-list, - .form-row.error select.awd-select + span, - .form-row.error textarea, - .form-row.error input, - .form-row.error .checkbox .skin, - .form-row.error .radio .skin { - border-color: #cf2a2a !important; } - - .form-row.error .checkbox input:checked:not(:disabled) + .skin { - background-color: #cf2a2a; } - - .form-row.error .radio input:checked + .skin:after { - background-color: #cf2a2a; } - - .error [class*="price"], - .error [class*="pricing-"] { - color: #cf2a2a; } - - hr, - .hr-or { - display: block; - height: 1px; - margin: 15px 0; - border: none; - background-repeat: repeat-x; - background-color: #959595; - position: relative; } - - hr.dark { - background-color: #959595; } - - hr.lite { - background-color: #d2d2d2; } - - .hr-or:before { - background-color: #fff; - color: #666; - content: " OR "; - display: block; - font-size: 1.4rem; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - height: 16px; - left: 50%; - line-height: 1.6rem; - margin-left: -15px; - margin-top: -8px; - position: absolute; - text-align: center; - top: 50%; - width: 30px; - z-index: 1111; } - - hr.is-vertical.dark, - hr.hr-or.dark, - hr.is-vertical.lite, - hr.hr-or.lite { - display: inline-block; - height: auto; - margin: 0 15px; - min-height: 20px; - width: 1px; } - - hr.is-vertical.dark, - hr.hr-or.dark { - background-color: #959595; } - - hr.is-vertical.lite, - hr.hr-or.lite { - background-color: #d2d2d2; } - - .hr-dotted.is-vertical.dark, - .hr-dotted.is-vertical.lite { - background-color: transparent; - background-repeat: repeat-y; - background-size: 1px 4px; - height: auto; - min-height: 20px; - width: 1px; } - - .row-nowrap > .span + hr.is-vertical, - .row > .span + hr.is-vertical { - margin: 0 0 0 -20px; } - - - - hr.bottom-space-only { - margin-top: 0; } - - .hr-nomargin { - margin: 0; } - - .radio { - position: relative; - min-height: 24px; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 1.6rem; - margin-bottom: 5px; } - .radio input { - -webkit-tap-highlight-color: transparent; - height: 10px; - margin: 6px; - opacity: 0; - outline: none; - position: absolute; - left: 1px; - top: 1px; - width: 10px; } - .radio input:focus + .skin { - border-color: #0568ae; } - .radio input:focus + .skin:before { - content: ""; - height: 34px; - left: -6px; - top: -6px; - outline: 1px dotted #000000; - position: absolute; - width: 34px; } - .radio input + .skin { - border-radius: 100%; } - .radio input:checked + .skin:after { - background-color: #0568ae; - border-radius: 100%; - border: 3px solid #FFFFFF; - content: ""; - display: block; - height: 16px; - position: absolute; - width: 16px; } - .radio input:disabled + .skin { - cursor: not-allowed; - background-color: #d2d2d2; - border-color: #d2d2d2; - color: #666666; } - .radio input:disabled + .skin + span { - cursor: not-allowed; - color: #666666; } - .radio input:disabled:checked + .skin:after { - background-color: #666666; } - .radio input:invalid + .skin { - border: solid 1px #cf2a2a; } - .radio .skin { - background-color: #FFFFFF; - border: 1px solid #d2d2d2; - border-radius: 3px; - display: inline-block; - height: 24px; - left: 0; - position: absolute; - top: 0; - width: 24px; } - .radio span { - display: inline-block; - margin-left: 34px; - margin-top: 0; - position: relative; - top: 3px; } - .radio label { - font-size: 1.6rem; - font-family: "Omnes-ECOMP-W02", Arial; } - - .radio.inline { - display: inline-block; - margin-bottom: 10px; - vertical-align: middle; - margin-right: 10px; } - .radio.inline:last-child { - margin-right: 0; } - - .radio-box { - border: 1px solid #d2d2d2; - border-radius: 8px; } - .radio-box > [role="radio"] label { - padding: 15px 15px 20px 15px; - display: block; - width: 100%; } - .radio-box > [role="radio"] label .skin + span { - top: 2px; } - .radio-box > [role="radio"] + div { - padding: 0 15px 15px 47px; } - .radio-box > [aria-checked="false"] label > input { - top: 15px; - left: 15px; } - .radio-box > [aria-checked="false"] label .skin { - top: 15px; - left: 15px; } - .radio-box > [aria-checked="true"] label > input { - top: 13px; - left: 13px; } - .radio-box > [aria-checked="true"] label .skin { - top: 13px; - left: 13px; } - - .radio-box.active { - border: 3px solid #0568ae; } - .radio-box.active > [role="radio"] label { - padding: 13px 14px 19px 13px; } - - .checkbox { - position: relative; - min-height: 24px; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 1.6rem; - margin-bottom: 5px; } - .checkbox input { - -webkit-tap-highlight-color: transparent; - height: 10px; - margin: 6px; - opacity: 0; - outline: none; - position: absolute; - left: 1px; - top: 1px; - width: 10px; } - .checkbox input:focus + .skin { - border-color: #0568ae; } - .checkbox input:focus + .skin:before { - content: ""; - height: 34px; - left: -6px; - top: -6px; - outline: 1px dotted #000000; - position: absolute; - width: 34px; } - .checkbox input:checked:not(:disabled) + .skin { - background-color: #0568ae; - border-color: #0568ae; } - .checkbox input:checked:disabled + .skin:after { - color: #5A5A5A; } - .checkbox input:checked + .skin:after { - height: 24px; - width: 24px; - background-color: transparent; - font-size: 23.4px; - color: #FFFFFF; - line-height: 21px; } - .checkbox input:disabled + .skin { - cursor: not-allowed; - background-color: #d2d2d2; - border-color: #d2d2d2; - color: #666666; } - .checkbox input:disabled + .skin + span { - cursor: not-allowed; - color: #666666; } - .checkbox input:invalid + .skin { - border: solid 1px #cf2a2a; } - .checkbox input:indeterminate + .skin:after { - background-color: transparent; - font-size: 25px; - color: #0574ac; - content: "\e920"; } - .checkbox .skin { - background-color: #fff; - border: 1px solid #d2d2d2; - border-radius: 3px; - display: inline-block; - height: 24px; - width: 24px; - position: absolute; - left: 0; - top: 0; } - .checkbox span { - display: inline-block; - margin-left: 34px; - margin-top: 0; - position: relative; - top: 3px; } - .checkbox label { - font-size: 1.6rem; - font-family: "Omnes-ECOMP-W02", Arial; } - .checkbox input { - z-index: 9999; } - .checkbox input.indeterminate + .skin:after { - font-size: 22px; - color: #0568ae; } - - .checkbox.inline { - display: inline-block; - margin-bottom: 10px; - vertical-align: middle; - margin-right: 10px; } - .checkbox.inline:last-child { - margin-right: 0; } - - .checkbox.checkbox-selectall { - margin: 20px 0 0 24px; } - - .terms-after-checkbox { - margin-top: 15px; } - - .indeterminate-margin { - padding-left: 24px; } - - .tiny-accordion { - border-bottom: 1px solid #d2d2d2; } - - .toggle-header, - .inactive-toggle-header { - border-color: #fff; - color: #0568ae; - cursor: pointer; - display: block; - font-size: 2.0rem; - line-height: 2.2rem; - min-height: 41px; - position: relative; - padding: 16px 55px 16px 15px; } - - .toggle-header.opened { - color: #333333; } - - .tiny-accordion .toggle-header, - .tiny-accordion .inactive-toggle-header { - padding: 16px 55px 16px 15px; - border-top: 1px solid #d2d2d2; } - - .tiny-accordion .toggle-header:focus { - text-decoration: underline; } - - .tiny-accordion.iconleft .toggle-header, - .tiny-accordion.iconleft .inactive-toggle-header { - padding: 15px 15px 15px 50px; } - - .accordion-content { - font-size: 1.4rem; } - - .accordion-content .toggle-header:first-child { - margin-top: 16px; } - - .tiny-accordion .toggle-header + .accordion-content { - padding: 0 50px 15px 15px; } - - .tiny-accordion.iconleft .toggle-header + .accordion-content { - padding: 0 15px 15px 50px; } - - .toggle-header .icon-primary-accordion-plus, - .toggle-header .icon-primary-accordion-minus { - display: inline-block; - font-size: 20px; - margin: 0; - padding: 0; - position: absolute; - right: 15px; - vertical-align: middle; - top: 16px; - font-weight: bold; } - - .tiny-accordion.iconleft .toggle-header .icon-primary-accordion-plus, - .tiny-accordion.iconleft .toggle-header .icon-primary-accordion-minus { - left: 15px; } - - .inactive-toggle-header:hover { - cursor: inherit; } - - .tiny-accordion-to-tabs, - .tiny-tabs { - position: relative; - width: 100%; - margin: 0px; - padding: 0px; } - - .tiny-tabs [class*="icon-primary-accordion-"] { - display: none !important; } - - .tiny-accordion-to-tabs:before, - .tiny-accordion-to-tabs:after, - .tiny-tabs:before, - .tiny-tabs:after { - display: table; - content: ""; - line-height: 0; } - - .tiny-accordion-to-tabs:after, - .tiny-tabs:after { - clear: both; } - - .tiny-accordion-to-tabs:before, - .tiny-accordion-to-tabs:after, - .tiny-tabs:before, - .tiny-tabs:after { - display: table; - content: ""; - line-height: 0; } - - .tiny-accordion-to-tabs:after, - .tiny-tabs:after { - clear: both; } - - .tiny-tabs > .toggle-header { - display: inline-block; - float: left; - border-top: none; - overflow: hidden; - height: 70px; - text-align: center; - background-color: #fff; - border-radius: 0px; - padding: 26px 20px 25px 20px !important; - border-top: 1px solid #fff; - -webkit-filter: none; - filter: none; - background-clip: padding-box; - border-bottom: 1px solid #d2d2d2; - font-weight: normal; - border-right: 1px solid #d2d2d2; - white-space: nowrap; } - - .tiny-tabs .toggle-header + div { - left: 0px; - position: absolute; - top: 69px; - border-top: 1px solid #d2d2d2; - padding: 0; - display: block; - border-bottom: none; - width: 100%; } - - .accordion-pad { - padding-top: 30px; - padding-bottom: 30px; } - - .tiny-tabs .opened { - color: #333333; - border-top: 5px solid #0568ae !important; - padding-top: 22px !important; - border-bottom: none; - background-color: #fff; - -webkit-filter: none; - filter: none; - cursor: default; - z-index: 999; } - - .tiny-tabs .toggle-header:focus { - text-decoration: underline; - outline: thin dotted #666; - outline-offset: 0; } - - .tiny-tabs .toggle-header:first-child { - border-left: none; - margin-left: 0; } - - .tiny-tabs .toggle-header:first-child { - border-left: 1px solid #fff; } - - .tiny-tabs .opened:first-child { - border-left: 1px solid #d2d2d2; } - - .tiny-tabs .toggle-header:nth-last-of-type(2) { - border-right-color: #fff; } - - .tiny-tabs .opened:nth-last-of-type(2) { - border-right: 1px solid #d2d2d2; } - - @media (max-width: 767px) { - .tiny-accordion, - .tiny-accordion-to-tabs { - margin-left: -15px; - margin-right: -15px; - width: auto; } - .tiny-accordion-to-tabs { - display: block; - border-bottom: 1px solid #d2d2d2; } - .tiny-accordion-to-tabs .toggle-header { - display: block; - min-height: 41px; - padding: 16px 50px 16px 15px; - border-top: 1px solid #d2d2d2; } - .tiny-accordion-to-tabs .toggle-header:focus { - text-decoration: underline; } - .tiny-accordion-to-tabs .toggle-header + .accordion-content { - padding: 0 50px 15px 15px; } } - - @media (min-width: 768px) { - .tiny-accordion-to-tabs [class*="icon-primary-accordion-"] { - display: none !important; } - .tiny-accordion-to-tabs > .toggle-header { - display: inline-block; - float: left; - border-top: none; - /*overflow: hidden;*/ - height: 70px; - text-align: center; - background-color: #fff; - border-radius: 0px; - padding: 26px 20px 25px 20px !important; - border-top: 1px solid #fff; - -webkit-filter: none; - filter: none; - background-clip: padding-box; - border-bottom: 1px solid #d2d2d2; - font-weight: normal; - border-right: 1px solid #d2d2d2; - white-space: nowrap; } - .tiny-accordion-to-tabs .toggle-header + div { - left: 0px; - position: absolute; - top: 69px; - border-top: 1px solid #d2d2d2; - padding-top: 30px; - padding-left: 20px; - display: block; - border-bottom: none; - width: 100%; } - .tiny-accordion-to-tabs .opened { - color: #333333; - border-top: 5px solid #0568ae !important; - padding-top: 22px !important; - border-bottom: none; - background-color: #fff; - -webkit-filter: none; - filter: none; - cursor: default; - text-decoration: none; - z-index: 999; } - .tiny-accordion-to-tabs .toggle-header:focus { - text-decoration: underline; - outline: thin dotted #666; - outline-offset: 0px; } - .tiny-accordion-to-tabs .toggle-header:nth-last-of-type(2) { - border-right: none; } - .tiny-accordion-to-tabs .toggle-header:first-child { - border-left: none; - margin-left: 0; } - .tiny-accordion-to-tabs .toggle-header:first-child { - border-left: 1px solid #fff; } - .tiny-accordion-to-tabs .opened:first-child { - border-left: 1px solid #d2d2d2; } - .tiny-accordion-to-tabs .opened:nth-last-of-type(2) { - border-right: 1px solid #d2d2d2; } } - - .toggle-header .tooltip .icon-primary-tooltip { - margin-top: -5px; } - - .accordion-content { - transition: all 0.8s linear; } - - .opaque-content { - opacity: 0; } - - .tiny-tabs .toggle-header { - display: inline-block; - float: left; - border-top: none; - overflow: hidden; - height: 70px; - text-align: center; - background-color: #fff; - border-radius: 0px; - padding: 22px 20px 25px 20px !important; - border-top: 5px solid #fff; - -webkit-filter: none; - filter: none; - background-clip: padding-box; - border-bottom: 1px solid #ccc; - font-weight: normal; - border-right: 1px solid #ccc; - white-space: nowrap; } - - .tiny-tabs .toggle-header:first-child { - margin-left: 0; } - - .tiny-tabs div:first-child .toggle-header { - margin-left: 30px; } - - .tiny-tabs > div .toggle-header.opened { - border-bottom: 0 !important; } - - .tiny-accordion-to-tabs > div > div.toggle-header { - background-clip: padding-box; - background-color: #fff; - border-bottom: 1px solid #ccc; - border-radius: 0; - border-top: 5px solid #fff; - display: inline-block; - filter: none; - float: left; - font-weight: normal; - overflow: hidden; - padding: 22px 20px 21px !important; - text-align: center; - white-space: nowrap; } - - .tiny-accordion-to-tabs .toggle-header:first-child { - margin-left: 0; } - - .tiny-accordion-to-tabs div:first-child .toggle-header { - margin-left: 30px; - border-bottom: 0 !important; } - - .tiny-accordion-to-tabs > div .toggle-header.opened { - border-bottom: 0 !important; } - - @media (max-width: 767px) { - .tiny-accordion-to-tabs { - display: block !important; - border-bottom: 1px solid #ccc !important; } - .tiny-accordion-to-tabs > div > div.toggle-header { - display: block !important; - float: none; - text-align: left; - min-height: 41px !important; - padding: 15px 50px 15px 15px !important; - border-top: 1px solid #ccc; } - .tiny-accordion-to-tabs > div > div.toggle-header:first-child { - margin-left: 0 !important; } - .tiny-accordion-to-tabs > div > div.toggle-header + .accordion-content { - padding: 0 50px 15px 15px; } - .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-plus { - background-position: 0 0; - background-size: 20px 40px; } - .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-minus { - background-position: 0 -20px; - background-size: 20px 40px; } - .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-plus, - .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-minus { - display: inline-block; - height: 20px; - margin: 0; - padding: 0; - position: absolute; - right: 15px; - vertical-align: middle; - width: 20px; } } - - .alert { - background-color: #5a5a5a; - border-radius: 8px; - color: #fff; - margin-top: 15px; - padding: 0; - position: relative; - border: 0; } - - .alert h3, - .alert h4 { - color: #fff; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 1.6rem; - margin: 0 20px 5px 0; } - - .alert div { - padding: 15px 20px; } - - .alert div:first-child { - border-radius: 8px 0 0 8px; - width: 1%; } - - .alert div:first-child + div { - border: 1px solid transparent; - border-left: none; - border-radius: 0 8px 8px 0; } - - .alert-error { - background-color: #cf2a2a; - border: 1px solid #cf2a2a; } - - .alert-info { - background-color: #44c8f5; - border: 1px solid #44c8f5; } - - .alert-success { - background-color: #c5d63d; - border: 1px solid #c5d63d; } - - .alert [class*="icon-primary-"] { - color: #fff; - font-size: 30px; - margin-right: 0; } - - .alert .close { - height: 30px; - position: absolute; - right: 1px; - top: 1px; - width: 30px; } - - .alert .close:before { - color: #fff; - margin-right: 0; - position: absolute; - right: 9px; - top: 9px; } - - .alert a { - color: #fff; - text-decoration: underline; } - - .alert .close:focus { - outline: 1px dotted #666; } - - .alert p { - font-size: 1.4rem; } - - .alert p:last-child { - margin-bottom: 0; } - - .alert .standalone-link i[class*="icon-primary-"] { - font-size: 20px; - margin-right: 5px; } - - @media (max-width: 767px) { - .alert { - border-radius: 0; - margin: 0 -15px; } - .alert + .alert { - margin-top: 4px; } - .alert div { - padding: 15px 10px; } - .alert div:first-child { - border-radius: 0; - padding: 15px; } - .alert h3, - .alert h4 { - font-size: 1.4rem; } - .alert p { - font-size: 1.2rem; } - .alert .close { - right: 5px; - top: 5px; } - .alert .standalone-link i[class*="icon-primary-"] { - font-size: 16px; } } - - .alert h3 { - margin: 0; - font-size: 16px; } - - .alert p { - font-size: 14px; } - - .alert p a { - color: #FFFFFF; - text-decoration: underline; } - - .alert div:first-child + div { - padding-right: 25px; } - - .alert div:last-child { - padding-right: 20px !important; } - - .alert p [class*="icon-primary-"] { - color: #fff; - font-size: 20px; - margin-right: 0; } - - @media (max-width: 767px) { - .alert h3 { - font-size: 14px; } - .alert div:first-child + div { - padding-right: 20px; } - .alert div:last-child { - padding-right: 15px !important; } - .alert div:first-child { - padding: 15px; } - .alert p { - font-size: 12px; } - .alert p [class*="icon-primary-"] { - font-size: 16px; } } - - .b2b-audio { - width: auto; - margin: 10px auto; - height: 35px; } - .b2b-audio .controls-wrapper { - display: inline-block; - font-size: 25px; - cursor: pointer; } - .b2b-audio .controls-wrapper i { - font-size: 25px; - margin-right: 0px; - color: #444; } - .b2b-audio .controls-wrapper i:hover { - color: #0574AC; } - .b2b-audio .seek-bar-container-wrapper { - display: inline-block; - outline: 0; - min-width: 180px; - margin-right: 10px; - margin-left: 10px; - height: 14px; - padding-top: 5px; } - .b2b-audio .seek-bar-container-wrapper .timing-container { - padding-top: 13px; - color: #333; - font-size: 12px; } - .b2b-audio .seek-bar-container-wrapper .timing-container .timing-container-left { - float: left; - line-height: 100%; } - .b2b-audio .seek-bar-container-wrapper .timing-container .timing-container-right { - float: right; - line-height: 100%; } - .b2b-audio .seek-bar-container-wrapper .timing-container .timing-container-spacer { - clear: both; } - .b2b-audio .seek-bar-tooltip { - text-align: center; - min-width: 76px; } - - .b2b-audio-popover { - width: 22px; } - .b2b-audio-popover .volume-popover { - height: 100px !important; - width: 6px !important; - margin: 7px auto; } - .b2b-audio-popover .min-label { - margin-top: 5px; } - - .b2b-audio-native { - width: auto; - height: auto; } - - .b2b-audio-recorder { - border: 1px solid #ccc; - box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.15); - height: 63px; - min-height: 63px; - min-width: 347px; } - .b2b-audio-recorder .b2b-elapsed-time { - margin: 23px 0 24px 15px; - font-size: 16px; - font-style: italic; - color: #767676; } - .b2b-audio-recorder .b2b-controls { - width: 68px; - cursor: pointer; } - .b2b-audio-recorder .b2b-controls i.icoControls-record { - font-size: 64px; - color: black; - float: right; - margin-right: 10px; } - .b2b-audio-recorder .b2b-controls i.icoControls-record:focus, .b2b-audio-recorder .b2b-controls i.icoControls-record:hover { - color: #0568ae; } - .b2b-audio-recorder .b2b-controls i.icoControls-stop { - font-size: 36px; - color: black; - float: right; - margin-right: 20px; - margin-top: 12px; } - .b2b-audio-recorder .b2b-controls i.icoControls-stop:focus, .b2b-audio-recorder .b2b-controls i.icoControls-stop:hover { - color: #0568ae; } - - .b2b-top-btn { - height: 36px; - width: 36px; - border-radius: 7px; } - - .b2b-top-btn > i { - position: absolute; - top: 13px; - left: 9px; - width: 11px; - height: 18px; } - - .b2b-badge { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - background-color: #5A5A5A; - border-radius: 12px; - color: #FFFFFF; - display: inline-block; - font-size: 1.5rem; - font-weight: normal; - height: 20px; - line-height: 0; - margin-top: 0; - min-width: 20px; - padding: 0 5px; - text-align: center; - vertical-align: baseline; } - .b2b-badge:empty { - display: none; } - - * + .b2b-heading-micro { - margin-top: 20px !important; } - - .b2b-heading-micro { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-weight: normal; - text-rendering: optimizeLegibility; - font-size: 1.2rem !important; - text-transform: uppercase !important; - margin-bottom: 20px !important; - line-height: 1.2 !important; } - - .b2b-no-colors .b2b-badge { - border: 1px solid transparent; } - - .btn > .b2b-badge { - margin-right: 5px; } - - a > .b2b-badge { - margin-right: 6px; - padding-top: 10px; } - - .b2b-badge-urgent { - background-color: #cf2a2a; } - - .bellyband-container { - margin: 0 -15px; } - - .bellyband-group { - width: auto; } - - .bellyband-link { - border-top: 1px solid #d2d2d2; } - - .bellyband-link a { - display: block; - height: 40px; - line-height: 40px; - padding: 0 15px; - position: relative; - text-decoration: none; } - - .bellyband-link a:hover > div span, - .bellyband-link a:focus > div span { - text-decoration: underline; } - - .bellyband-link a:after { - color: #666; - font-size: 2.3rem; - height: 20px; - position: absolute; - right: 5px; - top: 12px; - width: 18px; } - - .dark-bg .bellyband-link a:after { - color: white; } - - .bellyband-link img[src$="svg"].hidden-desktop, - .bellyband-link [class*="icon-primary-"].hidden-desktop { - display: inline-block !important; - float: left; - font-size: 24px; - height: 24px; - margin-right: 5px; - margin-top: 8px; - width: 24px; } - - .dark-bg .bellyband-link [class*="icon-primary-"].hidden-desktop, - .dark-bg .bellyband-link [class*="icon-primary-"].visible-desktop { - color: #fff; } - - .bellyband-link img[src$="svg"].visible-desktop { - display: none !important; } - - .bellyband-link p { - margin-top: -10px; - margin-left: 29px; - font-size: 1.4rem; - color: #666; } - - @media (min-width: 481px) and (max-width: 767px) { - .bellyband-container { - display: flex; - margin: 0; } - .bellyband-group { - align-content: flex-start; - align-items: stretch; - display: inline-flex; - flex-direction: column; - flex-wrap: wrap; - margin-top: 1px; - width: 100%; } - .bellyband-group .row { - display: flex !important; } - .bellyband-link { - padding-top: 0; - position: relative; - border-top: none; - margin-bottom: 20px; - width: 50%; } - .bellyband-link a { - height: inherit; - line-height: inherit; - display: flex; - padding: 0; } - .bellyband-link a:after { - display: none; } - .bellyband-link a span { - display: block; - padding-top: 10px; } - .bellyband-link p { - display: block; - padding: 0 15px 0 0; - margin-bottom: 0; - margin-left: 0; - margin-top: 0; } - .bellyband-link a:focus p { - text-decoration: none; } } - - @media (min-width: 768px) { - .bellyband-group { - margin: 0; - max-width: 100%; - display: flex; - flex-wrap: wrap; - justify-content: center; } - .bellyband-group .row { - display: block; } - .bellyband-group .row .span { - float: none; - margin-right: 0; - margin-bottom: 30px; - display: flex; - justify-content: space-between; } - .bellyband-link { - border-top: none; - flex: 0 0 auto; - margin-right: 0; - margin-bottom: 30px; } - .bellyband-link:last-child { - margin-right: 0; } - .bellyband-link a { - height: auto; - line-height: 1; - text-align: center; } - .bellyband-link a:after { - display: none; } - .bellyband-link img[src$="svg"].hidden-desktop, - .bellyband-link [class*="icon-primary-"].hidden-desktop { - display: none !important; } - .bellyband-link img[src$="svg"].visible-desktop, - .bellyband-link [class*="icon-primary-"].visible-desktop { - display: block !important; - font-size: 50px; - height: 50px; - margin-right: 0; - margin-top: 0; - margin-left: auto; - margin-right: auto; - width: auto; } - .bellyband-link a span { - display: block; - margin-top: 12px; - line-height: 2rem; } - .bellyband-link p { - display: block; - text-align: center; - margin-top: 6px; - margin-left: 0; - padding-left: 0 !important; - color: #666; - line-height: 1.8rem; } } - - @media (max-width: 480px) { - .bellyband-link-tall a { - height: auto; - padding: 0 40px 10px 15px; } - .bellyband-link-tall p { - line-height: 1.8rem; - margin-bottom: 0; } - .bellyband-link-tall > a:after { - margin-top: -8px; - top: 50%; } } - - .b2b-boardstrip { - display: inline-block; - width: 100%; - border-bottom: 1px solid #9d9d9d; - position: relative; - padding-top: 15px; } - .b2b-boardstrip .boardstrip-reel { - margin-bottom: 15px; } - .b2b-boardstrip .boardstrip-item--add { - border: 1px dashed #ccc; - background: #FFFFFF; - color: #0574ac; - width: 140px; - height: 80px; - font-size: 14px; - font-family: "Omnes-ECOMP-W02", Arial; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 3px; - position: absolute; - left: 29px; - top: 15px; } - .b2b-boardstrip .boardstrip-item--add:hover, .b2b-boardstrip .boardstrip-item--add:focus { - border: 2px solid #007A3E; - cursor: pointer; } - .b2b-boardstrip .boardstrip-item--add i { - font-size: 14px; - margin-left: auto; - margin-right: auto; - text-align: initial; } - .b2b-boardstrip .boardstrip-item--add .centered { - margin-left: auto; - margin-right: auto; - margin-top: 27px; - margin-bottom: 35px; - display: block; } - .b2b-boardstrip .board-viewport { - float: left; - margin-left: 210px; - max-height: 95px; - position: relative; - height: 95px; - overflow: hidden; - width: 0px; } - .b2b-boardstrip .board-viewport .boardstrip-container { - width: 0px; - margin-left: 0; - left: 0px; - position: absolute; - list-style: none; - -webkit-transition: left 1000ms; - transition: left 1000ms; } - .b2b-boardstrip .board-viewport .board-item { - width: 140px; - height: 80px; - border: 1px solid #ccc; - margin: 0 15px 15px 0; - background-color: #FFFFFF; - border-radius: 3px; - float: left; - overflow: hidden; } - .b2b-boardstrip .board-viewport .board-item:hover, .b2b-boardstrip .board-viewport .board-item:focus { - border: 2px solid #007A3E; - background-color: white; - cursor: pointer; } - .b2b-boardstrip .board-viewport .board-item .board-img { - width: 61px; - height: 40px; - margin: 0 auto; } - .b2b-boardstrip .board-viewport .board-item .board-img img { - max-width: 100%; } - .b2b-boardstrip .board-viewport .board-item .title { - text-align: center; - line-height: 16px; - color: #666; - font-size: 14px; - font-family: "Omnes-ECOMP-W02", Arial; - padding: 10px 0; } - .b2b-boardstrip .board-viewport .board-item.selected { - background-color: #FFFFFF; - border: 2px solid #0574ac; } - .b2b-boardstrip .board-viewport .board-item .board-caret { - cursor: default; - outline: 0; - position: absolute; - bottom: 7px; } - .b2b-boardstrip .board-viewport .board-item .board-caret .board-caret-indicator { - border-left: 8px solid transparent; - border-right: 8px solid transparent; - border-bottom: 8px solid #999; - width: 0px; - height: 0px; - position: absolute; - left: 61px; - bottom: -7px; } - .b2b-boardstrip .board-viewport .board-item .board-caret .board-caret-arrow-up { - width: 0px; - height: 0px; - border-style: solid; - border-width: 0 8px 8px 8px; - border-color: transparent transparent #FFFFFF transparent; - left: 61px; - position: absolute; } - .b2b-boardstrip .arrow { - font-size: 14px; - cursor: pointer; - color: #0574ac; } - .b2b-boardstrip .arrow:hover { - color: #0574ac; } - .b2b-boardstrip .arrow.disabled { - color: #767676 !important; - cursor: not-allowed; } - .b2b-boardstrip .prev-items { - display: inline-block; - margin-top: auto; - margin-bottom: auto; - margin-right: 15px; - position: absolute; - left: 0; - top: 45px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - -o-user-select: none; - user-select: none; } - .b2b-boardstrip .next-items { - display: inline-block; - margin-top: 30px; - margin-bottom: auto; - margin-left: 10px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - -o-user-select: none; - user-select: none; } - .b2b-boardstrip .centered { - display: table-cell; - text-align: center; - vertical-align: middle; } - - .breadcrumb { - padding: 10px 15px; - height: 40px; - list-style: none; - border-bottom: 1px solid #d2d2d2; - font-size: 1.2rem; - width: 100%; - z-index: 1000; } - - .breadcrumb > li { - position: relative; - display: inline-block; - margin-right: 15px; } - - .breadcrumb > li:after { - font-size: 8px; - margin-right: 0; - right: -8px; - color: #333333; } - - .breadcrumb > li:last-child { - color: #333333; } - - .breadcrumb > li:last-child:after { - content: ""; } - - .breadcrumb li > * { - float: none !important; - margin: 0; } - - .breadcrumb { - padding: 10px 15px !important; } - - /* ARROW */ - /* spanish */ - .datepicker { - background-color: #FFFFFF; - padding: 0; - border-radius: 5px; - direction: ltr; } - .datepicker > div { - display: none; } - .datepicker table { - -webkit-touch-callout: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - margin: 0 0 0 0; } - .datepicker td { - text-align: center; - display: block; - width: 30px; - height: 30px; - border: none; } - .datepicker td span { - display: block; - width: 23%; - height: 54px; - line-height: 54px; - float: left; - margin: 1%; - cursor: pointer; - border-radius: 4px; } - .datepicker td span:hover { - background: #eeeeee; } - .datepicker td span.disabled { - background: none; - color: #5A5A5A; - cursor: default; } - .datepicker td span.disabled:hover { - background: none; - color: #5A5A5A; - cursor: default; } - .datepicker td span.active { - color: #FFFFFF; - background-color: #0568ae; - border-color: #357ebd; } - .datepicker td span.active:hover { - color: #FFFFFF; - background-color: #0568ae; - border-color: #357ebd; } - .datepicker td span.active.disabled { - color: #FFFFFF; - background-color: #0568ae; - border-color: #357ebd; } - .datepicker th { - text-align: center; - display: block; - width: 30px; - height: 30px; - border: none; } - .datepicker tbody:focus { - outline: none; } - .datepicker td.day { - background-color: transparent; - color: #0568ae; - cursor: pointer; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 16px; - height: 34px; - line-height: 30rem; - margin: -2px -1px 0 0; - overflow: hidden; - text-align: center; - width: 42px; } - .datepicker:focus { - outline: 1px dotted #191919; - outline-offset: -2px; } - .datepicker th[tabindex]:focus { - outline-offset: -15px; } - .datepicker td.day.focused { - background: #ededed; - cursor: pointer; } - .datepicker td.day.focused.active { - background-color: #ededed; - color: #0568ae; } - .datepicker td.disabled { - font-family: "Omnes-ECOMP-W02", Arial; - color: #5A5A5A; - cursor: default; } - .datepicker td.disabled:hover { - font-family: "Omnes-ECOMP-W02", Arial; - color: #5A5A5A; - cursor: default; } - .datepicker td.disabled:hover .show-date { - font-family: "Omnes-ECOMP-W02", Arial; - color: #5A5A5A; } - .datepicker td.disabled .show-date { - font-family: "Omnes-ECOMP-W02", Arial; - color: #5A5A5A; } - .datepicker td.today { - color: #FFFFFF; - background-color: #0568ae; } - .datepicker td.today:hover { - color: #FFFFFF; - background-color: #0568ae; - color: #FFFFFF; - background-color: #0568ae; } - .datepicker td.today:active { - color: #FFFFFF; - background-color: #0568ae; } - .datepicker td.today:focus { - color: #FFFFFF; - background-color: #0568ae; } - .datepicker td.today.disabled { - color: #FFFFFF; - background-color: #0568ae; } - .datepicker td.today.active { - color: #FFFFFF; - background-color: #0568ae; } - .datepicker td.today.active:hover { - color: #FFFFFF; } - .datepicker td.selected { - color: #FFFFFF; - background-color: #959595; } - .datepicker td.selected:hover { - color: #FFFFFF; - background-color: #959595; } - .datepicker td.selected.disabled { - color: #FFFFFF; - background-color: #959595; } - .datepicker td.active:not(.new) { - color: #FFFFFF; - border-color: #357ebd; } - .datepicker td.active:not(.new) .show-date { - color: #0568ae; - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - .datepicker td.active:hover:not(.new) { - color: #FFFFFF; - border-color: #357ebd; } - .datepicker td.active:hover:not(.new) .show-date { - color: #0568ae; - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - .datepicker .start-date .show-date { - background-color: #0568ae; - color: #FFFFFF !important; - border-radius: 5px 0 0 5px; - z-index: 1; } - .datepicker .start-date .show-date:before { - background-color: #0568ae; - content: ""; - display: block; - height: 26px; - left: 20px; - position: absolute; - width: 100%; - z-index: -1; } - .datepicker .between-date .show-date { - background-color: #0568ae; - color: #FFFFFF !important; } - .datepicker .between-date .show-date:before { - background-color: #0568ae; - content: ""; - display: block; - height: 26px; - left: 0; - position: absolute; - width: 100%; - z-index: -1; } - .datepicker .between-date:first-child .show-date:before { - background-color: #FFFFFF; - content: ""; - height: 26px; - position: absolute; - left: 0; - width: 8px; } - .datepicker .end-date .show-date { - background-color: #0568ae; - color: #FFFFFF !important; - border-radius: 0 5px 5px 0; } - .datepicker .end-date .show-date:before { - background-color: #0568ae; - content: ""; - display: block; - height: 26px; - left: -20px; - position: absolute; - width: 100%; - z-index: -1; } - .datepicker .end-date:first-child .show-date:after { - background-color: #FFFFFF; - content: ""; - height: 26px; - position: absolute; - left: 0; - width: 8px; } - .datepicker .end-date:first-child .show-date::before { - background-color: #FFFFFF; } - .datepicker tr td.start-date:last-child .show-date:after { - background-color: #FFFFFF; - content: ""; - height: 26px; - position: absolute; - right: 0; - width: 8px; } - .datepicker tr td.start-date:last-child:focus .show-date:after { - height: 30px; - width: 30px; - background-color: transparent; } - .datepicker tr td.start-date:first-child:focus .show-date:after { - height: 30px; - width: 30px; - background-color: transparent; } - .datepicker tr td.between-date:last-child .show-date:after { - background-color: #FFFFFF; - content: ""; - height: 26px; - position: absolute; - right: 0; - width: 8px; } - .datepicker tr td.between-date:last-child:focus .show-date:after { - height: 30px; - width: 30px; - background-color: transparent; } - .datepicker tr td.between-date:first-child:focus .show-date:after { - height: 30px; - width: 30px; - background-color: transparent; } - .datepicker tr td.end-date:last-child:focus .show-date:after { - height: 30px; - width: 30px; - background-color: transparent; } - .datepicker tr td.end-date:first-child:focus .show-date:after { - height: 30px; - width: 30px; - background-color: transparent; } - .datepicker th.datepicker-switch { - width: 198px; - font-size: 20px; - font-weight: normal; - cursor: default !important; } - .datepicker thead tr:first-child th { - cursor: pointer; - height: 60px; - line-height: 60px; } - .datepicker thead tr:first-child th.cw { - cursor: default; - background-color: transparent; } - .datepicker tfoot tr th { - cursor: pointer; - height: 60px; - line-height: 60px; - height: auto; - line-height: normal; } - .datepicker tfoot tr th li { - margin-bottom: 5px; } - .datepicker .prev { - color: transparent; - font-size: 0; - margin: 0 -1px -1px 0; - width: 46px; } - .datepicker .prev i { - color: #0568ae; - position: absolute; - font-size: 27px; - margin: 0; - top: 15px; - left: 8px; } - .datepicker .next { - color: transparent; - font-size: 0; - margin: 0 -1px -1px 0; - width: 46px; } - .datepicker .next i { - color: #0568ae; - position: absolute; - font-size: 27px; - margin: 0; - top: 15px; - right: 8px; } - .datepicker .cw { - font-size: 10px; - width: 12px; - padding: 0 2px 0 5px; - vertical-align: middle; } - .datepicker .due-date .show-date { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - background-color: #cf2a2a; - border-radius: 5px; - color: #FFFFFF !important; } - .datepicker .day.active .show-date:after { - border: 2px solid #0568ae; - border-radius: 7px; - content: ""; - display: block; - height: 30px; - left: 4px; - position: absolute; - top: 0; - width: 30px; } - .datepicker .day:focus .show-date:after { - border: 2px solid #0568ae; - border-radius: 7px; - content: ""; - display: block; - height: 30px; - left: 4px; - position: absolute; - top: 0; - width: 30px; - height: 30px; - left: 4px; - top: 0; - width: 30px; } - .datepicker .due-date.disabled .show-date:after { - border: 2px solid #0568ae; - border-radius: 7px; - content: ""; - display: block; - height: 30px; - left: 4px; - position: absolute; - top: 0; - width: 30px; } - .datepicker .day.due-date:focus .show-date:after { - height: 30px; - left: 4px; - top: 0; - width: 30px; } - .datepicker .due-date.old:after { - visibility: hidden; } - .datepicker .due-date.new:after { - visibility: hidden; } - .datepicker .due-date.active:after { - border-color: #FFFFFF; } - .datepicker .due-date.active.focused { - color: #0568ae !important; } - .datepicker .due-date.active.focused:after { - border-color: #cf2a2a !important; } - .datepicker .dow { - height: 24px; - width: 42px; - font-weight: normal; - position: relative; - overflow: hidden; - color: transparent; - letter-spacing: -6px; - margin: 0 -1px -1px 0; } - .datepicker .dow span[aria-hidden="true"] { - bottom: 0; - color: #5A5A5A; - display: block; - left: 1px; - letter-spacing: 0; - line-height: .9; - margin: 0 auto; - padding: 0; - position: relative; - width: 22px; } - .datepicker .calendar-legend { - margin-top: 3px; - margin-bottom: 20px; } - .datepicker .calendar-legend li { - font-size: 1.4rem; - font-weight: normal; - margin-bottom: 5px; - padding-left: 10px; - padding-top: 5px; - position: relative; } - .datepicker i.legend-due-date { - background-color: #cf2a2a; - border-radius: 5px; - height: 18px; - width: 18px; - margin-right: 8px; - vertical-align: middle; - display: inline-block; } - .datepicker i.legend-selected-date { - background-color: #FFFFFF; - border: 2px solid #0568ae; - border-radius: 5px; - height: 18px; - width: 18px; - margin-right: 8px; - vertical-align: middle; - display: inline-block; } - .datepicker i.legend-selectedisdue { - background-color: #FFFFFF; - border: 2px solid #0568ae; - border-radius: 5px; - display: inline-block; - height: 18px; - margin-right: 8px; - position: relative; - vertical-align: middle; - width: 18px; } - .datepicker i.legend-selectedisdue:after { - background-color: #cf2a2a; - border-radius: 3px; - content: ""; - display: block; - height: 10px; - left: 2px; - position: absolute; - top: 2px; - width: 10px; } - .datepicker .text-left { - width: 100%; } - .datepicker .active.old { - background-color: #ededed !important; - color: #ededed !important; } - - .datepicker-inline { - width: 220px; } - - .datepicker.datepicker-rtl { - direction: rtl; } - .datepicker.datepicker-rtl td span { - float: right; } - - .datepicker-dropdown { - top: 0; - left: 0; } - .datepicker-dropdown:before { - content: " "; - display: inline-block; - border-left: 10px solid transparent; - border-right: 10px solid transparent; - border-bottom: 10px solid #d2d2d2; - border-top: 0; - border-bottom-color: rgba(0, 0, 0, 0.2); - position: absolute; } - .datepicker-dropdown:after { - content: " "; - display: inline-block; - border-left: 10px solid transparent; - border-right: 10px solid transparent; - border-bottom: 10px solid #fff; - border-top: 0; - position: absolute; } - - .datepicker-dropdown.datepicker-orient-left:before { - left: 16px; } - - .datepicker-dropdown.datepicker-orient-left:after { - left: 16px; } - - .datepicker-dropdown.datepicker-orient-right:before { - right: 16px; } - - .datepicker-dropdown.datepicker-orient-right:after { - right: 16px; } - - .datepicker-dropdown.datepicker-orient-top:before { - top: -10px; } - - .datepicker-dropdown.datepicker-orient-top:after { - top: -9px; } - - .datepicker-dropdown.datepicker-orient-bottom:before { - bottom: -7px; - border-bottom: 0; - border-top: 7px solid #959595; } - - .datepicker-dropdown.datepicker-orient-bottom:after { - bottom: -6px; - border-bottom: 0; - border-top: 6px solid #fff; } - - .datepicker.days div.datepicker-days { - display: block; } - - .datepicker.months div.datepicker-months { - display: block; } - - .datepicker.years div.datepicker-years { - display: block; } - - .show-date { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - color: #0568ae; - height: 26px; - line-height: 26px; - margin: 4px auto 0; - width: 26px; } - - .input-group.date .input-group-addon i { - cursor: pointer; - width: 16px; - height: 16px; } - - .datepicker.dropdown-menu { - box-shadow: 0 10px 15px -10px rgba(0, 0, 0, 0.7); - position: absolute; - top: 100%; - left: 0; - float: left; - display: none; - margin-top: 13px; - width: 290px; - list-style: none; - background-color: #FFFFFF; - border: 1px solid #d2d2d2; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 5px; - color: #333333; - font-size: 13px; - line-height: 1.428571429; - z-index: 1050; } - .datepicker.dropdown-menu th { - display: block; - float: left; - padding: 0; - position: relative; } - .datepicker.dropdown-menu td { - display: block; - float: left; - padding: 0; - position: relative; } - - .s { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: #FFFFFF; - background-repeat: no-repeat; - background-position: -62px 0; } - - .m { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: #FFFFFF; - background-repeat: no-repeat; - background-position: -5px 0; } - - .t { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: #FFFFFF; - background-repeat: no-repeat; - background-position: -19px 0; } - - .w { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: #FFFFFF; - background-repeat: no-repeat; - background-position: -34px 0; } - - .f { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: #FFFFFF; - background-repeat: no-repeat; - background-position: -49px 0; } - - .d { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: #FFFFFF; - background-repeat: no-repeat; - background-position: 0 0; } - - .l { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: #FFFFFF; - background-repeat: no-repeat; - background-position: 0 0; } - - .v { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: #FFFFFF; - background-repeat: no-repeat; - background-position: 0 0; } - - .j { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: #FFFFFF; - background-repeat: no-repeat; - background-position: 0 0; } - - .b2b-coachmark-label { - z-index: 1060; - opacity: 1; - cursor: not-allowed; - position: relative; } - - .b2b-coachmark-highlight { - border: 1px solid #d3d3d3; - cursor: default; - z-index: 1045; - opacity: 1; - background-color: #ffffff; - border-radius: 10px; - position: relative; - box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.25); - padding: 10px; - position: absolute; } - - .b2b-coachmark-highlight-mask { - z-index: 1100; - opacity: .1; } - - .b2b-coachmark-container { - border: 1px solid #cccccc; - width: 316px; - pointer-events: auto; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - font-size: 16px; - -webkit-transition: opacity .2s ease-out; - -moz-transition: opacity .2s ease-out; - transition: opacity .2s ease-out; - background: #fff; - border-radius: 20px; - box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.15); - color: #333; - line-height: 20px; - position: absolute; - top: 50px; - left: -97px; - display: block; - background-color: #ffffff; - z-index: 1050; - opacity: 1; } - .b2b-coachmark-container i.b2b-coachmark-caret { - position: absolute; - top: -12px; - left: 47%; - opacity: 1; - z-index: 1050; } - .b2b-coachmark-container i.b2b-coachmark-caret:before { - content: ""; - border-left: 12px solid transparent; - border-right: 12px solid transparent; - border-bottom: 12px solid #d3d3d3; - position: absolute; - top: -1px; } - .b2b-coachmark-container i.b2b-coachmark-caret:after { - content: ""; - border-left: 12px solid transparent; - border-right: 12px solid transparent; - border-bottom: 12px solid #fff; - position: absolute; } - .b2b-coachmark-container .b2b-coachmark-header { - position: relative; - height: 47px; - overflow: hidden; } - .b2b-coachmark-container .b2b-coachmark-header .corner-button { - box-shadow: 0 -24px 0 0 #f2f2f2 inset; - height: 69px; - position: absolute; - right: -33px; - top: -38px; - transform: rotate(45deg); - width: 69px; } - .b2b-coachmark-container .b2b-coachmark-countlabel { - font-size: 12px; - font-family: "Omnes-ECOMP-W02", Arial; - color: #333333; - margin-left: 20px; - margin-top: 20px; } - .b2b-coachmark-container .b2b-coachmark-content { - padding: 0px 20px 20px 20px; - float: left; } - .b2b-coachmark-container .b2b-coachmark-content .icon-misc-dimmer { - font-size: 32px; - float: left; - margin-right: 10px; - width: 32px; } - .b2b-coachmark-container .b2b-coachmark-content .offscreen-text { - position: absolute; - left: -10000px; - top: auto; - width: 1px; - height: 1px; - overflow: hidden; } - .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-content-header { - font-size: 16px; - color: #333333; - line-height: 18px; - float: left; - width: 220px; } - .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-description { - font-size: 14px; - line-height: 18px; - color: #333333; - width: 100%; - float: left; - margin-top: 15px; } - .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-btn-group { - margin-top: 20px; - float: left; - text-align: right; - width: 100%; } - .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-btn-group .b2b-coachmark-link { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 15px; - color: #0574ac; - line-height: 18px; - margin-right: 20px; } - .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-btn-group button { - font-size: 15px; - margin: 0px; } - - .datepicker { - background-color: #fff; - padding: 0; - border-radius: 5px; - direction: ltr; } - - .datepicker-inline { - width: 220px; } - - .datepicker.datepicker-rtl { - direction: rtl; } - - .datepicker.datepicker-rtl td span { - float: right; } - - .datepicker-dropdown { - top: 0; - left: 0; } - - /* ARROW */ - .datepicker-dropdown:before { - content: " "; - display: inline-block; - border-left: 10px solid transparent; - border-right: 10px solid transparent; - border-bottom: 10px solid #d2d2d2; - border-top: 0; - border-bottom-color: rgba(0, 0, 0, 0.2); - position: absolute; } - - .datepicker-dropdown:after { - content: " "; - display: inline-block; - border-left: 10px solid transparent; - border-right: 10px solid transparent; - border-bottom: 10px solid #fff; - border-top: 0; - position: absolute; } - - .datepicker-dropdown.datepicker-orient-left:before, - .datepicker-dropdown.datepicker-orient-left:after { - left: 255px; } - - .datepicker-dropdown.datepicker-orient-right:before, - .datepicker-dropdown.datepicker-orient-right:after { - right: 16px; } - - .datepicker-dropdown.datepicker-orient-top:before { - top: -10px; } - - .datepicker-dropdown.datepicker-orient-top:after { - top: -9px; } - - .datepicker-dropdown.datepicker-orient-bottom:before { - bottom: -7px; - border-bottom: 0; - border-top: 7px solid #959595; } - - .datepicker-dropdown.datepicker-orient-bottom:after { - bottom: -6px; - border-bottom: 0; - border-top: 6px solid #fff; } - - .datepicker > div { - display: none; } - - .datepicker.days div.datepicker-days { - display: block; } - - .datepicker.months div.datepicker-months { - display: block; } - - .datepicker.years div.datepicker-years { - display: block; } - - .datepicker table { - -webkit-touch-callout: none; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - margin: 0 0 0 0; } - - .datepicker td, - .datepicker th { - text-align: center; - display: block; - width: 30px; - height: 30px; - border: none; } - - .datepicker tbody :focus { - outline: none; } - - .datepicker td.day { - background-color: transparent; - color: #0568ae; - cursor: pointer; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 16px; - height: 34px; - line-height: 30rem; - margin: -2px -1px 0 0; - overflow: hidden; - text-align: center; - width: 42px; } - - .datepicker :focus { - outline: 1px dotted #000; - outline-offset: -2px; } - - .datepicker td.day.focused { - background: #ededed; - cursor: pointer; } - - .datepicker td.day.focused.active { - background-color: #ededed; - color: #0568ae; } - - .datepicker td.disabled, - .datepicker td.disabled:hover { - font-family: "Omnes-ECOMP-W02", Arial; - color: #5a5a5a; - cursor: default; } - - .datepicker td.today, - .datepicker td.today:hover, - .datepicker td.today.disabled { - color: #fff; - background-color: #0568ae; } - - .datepicker td.today.active, - .datepicker td.today:active, - .datepicker td.today:hover, - .datepicker td.today:focus { - color: #fff; - background-color: #0568ae; } - - .datepicker td.today.active:hover { - color: #fff; } - - .datepicker td.selected, - .datepicker td.selected:hover, - .datepicker td.selected.disabled { - color: #ffffff; - background-color: #959595; } - - .datepicker td.active:not(.new), - .datepicker td.active:hover:not(.new) { - color: #ffffff; - border-color: #357ebd; } - - .show-date { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - color: #0568ae; - height: 26px; - line-height: 26px; - margin: 4px auto 0; - width: 26px; } - - .datepicker .start-date .show-date, - .datepicker .between-date .show-date, - .datepicker .end-date .show-date { - background-color: #0568ae; - color: #fff !important; } - - .datepicker .start-date .show-date { - border-radius: 5px 0 0 5px; - z-index: 1; } - - .datepicker .start-date .show-date:before { - background-color: #0568ae; - content: ""; - display: block; - height: 26px; - left: 20px; - position: absolute; - width: 100%; - z-index: -1; } - - .datepicker .between-date .show-date:before { - background-color: #0568ae; - content: ""; - display: block; - height: 26px; - left: 0; - position: absolute; - width: 100%; - z-index: -1; } - - .datepicker .end-date .show-date { - border-radius: 0 5px 5px 0; } - - .datepicker .end-date .show-date:before { - background-color: #0568ae; - content: ""; - display: block; - height: 26px; - left: -20px; - position: absolute; - width: 100%; - z-index: -1; } - - .datepicker .between-date:first-child .show-date:before { - background-color: #fff; - content: ""; - height: 26px; - position: absolute; - left: 0; - width: 8px; } - - .datepicker .end-date:first-child .show-date:after { - background-color: #fff; - content: ""; - height: 26px; - position: absolute; - left: 0; - width: 8px; } - - .datepicker .end-date:first-child .show-date::before { - background-color: #fff; } - - .datepicker tr td.start-date:last-child .show-date:after, - .datepicker tr td.between-date:last-child .show-date:after { - background-color: #fff; - content: ""; - height: 26px; - position: absolute; - right: 0; - width: 8px; } - - .datepicker tr td.start-date:last-child:focus .show-date:after, - .datepicker tr td.end-date:last-child:focus .show-date:after, - .datepicker tr td.between-date:last-child:focus .show-date:after, - .datepicker tr td.start-date:first-child:focus .show-date:after, - .datepicker tr td.end-date:first-child:focus .show-date:after, - .datepicker tr td.between-date:first-child:focus .show-date:after { - height: 30px; - width: 30px; - background-color: transparent; } - - .datepicker td.active:not(.new) .show-date, - .datepicker td.active:hover:not(.new) .show-date { - color: #0568ae; - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - - .datepicker td.disabled .show-date, - .datepicker td.disabled:hover .show-date { - font-family: "Omnes-ECOMP-W02", Arial; - color: #5a5a5a; } - - .datepicker td span { - display: block; - width: 23%; - height: 54px; - line-height: 54px; - float: left; - margin: 1%; - cursor: pointer; - border-radius: 4px; } - - .datepicker td span:hover { - background: #eeeeee; } - - .datepicker td span.disabled, - .datepicker td span.disabled:hover { - background: none; - color: #5a5a5a; - cursor: default; } - - .datepicker td span.active, - .datepicker td span.active:hover, - .datepicker td span.active.disabled { - color: #ffffff; - background-color: #0568ae; - border-color: #357ebd; } - - .datepicker th.datepicker-switch { - width: 198px; - font-size: 20px; - font-weight: normal; - cursor: default !important; } - - .datepicker thead tr:first-child th, - .datepicker tfoot tr th { - cursor: pointer; - height: 60px; - line-height: 60px; } - - .datepicker tfoot tr th { - height: auto; - line-height: normal; } - - .datepicker tfoot tr th li { - margin-bottom: 5px; } - - .datepicker .prev, - .datepicker .next { - color: transparent; - font-size: 0; - margin: 0 -1px -1px 0; - width: 46px; } - - .datepicker .prev i, - .datepicker .next i { - color: #0568ae; - position: absolute; - font-size: 27px; - margin: 0; - top: 15px; } - - .datepicker .prev i { - left: 8px; } - - .datepicker .next i { - right: 8px; } - - .datepicker .cw { - font-size: 10px; - width: 12px; - padding: 0 2px 0 5px; - vertical-align: middle; } - - .datepicker thead tr:first-child th.cw { - cursor: default; - background-color: transparent; } - - .input-group.date .input-group-addon i { - cursor: pointer; - width: 16px; - height: 16px; } - - .datepicker.dropdown-menu { - box-shadow: 0 10px 15px -10px rgba(0, 0, 0, 0.7); - position: absolute; - top: 100%; - left: 0; - float: left; - display: none; - margin-top: 13px; - width: 290px; - list-style: none; - background-color: #ffffff; - border: 1px solid #d2d2d2; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 5px; - color: #333333; - font-size: 13px; - line-height: 1.428571429; - z-index: 1050; } - - .datepicker.dropdown-menu th, - .datepicker.dropdown-menu td { - display: block; - float: left; - padding: 0; - position: relative; } - - .datepicker .due-date .show-date { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - background-color: #cf2a2a; - border-radius: 5px; - color: #fff !important; } - - .datepicker .day.active .show-date:after, - .datepicker .day:focus .show-date:after, - .datepicker .due-date.disabled .show-date:after { - border: 2px solid #0568ae; - border-radius: 7px; - content: ""; - display: block; - height: 30px; - left: 4px; - position: absolute; - top: 0; - width: 30px; } - - .datepicker .day:focus .show-date:after { - height: 30px; - left: 4px; - top: 0; - width: 30px; } - - .datepicker .day.due-date:focus .show-date:after { - height: 30px; - left: 4px; - top: 0; - width: 30px; } - - .datepicker .due-date.old:after, - .datepicker .due-date.new:after { - visibility: hidden; } - - .datepicker .due-date.active:after { - border-color: #fff; } - - .datepicker .due-date.active.focused { - color: #0568ae !important; } - - .datepicker .due-date.active.focused:after { - border-color: #cf2a2a !important; } - - .datepicker .dow { - height: 24px; - width: 42px; - font-weight: normal; - position: relative; - overflow: hidden; - color: transparent; - letter-spacing: -6px; - margin: 0 -1px -1px 0; } - - .datepicker .dow span[aria-hidden="true"] { - bottom: 0; - color: #5a5a5a; - display: block; - left: 1px; - letter-spacing: 0; - line-height: .9; - margin: 0 auto; - padding: 0; - position: relative; - width: 22px; } - - .datepicker .calendar-legend { - margin-top: 3px; - margin-bottom: 20px; } - - .datepicker .calendar-legend li { - font-size: 1.4rem; - font-weight: normal; - margin-bottom: 5px; - padding-left: 10px; - padding-top: 5px; - position: relative; } - - .datepicker i.legend-due-date { - background-color: #cf2a2a; - border-radius: 5px; - height: 18px; - width: 18px; - margin-right: 8px; - vertical-align: middle; - display: inline-block; } - - .datepicker i.legend-selected-date { - background-color: #fff; - border: 2px solid #0568ae; - border-radius: 5px; - height: 18px; - width: 18px; - margin-right: 8px; - vertical-align: middle; - display: inline-block; } - - .datepicker i.legend-selectedisdue { - background-color: #fff; - border: 2px solid #0568ae; - border-radius: 5px; - display: inline-block; - height: 18px; - margin-right: 8px; - position: relative; - vertical-align: middle; - width: 18px; } - - .datepicker i.legend-selectedisdue:after { - background-color: #cf2a2a; - border-radius: 3px; - content: ""; - display: block; - height: 10px; - left: 2px; - position: absolute; - top: 2px; - width: 10px; } - - .datepicker .text-left { - width: 100%; } - - .datepicker .active.old { - background-color: #ededed !important; - color: #ededed !important; } - - .s, - .m, - .t, - .w, - .f, - .d, - .l, - .v, - .j { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: white; - background-repeat: no-repeat; } - - .s { - background-position: -62px 0; } - - .m { - background-position: -5px 0; } - - .t { - background-position: -19px 0; } - - .w { - background-position: -34px 0; } - - .f { - background-position: -49px 0; } - - /* spanish */ - .d { - background-position: 0 0; } - - .l { - background-position: 0 0; } - - .v { - background-position: 0 0; } - - .j { - background-position: 0 0; } - - .datepicker-container { - position: relative; } - - .btn-calendar-icon:focus .icon-primary-calendar { - outline: 1px dotted #191919; } - - .btn-calendar-icon:focus { - outline: none; } - - /* remove focus outline when dropdown is opened */ - /*resolve blue focus outline over dropdown with error*/ - select { - margin-right: -1; - max-width: 400px; - height: 36px; - line-height: 25px; - width: 400px; - background-color: #FFFFFF; } - - .selectWrap.disabled .icon-primary-down { - color: #767676; } - - .selectWrap.disabled input.awd-select { - z-index: 0; - padding: 10px 45px 10px 15px; - text-indent: 0; } - - .selectWrap.disabled button.awd-select { - z-index: 0; - text-indent: 15px; } - - .selectWrap.disabled:after { - color: #5A5A5A; - cursor: not-allowed; } - - input.awd-select { - background-color: transparent; - border: 1px solid #d2d2d2; - border-radius: 6px; - box-shadow: 1px 5px 2px -5px rgba(0, 0, 0, 0.15); - color: #333333; - display: block; - font-family: "Omnes-ECOMP-W02", Arial; - /*font-size: 1.6rem;*/ - height: 36px; - line-height: 0; - margin-bottom: 0; - position: relative; - text-align: left; - top: 0; - width: 100%; - z-index: 10; - padding: 12px 45px 8px 15px; - user-select: none; } - input.awd-select:focus { - border-color: #0568ae !important; - text-overflow: ellipsis; - padding-right: 45px; } - - button.awd-select { - background-color: transparent; - border: 1px solid #d2d2d2; - border-radius: 6px; - box-shadow: 1px 5px 2px -5px rgba(0, 0, 0, 0.15); - color: #333333; - display: block; - font-family: "Omnes-ECOMP-W02", Arial; - /*font-size: 1.6rem;*/ - height: 36px; - line-height: 36px; - margin-bottom: 0; - position: relative; - text-align: left; - top: 0; - width: 100%; - z-index: 10; } - button.awd-select:not(.large) { - text-indent: 15px; - white-space: nowrap; - overflow: hidden; - text-overflow: clip; - text-overflow: ellipsis; } - button.awd-select img { - height: 26px; - margin-right: 7px; - margin-top: -10px; - position: relative; - top: 2px; - vertical-align: text-bottom; } - button.awd-select:focus { - border-color: #0568ae !important; } - button.awd-select i { - font-size: 23px; - position: absolute; - right: 33px; - top: 5px; - z-index: 1000; } - - button.awd-select.large { - align-items: center; - display: flex; - height: 60px; - line-height: 20px; - overflow: hidden; - padding-left: 70px; - vertical-align: middle; } - button.awd-select.large img { - height: 40px; - left: 20px; - position: absolute; - top: 20px; - width: 40px; } - - .selectWrap.large { - height: 60px; } - .selectWrap.large .awd-select-list-item { - align-items: center; - display: flex; - height: 60px; - line-height: 20px; - overflow: hidden; - padding-left: 70px; - vertical-align: middle; } - .selectWrap.large .awd-select-list-item img { - height: 40px; - left: 20px; - position: absolute; - top: 20px; - width: 40px; - top: 10px; } - - .inputWrap { - border-radius: 6px; - position: relative; - height: 36px; - line-height: 44px; - display: block; - margin: 0; - } - - button.awd-select.active { - border-radius: 6px 6px 0 0; } - button.awd-select.active:focus { - border-color: #d2d2d2 !important; } - - input.awd-select.active { - border-radius: 6px 6px 0 0; } - input.awd-select.active:focus { - border-color: #d2d2d2 !important; } - - .selectWrapper { - position: relative; } - - span.selectWrap input[readonly]:focus { - color: transparent; - text-shadow: 0 0 0 #000; } - - .isIE.ds2-no-colors .awd-select:focus { - outline: 1px dashed transparent; } - - .awd-select-list { - box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); - border-radius: 0 0 6px 6px; - position: absolute; - border: 1px solid #d2d2d2; - border-top: 0; - padding: 0; - background-color: #f2f2f2; - z-index: 1000; - width: 100%; - max-height: 320px; - overflow-y: auto; } - - .awd-select-list-item { - cursor: pointer; - height: 100%; - min-height: 36px; - line-height: 20px; - overflow: hidden; - padding: 8px 15px; - position: relative; - z-index: 1000; } - .awd-select-list-item:hover { - cursor: pointer; - background-color: #d2d2d2; - outline: 1px dashed transparent; } - .awd-select-list-item:focus { - cursor: pointer; - background-color: #d2d2d2; - outline: 1px dashed transparent; } - .awd-select-list-item img { - margin-top: 0; - margin-right: 7px; - height: 26px; - width: 26px; } - - .selectWrap { - border-radius: 6px; - position: relative; - height: 36px; - line-height: 28px; - display: block; - margin: 0; - background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); - background: -webkit-linear-gradient(top, #fcfcfc 0%, #f2f2f2 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="@att-gray-highlight", endColorstr="@att-functional-bg-gray", GradientType=0); } - .selectWrap:not(.large) .awd-select-list-item:first-child { - margin-top: 15px; } - .selectWrap:not(.large) .awd-select-list-item:last-child { - margin-bottom: 15px; } - .selectWrap .icon-primary-down { - font-size: 23px; - margin-top: -11px; - position: absolute; - right: 4px; - top: 50%; } - .selectWrap + [aria-expanded="true"] { - padding-bottom: 9px; - padding-top: 20px; } - - .awd-select-list-item[data-hover="true"] { - background-color: #d2d2d2; } - - span input.awd-select { - width: 100%; - cursor: pointer; - text-overflow: ellipsis; - padding-right: 45px; } - - li.optgroup-wrapper { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - cursor: default !important; - padding: 0px 15px; } - li.optgroup-wrapper:first-child { - padding-top: 10px; } - li.optgroup-wrapper:hover { - background-color: #f2f2f2; } - - ul.optgroup { - font-family: "Omnes-ECOMP-W02", Arial; - cursor: pointer !important; - margin: 0 -15px; } - ul.optgroup li { - padding: 0 0 0 33px; } - - label + .selectWrap { - margin-top: 4px; } - - .selectorModule { - border-radius: 6px; - position: relative; - height: 36px; - line-height: 28px; - display: block; - margin: 0; - background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); - background: -webkit-linear-gradient(top, #fcfcfc 0%, #f2f2f2 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="@att-gray-highlight", endColorstr="@att-functional-bg-gray", GradientType=0); } - - .group .selectWrap { - margin: 0 0 10px 0; } - - select.awd-select { - position: relative; - top: 0; - left: 0; - font-size: 16px; - z-index: 1010; - height: 33px; - min-width: 100%; - opacity: 0.01; } - select.awd-select > optgroup { - padding-left: 8px; - font-style: normal; - margin-top: 10px; } - select.awd-select > optgroup:first-child { - margin-top: 0; } - select.awd-select > optgroup > option { - padding-left: 8px; } - select.awd-select > option { - padding-left: 8px; } - select.awd-select + span { - background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); - background: -webkit-linear-gradient(top, #fcfcfc 0%, #f2f2f2 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="@att-gray-highlight", endColorstr="@att-functional-bg-gray", GradientType=0); - position: absolute; - top: 0; - left: 0; - z-index: 0; - display: block; - border: 1px solid #d2d2d2; - border-radius: 6px; - height: 35px; - line-height: 0; - padding: 18px 45px 15px 15px; - width: 100%; - font-size: 1.6rem; - padding-right: 45px; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; } - select.awd-select + span > i { - font-size: 23px; - position: absolute; - right: 33px; - top: 5px; - z-index: 1000; } - select.awd-select + span > i:before { - left: 1px; - position: absolute; - top: -1px; } - select.awd-select:focus + span { - border-color: #0568ae; } - - .isIE select.awd-select + span { - line-height: 1; } - - [data-default-option="true"] { - color: #767676 !important; - font-family: "Omnes-ECOMP-W02-Italic", Arial; } - - .placeholdercolor { - color: #767676 !important; - font-family: "Omnes-ECOMP-W02-Italic", Arial; } - - .filterTank button.awd-select { - border-color: #d2d2d2; - background-color: #333333; - color: #FFFFFF; - color: #333333; } - .filterTank button.awd-select:after { - background-color: #FFFFFF !important; - border-color: #d2d2d2; } - - .utility-bg button.awd-select { - border-color: #d2d2d2; - background-color: #333333; - color: #FFFFFF; - color: #333333; } - .utility-bg button.awd-select:after { - background-color: #FFFFFF !important; - border-color: #d2d2d2; } - - .utility-bg select.awd-select + span { - border-color: #d2d2d2; - border-color: #d2d2d2; - background-color: #333333; - background-color: #333333; - color: #FFFFFF; - color: #FFFFFF; } - .utility-bg select.awd-select + span:after { - background-color: #FFFFFF !important; - background-color: #FFFFFF !important; - border-color: #d2d2d2; - border-color: #d2d2d2; } - - .utility-bg select.awd-select:focus + span { - border-color: #d2d2d2; - border-color: #d2d2d2; - background-color: #333333; - background-color: #333333; - color: #FFFFFF; - color: #FFFFFF; } - .utility-bg select.awd-select:focus + span:after { - background-color: #FFFFFF !important; - background-color: #FFFFFF !important; - border-color: #d2d2d2; - border-color: #d2d2d2; } - - .utility-bg select.awd-select:hover + span { - border-color: #d2d2d2; - border-color: #d2d2d2; - background-color: #333333; - background-color: #333333; - color: #FFFFFF; - color: #FFFFFF; } - .utility-bg select.awd-select:hover + span:after { - background-color: #FFFFFF !important; - background-color: #FFFFFF !important; - border-color: #d2d2d2; - border-color: #d2d2d2; } - - input.awd-select[disabled] { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - input.awd-select[disabled] + span { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - - button.awd-select[disabled] { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - button.awd-select[disabled]:after { - background-color: #d2d2d2 !important; - border-color: #d2d2d2; } - - select.awd-select[disabled] + span { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - select.awd-select[disabled] + span:after { - background-color: #d2d2d2 !important; - border-color: #d2d2d2; } - - select.awd-select[disabled]:focus + span { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - - select.awd-select[disabled]:hover + span { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - - input.awd-select[disabled="disabled"] { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - input.awd-select[disabled="disabled"] + span { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - - select.awd-select[disabled="disabled"] + span { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - select.awd-select[disabled="disabled"] + span:after { - background-color: #d2d2d2 !important; - border-color: #d2d2d2; } - - select.awd-select[disabled="disabled"]:focus + span { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - select.awd-select[disabled="disabled"]:focus + span:after { - background-color: #d2d2d2 !important; - border-color: #d2d2d2; } - - select.awd-select[disabled="disabled"]:hover + span { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - select.awd-select[disabled="disabled"]:hover + span:after { - background-color: #d2d2d2 !important; - border-color: #d2d2d2; } - - .ddexpand-wrapper > h2 { - margin-bottom: 11px; } - .ddexpand-wrapper > h2 + p { - margin-bottom: 4px; } - - .ddexpand-wrapper .selectWrap + [aria-expanded="true"] .form-row { - margin-top: 11px; } - - .ddexpand-wrapper .selectWrap + [aria-expanded="true"] .row + .row .form-row { - margin-top: 14px; } - - .modal .awd-select-list { - z-index: 1060 !important; } - - .form-row.error button.awd-select.active:focus { - border-color: #cf2a2a !important; } - - .form-row.error input.awd-select.active:focus { - border-color: #cf2a2a !important; } - - .awd-module-list .module-list-item[aria-selected="true"] { - background-color: #f2f2f2; } - - li.module-list-item[aria-selected="true"]:before { - color: #0568ae; - display: inline-block; - font-family: "icoControls" !important; - font-style: normal; - font-size: 20px; - font-weight: normal; - font-variant: normal; - height: 1em; - margin-right: 7px; - text-transform: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - position: relative; - speak: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - vertical-align: middle; - width: 1em; - content: "\e907"; - box-sizing: border-box; - display: inline-block; - font-size: 2em; - height: 1em; - position: absolute; - top: 20px; - right: 0px; - vertical-align: middle; - width: 1em; - color: #007a3e; } - - @media (min-width: 768px) { - span[class*="large"] { - max-width: 370px; } - .large { - max-width: 370px; } } - - @media (max-width: 767px) { - .selectWrap.large:after { - right: 5px; } - .selectWrap.large .awd-select-list-item { - padding-right: 41px; } - .selectWrap + div > h4 { - margin-bottom: 0; - font-size: 16px; } } - - /**********************Dropdown Chrome scrolling fix start ********************/ - input.awd-select { - -webkit-user-select: text; - -moz-user-select: text; - -ms-user-select: text; - user-select: text; } - - /**********************Dropdown Chrome scrolling fix end ********************/ - .mpc-expanders { - border-bottom: 1px solid #e4e4e4; - border-top: 1px solid #e4e4e4; } - - .mpc-expanders + .mpc-expanders { - border-top: 0px; } - - .mpc-expanders .heading-medium { - margin-bottom: 10px; } - - .mpc-expanders .p-small { - margin-top: 5px; } - - .mpc-expander-body { - border-top: 1px solid #e4e4e4; } - - .mpc-expander-body .mpc-expanders { - border-bottom: 1px solid #e4e4e4; - border-top: 0; } - - .mpc-expander-body .mpc-expanders:last-child { - border-bottom: 0px; } - - .ddh-blue { - color: #0574ac; } - - .b2b-dragdrop { - border: 1px dashed #bbb; - border-radius: 5px; - padding: 0; - text-align: center; - color: #bbb; - position: relative; } - - .b2b-dragdrop-over { - background: #0091d9; - color: #006496; } - .b2b-dragdrop-over:after { - content: "Drop the file"; - color: #fff; - width: 80px; - height: 20px; - overflow: hidden; - margin: auto; - position: absolute; - top: 0; - left: 0; - bottom: 0; - right: 0; } - - .b2b-file-container { - position: relative; - overflow: hidden; - display: inline-table; - font-weight: 400; } - .b2b-file-container [type=file] { - position: absolute; - cursor: inherit; - display: block; - font-size: 0; - opacity: 0; - height: 0; - width: 0; - left: 0; - top: 0; - -ms-filter: "alpha(Opacity=0)"; } - - .b2b-upload-link { - color: #0568ae; } - - .b2b-flyout { - position: relative; - display: inline-block; - cursor: default; } - - .b2b-flyout-icon { - cursor: pointer; } - .b2b-flyout-icon:focus { - outline: thin dotted #666; - outline-offset: -1px; } - - .b2b-flyout .b2b-flyout-container { - border: 1px solid #d3d3d3; - width: 300px; - padding: 20px; - pointer-events: auto; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - font-size: 16px; - -webkit-transition: opacity .2s ease-out; - -moz-transition: opacity .2s ease-out; - transition: opacity .2s ease-out; - background: #fff; - border-radius: 6px; - box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.25); - color: #333; - line-height: 20px; - position: absolute; - top: 35px; - opacity: 0; - z-index: 1010; - display: none; } - .b2b-flyout .b2b-flyout-container.open-flyout { - opacity: 1; - display: block; } - - .b2b-flyout i.b2b-flyout-caret { - position: absolute; - top: -8px; - left: 50%; - opacity: 0; - z-index: 1011; - display: none; } - .b2b-flyout i.b2b-flyout-caret.open-flyout { - opacity: 1; - display: block; } - .b2b-flyout i.b2b-flyout-caret:before { - content: ""; - border-left: 8px solid transparent; - border-right: 8px solid transparent; - border-bottom: 8px solid #d3d3d3; - position: absolute; - top: -1px; } - .b2b-flyout i.b2b-flyout-caret:after { - content: ""; - border-left: 8px solid transparent; - border-right: 8px solid transparent; - border-bottom: 8px solid #fff; - position: absolute; } - - .b2b-flyout .b2b-flyout-container.b2b-flyout-left i.b2b-flyout-caret { - left: 16px !important; } - - .b2b-flyout .b2b-flyout-container.b2b-flyout-right i.b2b-flyout-caret { - left: inherit !important; - right: 30px !important; } - - .b2b-flyout .b2b-flyout-container.b2b-flyout-above { - box-shadow: 0 -5px 6px 0 rgba(0, 0, 0, 0.25); } - .b2b-flyout .b2b-flyout-container.b2b-flyout-above i.b2b-flyout-caret { - top: auto; - bottom: 0px; } - .b2b-flyout .b2b-flyout-container.b2b-flyout-above i.b2b-flyout-caret:before { - top: auto; - bottom: -9px; - border-top: 8px solid #d3d3d3; - border-bottom: none; } - .b2b-flyout .b2b-flyout-container.b2b-flyout-above i.b2b-flyout-caret:after { - border-top: 8px solid #fff; - border-bottom: none; } - - .b2b-flyout .b2b-flyout-container.b2b-flyout-centerLeft i.b2b-flyout-caret { - left: inherit !important; - right: -7px !important; - top: 8px; - transform: rotate(90deg); } - - .b2b-flyout .b2b-flyout-container.b2b-flyout-centerRight i.b2b-flyout-caret { - left: -8px !important; - top: 296px; - transform: rotate(-90deg); } - - .b2b-flyout .buttons-group { - margin-top: 20px; } - .b2b-flyout .buttons-group .cta-button-group { - width: 100%; - border-top: 1px solid #ccc; - padding: 20px 0 0; } - .b2b-flyout .buttons-group .cta-button-group button { - margin-bottom: 0; } - - .b2b-flyout .heading { - font-size: 20px; - margin-bottom: 10px; } - - .b2b-flyout .body-text { - font-size: 14px; - margin-bottom: 30px; } - - .b2b-footer-wrapper { - width: 100%; - background-color: #222; } - - .b2b-footer-container { - width: 980px; - margin: 0 auto; - padding-top: 15px; } - .b2b-footer-container .footer-columns { - display: inline-block; - text-align: left; - vertical-align: top; } - .b2b-footer-container .footer-columns.three-column, .b2b-footer-container .footer-columns.four-column, .b2b-footer-container .footer-columns.five-column { - padding-top: 30px; } - .b2b-footer-container .footer-columns.three-column { - width: 33.3%; - padding-left: 75px; } - .b2b-footer-container .footer-columns.four-column { - width: 25%; - padding-left: 75px; } - .b2b-footer-container .footer-columns.five-column { - width: 20%; } - .b2b-footer-container .footer-columns .b2b-footer-header { - color: #009fdb; - font-size: 18px; - font-style: normal; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - line-height: 23.9px; - margin: 0; } - .b2b-footer-container .footer-columns li { - padding: 7.5px 0; } - .b2b-footer-container .footer-columns ul li:first-child { - padding-top: 15px; } - .b2b-footer-container .footer-columns li a { - color: #fff; - font-size: 16px; - font-family: "Omnes-ECOMP-W02", Arial; } - .b2b-footer-container .footer-nav-content { - padding-bottom: 10px; } - .b2b-footer-container .footer-nav-content li { - display: inline; - font-size: 14px; - color: #fff; - vertical-align: middle; } - .b2b-footer-container .footer-nav-content li a { - color: #fff; - font-size: 14px; - vertical-align: middle; - margin-right: 5px; - font-family: "Omnes-ECOMP-W02", Arial; } - - .b2b-footer-wrapper .b2b-footer-container hr { - background: #d2d2d2; - margin-top: 50px; } - - .b2b-footer-wrapper .divider-bottom-footer { - padding: 45px 0 50px 0; } - - .b2b-footer-wrapper .footerLogo { - margin: 10px 0 0 0px; - vertical-align: top; } - .b2b-footer-wrapper .footerLogo div { - display: inline-block; } - .b2b-footer-wrapper .footerLogo .icon-primary-att-globe { - font-size: 40px; } - .b2b-footer-wrapper .footerLogo .logo-title { - color: #fff; - margin-left: 10px; - display: inline-block; - font-size: 26px; - margin-top: 0px; } - - .b2b-footer-wrapper .copyright-text { - color: #fff; - font-size: 11px; - text-align: left; - font-family: "Omnes-ECOMP-W02", Arial; } - .b2b-footer-wrapper .copyright-text a { - color: #fff; - text-decoration: underline; - display: inline-block; } - .b2b-footer-wrapper .copyright-text a:hover { - text-decoration: none; } - - @media (max-width: 768px) { - .b2b-footer-wrapper { - padding: 0 15px; } - .b2b-footer-container { - width: 100%; } - .b2b-footer-container .footer-columns.three-column, .b2b-footer-container .footer-columns.four-column, .b2b-footer-container .footer-columns.five-column { - width: 50%; } - .b2b-footer-wrapper .divider-bottom-footer { - padding-top: 15px; } - .b2b-footer-wrapper .divider-bottom-footer .footer-links { - width: 100%; } - .b2b-footer-wrapper .footerLogo { - margin: 30px 0 0 0; } - .b2b-footer-wrapper .footerLogo .footer-logo { - margin: 0; - padding-left: 10px; } } - - .b2b-header-tabs { - background-color: #222; - width: 100%; - position: relative; - height: 45px; } - .b2b-header-tabs .icon-primary-att-globe { - color: #0568ae; } - .b2b-header-tabs a:focus { - border: 1px solid white; } - .b2b-header-tabs .header__items { - width: 980px; - margin: 0 auto; - display: block; - list-style: none; - padding: 6px 0px 0px 0px; - border-spacing: 30px 0; } - .b2b-header-tabs .header__item { - display: inline-block; - text-align: left; - width: auto; - font-size: 16px; - font-family: "Omnes-ECOMP-W02", Arial; - cursor: pointer; - padding: 5px 15px; - color: #fff; } - .b2b-header-tabs .header__item.b2b-headermenu { - padding: 0; } - .b2b-header-tabs .header__item.b2b-headermenu:last-child { - background: none; } - .b2b-header-tabs .header__item.b2b-headermenu a.menu__item { - color: #fff; - text-decoration: none; - display: inline-block; - padding: 5px 15px; } - .b2b-header-tabs .header__item.active { - background-color: #fff; - border-radius: 2px; - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; } - .b2b-header-tabs .header__item.active a.menu__item { - color: #0578ae; } - .b2b-header-tabs li:focus { - outline: 2px solid #0578ae; } - .b2b-header-tabs .header__item .header-secondary-wrapper, .b2b-header-tabs .header__item .header-tertiary-wrapper { - background-color: #fff; - position: absolute; - width: 100%; - left: 0; - top: 42px; - border-bottom: solid 1px #ccc; - -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); - -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); - box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); - display: none; - z-index: 111; } - .b2b-header-tabs .header-secondary, .b2b-header-tabs .header-tertiary { - background-color: #fff; - width: 980px; - margin: 0 auto; } - .b2b-header-tabs .header__item.active .header-secondary-wrapper { - display: block; } - .b2b-header-tabs .header-secondary .header-subitem { - display: inline-block; - width: auto; - margin: 0 15px; } - .b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary-wrapper { - display: block; } - .b2b-header-tabs .header-secondary .header-subitem a.menu__item { - display: inline-block; - padding: 15px 0; - color: #333; } - .b2b-header-tabs .header-secondary .header-subitem a.menu__item:hover, .b2b-header-tabs .header-secondary .header-subitem a.menu__item:focus { - color: #0578ae; } - - /** Secondary Menu **/ - .b2b-labelhide { - position: absolute; - clip: rect(1px, 1px, 1px, 1px); } - - /** Tertiary Level Menu **/ - .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { + .offset1-sm { + margin-left: 8.450704225352113%; } + .offset2-sm { + margin-left: 16.90140845070423%; } + .offset3-sm { + margin-left: 25.35211267605634%; } + .offset4-sm { + margin-left: 33.8028169%; } + .offset5-sm { + margin-left: 42.25352113%; } + .offset6-sm { + margin-left: 50.70422535%; } + .offset7-sm { + margin-left: 59.15492958%; } + .offset8-sm { + margin-left: 67.6056338%; } + .offset9-sm { + margin-left: 76.05633803%; } + .offset10-sm { + margin-left: 84.50704225%; } + .offset11-sm { + margin-left: 92.95774648%; } + input { + padding: 8px 15px 8px 15px; } + .field-group input.input-emphasized[type="search"] + .reset-field:after { + top: 14px; } + .field-group input.input-emphasized[type="search"] + .reset-field { + height: 46px; + top: 1px; } + .marquee { + margin-bottom: 30px; } + .marquee .blur-overlay { + border-radius: 0; position: absolute; - z-index: 111; - top: 25px; } - .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after, .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { - content: ''; - border-left: 8px solid transparent; - border-right: 8px solid transparent; - position: absolute; - -webkit-transition: left .2s ease-out; - -moz-transition: left .2s ease-out; - transition: left .2s ease-out; } - .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after { - border-bottom: 8px solid #fff; - top: 10px; } - .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { - border-bottom: 8px solid #ccc; - top: 9px; } - - .b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary { - border-top: solid 1px #ccc; } - - .b2b-header-tabs .header-tertiary:after { - content: ''; - clear: both; - display: block; } - - .b2b-header-tabs .header-tertiary li { - display: inline-block; - padding: 0; - float: left; } - .b2b-header-tabs .header-tertiary li a { - color: #333; - display: block; - padding: 10px 15px; } - .b2b-header-tabs .header-tertiary li label { - text-align: left; - display: block; - font-size: 16px; - font-weight: bold; - color: #857B7B; - padding: 15px 0 0 15px; } - - .b2b-header-tabs .header__item.skip { - padding: 0; - display: inline-block; - cursor: default !important; } - .b2b-header-tabs .header__item.skip a { - color: transparent; - font-size: 12px; - line-height: 15px; - text-decoration: none; } - .b2b-header-tabs .header__item.skip a:focus { - color: #fff; - outline: 2px solid #0578ae; } - - .b2b-header-tabs .selectWrap { - min-width: 150px; } - .b2b-header-tabs .selectWrap button.awd-select { - height: 30px; - line-height: 31px; - font-size: 1rem; - display: inline-block; } - .b2b-header-tabs .selectWrap .awd-select-list { - background-color: #fff; - color: #333; - -webkit-transition: opacity .2s ease-out; - -moz-transition: opacity .2s ease-out; - transition: opacity .2s ease-out; - box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176); } - - @media (max-width: 768px) { - .b2b-header-tabs { - padding: 0 15px; } - .b2b-header-tabs .header__items, .b2b-header-tabs .header-secondary, .b2b-header-tabs .header-tertiary { - width: 100%; } - .b2b-header-tabs .header__item { - padding: 5px 0; } - .b2b-header-tabs .globe-text { - display: none; } - .b2b-header-tabs .header__item.b2b-headermenu a.menu__item { - padding: 5px 7px 9px 7px; } - .b2b-header-tabs .header__item .header-tertiary-wrapper { - top: 30px; } - .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { - top: 14px; } - .b2b-header-tabs .header__item .header-secondary-wrapper { - top: 45px; } - .b2b-header-tabs .header__item.profile { - padding-left: 15px; - float: none; } } - - /************* Header - Start *************/ - .b2b-header-tabs { - background-color: #222; + bottom: 0; + left: 0; width: 100%; - position: relative; - height: 45px; } - - .b2b-header-tabs .icon-primary-primary-att-globe { - color: #0568ae; - font-size: 34px; - bottom: 1px; } - - /* - *TODO: delete below .icon-primary-att-globel will not be used - *instead the one above, icon-primary-primary-att-globe not available here - */ - .b2b-header-tabs .icon-primary-att-globe { - color: #0568ae; - font-size: 34px; } - - .b2b-header-tabs .globe-text { - margin-left: 20px; - font-size: 2rem; } - - .b2b-header-tabs .header__items { - width: 980px; - margin: 0 auto; - display: block; - list-style: none; - border-spacing: 30px 0; - padding: 3px 0px 0px 0px; } - - .b2b-header-tabs .header__item { - display: inline-block; - text-align: left; + margin: 0; + padding: 34px 15px 30px; } + .marquee + div { + margin-top: 30px; } + .marquee h1 { + font-size: 1.8rem; + letter-spacing: -0.035px; } + .marquee .lead { + font-size: 3.0rem; + line-height: 3.6rem; + margin-bottom: 0; } + .marquee p:not(.lead) { + font-family: "Omnes-ECOMP-W02-Light", Arial; + font-size: 1.8rem; + margin-bottom: 0; } + .marquee .btn-fullwidth { + margin-top: 10px; + width: 100%; + float: none; } + .tooltip-size-control { + width: 100%; } + .table-wrapper, + .accordion-table-layout { + margin-left: -15px; + margin-right: -15px; } + .table-wrapper caption { + padding-left: 15px; } } + +@media (max-width: 480px) { + .span1-xsm { + width: 7.042253521126761%; } + .span2-xsm { + width: 15.49295774647887%; } + .span3-xsm { + width: 23.94366197183099%; } + .span4-xsm { + width: 32.3943661971831%; } + .span5-xsm { + width: 40.84507042253521%; } + .span6-xsm { + width: 49.29577464788733%; } + .span7-xsm { + width: 57.74647887323944%; } + .span8-xsm { + width: 66.19718309859155%; } + .span9-xsm { + width: 74.64788732394367%; } + .span10-xsm { + width: 83.09859154929578%; } + .span11-xsm { + width: 91.54929577464789%; } + .span12-xsm { + width: 100%; } + .offset1-xsm { + margin-left: 8.450704225352113%; } + .offset2-xsm { + margin-left: 16.90140845070423%; } + .offset3-xsm { + margin-left: 25.35211267605634%; } + .offset4-xsm { + margin-left: 33.8028169%; } + .offset5-xsm { + margin-left: 42.25352113%; } + .offset6-xsm { + margin-left: 50.70422535%; } + .offset7-xsm { + margin-left: 59.15492958%; } + .offset8-xsm { + margin-left: 67.6056338%; } + .offset9-xsm { + margin-left: 76.05633803%; } + .offset10-xsm { + margin-left: 84.50704225%; } + .offset11-xsm { + margin-left: 92.95774648%; } } + +/* END RESPONSIVE-2.LESS ******************* */ +/* BEGIN RESPONSIVE-1.LESS ************** */ +.xxxxxxxx-begin-responsive-480px.less { + /* placeholder */ } + +@media (max-width: 480px) { + .hidden-desktop { + display: inherit !important; } + .hidden-tablet { + display: inherit !important; } + .hidden-phone { + display: none !important; } + .visible-desktop { + display: none !important; } + .visible-tablet { + display: none !important; } + .visible-phone { + display: inherit !important; } + .container { width: auto; - font-size: 14px; + padding-left: 15px; + padding-right: 15px; } } + +[class*="icon-primary-"], +.nav-links a:after, +.bellyband-link a:after, +.breadcrumb > li:after, +.checkbox input:checked + .skin:after, +.checkbox input.indeterminate + .skin:after, +.checkbox input:indeterminate + .skin:after, +.selectWrap.large:before, +.form-row.error .error-msg:before, +.close:before, +.reset-field:before, +.cssIcon-globe:before, +.selectWrap:after { + color: #0568ae; + left: 6px; + top: -3px; + width: 2px; + height: 3px; + border: solid white; + border-width: 0 3px 3px 0; + -webkit-transform: rotate(45deg); + -ms-transform: rotate(45deg); + transform: rotate(45deg);} + +[class*="icoWeather-"], [class*="icoTrans-"], [class*="icoBubble-"], [class*="icoRetail-"], [class*="icoPeople-"], [class*="icoNumslets-"], [class*="icoLocation-"], [class*="icoHealthcare-"], [class*="icoDocuments-"], [class*="icoDevices-"], [class*="icoDatanetwork-"], [class*="icoControls-"], [class*="icoBuilding-"], [class*="icoArrows-"] { + color: #0568ae; + display: inline-block; + font-style: normal; + font-size: 20px; + font-weight: normal; + font-variant: normal; + font-style: normal; + width: 20px; + text-transform: none; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + position: relative; + speak: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + vertical-align: middle; } + +[class*="icon-primary-"]:before, +[class*="icon-primary-"]:after { + box-sizing: border-box; + display: inline-block; + font-size: 1em; + height: 1em; + position: relative; + top: 0; + left: 0; + vertical-align: middle; + width: 1em; } + +.icon-primary-att-globe:before, +.cssIcon-globe:before { + content: "\e900"; + color: #44c7f5; } + +.icon-primary-hamburger:before { + content: "\e903"; } + +.icon-primary-secure:before { + content: "\e918"; } + +.icon-primary-secureL:before { + content: "\e919"; } + +.icon-primary-padlockopen:before { + content: "\e916"; } + +.icon-primary-padlockopenL:before { + content: "\e917"; } + +.icon-primary-shoppingcart:before { + content: "\e914"; } + +.icon-primary-shoppingcartL:before { + content: "\e915"; } + +.icon-primary-print:before { + content: "\e921"; } + +.icon-primary-printL:before { + content: "\e922"; } + +.icon-primary-mobilesmartphone:before { + content: "\e908"; } + +.icon-primary-mobilesmartphoneL:before { + content: "\e90c"; } + +.icon-primary-tablet:before { + content: "\e904"; } + +.icon-primary-tabletL:before { + content: "\e905"; } + +.icon-primary-tv:before { + content: "\e906"; } + +.icon-primary-tvL:before { + content: "\e907"; } + +.icon-primary-calendar { + width: 100% !important; } + +.icon-primary-calendar:before { + content: "\e91a"; + z-index: 1; } + +.icon-primary-calendarL:before { + content: "\e91b"; } + +.icon-primary-star:before { + content: "\e96c"; } + +.icon-primary-close:before, +.close:before, +.reset-field:before { + content: "\e910"; } + +.icon-primary-down:before { + content: "\ea3c"; } + + + +.icon-primary-add-maximize:before { + content: "\e91f"; } + + + +.icon-primary-questionmark:before { + content: "\e90f"; } + +.icon-primary-badgealert:before, +.form-row.error .error-msg:before { + content: "\e90e"; } + +.icon-primary-approval:before { + content: "\e925"; } + +.icon-primary-flat-info:before { + content: "\e927"; } + +.icon-primary-alert:before { + content: "\e913"; } + +.icon-primary-tooltip:before, +.icon-primary-flat-faq:before { + content: "\e90d"; } + +.icon-primary-tooltip { + font-size: 20px; } + +.nav-links a:after, +.bellyband-link a:after, +.breadcrumb > li:after, +.icon-primary-right:before { + content: "\ea3c"; + transform: rotate(-90deg); } + +.icon-primary-left:before { + content: "\ea3c"; + transform: rotate(90deg); } + +.icon-primary-accordion-plus:after, +.icon-primary-collapsed:after, +.icon-primary-accordion-minus:after, +.icon-primary-expanded:after { + content: ""; + position: absolute; + top: 0; + z-index: 1; } + +.icon-primary-accordion-minus, +.icon-primary-expanded, +.icon-primary-accordion-plus, +.icon-primary-collapsed { + font-size: 20px !important; } + +:not(.ds2-no-colors) .icon-primary-accordion-minus:before, +:not(.ds2-no-colors) .icon-primary-expanded:before { + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2021%2021%22%3E%3Cpath%20fill%3D%22%230568ae%22%20d%3D%22M15.1%2011.3H5.9c-.4%200-.8-.3-.8-.8s.3-.8.8-.8h9.3c.4%200%20.8.3.8.8s-.4.8-.9.8z%22%2F%3E%3Cpath%20fill%3D%22%23d2d2d2%22%20d%3D%22M10.5%2021C4.7%2021%200%2016.3%200%2010.5S4.7%200%2010.5%200%2021%204.7%2021%2010.5%2016.3%2021%2010.5%2021zm0-20C5.3%201%201%205.3%201%2010.5S5.3%2020%2010.5%2020s9.5-4.3%209.5-9.5S15.7%201%2010.5%201z%22%2F%3E%3C%2Fsvg%3E"); + content: ""; } + +:not(.ds2-no-colors) .icon-primary-accordion-plus:before, +:not(.ds2-no-colors) .icon-primary-collapsed:before { + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2021%2021%22%3E%3Cpath%20fill%3D%22%230568ae%22%20d%3D%22M10.5%2015.9c-.4%200-.8-.3-.8-.8V5.9c0-.4.3-.8.8-.8s.8.3.8.8v9.3c0%20.4-.4.7-.8.7z%22%2F%3E%3Cpath%20fill%3D%22%230568ae%22%20d%3D%22M15.1%2011.3H5.9c-.4%200-.8-.3-.8-.8s.3-.8.8-.8h9.3c.4%200%20.8.3.8.8s-.4.8-.9.8z%22%2F%3E%3Cpath%20fill%3D%22%23d2d2d2%22%20d%3D%22M10.5%2021C4.7%2021%200%2016.3%200%2010.5S4.7%200%2010.5%200%2021%204.7%2021%2010.5%2016.3%2021%2010.5%2021zm0-20C5.3%201%201%205.3%201%2010.5S5.3%2020%2010.5%2020s9.5-4.3%209.5-9.5S15.7%201%2010.5%201z%22%2F%3E%3C%2Fsvg%3E"); + content: ""; } + +.ds2-no-colors .icon-primary-accordion-minus:before, +.ds2-no-colors .icon-primary-expanded:before { + background-image: none; + content: "\e901"; } + +.ds2-no-colors .icon-primary-accordion-minus:after, +.ds2-no-colors .icon-primary-expanded:after { + content: "\e902"; } + +.ds2-no-colors .icon-primary-accordion-plus:before, +.ds2-no-colors .icon-primary-collapsed:before { + background-image: none; + content: "\e90b"; } + +.ds2-no-colors .icon-primary-accordion-plus:after, +.ds2-no-colors .icon-primary-collapsed:after { + content: "\e911"; } + +.icon-primary-circle-arrow { + outline: 1px solid transparent; + border-radius: 50%; + font-size: 20px !important; + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08); + margin-right: 7px; } + +.icon-primary-circle-arrow:after { + background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2036%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20baseProfile%3D%22tiny%22%3E%3Ccircle%20r%3D%2217%22%20cy%3D%2218%22%20cx%3D%2218%22%20stroke-width%3D%221%22%20fill%3D%22transparent%22%20stroke%3D%22%23ccc%22%2F%3E%3C%2Fsvg%3E"); + content: ""; + position: absolute; + top: 0; + z-index: 2; } + +.icon-primary-circle-arrow:before { + border-radius: 50%; + content: "\ea3c"; + font-size: 12px; + top: 0; + position: absolute; + transform: rotate(-90deg); + width: 20px; + z-index: 1; } + +[class*="icon-primary-"] [class*="icon-primary-"] { + display: inline-block; + float: left; + font-size: 1em; + margin-left: -1em; + position: absolute; } + +[class*="icon-primary-"].white, [class^="ico"][class*="-"].white { + color: #fff; } + +[class*="icon-primary-"].black, [class^="ico"][class*="-"].black { + color: #000; } + +[class*="icon-primary-"].blue, [class^="ico"][class*="-"].blue { + color: #0568ae; } + +[class*="icon-primary-"].green, [class^="ico"][class*="-"].green { + color: #007a3e; } + +@-webkit-viewport { + width: device-width; } + +@-moz-viewport { + width: device-width; } + +@-ms-viewport { + width: device-width; } + +@-o-viewport { + width: device-width; } + +@viewport { + width: device-width; } + +.clearfix:before, +.clearfix:after { + display: table; + content: ""; + line-height: 0; } + +.clearfix:after { + clear: both; } + +.pull-right { + float: right !important; } + +.pull-left { + float: left !important; } + +.float-children-left:before, +.float-children-left:after { + display: table; + content: ""; + line-height: 0; } + +.float-children-left:after { + clear: both; } + +.float-children-left > div { + float: left; + white-space: nowrap; } + +.block { + display: block !important; } + +.inline { + display: inline !important; } + +.inline-block { + display: inline-block !important; } + +.table-cell { + display: table-cell !important; + width: 1%; + vertical-align: middle; } + +@media (max-width: 767px) { + .full-bleed { + width: auto; + margin-left: -15px; + margin-right: -15px; + padding: 15px; } } + +@media (min-width: 768px) { + .full-bleed { + width: auto; + margin-left: -20px; + margin-right: -20px; + padding: 20px; } } + +@media (max-width: 480px) { + .full-bleed { + width: auto; + margin-left: -15px; + margin-right: -15px; + padding: 0 15px; } } + +.fade { + opacity: 0; + filter: alpha(opacity=0); + transition: opacity .15s linear; } + +.fade.in { + opacity: 1; + filter: alpha(opacity=100); } + +.b2bCollapse { + display: none; } + +.collapse.in { + height: auto; } + +.nowrap { + white-space: nowrap; } + +.pre { + white-space: pre; } + +.hidden-spoken { + border: 0 none !important; + clip: rect(0px, 0px, 0px, 0px) !important; + height: 1px !important; + letter-spacing: 0; + line-height: 0; + overflow: hidden !important; + margin-top: -1px; + padding: 0 !important; + position: absolute !important; + width: 1px !important; } + +[data-sr-text].hidden-spoken:before { + border: 0 none !important; + content: attr(data-sr-text); + clip: rect(0px, 0px, 0px, 0px) !important; + height: 1px !important; + letter-spacing: 0; + line-height: 0; + overflow: hidden !important; + padding: 0 !important; + position: absolute !important; + width: 100% !important; + z-index: -1; } + +[data-sr-text].hidden-spoken { + position: relative !important; + width: auto !important; } + +[data-show-between] { + display: none; + visibility: hidden; } + +.noscroll-y { + overflow-y: hidden !important; } + +.invisible { + visibility: hidden !important; + opacity: 0 !important; } + +.transparent { + background-color: rgba(255, 255, 255, 0) !important; } + +.hide { + display: none !important; } + +.show { + display: block !important; } + +.rel { + position: relative !important; } + +.legend-pad { + padding: 0 15px; } + +.border-top { + border-top-width: 1px !important; } + +.border-left { + border-left-width: 1px !important; } + +.border-right { + border-right-width: 1px !important; } + +.border-bottom { + border-bottom-width: 1px !important; } + +.border-dark { + border-color: #000; } + +.border-light { + border-color: #fff; } + +.no-border-top { + border-top-width: 0 !important; } + +.no-border-left { + border-left-width: 0 !important; } + +.no-border-right { + border-right-width: 0 !important; } + +.no-border-bottom { + border-bottom-width: 0 !important; } + +.align-middle { + margin: 0 auto !important; } + +.align-top { + position: absolute; + top: 0; } + +.align-bottom { + position: absolute; + bottom: 0; } + +.valign-top { + vertical-align: top !important; } + +.valign-middle { + vertical-align: middle !important; } + +.valign-bottom { + vertical-align: bottom !important; } + +.align-children-middle > * { + margin: 0 auto; } + +[class*="valign-children-"] { + display: table; } + +[class*="valign-children-"] > * { + display: table-cell; } + +.valign-children-top > * { + vertical-align: top; } + +.valign-children-middle > * { + vertical-align: middle; } + +.valign-children-bottom > * { + vertical-align: bottom; } + +.no-pad { + padding: 0 !important; } + +.top-space { + margin-top: 60px !important; } + +.bottom-space { + margin-bottom: 60px !important; } + +.top-pad { + padding-top: 60px !important; } + +.bottom-pad { + padding-bottom: 60px !important; } + +@media (max-width: 767px) { + .top-space { + margin-top: 30px !important; } + .bottom-space { + margin-bottom: 30px !important; } + .top-pad { + padding-top: 30px !important; } + .bottom-pad { + padding-bottom: 30px !important; } } + +.affix { + position: fixed; } + +.img-landscape, +.img-portrait { + position: relative; } + +@media (orientation: landscape) { + .img-landscape { + display: block; } + .img-portrait { + display: none !important; } } + +@media (orientation: portrait) { + .img-landscape { + display: none !important; } + .img-portrait { + display: block; } } + +.dark-bg { + background-color: #222222; } + +/* ... JAVASCRIPT HOOKS ................. + ... used by javascript ............... */ +.autoSize, +.autoSize-this { + position: relative; } + +.truncate { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } + +.placeholdersjs { + color: #5a5a5a !important; } + +.jshook-return-focus-here { + display: block; } + +.visible-print { + display: none !important; } + +.hidden-print { + display: inherit !important; } + +@media print { + .visible-print { + display: inherit !important; } + .hidden-print { + display: none !important; } + * { + color: #000 !important; + background: transparent !important; + box-shadow: none !important; } + a, + a:visited { + text-decoration: underline; } + pre, + blockquote { + border: 1px solid #000; + page-break-inside: avoid; } + thead { + display: table-header-group; } + tr, + img { + page-break-inside: avoid; } + img { + max-width: 100% !important; } + @page { + margin: 0.5cm; } + p, + h2, + h3 { + orphans: 3; + widows: 3; } + h2, + h3 { + page-break-after: avoid; } } + +.mar-top-0 { + margin-top: 0px; } + +.mar-top-30 { + margin-top: 30px; } + +a:focus { + outline: thin dotted #191919; } + +h1, +h2, +h3, +h4, +h5, +h6 { + font-weight: normal; + text-rendering: optimizeLegibility; + margin: 0; + line-height: 1; } + +.heading-page { + font-size: 3.8rem !important; + font-family: "Omnes-ECOMP-W02-Light", Arial; + margin-bottom: 40px; } + +h1.heading-page.ng-scope {} + +.heading-major-section { + font-size: 3rem !important; + font-family: "Omnes-ECOMP-W02-Light", Arial; + margin-bottom: 40px !important; } + +.heading-sub-section { + font-size: 2.4rem !important; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 40px; } + +.heading-group { + font-size: 2rem !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + color: #ea7400; + margin-bottom: 20px !important; } + +.heading-medium { + font-size: 2rem !important; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; } + +.heading-medium-emphasis { + font-size: 2rem !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + margin-bottom: 20px; } + +.heading-small { + font-size: 1.8rem !important; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; } + +.heading-small-emphasis { + font-size: 1.8rem !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + margin-bottom: 20px; } + +.heading-micro { + font-size: 1.3rem !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + text-transform: uppercase; + color: #da0081; + margin-bottom: 10px; } + +* + .heading-major-section { + margin-top: 60px; } + +* + .heading-sub-section { + margin-top: 60px; } + +* + .heading-group { + margin-top: 40px !important; } + +* + .heading-medium { + margin-top: 40px; } + +* + .heading-medium-emphasis { + margin-top: 40px; } + +* + .heading-small { + margin-top: 40px; } + +* + .heading-small-emphasis { + margin-top: 40px; } + +* + .heading-micro { + margin-top: 20px; } + +.lead { + color: #666; + font-family: "Omnes-ECOMP-W02-Light-Italic", Arial; + font-size: 2.4rem; + line-height: 2.8rem; + margin-top: 10px; + letter-spacing: -0.024rem; } + +.eyebrow { + text-transform: uppercase; + line-height: .65 !important; } + +.eyebrow, +.subheading { + font-size: 1.4rem !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + color: #666; } + +.eyebrow + .heading-major-section, +.eyebrow + .heading-sub-section { + margin-top: 4px; } + +.subheading { + margin-top: 10px; } + +@media (max-width: 767px) { + h1, + h2, + h3, + h4, + h5, + h6, + .heading-page { + font-size: 2rem; font-family: "Omnes-ECOMP-W02", Arial; - cursor: pointer; - padding: 0 15px 4px 15px; - /*margin-top:-3px;*/ - color: #fff; } - - .b2b-header-tabs .header__item.b2b-headermenu { - padding: 0; } - - .b2b-header-tabs .header__item.b2b-headermenu a.menu__item { - color: #fff; + margin-bottom: 30px; } + .heading-major-section { + font-size: 2rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 30px; } + .heading-sub-section { + font-size: 2rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; } + .heading-medium { + font-size: 2rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; } + .heading-medium-emphasis { + font-size: 2rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; } + .heading-small { + font-size: 1.6rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 10px; } + .heading-small-emphasis { + font-size: 1.6rem; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + margin-bottom: 5px; } + * + .heading-major-section { + margin-top: 30px; } + * + .heading-sub-section { + margin-top: 30px; } + * + .heading-group { + margin-top: 20px; } + * + .heading-medium { + margin-top: 20px; } + * + .heading-medium-emphasis { + margin-top: 20px; } + * + .heading-small { + margin-top: 20px; } + * + .heading-small-emphasis { + margin-top: 20px; } + * + .heading-micro { + margin-top: 10px; } } + +/* Standard Type styles */ +.zeromargin { + margin: 0 !important; } + +a { + color: #0568ae; + text-decoration: none; } + +a:hover, +a:focus { + text-decoration: underline; } + +a:active { + color: #0568ae; } + +.a-min { + font-size: 12px; } + +.a-small { + font-size: 14px; } + +.a-max { + font-size: 18px; } + +a.show-qualifier { + margin-right: 25px; + position: relative; } + +a.show-qualifier:after { + color: #333333; + display: inline-block; + white-space: pre !important; } + +a[href$="pdf"].show-qualifier:after, +a.show-qualifier.pdf:after { + content: " (PDF)"; } + +a[href$="psd"].show-qualifier:after, +a.show-qualifier.psd:after { + content: " (PSD)"; } + +.standalone-link { + display: flex; } + +/* 20px for the icon, 10px left of icon */ +.standalone-link.small { + font-size: 1.4rem; } + +.standalone-link.small i[class*="icon-primary-"] { + font-size: 16px; + top: 2px; } + +.standalone-link.large { + font-size: 1.8rem; } + +.standalone-link.large i[class*="icon-primary-"] { + font-size: 24px; + top: -1px; } + +p { + margin: 0 0 12px 0; + line-height: 2rem; } + +.p-small { + font-size: 1.4rem; + line-height: 1.8rem; } + +p + .p-small { + margin: 10px 0 0; } + +.p-micro { + font-size: 1.2rem; + line-height: 1.5rem; } + +p + .p-micro { + margin: 10px 0 0; } + +.p-max { + font-size: 1.8rem; } + +p + .p-max { + margin: 10px 0 0; } + +b, +strong { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-weight: normal; } + +i, +em { + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; } + +.strike { + text-decoration: line-through; } + +sup { + display: inline-block; + font-style: normal; + height: 1em; + position: relative; + vertical-align: text-top; + width: auto; } + +.text-legal { + color: #5a5a5a; + font-size: 1.1rem; + line-height: 1.5rem; + margin: 0 0 10px; } + +.text-legal.legal-module { + line-height: 1.3rem; + margin: 0 0 12px; } + +.text-legal b, +.text-legal strong { + font-weight: bold; } + +.text-legal a { + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + +.text-left { + text-align: left !important; } + +.text-right { + text-align: right !important; } + +.text-center { + text-align: center !important; } + +.text-justified { + text-align: justify !important; } + +ul { + padding: 0; + margin: 0; + list-style: none; } + +ul.bullet, +ul.no-bullet, +ul.lower-alpha, +ul.lower-roman, +ol { + padding: 0; + margin: 12px 0 0 20px; } + +ul.bullet li, +ul.no-bullet li, +ul.lower-alpha li, +ul.lower-roman li, +ol li { + padding-left: 15px; + line-height: 20px; + position: relative; } + +ul.bullet li + li, +ul.no-bullet li + li, +ul.lower-alpha li + li, +ul.lower-roman li + li, +ol li + li { + margin-top: 12px; } + +ul.bullet > li:before, +ul.no-bullet > li:before, +ul.lower-alpha > li:before, +ul.lower-roman > li:before, +ol > li:before { + background-color: #333333; + border: 2px solid #333333; + border-radius: 100%; + content: " "; + display: block; + height: 1px; + left: 0; + position: absolute; + top: 8px; + width: 1px; } + +ul.bullet ul, +ul.no-bullet ul, +ul.lower-alpha ul, +ul.lower-roman ul, +ol ul, +ul.bullet ol, +ul.no-bullet ol, +ul.lower-alpha ol, +ul.lower-roman ol, +ol ol { + margin-top: 12px; } + +ul + *, +ol + * { + margin-top: 20px; } + +ul.no-bullet, +ul.lower-alpha, +ul.lower-roman { + margin: 0; } + +ul.no-bullet > li, +ul.lower-alpha > li, +ul.lower-roman > li { + padding-left: 0; } + +ul.no-bullet > li:before, +ul.lower-alpha > li:before, +ul.lower-roman > li:before { + display: none !important; } + +ol { + margin: 20px 0 0 32px; } + +ol li { + padding-left: 3px; } + +ol li:before { + display: none; } + +ol ol { + margin-left: 25px; } + +ol ul { + margin-left: -5px; } + +ul ul, +ul ol, +ol ol, +ol ul { + margin-top: 0; } + +ul.lower-roman { + list-style-type: lower-roman; + margin-top: 12px; + margin-left: 35px; + margin-bottom: 0; } + +ul.lower-alpha { + list-style-type: lower-alpha; + margin-top: 12px; + margin-left: 35px; + margin-bottom: 0; } + +dl { + display: table; + margin: 0 0 20px; + width: 100%; } + +dt, +dd { + display: table-cell; } + +.btn { + background-color: transparent; + background-clip: padding-box; + border: 1px solid transparent; + border-radius: 8px; + box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15); + cursor: pointer; + display: inline-block; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 0.5rem; + font-weight: normal; + line-height: 1; + margin: 0 7px 10px 0; + + + padding: 14px 19px 11px 18px; + position: relative; + text-align: center; + vertical-align: middle; + white-space: nowrap; + overflow: hidden; } + .btn:focus { + outline: 1px dotted #000; + outline-offset: -5px; } + .btn:last-child { + margin-right: 0; } + .btn::-moz-focus-inner { + padding: 0; + border: 0; } + .btn i[class*="icon-primary-"].icon-primary-small { + font-size: 24px; + top: -2px; } + .btn i[class*="icon-primary-"].icon-primary-medium { + font-size: 10px; + top: -2px; } + .btn i[class*="icon-primary-"].icon-primary-large { + font-size: 10px; + top: -2px; } + +a.btn { + vertical-align: middle; } + a.btn:hover { + text-decoration: none; } + +.field-group + .btn { + margin-left: 20px; } + +.btn-primary { + border-color: #ea7400 transparent #d16500; + background-color: #ea7400 transparent #d16500; + background: linear-gradient(to bottom, #ea7400 0%, #d16500 100%); + color: #ffffff; + font-family: "Omnes-ECOMP-W02", Arial; + font-weight: bold; } + .btn-primary:hover { text-decoration: none; - display: inline-block; - padding: 8px 15px 12px 15px; - font-size: 16px; } - - .b2b-header-tabs .header__item.active { - background-color: #fff; - border-radius: 2px; - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; } - - .b2b-header-tabs .header__item.active a.menu__item { - color: #0578ae; } - - .b2b-header-tabs li:focus { - outline: 2px solid #0578ae; } - - /** profile pop Over **/ - .b2b-header-tabs .header__item.profile { - position: relative; - float: right; } - - /** Secondary Menu **/ - .b2b-header-tabs .header__item .header-secondary-wrapper, .b2b-header-tabs .header__item .header-tertiary-wrapper { - background-color: #fff; - position: absolute; - width: 100%; - left: 0; - top: 42px; - border-bottom: solid 1px #ccc; - -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); - -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); - box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); - display: none; - z-index: 111; } - - .b2b-header-tabs .header-secondary, .b2b-header-tabs .header-tertiary { - background-color: #fff; - width: 980px; - margin: 0 auto; } - - .b2b-header-tabs .header__item.active .header-secondary-wrapper, - .b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary-wrapper { - display: block; } - - .b2b-header-tabs .header-secondary .header-subitem { - display: inline-block; - width: auto; - margin: 0 15px; } - - .b2b-header-tabs .header-secondary .header-subitem a.menu__item { - display: inline-block; - padding: 15px 0; - color: #333; - font-size: 14px; } - - .b2b-header-tabs .header-secondary .header-subitem a.menu__item:hover, .b2b-header-tabs .header-secondary .header-subitem a.menu__item:focus { - color: #0578ae; } - - .b2b-label-hide { - position: absolute; - clip: rect(1px, 1px, 1px, 1px); } - - /** Tertiary Level Menu **/ - .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after, - .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { - content: ''; - border-left: 8px solid transparent; - border-right: 8px solid transparent; - position: absolute; - -webkit-transition: left .2s ease-out; - -moz-transition: left .2s ease-out; - transition: left .2s ease-out; } - - .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { - position: absolute; - z-index: 111; - top: 25px; } - - .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after { - border-bottom: 8px solid #fff; - top: 10px; } - - .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { - border-bottom: 8px solid #ccc; - top: 9px; } - - /** Tertiary Level Menu **/ - .b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary { - border-top: solid 1px #ccc; } - - .b2b-header-tabs .header-tertiary:after { - content: ''; - clear: both; - display: block; } - - .b2b-header-tabs .header-tertiary li { - display: inline-block; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + .btn-primary:focus { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + .btn-primary:active { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + +.btn-arrow { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 1.6rem; + font-weight: normal; + background-color: transparent; + border: none; + padding: 5px 0 0; + top: -4px; + color: #333333; + position: relative; } + .btn-arrow:hover { + text-decoration: underline; } + .btn-arrow:hover .btn-primary { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + .btn-arrow:hover .btn-secondary { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + .btn-arrow:hover .btn-alt { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); } + .btn-arrow:hover .btn-specialty { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + .btn-arrow:focus { + text-decoration: underline; + outline: 1px dotted #666; } + .btn-arrow:focus .btn-primary { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + .btn-arrow:focus .btn-secondary { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + .btn-arrow:focus .btn-alt { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); } + .btn-arrow:focus .btn-specialty { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + .btn-arrow:active .btn-primary { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + .btn-arrow:active .btn-secondary { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + .btn-arrow:active .btn-alt { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); } + .btn-arrow:active .btn-specialty { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + .btn-arrow .btn-alt { + border-color: #087ac2 transparent #0568ae; + background-color: #0568ae; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); + color: #ffffff; } + .btn-arrow .btn-alt:hover { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + .btn-arrow .btn-alt:focus { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + .btn-arrow .btn-alt:active { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + .btn-arrow::-moz-focus-inner { padding: 0; - float: left; } - - .b2b-header-tabs .header-tertiary li a { - color: #333; + border: 0; } + .btn-arrow .btn { + border: 1px solid transparent; + border-radius: 100%; + height: 20px; + margin-bottom: 0; + margin-right: 7px; + max-width: 20px; + min-width: 20px; + padding: 0; + margin-top: -4px; + vertical-align: middle; + width: 36px; } + .btn-arrow .btn .icon-primary-left { + bottom: 0; + display: block; + height: 100%; + left: 0; + line-height: 0; + position: absolute; + right: 0; + text-indent: 0; + top: 0; } + .btn-arrow .btn .icon-primary-left:before { + position: absolute; + font-size: 1.6rem; + left: 1px; + top: 9px; } + .btn-arrow .btn .icon-primary-right { + bottom: 0; + display: block; + height: 100%; + left: 0; + line-height: 0; + position: absolute; + right: 0; + text-indent: 0; + top: 0; + color: #ffffff; } + .btn-arrow .btn .icon-primary-right:before { + position: absolute; + font-size: 1.6rem; + left: 17px; + top: 9px; } + .btn-arrow .btn.btn-primary .icon-primary-left { + color: #fff; } + .btn-arrow .btn.btn-primary .icon-primary-right { + color: #fff; } + .btn-arrow .btn.btn-alt .icon-primary-left { + color: #fff; } + .btn-arrow .btn.btn-alt .icon-primary-right { + color: #fff; } + .btn-arrow .btn.btn-secondary { + border: 1px solid #d2d2d2; } + .btn-arrow .btn.btn-secondary .icon-primary-left { + color: #0568ae; } + .btn-arrow .btn.btn-secondary .icon-primary-right { + color: #0568ae; } + .btn-arrow .btn.btn-small { + height: 10px; + + + width: 10px; + top: -1px; } + .btn-arrow .btn.btn-small .icon-primary-left:before { + font-size: 5px; + top: 4px; + left: 0; } + .btn-arrow .btn.btn-small .icon-primary-right:before { + font-size: 5px; + top: 4px; + left: 10px; } + .btn-arrow .btn.btn-large .icon-primary-left:before { + font-size: 112%; + top: 12px; + left: 23px; } + .btn-arrow .btn.btn-large .icon-primary-right:before { + font-size: 112%; + top: 12px; + left: 23px; } + +.btn-secondary { + border: 1px solid #d2d2d2; + background-color: #f2f2f2; + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + color: #0568ae; + box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.15); + padding: 14px 18px 11px 17px; } + .btn-secondary:hover { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + .btn-secondary:focus { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + .btn-secondary:active { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + +.btn-alt { + border-color: #087ac2 transparent #0568ae; + background-color: #0568ae; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); + color: #ffffff; } + .btn-alt:hover { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + .btn-alt:focus { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + .btn-alt:active { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + +.btn-specialty { + border-color: #008744 transparent #007a3e; + background-color: #007a3e; + background: linear-gradient(to bottom, #008744 0%, #007a3e 100%); + color: #ffffff; } + .btn-specialty:hover { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + .btn-specialty:focus { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + .btn-specialty:active { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + +.btn-clear { + background: transparent !important; + border-color: transparent !important; + font-weight: normal; + font-family: "Omnes-ECOMP-W02", Arial; + box-shadow: none; + text-decoration: none; + color: #0568ae; } + .btn-clear:focus { + text-decoration: underline; } + .btn-clear:hover { + text-decoration: underline; } + +.isIE .btn:focus { + outline: none !important; + text-decoration: none !important; } + .isIE .btn:focus:after { display: block; - padding: 7px 15px; - max-width: 228px; } - - .b2b-header-tabs .header-tertiary li label { - text-align: left; + content: ""; + position: absolute; + top: 4px; + left: 4px; + right: 4px; + bottom: 4px; + border: 1px dotted #000; } + +.isIE .btn:active { + outline: none !important; + text-decoration: none !important; } + .isIE .btn:active:after { display: block; - font-size: 14px !important; - font-weight: bold; - color: #857B7B; - padding: 15px 0 0 15px; } - - /** Quarternary Level Menu **/ - .b2b-header-tabs .header-quarternary { - width: 100%; - float: left; } - - .b2b-header-tabs .header-quarternary li { - padding-left: 15px; - font-family: "Omnes-ECOMP-W02", Arial; - display: none; } - - .b2b-header-tabs .header-quarternary li.active { - display: block; } - - .b2b-header-tabs .header-quarternary li a { - color: #666666; - font-size: 14px; - padding: 0px 10px 10px 10px; } - - /** Skip Navigation**/ - .b2b-header-tabs .header__item.skip { - padding: 0; - display: inline-block; - cursor: default !important; } - - .b2b-header-tabs .header__item.skip a { - color: transparent; - font-size: 12px; - line-height: 15px; - text-decoration: none; } - - .b2b-header-tabs .header__item.skip a:focus { - color: #fff; - outline: 2px solid #0578ae; } - - /** Dropdown css inside Header ****/ - .b2b-header-tabs .selectWrap { - min-width: 150px; } - - .b2b-header-tabs .selectWrap button.awd-select, .b2b-header-tabs .selectWrap input.awd-select { - height: 36px; - line-height: 31px; - font-size: 1rem; - display: inline-block; } - - .b2b-header-tabs .selectWrap .awd-select-list { - background-color: #fff; - color: #333; - -webkit-transition: opacity .2s ease-out; - -moz-transition: opacity .2s ease-out; - transition: opacity .2s ease-out; - box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176); } - - /* - * responsive header media queries - */ - @media screen and (max-width: 1100px) { - .b2b-header-tabs .globe-text { - display: none; } - .b2b-header-tabs .header__item.profile { - padding-left: 15px; - float: none; } - .b2b-header-tabs .header__items { - padding-top: 0px; } } - - @media screen and (max-width: 950px) { - .header__item.profile { - top: 20px; } - .b2b-header-tabs { - height: 90px; } - .header__item .selectWrap { - bottom: 15px; } - .b2b-header-tabs .header__items { - padding-top: 25px; } - .b2b-header-tabs .header__item .header-secondary-wrapper, .b2b-header-tabs .header__item .header-tertiary-wrapper { - top: 80px; } - .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { - top: 35px; } - .b2b-header-tabs .header__item.b2b-headermenu a.menu__item { - padding-bottom: 30px; } - .b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary { - margin-top: -28px; } } - - /*************** Header - END ******************/ - .hp-container { + content: ""; + position: absolute; + top: 4px; + left: 4px; + right: 4px; + bottom: 4px; + border: 1px dotted #000; } + +.isIE .btn.active { + outline: none !important; + text-decoration: none !important; } + .isIE .btn.active:not(:focus):after { + border: 1px solid #000; } + .isIE .btn.active:after { display: block; - max-width: 408px; } - .hp-container i:focus { - outline: thin dotted #666; } - .hp-container .icon-misc-pen { - cursor: pointer; } - .hp-container .icon-misc-trash { - cursor: pointer; } - - .hp-selected { - border-bottom: 1px solid #ccc; - border-bottom: 1px solid #ccc; - margin-bottom: 16px; - padding-bottom: 16px; } - .hp-selected .selected-days { - padding-bottom: 16px; } - .hp-selected .selected-days .day { - padding-top: 10px; - float: left; } - - .hp-checkbox { - padding-top: 20px; - margin: 16px auto 0 auto; } - .hp-checkbox label { - position: relative; - width: 20px; - margin-right: 34px; } - .hp-checkbox label span { - position: absolute; - top: -20px; - left: 0px; - margin-left: 0px; } - - .hp-dropdowns { - margin-top: 15px; - display: flex; - display: -webkit-flex; - display: -ms-flexbox; } - - .hp-buttons { - margin-top: 20px; - display: flex; - display: -webkit-flex; - display: -ms-flexbox; } - - .hp-dropdowns .radio-buttons { - margin-top: 30px; } - .hp-dropdowns .radio-buttons .radio { - margin-right: 15px; } - - - - /* TODO: Build a reference page for these classes */ - .font-regular { - font-family: "Omnes-ECOMP-W02", Arial !important; } - - .font-light { - font-family: "Omnes-ECOMP-W02-Light", Arial !important; } - - .font-italic { - font-family: "Omnes-ECOMP-W02-Italic", Arial !important; } - - .font-light-italic { - font-family: "Omnes-ECOMP-W02-Light-Italic", Arial !important; } - - .font-medium { - font-family: "Omnes-ECOMP-W02-Medium", Arial !important; } - - .font-medium-italic { - font-family: "Omnes-ECOMP-W02-Medium-Italic",Arial !important; } - - .font-reset { - font-style: normal; - font-variant: normal; - font-weight: normal; - text-transform: none; } - - .b2b-nav-menu { - background-color: #efefef; - border: 1px solid #efefef; - width: 230px; - font-size: 1.4rem; } - - .b2b-subnav-container > ul { - padding: 0px; } - - .b2b-subnav-content { - margin: 0; - margin-bottom: 10px; } - - .b2b-subnav-content > li { - border-bottom: 1px solid #999999; + content: ""; + position: absolute; + top: 4px; + left: 4px; + right: 4px; + bottom: 4px; + border: 1px dotted #000; } + +.isIE .btn.btn-primary:focus:after { + border: 2px dashed #fff; } + +.isIE .btn.btn-specialty:focus:after { + border: 2px dashed #fff; } + +.isIE .btn.btn-alt:focus:after { + border: 2px dashed #fff; } + +.btn.disabled { + background-image: none; + background-color: #767676; + box-shadow: none; + cursor: not-allowed; + color: #ffffff; + border-color: transparent; + outline: 0 !important; } + .btn.disabled:hover { + color: #f2f2f2; + outline: none !important; } + .btn.disabled:focus { + color: #f2f2f2; + outline: none !important; } + +.btn[disabled] { + background-image: none; + background-color: #767676; + box-shadow: none; + cursor: not-allowed; + color: #ffffff; + border-color: transparent; + outline: 0 !important; } + .btn[disabled]:hover { + color: #f2f2f2; + outline: none !important; } + .btn[disabled]:focus { + color: #f2f2f2; + outline: none !important; } + +.btn[disabled="disabled"] { + background-image: none; + background-color: #767676; + box-shadow: none; + cursor: not-allowed; + color: #ffffff; + border-color: transparent; + outline: 0 !important; } + .btn[disabled="disabled"]:hover { + color: #f2f2f2; + outline: none !important; } + .btn[disabled="disabled"]:focus { + color: #f2f2f2; + outline: none !important; } + +.btn-arrow[disabled] .btn { + background-image: none; + background-color: #767676; + box-shadow: none; + cursor: not-allowed; + color: #ffffff; + border-color: transparent; + outline: 0 !important; } + .btn-arrow[disabled] .btn:hover { + color: #f2f2f2; + outline: none !important; } + .btn-arrow[disabled] .btn:focus { + color: #f2f2f2; + outline: none !important; } + +.btn-arrow[disabled] .icon-primary-left { + color: #fff !important; } + +.btn-arrow[disabled] .icon-primary-right { + color: #fff !important; } + +.btn-arrow.disabled .btn { + background-image: none; + background-color: #767676; + box-shadow: none; + cursor: not-allowed; + color: #ffffff; + border-color: transparent; + outline: 0 !important; } + .btn-arrow.disabled .btn:hover { + color: #f2f2f2; + outline: none !important; } + .btn-arrow.disabled .btn:focus { + color: #f2f2f2; + outline: none !important; } + +.btn-arrow.disabled .icon-primary-left { + color: #fff !important; } + +.btn-arrow.disabled .icon-primary-right { + color: #fff !important; } + +.btn-medium { + padding: 12px 19px 11px 18px; + font-size: 1.7rem; } + +.btn-small { + /* padding: 10px 19px 9px 18px; */ + font-size: 1.5rem; + border-radius: 8px; } + +.btn-fullwidth { + width: 100%; } + +*:not(.btn-arrow) > .btn > i[class*="icon-primary-"] { + margin-top: -20px; + margin-bottom: -20px; } + +.enhanced-cta-group { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: row-reverse; + flex-direction: row-reverse; + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewport%3D%220%200%201%201%22%20style%3D%22width%3A100%25%3B%20height%3A1px%3B%22%3E%3Cstyle%3Eline%7Bstroke%3A%23959595%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cline%20y2%3D%221%22%20y1%3D%221%22%20x1%3D%221%22%20x2%3D%22100%25%22%20stroke-dasharray%3D%221%2C%203%22%2F%3E%3C%2Fsvg%3E") !important; + background-position: 0 -1px; + background-repeat: repeat-x; } + .enhanced-cta-group > .cta-button-group { + border-top: 0; + background-image: none !important; } + .enhanced-cta-group > .cta-button-group + .cta-button-group a { + font-size: 1.4rem; + line-height: 1em; } + .enhanced-cta-group > .cta-button-group + .cta-button-group a a { + margin-right: 0; } + .enhanced-cta-group > .cta-button-group hr { + min-height: 14px; } + .enhanced-cta-group > .cta-button-group + .cta-button-group { + -ms-flex-align: center; + -ms-grid-row-align: center; + align-items: center; + -ms-flex-direction: row; + flex-direction: row; + padding: 10px 0; } + +.cta-button-group { + text-align: right; + -ms-flex-align: baseline; + align-items: baseline; + padding: 20px 0 10px; + width: 100%; } + .cta-button-group.nodots { + background-image: none !important; } + .cta-button-group .hidden-phone { + margin-right: 14px; } + .cta-button-group .btn + .btn { + margin-right: 20px !important; } + .cta-button-group .btn:not(.hidden-phone):not(.visible-phone) { + margin-right: 0; } + +.isMobile .btn-arrow .btn.btn-small .icon-primary-left:before { + left: -1px; } + +.isMobile .btn-arrow .btn.btn-large .icon-primary-left:before { + left: 24px; } + +.isMobile .btn-arrow .btn.btn-large .icon-primary-right:before { + left: 24px; } + +@media (max-width: 1024px) { + .field-group + .btn { + margin-left: 15px; } } + +@media (max-width: 767px) { + .cta-button-group { + text-align: center; } + .cta-button-group > .btn { + display: block; + float: none; + width: 100%; + margin-left: auto !important; + margin-right: auto !important; } } + +.btn-group { + border-radius: 8px; + box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.15); + display: -ms-flexbox; + display: flex; + -ms-flex-pack: justify; + justify-content: space-between; + margin-bottom: 10px; + max-width: 470px; + min-width: 290px; + position: relative; + vertical-align: middle; + width: 100%; } + .btn-group > .btn { + box-shadow: none; + -ms-flex: 1; + flex: 1; position: relative; - cursor: pointer; } - - .b2b-subnav-content > li > a { + float: left; + margin-right: -1px; + margin-bottom: 0; + padding-left: 0; + padding-right: 0; + text-align: center; } + .btn-group:not([data-select-color]) .btn.active:not(:first-child) { + margin-right: -1px; + border-left: 1px solid #d2d2d2 !important; } + .btn-group:not([data-select-color]) .btn[disabled]:not(:first-child) { + border-left: 1px solid #d2d2d2 !important; } + .btn-group:not([data-select-color]) .btn[disabled] + .btn[disabled] { + border-left: 1px solid #ebebeb !important; } + .btn-group:not([data-select-color]) > .btn.active { + border-color: #087ac2 transparent #0568ae; + background-color: #0568ae; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); + color: #ffffff; } + .btn-group:not([data-select-color]) > .btn.active:hover { + color: #ffffff; + outline-color: #ffffff !important; + background: #0563a6; + border-color: #0563a6; } + .btn-group:not([data-select-color]) > .btn.active:focus { + color: #ffffff; + outline-color: #ffffff !important; + background: #0563a6; + border-color: #0563a6; } + .btn-group:not([data-select-color]) > .btn.active:active { + color: #ffffff; + outline-color: #ffffff !important; + background: #0563a6; + border-color: #0563a6; } + .btn-group:not([data-select-color]) > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { + border-radius: 0; } + .btn-group:not([data-select-color]) > .btn:first-child:not(:last-child):not(.dropdown-toggle) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + .btn-group:not([data-select-color]) > .btn:last-child:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + .btn-group:not([data-select-color]) > .dropdown-toggle:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + .btn-group > .active { text-decoration: none; - line-height: 18px; - display: block; - padding: 10px; } - - .b2b-subnav-content > li > a.expand { - color: #333; } - - .b2b-subnav-content > li ul { - overflow: hidden; - max-height: 0; - transition-duration: 0.5s; - transition-timing-function: cubic-bezier(0, 1, 0.5, 1); } - - .b2b-subnav-content > li ul.expand { - transition-duration: 0.7s; - transition-timing-function: ease-in-out; - max-height: 1000px; - overflow: hidden; } - - .b2b-subnav-content > li > a:focus, .b2b-subnav-content > li ul > li > a:focus { - outline: thin dotted #666; } - - .b2b-subnav-content > li ul > li > a { - line-height: 18px; - padding: 8px 0; - display: block; - outline-offset: -4px; - padding-left: 10px; } - - .b2b-icon-primary-plus-minus { - display: inline-block; - height: 20px; + outline: 1px dotted transparent; } + .btn-group > .active:focus { + outline: 1px dotted #ffffff; } + +.btn-group.btn-fullwidth > .btn { + -ms-flex: 1; + flex: 1; } + +.btn-group[data-select-color] { + margin-top: 5px; + box-shadow: none; + -ms-flex-pack: start; + justify-content: flex-start; + -ms-flex-wrap: wrap; + flex-wrap: wrap; } + .btn-group[data-select-color] .btn { + border: 1px solid #959595; + border-radius: 4px; + box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.15); margin-right: 10px; - padding: 0; - position: absolute; - right: 0px; - top: 10px; - vertical-align: middle; - width: 20px; } - - @media (min-width: 320px) and (max-width: 767px) { - .b2b-nav-menu { - background-color: #fff; - border: 1px solid white; - width: 100%; } - .b2b-subnav-content > li { - padding-left: 10px; } - .b2b-subnav-container > ul:first-child { - border-top: 1px solid #999; } - .b2b-icon-primary-plus-minus { - right: 10px; } - .b2b-subnav-content > li li > a.active { - color: #0574ac; - text-decoration: none; - font-family: "Omnes-ECOMP-W02", Arial; } } - - .b2b-list-box-item { - white-space: nowrap; - margin: 1px; - border: 1px solid transparent; + margin-bottom: 10px; + height: 40px; + font-size: 16px; + color: #333333; + max-width: 60px; + min-width: 60px; + -ms-flex: 0; + flex: 0; } + .btn-group[data-select-color] > .btn.active:focus { + outline: 1px dotted #191919; + outline-offset: 4px; } + +button .btn-fill { + background-clip: padding-box; + border: 0; + border-radius: 4px; + bottom: 0; + display: block; + height: auto; + left: 0; + margin: 5px; + position: absolute; + right: 0; + top: 0; + width: auto; } + +button .btn-fill[style*="#fff"] { + border: 1px solid #d2d2d2; } + +[data-select-color] .btn.active { + background: none !important; + outline: 0; + margin-right: 10px; + border-width: 3px; + color: #333333; + line-height: 12px; } + [data-select-color] .btn.active > .btn-fill { + margin: 3px; } + [data-select-color] .btn.active:hover { + color: #333333; } + +[data-select-color] .btn:active { + background: none !important; + outline: 0; + margin-right: 10px; + border-width: 3px; + color: #333333; + line-height: 12px; } + [data-select-color] .btn:active > .btn-fill { + margin: 3px; } + [data-select-color] .btn:active:hover { + color: #333333; } + +.btn-group[data-select-color="orange"] > .btn.active { + border-color: #ea7400; } + +.btn-group[data-select-color="blue"] > .btn.active { + border-color: #0568ae; } + +.btn-group[data-select-color="green"] > .btn.active { + border-color: #007a3e; } + +.btn-spinbutton-toggle.btn-group { + display: block !important; + height: 40px !important; + margin-top: 5px; + max-width: 138px; + min-width: 138px; + white-space: nowrap; } + +.btn-spinbutton-toggle .btn { + border-radius: 6px; + font-weight: normal; + -ms-flex: unset; + flex: unset; + height: 40px; + letter-spacing: normal; + min-width: auto; + padding: 3px 0 0; + text-align: center; + min-width: 46px; + width: 46px; } + +.btn-spinbutton-toggle .btn[data-max-value] { + border-bottom: 1px solid #d2d2d2; + border-top: 1px solid #d2d2d2; + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.08) inset; + background-color: #fff; + cursor: text; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 2rem; + font-weight: normal; + padding: 4px 0 0; + text-align: center; + min-width: 46px !important; + width: 46px; } + .btn-spinbutton-toggle .btn[data-max-value]:focus { + border-color: #0568ae; + outline: none; } + .btn-spinbutton-toggle .btn[data-max-value]:focus + .btn { + border-left: 1px solid #0568ae; + transition: border 0.3s linear 0s; } + +.btn-spinbutton-toggle .icon-primary-subtractminimize { + font-size: 30px !important; + color: #0568ae !important; } + +.btn-spinbutton-toggle .icon-primary-add-maximize { + font-size: 30px !important; + color: #0568ae !important; } + +.btn-spinbutton-toggle .btn[disabled].icon-primary-subtractminimize { + background-color: #d2d2d2; + color: #767676 !important; } + +.btn-spinbutton-toggle .btn[disabled].icon-primary-add-maximize { + background-color: #d2d2d2; + color: #767676 !important; } + +.btn-spinbutton-toggle input.btn[disabled] { + background-color: #d2d2d2; + color: #5a5a5a; + cursor: not-allowed; } + +.btn-group.btn-spinbutton-toggle .btn[disabled] + .btn[disabled] { + border-left: 1px solid #f0f0f0 !important; } + +.btn-group.btn-spinbutton-toggle .btn[data-max-value]:focus + .btn:not(:first-child) { + border-left: 1px solid #0568ae !important; } + +@media (max-width: 480px) { + .btn-group:not([data-select-color]) > .btn { + font-size: 1.3rem; + min-width: auto; } } + +.reset-field, +.close { + float: right; + background: none; + width: 34px; + height: 34px; + padding: 0; + overflow: hidden; + display: inline-block; } + +.reset-field { + display: none; } + +.reset-field:before { + font-size: 22px; + color: #5a5a5a; } + +.input-emphasized + .reset-field:before { + font-size: 29px; + color: #5a5a5a; } + +.reset-field:active, +.reset-field:hover, +.reset-field:focus { + display: block !important; } + +button.close { + border: 0; + appearance: none; } + +.corner-button { + box-shadow: 0 -50px 0 0 #f2f2f2 inset; + height: 69px; + /*overflow: hidden;*/ + position: absolute; + right: -35px; + top: -35px; + transform: rotate(45deg); + width: 69px; } + +.corner-button .close:before { + bottom: -7px; + color: #0568ae; + display: block; + font-size: 20px; + height: 50px; + left: -11px; + position: absolute; + width: 50px; } + +.corner-button .close { + float: none; + height: 45px; + margin: 0; + position: absolute; + right: 12px; + top: 45px; + transform: rotate(45deg); + width: 45px; } + +.corner-button .close:focus { + outline: 1px dotted black; } + +.ds2-no-colors .corner-button .close { + border: 1px solid black; } + +.field-group input + .reset-field { + background: none; + height: 36px; + width: 45px; + display: none; + padding: 0; + position: absolute; + right: 0; + top: 0; + box-shadow: none; + border: none; + content: " "; } + +.field-group input[type="search"] + .reset-field, +.field-group input[type="search"] + .btn-search + .reset-field, +.tooltip-onclick input + .reset-field, +.tooltip-onclick input + .icon-primary-tooltip + .reset-field, +.tooltip-onclick textarea + .reset-field, +.tooltip-onclick textarea + .icon-primary-tooltip + .reset-field { + right: 45px; } + +.field-group input[type="search"] + .reset-field:after, +.field-group input[type="search"] + .btn-search + .reset-field:after, +.tooltip-onclick input + .reset-field:after, +.tooltip-onclick input + .icon-primary-tooltip + .reset-field:after, +.tooltip-onclick textarea + .reset-field:after, +.tooltip-onclick textarea + .icon-primary-tooltip + .reset-field:after { + background-color: #d2d2d2; + content: ""; + display: block; + height: 20px; + position: absolute; + right: 0; + top: 8px; + width: 1px; } + +.tooltip-onclick input + .reset-field, +.tooltip-onclick input + .icon-primary-tooltip + .reset-field { + right: 50px !important; } + +.tooltip-onclick textarea + .reset-field, +.tooltip-onclick textarea + .icon-primary-tooltip + .reset-field { + right: 45px !important; + width: 40px; } + +.field-group input.input-emphasized + .reset-field { + width: 45px; + height: 46px; + right: 6px; } + +.field-group input.input-emphasized + .reset-field:after { + top: 14px; } + +.field-group [disabled] + .reset-field { + display: none; } + +.ds2_touchevents .field-group input + .reset-field:focus, +.ds2_touchevents .field-group input:focus + .reset-field, +.ds2_touchevents textarea:focus + .reset-field, +.ds2_touchevents textarea + .reset-field:focus { + display: block; + position: absolute; + right: 0px; + top: 0; + border: none; } + +.ds2_touchevents .field-group input { + padding: 8px 55px 8px 15px; + -webkit-appearance: none; } + +.ds2_touchevents textarea:focus { + padding: 15px 55px 15px 15px; } + +.ds2_touchevents textarea:focus + .reset-field { + border: none; + position: absolute; + right: 6px; + top: 5px; } + +.ds2_touchevents textarea.hasScrollbar:focus { + padding: 15px 35px 15px 15px; } + +.ds2_touchevents textarea.hasScrollbar:focus + .reset-field { + right: 22px; } + +.ds2-no-colors .b2b-tmpl-card-corner-button { + border: none !important; } + +.ds2-no-colors .b2b-tmpl-card-corner-button .close { + border: 1px solid black; + top: 0px !important; + right: 0px !important; } + +.form-row.error .error-msg { + display: block; + font-size: 14px; + line-height: 14px; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + position: relative; + padding-left: 18px; } + +.form-row.error .error-msg:before { + color: #cf2a2a; + font-size: 14px; + left: 0; + line-height: 14px; + position: absolute; + vertical-align: middle; } + +.form-row.error label, +.form-row.error .error-msg, +.form-row.error button.awd-select, +.form-row.error select.awd-select + span, +.form-row.error .checkbox, +.form-row.error .radio, +.form-row.error legend.error, +.form-row.error input { + color: #cf2a2a; } + +.form-row.error .btn-group > .btn, +.form-row.error button.awd-select, +.form-row.error .awd-select-list, +.form-row.error select.awd-select + span, +.form-row.error textarea, +.form-row.error input, +.form-row.error .checkbox .skin, +.form-row.error .radio .skin { + border-color: #cf2a2a !important; } + +.form-row.error .checkbox input:checked:not(:disabled) + .skin { + background-color: #cf2a2a; } + +.form-row.error .radio input:checked + .skin:after { + background-color: #cf2a2a; } + +.error .tooltip-onclick .icon-primary-tooltip.active + .error-msg { + margin-top: -11px; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } + +.error .tooltip-onclick .icon-primary-tooltip.active + .error-msg + .helpertext { + margin: 0 0 10px; } + +.error .tooltip-onclick .icon-primary-tooltip.active + .error-msg + .helpertext:before, +.error .tooltip-onclick .icon-primary-tooltip.active + .error-msg + .helpertext:after { + display: none; } + +.error .helpertext { + border-color: #cf2a2a; + /*border-radius:0;*/ } + +.error .helpertext:before { + border-top-color: #cf2a2a; } + +.error .tooltip-onfocus .helpertext { + margin: 14px 0 10px 0; } + +.error [class*="price"], +.error [class*="pricing-"] { + color: #cf2a2a; } + +input:-ms-clear { + display: none; } + +input[type]::-webkit-inner-spin-button, +input[type]::-webkit-outer-spin-button { + -webkit-appearance: none; } + +input[type] { + -moz-appearance: textfield; } + +form { + margin: 0; } + +fieldset { + padding: 0; + margin: 0; + border: 0; } + +label, +legend { + display: inline-block; + /* font-size: 1.4rem; */ + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + +legend { + display: block; } + +.error-msg { + display: none; } + +select, +textarea, +input { + border-radius: 6px; + color: #5a5a5a; + display: inline-block; + font-size: 1.6rem; + margin: 0px; + padding: 0 15px 0 15px; + vertical-align: middle; + line-height: normal; } + +select::-webkit-input-placeholder, +textarea::-webkit-input-placeholder, +input::-webkit-input-placeholder { + color: #5a5a5a; + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; + opacity: 1; } + +select:-moz-placeholder, +textarea:-moz-placeholder, +input:-moz-placeholder { + color: #5a5a5a; + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; + opacity: 1; } + +select::-moz-placeholder, +textarea::-moz-placeholder, +input::-moz-placeholder { + color: #5a5a5a; + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; + opacity: 1; } + +select:-ms-input-placeholder, +textarea:-ms-input-placeholder, +input:-ms-input-placeholder { + color: #5a5a5a; + font-family: "Omnes-ECOMP-W02-Italic", Arial; + transition: none; + opacity: 1; } + +select:placeholder, +textarea:placeholder, +input:placeholder { + color: #5a5a5a; + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; + opacity: 1; } + +select:last-child, +textarea:last-child, +input:last-child { + margin-right: 0; } + +input:not([type="button"]) { + height: 36px; } + +input.input-emphasized { + font-size: 1.8rem; + height: 48px; + padding: 13px 20px 13px; } + +input[type="search"]:focus { + padding-right: 88px; } + +input[type="search"] { + padding-right: 40px; + -webkit-appearance: none !important; } + +input[type="search"].input-emphasized { + padding-right: 45px; } + +.btn-search[class*="btn"] { + background-color: transparent; + background-position: 50% 50%; + background-size: 20px; + background-repeat: no-repeat; + border: none; + height: 100%; + margin-left: 0; + margin-top: 0; + min-width: 45px !important; + outline-offset: 0; + padding: 0 !important; + position: absolute; + right: 0; + top: 0; + border-radius: 0 5px 5px 0; + min-width: 44px; + width: 44px; } + +.input-emphasized + .btn-search[class*="btn"], +.input-emphasized + .reset-field + .btn-search[class*="btn"] { + background-size: 26px; + height: 46px; + top: 1px; + outline-offset: -3px; + margin-bottom: 0; + border-radius: 0 5px 5px 0; } + +input[type="search"].input-emphasized + .reset-field { + right: 45px !important; } + +.search-suggestion-wrapper { + position: relative; + margin-bottom: 15px; } + +/*styles from dropdown*/ +.search-suggestion-list { + box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); + border-radius: 0 0 6px 6px; + position: relative; + border: 1px solid #0568ae; + border-top: 0; + padding: 15px 0; + background-color: #f2f2f2; + z-index: 1000; + width: 100%; + max-height: 400px; + overflow-y: auto; } + +.search-suggestion-list:empty { + display: none; } + +.search-suggestion-item { + position: relative; + z-index: -1; + padding: 0 15px; + line-height: 4.0rem; + color: #5a5a5a; } + +.search-suggestion-item a { + text-decoration: none; + color: #5a5a5a; } + +.search-suggestion-item:hover, +.search-suggestion-item:focus { + cursor: pointer; + background-color: #d2d2d2; } + +input[data-provide="datepicker"], +[data-provide="datepicker"]:-moz-placeholder, +[data-provide="datepicker"]:-ms-input-placeholder, +[data-provide="datepicker"]:-webkit-input-placeholder { + color: #0568ae !important; + opacity: 1; + filter: alpha(opacity=100); } + +input[disabled], +input[readonly], +select[disabled], +select[readonly], +textarea[disabled], +textarea[readonly], +i.icon-primary-calendar.disabled, +span.icon-primary-calendar.readonly { + cursor: not-allowed; + background-color: #f2f2f2; + box-shadow: none; } + +i.icon-primary-calendar.disabled input, +span.icon-primary-calendar.readonly input { + color: #959595 !important; } + +textarea { + display: block; + width: 400px; + height: 100px; + max-width: 400px; + padding: 15px; +margin: 0px;} + +textarea.small { + line-height: 20px; } + +textarea + .reset-field { + display: none; } + +textarea::-webkit-input-placeholder { + line-height: .99; } + +textarea:-moz-placeholder { + line-height: .99; } + +textarea::-moz-placeholder { + line-height: .99; } + +textarea:-ms-input-placeholder { + line-height: .99; } + +textarea:placeholder { + line-height: .99; } + +textarea, +input { + background-color: #ffffff; + border: 1px solid #d2d2d2; + -webkit-appearance: none; + box-shadow: 2px 3px 2px -2px rgba(0, 0, 0, 0.08) inset; + transition: border .3s linear 0s; + font-family: "Omnes-ECOMP-W02", Arial; } + +textarea:focus, +input:focus { + outline: 0; + border-color: #0568ae; } + +.input-append { + display: table; } + +.input-append > div { + display: table-cell; + width: 1%; } + +.input-append > .field-group { + width: 100%; } + +.row .field-group input[class*="span"] { + float: none; } + +.field-group { + position: relative; + display: inline-block; } + +label + .field-group, +label + .input-append, +label + .row, +label + .row-nowrap, +label + .form-row { + margin-top: 5px; } + +.field-group { + position: relative; + display: block; } + +.field-group input:not([type="button"])[disabled] { + padding-right: 15px; } + +input:invalid, +textarea:invalid, +select:invalid { + outline: none !important; } + +.form-row { + margin-top: 20px; } + +.form-row.nomar { + margin: 0; } + +.row-nowrap.no-flex.form-row > label + br { + margin-bottom: 5px; } + +span.form-row { + display: inline-block; } + +legend + .form-row { + margin-top: 20px; } + +.tooltip-onclick input { + padding-right: 45px; } + +.ds2_touchevents .tooltip-onclick input:focus { + padding-right: 95px; } + +.btn-calendar-icon { + position: absolute; + background-color: transparent !important; + top: 8px; + border: 0 !important; + width: 30px; + right: 15px; } + +.btn-calendar-icon .icon-primary-calendar:before { + position: absolute; + color: #0568ae; } + +.btn-calendar-icon .icon-primary-calendar.disabled { + background-color: #f2f2f2; } + +.btn-calendar-icon .icon-primary-calendar.disabled:before { + color: #959595; } + +span.icon-primary-calendar input { + padding-left: 35px; + color: #0568ae; + transition: border-color 0.3s linear 0s; + box-shadow: 2px 3px 2px -2px rgba(0, 0, 0, 0.08) inset; + position: absolute; + top: 0; + left: 0; } + +.faux-input + input.datepicker-input:not([disabled]) { + cursor: pointer; + margin-left: 0; + background-color: #fff; + position: absolute; + left: 0; + top: 0; + z-index: 0; } + +.faux-input { + background-color: transparent !important; + border: 1px solid transparent; + border-radius: 4px; + font-size: 1.6rem; + height: 35px; + left: 0; + line-height: 35px; + margin-bottom: 10px; + margin-right: 6px; + padding: 0 0 0 35px; + position: relative; + text-align: left; + top: 0; + vertical-align: middle; + width: 100%; + z-index: 1; } + +.faux-input:disabled { + cursor: not-allowed; } + +.faux-input:focus + .datepicker-input, +[data-calendar-state="opened"] + .datepicker-input { + border-color: #0568ae; + box-shadow: 2px 3px 2px -2px rgba(5, 116, 172, 0.35) inset; + outline: 0 none; } + +.form-row.error .error-msg { + display: block; + font-size: 14px; + line-height: 14px; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + position: relative; + padding-left: 18px; + margin-top: 10px; } + +.form-row.error .error-msg > .icon-primary-badgealert { + height: 14px; + width: 14px; + position: absolute; + left: 0; + margin-right: 0; } + +.form-row.error .error-msg > .icon-primary-badgealert:before { + color: #cf2a2a; + font-size: 14px; + left: 0; + line-height: 14px; + position: absolute; + vertical-align: middle; } + +.form-row.error label, +.form-row.error .error-msg, +.form-row.error button.awd-select, +.form-row.error select.awd-select + span, +.form-row.error .checkbox, +.form-row.error .radio, +.form-row.error legend.error, +.form-row.error input, +.form-row.error textarea { + color: #cf2a2a; } + +.form-row.error .btn-group > .btn, +.form-row.error button.awd-select, +.form-row.error .awd-select-list, +.form-row.error select.awd-select + span, +.form-row.error textarea, +.form-row.error input, +.form-row.error .checkbox .skin, +.form-row.error .radio .skin { + border-color: #cf2a2a !important; } + +.form-row.error .checkbox input:checked:not(:disabled) + .skin { + background-color: #cf2a2a; } + +.form-row.error .radio input:checked + .skin:after { + background-color: #cf2a2a; } + +.error [class*="price"], +.error [class*="pricing-"] { + color: #cf2a2a; } + +hr, +.hr-or { + display: block; + height: 1px; + margin: 15px 0; + border: none; + background-repeat: repeat-x; + background-color: #959595; + position: relative; } + +hr.dark { + background-color: #959595; } + +hr.lite { + background-color: #d2d2d2; } + +.hr-or:before { + background-color: #fff; + color: #666; + content: " OR "; + display: block; + font-size: 1.4rem; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + height: 16px; + left: 50%; + line-height: 1.6rem; + margin-left: -15px; + margin-top: -8px; + position: absolute; + text-align: center; + top: 50%; + width: 30px; + z-index: 1111; } + +hr.is-vertical.dark, +hr.hr-or.dark, +hr.is-vertical.lite, +hr.hr-or.lite { + display: inline-block; + height: auto; + margin: 0 15px; + min-height: 20px; + width: 1px; } + +hr.is-vertical.dark, +hr.hr-or.dark { + background-color: #959595; } + +hr.is-vertical.lite, +hr.hr-or.lite { + background-color: #d2d2d2; } + +.hr-dotted.is-vertical.dark, +.hr-dotted.is-vertical.lite { + background-color: transparent; + background-repeat: repeat-y; + background-size: 1px 4px; + height: auto; + min-height: 20px; + width: 1px; } + +.row-nowrap > .span + hr.is-vertical, +.row > .span + hr.is-vertical { + margin: 0 0 0 -20px; } + + + +hr.bottom-space-only { + margin-top: 0; } + +.hr-nomargin { + margin: 0; } + +.radio { + position: relative; + min-height: 24px; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 1.6rem; + margin-bottom: 5px; } + .radio input { + -webkit-tap-highlight-color: transparent; + height: 10px; + margin: 6px; + opacity: 0; outline: none; - visibility: inherit; - display: inherit; - text-align: left; - overflow: hidden; - cursor: pointer; - padding: 5px 0 5px; - padding-left: 15px; - -moz-user-select: none; - -webkit-user-select: none; - -ms-user-select: none; } - .b2b-list-box-item:focus { - border: 2px solid #5e8cb3; } - - .b2b-list-box-item--selected { - background-color: #cfdde9; } - - .btn.disabled[ddh-load-button] { - line-height: 46px; - padding: 0 19px 0 18px; } - - .btn.disabled[ddh-load-button] { - color: #666666; } - - .icon-primary-spinner-ddh.large { - height: 50px; - width: 50px; } - - .icon-primary-spinner-ddh.small { - height: 30px; - width: 30px; } - - .icon-primary-spinner-ddh { - -webkit-animation: 1s linear infinite spinner; - animation: 1s linear infinite spinner; - background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzNiAzNiIgaWQ9InN2Zy1zcGlubmVyIiB4PSIwcHgiIHk9IjBweCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CiAgIDxwYXRoIGZpbGw9IiNGNUY1RjUiIGQ9Ik0xOCAzNkM4LjEgMzYgMCAyNy45IDAgMThTOC4xIDAgMTggMHMxOCA4LjEgMTggMTgtOC4xIDE4LTE4IDE4em0wLTMxLjVjLTcuNSAwLTEzLjUgNi0xMy41IDEzLjVTMTAuNiAzMS41IDE4IDMxLjVjNy41IDAgMTMuNS02LjEgMTMuNS0xMy41IDAtNy41LTYtMTMuNS0xMy41LTEzLjV6Ii8+CiAgIDxwYXRoIGZpbGw9IiMwNTY4QUUiIGlkPSJzcGlubmVyIiBkPSJNMzAuNyA1LjNsLTMuMSAzLjJjMi40IDIuNCAzLjkgNS44IDMuOSA5LjUgMCA3LjQtNi4xIDEzLjUtMTMuNSAxMy41UzQuNSAyNS40IDQuNSAxOCAxMC42IDQuNSAxOCA0LjVWMEM4LjEgMCAwIDguMSAwIDE4czguMSAxOCAxOCAxOCAxOC04LjEgMTgtMThjMC01LTItOS41LTUuMy0xMi43eiIgdHJhbnNmb3JtPSIiPiAgICAgIAogICA8L3BhdGg+Cjwvc3ZnPg==); } - - .btn-small .icon-primary-spinner-ddh { - height: 30px !important; - width: 30px !important; } - - .btn-small .icon-primary-spinner { - height: 30px; - width: 30px; } - - .load-backdrop { position: absolute; - top: 50%; - left: 50%; } - - .small-modal-loader { - width: 420px !important; - height: 212px !important; - text-align: center; } - - .small-modal-loader .icon-primary-spinner { - margin-bottom: 5px; } - - .body.styled-by-modal { - position: fixed; } - - .b2b-modal-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: -1; } - - .b2b-modal-backdrop.fade { - background-color: #000; - opacity: 0; - filter: alpha(opacity=0); - transition: all 0.3s linear 0s; } - - .b2b-modal-backdrop.fade.in { - z-index: 1040; - opacity: 0.7; - filter: alpha(opacity=70); - background-color: #000; - transition: opacity 0.3s linear 0s; } - - .modalwrapper { - height: 100%; - width: 100%; + left: 1px; + top: 1px; + width: 10px; } + .radio input:focus + .skin { + border-color: #0568ae; } + .radio input:focus + .skin:before { + content: ""; + height: 34px; + left: -6px; + top: -6px; + outline: 1px dotted #000000; + position: absolute; + width: 34px; } + .radio input + .skin { + border-radius: 100%; } + .radio input:checked + .skin:after { + background-color: #0568ae; + border-radius: 100%; + border: 3px solid #FFFFFF; + content: ""; + display: block; + height: 16px; + position: absolute; + width: 16px; } + .radio input:disabled + .skin { + cursor: not-allowed; + background-color: #d2d2d2; + border-color: #d2d2d2; + color: #666666; } + .radio input:disabled + .skin + span { + cursor: not-allowed; + color: #666666; } + .radio input:disabled:checked + .skin:after { + background-color: #666666; } + .radio input:invalid + .skin { + border: solid 1px #cf2a2a; } + .radio .skin { + background-color: #FFFFFF; + border: 1px solid #d2d2d2; + border-radius: 3px; + display: inline-block; + height: 24px; left: 0; - overflow-y: hidden; position: absolute; - right: 0; - padding: 20px; top: 0; - z-index: -1; } - - .modalwrapper.active { - z-index: 1050; - overflow-y: auto; } - - .modal { - background-clip: padding-box; - background-color: #ffffff; - border: 1px solid rgba(0, 0, 0, 0.1); - border-radius: 8px; - box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.4); - margin: 0 auto; - /*margin-bottom:10%;*/ - outline: medium none; - /*position: absolute;*/ - height: 0; - min-height: 150px; - overflow: hidden; - /*top: 10%;*/ - width: 100%; - z-index: -1; } - - .modalwrapper.modal-docked .modal { - max-height: 80%; - height: 80%; - overflow: hidden; - top: 0; } - - .modal.fade.in { - position: relative; - height: auto; - overflow: auto; - top: 10%; - z-index: 1060; - transition: opacity .5s linear 0s; } - - .modal.fade.in.modal-landscape { - overflow-y: auto; } - - .modal.fade { - transition: opacity .5s linear 0s; } - - .fade.in { - opacity: 1; } - - .fade { - opacity: 0; } - - .b2b-modal-header { - align-items: center; - border-radius: 8px 8px 0 0; - display: flex; - min-height: 60px; - overflow: hidden; - padding: 30px 46px 30px 30px; - position: relative; } - - .b2b-modal-header > h2 { - line-height: 1; - margin: 0; - padding: 0; } - - .modal-header-portrait { - -webkit-overflow-scrolling: auto; } - - .modal-header-landscape { - -webkit-overflow-scrolling: auto; } - - .b2b-modal-body { - -webkit-overflow-scrolling: touch; - padding: 0 30px 20px; + width: 24px; } + .radio span { + display: inline-block; + margin-left: 34px; + margin-top: 0; position: relative; - width: auto; } - - .b2b-modal-body:focus { - outline: 1px dotted #333333; } - - .modal-form { - margin-bottom: 0; } - - .b2b-modal-footer { - background-color: #fff; - width: 100%; - padding: 0 30px; - border-radius: 0; - position: absolute; - bottom: 0; } - - :not(.modal-docked) .b2b-modal-footer { - position: relative; } - - .modal-landscape .b2b-modal-footer { - position: relative; } - - .b2b-modal-footer .cta-button-group { - display: flex; - justify-content: flex-end; - padding: 20px 0 5px; - width: 100%; - border-top: 1px solid #d2d2d2; } - - .b2b-modal-footer .cta-button-group .btn { - margin-left: auto; - margin-right: auto; - float: right; - margin-left: 10px; } - - .b2b-modal-footer .cta-button-group .marginLeft0 { - margin-left: 0px; } - - .b2b-modal-footer .cta-button-group .btn-footer-left { - margin-right: auto; } - - .b2b-modal-footer .cta-button-group .btn + .btn { - margin-right: 0 !important; } - - [class*="modal-"] { + top: 3px; } + .radio label { + font-size: 1.6rem; + font-family: "Omnes-ECOMP-W02", Arial; } + +.radio.inline { + display: inline-block; + margin-bottom: 10px; + vertical-align: middle; + margin-right: 10px; } + .radio.inline:last-child { + margin-right: 0; } + +.radio-box { + border: 1px solid #d2d2d2; + border-radius: 8px; } + .radio-box > [role="radio"] label { + padding: 15px 15px 20px 15px; + display: block; width: 100%; } - - .modal-small { - max-width: 420px; } - - .modal-medium { - max-width: 620px; } - - .modal-large { - max-width: 720px; } - - .modal-xlarge { - max-width: 860px; } - - .modal-jumbo { - max-width: 1000px; } - - .modalwrapper.modal-docked { - height: 100%; - display: flex; - align-items: center; } - - .modalwrapper.modal-docked .b2b-modal-body { - height: 80%; - overflow-y: scroll; - padding-bottom: 60px; } - - .modalwrapper.modal-docked .modal { - max-height: 80%; - height: 80%; - overflow: hidden; - top: 0; } - - .modalwrapper.modal-docked .b2b-modal-body > *:last-child { - margin-bottom: 60px; } - - @media (max-width: 767px) { - .modalwrapper { - padding: 15px; - overflow-x: hidden; } - .modal.fade.in { - top: 0; - right: 0; - left: 0; - margin-bottom: 15px; - border: none; } - .b2b-modal-header { - padding: 20px 46px 20px 15px; } - .b2b-modal-body { - width: 100%; - padding: 0 15px 15px; } - .modalwrapper.modal-docked { - position: absolute; - height: 100%; - padding: 0; } - .modalwrapper.modal-docked .modal.fade.in { - margin-bottom: 0; - width: 100% !important; - max-height: 100%; - height: 100%; - border-radius: 0; } - .modalwrapper.modal-docked .b2b-modal-body { - overflow-y: scroll; - height: 100%; } - .modalwrapper.modal-docked.modal-landscape { - overflow-y: hidden; - position: fixed; } - .modalwrapper.modal-docked.modal-landscape .modal { - overflow-y: scroll; - max-width: 100%; } - .modalwrapper.modal-docked.modal-landscape .b2b-modal-body { - height: auto; - overflow-y: hidden; } - .b2b-modal-footer { - padding: 0 15px; } - .b2b-modal-footer .cta-button-group { - display: block; - padding: 15px 0; } - .b2b-modal-footer .cta-button-group .btn { - float: none; } - .b2b-modal-footer .cta-button-group .btn + .btn { - margin-bottom: 0; } - .b2b-modal-footer .cta-button-group a.visible-phone { - align-items: center; - display: flex !important; - height: 42px; - justify-content: center; } } - - .b2b-modal-footer > .cta-button-group { - line-height: 40px; } - - .ajaxed, - .modal.fade.in .b2b-modal-header, - .modal.fade.in .b2b-modal-body, - .modal.fade.in .b2b-modal-footer { - animation-duration: 0.01s; - -o-animation-duration: 0.01s; - -ms-animation-duration: 0.01s; - -moz-animation-duration: 0.01s; - -webkit-animation-duration: 0.01s; - animation-name: DOMinsertion; - -o-animation-name: DOMinsertion; - -ms-animation-name: DOMinsertion; - -moz-animation-name: DOMinsertion; - -webkit-animation-name: DOMinsertion; } - - .monthselector thead tr th { - min-width: 46px; } - - .monthselector thead tr:after { - content: ""; + .radio-box > [role="radio"] label .skin + span { + top: 2px; } + .radio-box > [role="radio"] + div { + padding: 0 15px 15px 47px; } + .radio-box > [aria-checked="false"] label > input { + top: 15px; + left: 15px; } + .radio-box > [aria-checked="false"] label .skin { + top: 15px; + left: 15px; } + .radio-box > [aria-checked="true"] label > input { + top: 13px; + left: 13px; } + .radio-box > [aria-checked="true"] label .skin { + top: 13px; + left: 13px; } + +.radio-box.active { + border: 3px solid #0568ae; } + .radio-box.active > [role="radio"] label { + padding: 13px 14px 19px 13px; } + +.checkbox { + position: relative; + min-height: 24px; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 1rem; + } + .checkbox input { + -webkit-tap-highlight-color: transparent; + height: 20px; + margin-left: 20px; + opacity: 0; + outline: none; position: absolute; - left: 20px; - top: 52px; - height: 1px; - width: 85%; - border-bottom: 1px solid #ccc; } - - .monthselector tbody tr:last-child { - height: 50px; } - - .monthselector td.day { - margin: 1px 4px !important; - width: 64px !important; } - - .monthselector .datepicker-switch { - width: 195px !important; } - - .monthselector .show-date { - width: 30px !important; } - - .monthselector button.faux-input { - width: 100%; } - .monthselector button.faux-input:focus { - border: 1px solid #0574ac; } - .monthselector button.faux-input:disabled { - cursor: not-allowed; } - - .monthselector .cta-button-group { - padding: 0 20px; } - .monthselector .cta-button-group a { - margin-right: 20px; } - - .monthselector .day.active .show-date:after, .monthselector .day:focus .show-date:after, .monthselector .due-date.disabled .show-date:after { - height: 30px; - left: 9px !important; - top: 0; - width: 42px !important; } - - .monthselector .disabled.day:focus .show-date:after { - border: none; } - - .monthselector .icon-primary-calendar { - display: block; } - - .b2b-ml-nav { - padding: 0 10px 0 10px; - width: 320px; } - - .b2b-ml-nav ul { - list-style: none; - list-style-type: none; } - - .b2b-ml-nav a { - display: block; - padding: 0 0 5px 30px; - line-height: 22px; - margin-left: -10px; - color: #0568ae; - font-size: 1.4rem; } - - .b2b-ml-nav a:focus { - outline-offset: 1px; } - - .b2b-ml-nav li:focus { - outline: none; } - - .b2b-ml-nav li:focus > a { - outline: thin dotted #666; - outline-offset: 1px; } - - .b2b-ml-nav ul li { - border-left: 1px solid #ccc; } - - .b2b-ml-nav ul ul { - padding: 0 0 0 20px; } - - .b2b-ml-nav ul > li { - position: relative; - line-height: 18px; } - - .b2b-ml-nav a > span { - background-color: #FFF; - display: inline; - margin: 0; - padding: 0; + left: 1px; + top: 1px; + width: 10px; } + .checkbox input:focus + .skin { + border-color: #0568ae; } + .checkbox input:focus + .skin:before { + content: ""; + height: 34px; + left: -6px; + top: -6px; + outline: 1px dotted #000000; + position: absolute; + width: 34px; } + .checkbox input:checked:not(:disabled) + .skin { + background-color: #0568ae; + border-color: #0568ae; } + .checkbox input:checked:disabled + .skin:after { + color: #5A5A5A; } + .checkbox input:checked + .skin:after { + height: 20px; + width: 10px; + background-color: transparent; + font-size: 23.4px; + color: #FFFFFF; + line-height: 21px; } + .checkbox input:disabled + .skin { + cursor: not-allowed; + background-color: #d2d2d2; + border-color: #d2d2d2; + color: #666666; } + .checkbox input:disabled + .skin + span { + cursor: not-allowed; + color: #666666; } + .checkbox input:invalid + .skin { + border: solid 1px #cf2a2a; } + .checkbox input:indeterminate + .skin:after { + background-color: transparent; + font-size: 25px; + color: #0574ac; + content: "\e920"; } + .checkbox .skin { + background-color: #fff; + border: 1px solid #d2d2d2; + border-radius: 3px; + display: inline-block; + height: 24px; + width: 24px; position: absolute; - left: -11px; + left: 0; top: 0; } - - .b2b-ml-nav a > span > i { - font-size: 20px; } - - .b2b-ml-nav a:only-child > span { - left: -6px; - border-radius: 50%; - line-height: 7px; - top: 5px; } - - .b2b-ml-nav a:only-child > span > i { - background-color: inherit; - background: #fff; - font-size: 10px; } - - .b2b-ml-nav ul li:first-child > a:only-child > span { - left: -6px; - border-radius: 50%; - line-height: 12px; - top: 0px; } - - .b2b-ml-nav li a + ul { - display: none; } - - .b2b-ml-nav li a.active + ul { - display: block; } - - .b2b-ml-nav .selected { - color: #333; } - - /*to overide ng-doc inline property for library demo - TODO: Move to docs.css*/ - .b2b-ml-nav a [class^="icon-primary-"], a [class*=" icon-primary-"], a [class^="icon-primary-"]:before, a [class*=" icon-primary-"]:before { - display: inline-block; } - - .b2b-alerts-messages { - background-color: #fff; - border-radius: 8px; - height: auto; } - .b2b-alerts-messages h3 { - color: #333 !important; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - margin-bottom: 0 !important; - margin: 1em 0 5px; - line-height: 27px; - font-size: 18px; } - .b2b-alerts-messages h4 { - color: #333 !important; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - margin-bottom: 0 !important; } - .b2b-alerts-messages .alert-info { - background-color: #0574ac; - border: 0; } - .b2b-alerts-messages .alert-error { - background-color: #cf2a2a; - border: 0; } - .b2b-alerts-messages .alert-success { - background-color: #1b7e28; - border: 0; } - .b2b-alerts-messages div:nth-child(2) { - padding: 0 0 15px 10px; - vertical-align: baseline; } - .b2b-alerts-messages .close:before { - color: #767676; } - .b2b-alerts-messages p { - font-size: 14px; - color: #333; - font-family: "Omnes-ECOMP-W02", Arial; } - .b2b-alerts-messages p a { - color: #333; } - .b2b-alerts-messages .btn-small { - margin-bottom: 0px; } - - .b2b-alerts-success { - border: 1px solid #1b7e28; } - - .b2b-alerts-error { - border: 1px solid #cf2a2a; } - - .b2b-alerts-info { - border: 1px solid #0574ac; } - - /* TODO: Rearange this and move to patches if needed */ - .b2b-breadcrumb-css-override > li { - margin-right: 24px; } - - .b2b-breadcrumb-css-override li > * { - float: left !important; } - - .b2b-css-override ul.nav-tabs { - margin-bottom: 0; } - - .b2b-css-override div.tab-content { + .checkbox span { + display: inline-block; + margin-left: 34px; margin-top: 0; - border-top: none; } - - .b2b-css-override .tab-content .prettyprint, .b2b-css-override .usage .prettyprint { - max-height: 500px; - overflow-y: auto; } - - .b2b-top-nav-buttons-css-override { - margin-bottom: 0; - margin-top: 2px; } - - .b2b-auto-width { - width: auto !important; } - - .b2b-toggle-header-active { + position: relative; + top: 3px; } + .checkbox label { + font-size: 1.6rem; + font-family: "Omnes-ECOMP-W02", Arial; } + .checkbox input { + z-index: 9999; } + .checkbox input.indeterminate + .skin:after { + font-size: 22px; color: #0568ae; } - - .b2b-toggle-header-inactive { - color: #333333; } - - .b2b-toggle-header-icon { - cursor: pointer; } - - .tab-content > .tab-pane { - display: none; } - - .tab-content > .active { - display: block; } - - .icon-primary-circle:before { - background-image: url("data:image/svg+xml,%3Csvg%20baseProfile%3D%22tiny%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%3E%3Ccircle%20fill%3D%22transparent%22%20stroke%3D%22%23666%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2218%22%20cy%3D%2218%22%20r%3D%2216%22%2F%3E%3C%2Fsvg%3E"); - content: ""; - position: absolute; - top: 0; - z-index: 1; } - - .ds2-no-colors .icon-primary-circle:before { - background-image: none; - content: "\e902"; } - - i:focus { - outline: thin dotted #666; } - - .p-col-md-12 { - width: 50%; } - - .pager__item { - border-radius: 0; - cursor: default; + +/* .checkbox.inline { + display: inline-block; + margin-bottom: 10px; + vertical-align: middle; + margin-right: 10px; } + .checkbox.inline:last-child { + margin-right: 0; } + +.checkbox.checkbox-selectall { + margin: 20px 0 0 24px; } + +.terms-after-checkbox { + margin-top: 15px; } */ + +.indeterminate-margin { + padding-left: 24px; } + +.tiny-accordion { + border-bottom: 1px solid #d2d2d2; } + +.toggle-header, +.inactive-toggle-header { + border-color: #fff; + color: #0568ae; + cursor: pointer; + display: block; + font-size: 2.0rem; + line-height: 2.2rem; + min-height: 41px; + position: relative; + padding: 16px 55px 16px 15px; } + +.toggle-header.opened { + color: #333333; } + +.tiny-accordion .toggle-header, +.tiny-accordion .inactive-toggle-header { + padding: 16px 55px 16px 15px; + border-top: 1px solid #d2d2d2; } + +.tiny-accordion .toggle-header:focus { + text-decoration: underline; } + +.tiny-accordion.iconleft .toggle-header, +.tiny-accordion.iconleft .inactive-toggle-header { + padding: 15px 15px 15px 50px; } + +.accordion-content { + font-size: 1.4rem; } + +.accordion-content .toggle-header:first-child { + margin-top: 16px; } + +.tiny-accordion .toggle-header + .accordion-content { + padding: 0 50px 15px 15px; } + +.tiny-accordion.iconleft .toggle-header + .accordion-content { + padding: 0 15px 15px 50px; } + +.toggle-header .icon-primary-accordion-plus, +.toggle-header .icon-primary-accordion-minus { + display: inline-block; + font-size: 20px; + margin: 0; + padding: 0; + position: absolute; + right: 15px; + vertical-align: middle; + top: 16px; + font-weight: bold; } + +.tiny-accordion.iconleft .toggle-header .icon-primary-accordion-plus, +.tiny-accordion.iconleft .toggle-header .icon-primary-accordion-minus { + left: 15px; } + +.inactive-toggle-header:hover { + cursor: inherit; } + +.tiny-accordion-to-tabs, +.tiny-tabs { + position: relative; + width: 100%; + margin: 0px; + padding: 0px; } + +.tiny-tabs [class*="icon-primary-accordion-"] { + display: none !important; } + +.tiny-accordion-to-tabs:before, +.tiny-accordion-to-tabs:after, +.tiny-tabs:before, +.tiny-tabs:after { + display: table; + content: ""; + line-height: 0; } + +.tiny-accordion-to-tabs:after, +.tiny-tabs:after { + clear: both; } + +.tiny-accordion-to-tabs:before, +.tiny-accordion-to-tabs:after, +.tiny-tabs:before, +.tiny-tabs:after { + display: table; + content: ""; + line-height: 0; } + +.tiny-accordion-to-tabs:after, +.tiny-tabs:after { + clear: both; } + +.tiny-tabs > .toggle-header { + display: inline-block; + float: left; + border-top: none; + overflow: hidden; + height: 70px; + text-align: center; + background-color: #fff; + border-radius: 0px; + padding: 26px 20px 25px 20px !important; + border-top: 1px solid #fff; + -webkit-filter: none; + filter: none; + background-clip: padding-box; + border-bottom: 1px solid #d2d2d2; + font-weight: normal; + border-right: 1px solid #d2d2d2; + white-space: nowrap; } + +.tiny-tabs .toggle-header + div { + left: 0px; + position: absolute; + top: 69px; + border-top: 1px solid #d2d2d2; + padding: 0; + display: block; + border-bottom: none; + width: 100%; } + +.accordion-pad { + padding-top: 30px; + padding-bottom: 30px; } + +.tiny-tabs .opened { + color: #333333; + border-top: 5px solid #0568ae !important; + padding-top: 22px !important; + border-bottom: none; + background-color: #fff; + -webkit-filter: none; + filter: none; + cursor: default; + z-index: 999; } + +.tiny-tabs .toggle-header:focus { + text-decoration: underline; + outline: thin dotted #666; + outline-offset: 0; } + +.tiny-tabs .toggle-header:first-child { + border-left: none; + margin-left: 0; } + +.tiny-tabs .toggle-header:first-child { + border-left: 1px solid #fff; } + +.tiny-tabs .opened:first-child { + border-left: 1px solid #d2d2d2; } + +.tiny-tabs .toggle-header:nth-last-of-type(2) { + border-right-color: #fff; } + +.tiny-tabs .opened:nth-last-of-type(2) { + border-right: 1px solid #d2d2d2; } + +@media (max-width: 767px) { + .tiny-accordion, + .tiny-accordion-to-tabs { + margin-left: -15px; + margin-right: -15px; + width: auto; } + .tiny-accordion-to-tabs { + display: block; + border-bottom: 1px solid #d2d2d2; } + .tiny-accordion-to-tabs .toggle-header { + display: block; + min-height: 41px; + padding: 16px 50px 16px 15px; + border-top: 1px solid #d2d2d2; } + .tiny-accordion-to-tabs .toggle-header:focus { + text-decoration: underline; } + .tiny-accordion-to-tabs .toggle-header + .accordion-content { + padding: 0 50px 15px 15px; } } + +@media (min-width: 768px) { + .tiny-accordion-to-tabs [class*="icon-primary-accordion-"] { + display: none !important; } + .tiny-accordion-to-tabs > .toggle-header { display: inline-block; - margin: 5px; - width: 22px; - height: 23px; - vertical-align: baseline; } - - .pager { - padding-top: 10px; - padding-bottom: 20px; - text-align: center; - margin: 0 auto; } - - .pager__item--input { - color: #067ab4; - max-height: 32px; - max-width: 40px; - padding-left: 0; - padding-right: 0; + float: left; + border-top: none; + /*overflow: hidden;*/ + height: 70px; text-align: center; - margin-left: 10px; } - - .row.section-row { - margin-bottom: 20px; } - - .pager__item--active { - border-bottom: 2px solid #0574ac; - border-radius: 0; - color: #333333; } - - .pager a.pager__item--active:hover { - cursor: default; } - - .pager a:hover, .pager a:focus { - text-decoration: none; + background-color: #fff; + border-radius: 0px; + padding: 26px 20px 25px 20px !important; + border-top: 1px solid #fff; + -webkit-filter: none; + filter: none; + background-clip: padding-box; + border-bottom: 1px solid #d2d2d2; + font-weight: normal; + border-right: 1px solid #d2d2d2; + white-space: nowrap; } + .tiny-accordion-to-tabs .toggle-header + div { + left: 0px; + position: absolute; + top: 69px; + border-top: 1px solid #d2d2d2; + padding-top: 30px; + padding-left: 20px; + display: block; + border-bottom: none; + width: 100%; } + .tiny-accordion-to-tabs .opened { color: #333333; - cursor: pointer; } - - .pager a.disabled:hover, .pager a.disabled:focus { - cursor: not-allowed; } - - .row.section-row.b2b-page { - display: block; } - - a.pager__item--next:focus, a.pager__item--prev:focus { - text-decoration: none; - border: 0; } - - .pager__item--next, .pager__item--prev { - margin: 5px; - padding: 1.5px 6px 1.5px 6px; } - - .pager .disabled i { - pointer-events: none; + border-top: 5px solid #0568ae !important; + padding-top: 22px !important; + border-bottom: none; + background-color: #fff; + -webkit-filter: none; + filter: none; cursor: default; - color: #c4c4c4; } - - .fieldLabel { - color: #666666; } - - .fieldLabel input { - color: #666666; } - - .pSelect { - float: right; - width: 150px; } - - .numericResult { - margin-bottom: 20px; - font-size: 1.6rem; - margin-top: 20px; + text-decoration: none; + z-index: 999; } + .tiny-accordion-to-tabs .toggle-header:focus { + text-decoration: underline; + outline: thin dotted #666; + outline-offset: 0px; } + .tiny-accordion-to-tabs .toggle-header:nth-last-of-type(2) { + border-right: none; } + .tiny-accordion-to-tabs .toggle-header:first-child { + border-left: none; + margin-left: 0; } + .tiny-accordion-to-tabs .toggle-header:first-child { + border-left: 1px solid #fff; } + .tiny-accordion-to-tabs .opened:first-child { + border-left: 1px solid #d2d2d2; } + .tiny-accordion-to-tabs .opened:nth-last-of-type(2) { + border-right: 1px solid #d2d2d2; } } + +.toggle-header .tooltip .icon-primary-tooltip { + margin-top: -5px; } + +.accordion-content { + transition: all 0.8s linear; } + +.opaque-content { + opacity: 0; } + +.tiny-tabs .toggle-header { + display: inline-block; + float: left; + border-top: none; + overflow: hidden; + height: 70px; + text-align: center; + background-color: #fff; + border-radius: 0px; + padding: 22px 20px 25px 20px !important; + border-top: 5px solid #fff; + -webkit-filter: none; + filter: none; + background-clip: padding-box; + border-bottom: 1px solid #ccc; + font-weight: normal; + border-right: 1px solid #ccc; + white-space: nowrap; } + +.tiny-tabs .toggle-header:first-child { + margin-left: 0; } + +.tiny-tabs div:first-child .toggle-header { + margin-left: 30px; } + +.tiny-tabs > div .toggle-header.opened { + border-bottom: 0 !important; } + +.tiny-accordion-to-tabs > div > div.toggle-header { + background-clip: padding-box; + background-color: #fff; + border-bottom: 1px solid #ccc; + border-radius: 0; + border-top: 5px solid #fff; + display: inline-block; + filter: none; + float: left; + font-weight: normal; + overflow: hidden; + padding: 22px 20px 21px !important; + text-align: center; + white-space: nowrap; } + +.tiny-accordion-to-tabs .toggle-header:first-child { + margin-left: 0; } + +.tiny-accordion-to-tabs div:first-child .toggle-header { + margin-left: 30px; + border-bottom: 0 !important; } + +.tiny-accordion-to-tabs > div .toggle-header.opened { + border-bottom: 0 !important; } + +@media (max-width: 767px) { + .tiny-accordion-to-tabs { + display: block !important; + border-bottom: 1px solid #ccc !important; } + .tiny-accordion-to-tabs > div > div.toggle-header { + display: block !important; + float: none; + text-align: left; + min-height: 41px !important; + padding: 15px 50px 15px 15px !important; + border-top: 1px solid #ccc; } + .tiny-accordion-to-tabs > div > div.toggle-header:first-child { + margin-left: 0 !important; } + .tiny-accordion-to-tabs > div > div.toggle-header + .accordion-content { + padding: 0 50px 15px 15px; } + .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-plus { + background-position: 0 0; + background-size: 20px 40px; } + .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-minus { + background-position: 0 -20px; + background-size: 20px 40px; } + .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-plus, + .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-minus { display: inline-block; - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - - .mobile-view > .pager__item { - margin: 5px 10px; - width: 24px; - height: 34px; + height: 20px; + margin: 0; + padding: 0; + position: absolute; + right: 15px; vertical-align: middle; - line-height: 34px; } - - .fade1, .fadel { - opacity: 0.4; } - - .fade2, .fadesl { - opacity: 0.6; } - - h4#pagination-truncated { - margin-top: 50px; } - - h4#pagination-large-count { - margin-top: 50px; } - - .p-col-md-12 input { - margin-left: 20px; } - - .pager a .icon-primary-right:before { - display: inline-block; } - - .pager a .icon-primary-left:before { - display: inline-block; } - - .page-heading { - background: white none repeat scroll 0 0; - margin-bottom: -12px; - padding-left: 10px; - padding-right: 10px; - position: relative; } - - .numericResult:focus { - outline: 1px dotted #0574ac; } - - .page-heading-group { - color: #ef6f00; - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - - .pager > div > span.fieldLabel { - margin-left: 18px; } - - .pager .fieldLabel .btn-arrow { - top: 0; - left: 10px; - margin-left: -5px; } - - .b2b-p-col-md-12 { - width: 50%; } - .b2b-p-col-md-12 input { - margin-left: 20px; } - - .b2b-pager__item { + width: 20px; } } + +.alert { + background-color: #5a5a5a; + border-radius: 8px; + color: #fff; + margin-top: 15px; + padding: 0; + position: relative; + border: 0; } + +.alert h3, +.alert h4 { + color: #fff; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 1.6rem; + margin: 0 20px 5px 0; } + +.alert div { + padding: 15px 20px; } + +.alert div:first-child { + border-radius: 8px 0 0 8px; + width: 1%; } + +.alert div:first-child + div { + border: 1px solid transparent; + border-left: none; + border-radius: 0 8px 8px 0; } + +.alert-error { + background-color: #cf2a2a; + border: 1px solid #cf2a2a; } + +.alert-info { + background-color: #44c8f5; + border: 1px solid #44c8f5; } + +.alert-success { + background-color: #c5d63d; + border: 1px solid #c5d63d; } + +.alert [class*="icon-primary-"] { + color: #fff; + font-size: 30px; + margin-right: 0; } + +.alert .close { + height: 30px; + position: absolute; + right: 1px; + top: 1px; + width: 30px; } + +.alert .close:before { + color: #fff; + margin-right: 0; + position: absolute; + right: 9px; + top: 9px; } + +.alert a { + color: #fff; + text-decoration: underline; } + +.alert .close:focus { + outline: 1px dotted #666; } + +.alert p { + font-size: 1.4rem; } + +.alert p:last-child { + margin-bottom: 0; } + +.alert .standalone-link i[class*="icon-primary-"] { + font-size: 20px; + margin-right: 5px; } + +@media (max-width: 767px) { + .alert { border-radius: 0; - cursor: default; + margin: 0 -15px; } + .alert + .alert { + margin-top: 4px; } + .alert div { + padding: 15px 10px; } + .alert div:first-child { + border-radius: 0; + padding: 15px; } + .alert h3, + .alert h4 { + font-size: 1.4rem; } + .alert p { + font-size: 1.2rem; } + .alert .close { + right: 5px; + top: 5px; } + .alert .standalone-link i[class*="icon-primary-"] { + font-size: 16px; } } + +.alert h3 { + margin: 0; + font-size: 16px; } + +.alert p { + font-size: 14px; } + +.alert p a { + color: #FFFFFF; + text-decoration: underline; } + +.alert div:first-child + div { + padding-right: 25px; } + +.alert div:last-child { + padding-right: 20px !important; } + +.alert p [class*="icon-primary-"] { + color: #fff; + font-size: 20px; + margin-right: 0; } + +@media (max-width: 767px) { + .alert h3 { + font-size: 14px; } + .alert div:first-child + div { + padding-right: 20px; } + .alert div:last-child { + padding-right: 15px !important; } + .alert div:first-child { + padding: 15px; } + .alert p { + font-size: 12px; } + .alert p [class*="icon-primary-"] { + font-size: 16px; } } + +.b2b-audio { + width: auto; + margin: 10px auto; + height: 35px; } + .b2b-audio .controls-wrapper { + display: inline-block; + font-size: 25px; + cursor: pointer; } + .b2b-audio .controls-wrapper i { + font-size: 25px; + margin-right: 0px; + color: #444; } + .b2b-audio .controls-wrapper i:hover { + color: #0574AC; } + .b2b-audio .seek-bar-container-wrapper { display: inline-block; - margin: 0px 5px 0 5px; - height: 23px; - vertical-align: baseline; } - - .b2b-pager__item--noclick { - pointer-events: none !important; - cursor: default !important; } - - .b2b-pager__item--droppable { - pointer-events: all !important; } - - .b2b-pager { - padding-top: 10px; - padding-bottom: 20px; - text-align: center; - margin: 0 auto; } - .b2b-pager a:hover { - text-decoration: none; - color: #333333; - cursor: pointer; } - .b2b-pager a:focus { - text-decoration: none; - color: #333333; - cursor: pointer; } - .b2b-pager a .icon-primary-right:before { - display: inline-block; } - .b2b-pager a .icon-primary-left:before { - display: inline-block; } - .b2b-pager .disabled i { - pointer-events: none; - cursor: default; - color: #c4c4c4; } - - .b2b-pager__item--input { - color: #067ab4; - max-height: 32px; - max-width: 60px; - padding-left: 0; - padding-right: 0; + outline: 0; + min-width: 180px; + margin-right: 10px; + margin-left: 10px; + height: 14px; + padding-top: 5px; } + .b2b-audio .seek-bar-container-wrapper .timing-container { + padding-top: 13px; + color: #333; + font-size: 12px; } + .b2b-audio .seek-bar-container-wrapper .timing-container .timing-container-left { + float: left; + line-height: 100%; } + .b2b-audio .seek-bar-container-wrapper .timing-container .timing-container-right { + float: right; + line-height: 100%; } + .b2b-audio .seek-bar-container-wrapper .timing-container .timing-container-spacer { + clear: both; } + .b2b-audio .seek-bar-tooltip { text-align: center; - margin-left: 5px; } - - .row.section-row { - margin-bottom: 20px; } - - .b2b-pager__item--active { - border-bottom: 2px solid #0574ac; - border-radius: 0; - color: #333333; } - - .row.section-row.b2b-page { - display: block; } - - a.b2b-pager__item--next:focus { - text-decoration: none; - border: 0; } - - a.b2b-pager__item--next-disabled { - outline: 0; } - - a.b2b-pager__item--next-disabled > [class^="icon-primary-"] { - color: #cccccc; - cursor: not-allowed; - outline: 0; } - - a.b2b-pager__item--prev:focus { - text-decoration: none; - border: 0; } - - a.b2b-pager__item--prev-disabled { - outline: 0; } - - a.b2b-pager__item--prev-disabled > [class^="icon-primary-"] { - color: #cccccc; - cursor: not-allowed; } - - .b2b-pager__item--next { - padding: 1.5px 0px 1.5px 0px; } - - .b2b-pager__item--prev { - padding: 1.5px 0px 1.5px 0px; } - - .fieldLabel { - color: #666666; } - .fieldLabel input { - color: #666666; } - .fieldLabel .btn-arrow { - top: 0; - left: 10px; } - - .b2b-pSelect { - float: right; - width: 150px; } - - .b2b-numericResult { + min-width: 76px; } + +.b2b-audio-popover { + width: 22px; } + .b2b-audio-popover .volume-popover { + height: 100px !important; + width: 6px !important; + margin: 7px auto; } + .b2b-audio-popover .min-label { + margin-top: 5px; } + +.b2b-audio-native { + width: auto; + height: auto; } + +.b2b-audio-recorder { + border: 1px solid #ccc; + box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.15); + height: 63px; + min-height: 63px; + min-width: 347px; } + .b2b-audio-recorder .b2b-elapsed-time { + margin: 23px 0 24px 15px; + font-size: 16px; + font-style: italic; + color: #767676; } + .b2b-audio-recorder .b2b-controls { + width: 68px; + cursor: pointer; } + .b2b-audio-recorder .b2b-controls i.icoControls-record { + font-size: 64px; + color: black; + float: right; + margin-right: 10px; } + .b2b-audio-recorder .b2b-controls i.icoControls-record:focus, .b2b-audio-recorder .b2b-controls i.icoControls-record:hover { + color: #0568ae; } + .b2b-audio-recorder .b2b-controls i.icoControls-stop { + font-size: 36px; + color: black; + float: right; + margin-right: 20px; + margin-top: 12px; } + .b2b-audio-recorder .b2b-controls i.icoControls-stop:focus, .b2b-audio-recorder .b2b-controls i.icoControls-stop:hover { + color: #0568ae; } + +.b2b-top-btn { + height: 36px; + width: 36px; + border-radius: 7px; } + +.b2b-top-btn > i { + position: absolute; + top: 13px; + left: 9px; + width: 11px; + height: 18px; } + +.b2b-badge { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + background-color: #5A5A5A; + border-radius: 12px; + color: #FFFFFF; + display: inline-block; + font-size: 1.5rem; + font-weight: normal; + height: 20px; + line-height: 0; + margin-top: 0; + min-width: 20px; + padding: 0 5px; + text-align: center; + vertical-align: baseline; } + .b2b-badge:empty { + display: none; } + +* + .b2b-heading-micro { + margin-top: 20px !important; } + +.b2b-heading-micro { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-weight: normal; + text-rendering: optimizeLegibility; + font-size: 1.2rem !important; + text-transform: uppercase !important; + margin-bottom: 20px !important; + line-height: 1.2 !important; } + +.b2b-no-colors .b2b-badge { + border: 1px solid transparent; } + +.btn > .b2b-badge { + margin-right: 5px; } + +a > .b2b-badge { + margin-right: 6px; + padding-top: 10px; } + +.b2b-badge-urgent { + background-color: #cf2a2a; } + +.bellyband-container { + margin: 0 -15px; } + +.bellyband-group { + width: auto; } + +.bellyband-link { + border-top: 1px solid #d2d2d2; } + +.bellyband-link a { + display: block; + height: 40px; + line-height: 40px; + padding: 0 15px; + position: relative; + text-decoration: none; } + +.bellyband-link a:hover > div span, +.bellyband-link a:focus > div span { + text-decoration: underline; } + +.bellyband-link a:after { + color: #666; + font-size: 2.3rem; + height: 20px; + position: absolute; + right: 5px; + top: 12px; + width: 18px; } + +.dark-bg .bellyband-link a:after { + color: white; } + +.bellyband-link img[src$="svg"].hidden-desktop, +.bellyband-link [class*="icon-primary-"].hidden-desktop { + display: inline-block !important; + float: left; + font-size: 24px; + height: 24px; + margin-right: 5px; + margin-top: 8px; + width: 24px; } + +.dark-bg .bellyband-link [class*="icon-primary-"].hidden-desktop, +.dark-bg .bellyband-link [class*="icon-primary-"].visible-desktop { + color: #fff; } + +.bellyband-link img[src$="svg"].visible-desktop { + display: none !important; } + +.bellyband-link p { + margin-top: -10px; + margin-left: 29px; + font-size: 1.4rem; + color: #666; } + +@media (min-width: 481px) and (max-width: 767px) { + .bellyband-container { + display: flex; + margin: 0; } + .bellyband-group { + align-content: flex-start; + align-items: stretch; + display: inline-flex; + flex-direction: column; + flex-wrap: wrap; + margin-top: 1px; + width: 100%; } + .bellyband-group .row { + display: flex !important; } + .bellyband-link { + padding-top: 0; + position: relative; + border-top: none; margin-bottom: 20px; - font-size: 1.6rem; - margin-top: 20px; } - - .b2b-mobile-view > .b2b-pager__item { - margin: 5px 10px; - min-width: 23px; - height: 34px; - vertical-align: middle; - line-height: 34px; } - - .b2b-fade1 { - opacity: 0.4; } - - .b2b-fade2 { - opacity: 0.6; } - - .b2b-fadesl { - opacity: 0.6; } - - h4#b2b-pagination-truncated { - margin-top: 50px; } - - h4#b2b-pagination-large-count { - margin-top: 50px; } - - .b2b-page-heading { - background: white none repeat scroll 0 0; - margin-bottom: -12px; - padding-left: 10px; - padding-right: 10px; - position: relative; } - - .b2b-numericResult:focus { - outline: 1px dotted #0574ac; } - - .b2b-page-heading-group { - color: #ef6f00; - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - - .b2b-pager > div > span.fieldLabel { - margin-left: 18px; } - - .b2b-go-to-page { - margin-top: 14px; } - - .b2b-go-to-page-inline { - display: inline-block; } - - input.b2b-phone-mask-input { - padding-right: 15px; } - input.b2b-phone-mask-input:hover, input.b2b-phone-mask-input:focus { - padding-right: 15px; } - - /************************** Start - Should be removed after the styling in global is fixed *******************/ - input::-ms-clear { + width: 50%; } + .bellyband-link a { + height: inherit; + line-height: inherit; + display: flex; + padding: 0; } + .bellyband-link a:after { display: none; } - - /************************** End - Should be removed after the styling in global is fixed *******************/ - @media (max-width: 767px) { - input::-ms-clear { - display: block; } } - - .pivot-link-group { - background-color: #5a5a5a; - border-top: 1px solid #959595; } - - .pivot-links > li { - border-bottom: 1px solid #959595; } - - .pivot-links > li > a { - color: #fff; + .bellyband-link a span { display: block; - padding: 12px 15px 10px; - line-height: normal; } - - .b2b-profile-block-container { - min-height: 200px; + padding-top: 10px; } + .bellyband-link p { + display: block; + padding: 0 15px 0 0; + margin-bottom: 0; + margin-left: 0; + margin-top: 0; } + .bellyband-link a:focus p { + text-decoration: none; } } + +@media (min-width: 768px) { + .bellyband-group { + margin: 0; + max-width: 100%; + display: flex; + flex-wrap: wrap; + justify-content: center; } + .bellyband-group .row { + display: block; } + .bellyband-group .row .span { + float: none; + margin-right: 0; + margin-bottom: 30px; + display: flex; + justify-content: space-between; } + .bellyband-link { + border-top: none; + flex: 0 0 auto; + margin-right: 0; + margin-bottom: 30px; } + .bellyband-link:last-child { + margin-right: 0; } + .bellyband-link a { height: auto; - background-color: #fff; - border-radius: 8px; - border: 1px solid #ccc; - box-shadow: 0px 1px 1px 1px #ccc; - display: inline-table; - margin: 15px 15px; } - - .b2b-profile-block-details p, .b2b-profile-block-details div { - padding: 2px 7px; - font-size: 1.4rem; } - - .b2b-profile-block-details .radio-label, .b2b-profile-block-details a { - font-size: 1.4rem; } - - .b2b-profile-block-details p label, .b2b-profile-block-details p span { - padding-left: 10px; } - - .b2b-profile-block-footer { - margin-bottom: 12px; - margin-top: 5px; - height: 35px; } - - .b2b-profile-block-details p { - word-wrap: break-word; - height: 61px; } - .b2b-profile-block-details p:first-child { - margin-top: 10px; } - .b2b-profile-block-details p:after { - content: ' '; - display: block; - border: 0.2px solid #ccc; - margin-top: 12px; } - - .b2b-profile-block-details .radio { - margin-left: 15px; - height: 30px; } - - .b2b-approval-icon { - color: #1b7e28; - float: right; - position: relative; - left: 10px; } - .b2b-approval-icon i { - color: #1b7e28; - float: right; } - - .b2b-profile-link { - float: right; - position: relative; - left: -4px; } - - a.link-profile { - position: relative; - left: -5px; - float: right; - margin-bottom: 16px; } - - .b2b-profile-block-radio { - position: relative; - top: -5px; } - - .b2b-profile-card { - min-width: 229px; - min-height: 354px; - margin: 10px; - border: solid 1px #CCC; + line-height: 1; + text-align: center; } + .bellyband-link a:after { + display: none; } + .bellyband-link img[src$="svg"].hidden-desktop, + .bellyband-link [class*="icon-primary-"].hidden-desktop { + display: none !important; } + .bellyband-link img[src$="svg"].visible-desktop, + .bellyband-link [class*="icon-primary-"].visible-desktop { + display: block !important; + font-size: 50px; + height: 50px; + margin-right: 0; + margin-top: 0; + margin-left: auto; + margin-right: auto; + width: auto; } + .bellyband-link a span { + display: block; + margin-top: 12px; + line-height: 2rem; } + .bellyband-link p { + display: block; + text-align: center; + margin-top: 6px; + margin-left: 0; + padding-left: 0 !important; + color: #666; + line-height: 1.8rem; } } + +@media (max-width: 480px) { + .bellyband-link-tall a { + height: auto; + padding: 0 40px 10px 15px; } + .bellyband-link-tall p { + line-height: 1.8rem; + margin-bottom: 0; } + .bellyband-link-tall > a:after { + margin-top: -8px; + top: 50%; } } + +.b2b-boardstrip { + display: inline-block; + width: 100%; + border-bottom: 1px solid #9d9d9d; + position: relative; + padding-top: 15px; } + .b2b-boardstrip .boardstrip-reel { + margin-bottom: 15px; } + .b2b-boardstrip .boardstrip-item--add { + border: 1px dashed #ccc; + background: #FFFFFF; + color: #0574ac; + width: 140px; + height: 80px; + font-size: 14px; font-family: "Omnes-ECOMP-W02", Arial; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + position: absolute; + left: 29px; + top: 15px; } + .b2b-boardstrip .boardstrip-item--add:hover, .b2b-boardstrip .boardstrip-item--add:focus { + border: 2px solid #007A3E; + cursor: pointer; } + .b2b-boardstrip .boardstrip-item--add i { + font-size: 14px; + margin-left: auto; + margin-right: auto; + text-align: initial; } + .b2b-boardstrip .boardstrip-item--add .centered { + margin-left: auto; + margin-right: auto; + margin-top: 27px; + margin-bottom: 35px; + display: block; } + .b2b-boardstrip .board-viewport { + float: left; + margin-left: 210px; + max-height: 95px; + position: relative; + height: 95px; + overflow: hidden; + width: 0px; } + .b2b-boardstrip .board-viewport .boardstrip-container { + width: 0px; + margin-left: 0; + left: 0px; + position: absolute; + list-style: none; + -webkit-transition: left 1000ms; + transition: left 1000ms; } + .b2b-boardstrip .board-viewport .board-item { + width: 140px; + height: 80px; + border: 1px solid #ccc; + margin: 0 15px 15px 0; + background-color: #FFFFFF; + border-radius: 3px; + float: left; + overflow: hidden; } + .b2b-boardstrip .board-viewport .board-item:hover, .b2b-boardstrip .board-viewport .board-item:focus { + border: 2px solid #007A3E; + background-color: white; + cursor: pointer; } + .b2b-boardstrip .board-viewport .board-item .board-img { + width: 61px; + height: 40px; + margin: 0 auto; } + .b2b-boardstrip .board-viewport .board-item .board-img img { + max-width: 100%; } + .b2b-boardstrip .board-viewport .board-item .title { + text-align: center; + line-height: 16px; + color: #666; + font-size: 14px; + font-family: "Omnes-ECOMP-W02", Arial; + padding: 10px 0; } + .b2b-boardstrip .board-viewport .board-item.selected { + background-color: #FFFFFF; + border: 2px solid #0574ac; } + .b2b-boardstrip .board-viewport .board-item .board-caret { + cursor: default; + outline: 0; + position: absolute; + bottom: 7px; } + .b2b-boardstrip .board-viewport .board-item .board-caret .board-caret-indicator { + border-left: 8px solid transparent; + border-right: 8px solid transparent; + border-bottom: 8px solid #999; + width: 0px; + height: 0px; + position: absolute; + left: 61px; + bottom: -7px; } + .b2b-boardstrip .board-viewport .board-item .board-caret .board-caret-arrow-up { + width: 0px; + height: 0px; + border-style: solid; + border-width: 0 8px 8px 8px; + border-color: transparent transparent #FFFFFF transparent; + left: 61px; + position: absolute; } + .b2b-boardstrip .arrow { + font-size: 14px; + cursor: pointer; + color: #0574ac; } + .b2b-boardstrip .arrow:hover { + color: #0574ac; } + .b2b-boardstrip .arrow.disabled { + color: #767676 !important; + cursor: not-allowed; } + .b2b-boardstrip .prev-items { display: inline-block; - vertical-align: top; } - .b2b-profile-card .top-block { - padding: 15px 20px; - background-color: #e4e4e4; - max-height: 153px; } - .b2b-profile-card .bottom-block { - padding: 15px 20px 15px 20px; - background-color: #fff; } - .b2b-profile-card .profile-image { - background: #e4e4e4; - margin-bottom: 15px; - text-align: center; } - .b2b-profile-card .profile-image .default-img { - display: inline-block; - width: 60px; - height: 60px; - margin-bottom: 10px; - border: 6px solid #fff; - border-radius: 99em; - -webkit-border-radius: 99em; - -moz-border-radius: 99em; - /* background-color: #eee; */ } - - .profile-image img { + margin-top: auto; + margin-bottom: auto; + margin-right: 15px; + position: absolute; + left: 0; + top: 45px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -o-user-select: none; + user-select: none; } + .b2b-boardstrip .next-items { display: inline-block; - width: 60px; - height: 60px; - margin-bottom: 10px; - border: 6px solid #fff; - border-radius: 99em; - -webkit-border-radius: 99em; - -moz-border-radius: 99em; - /* background-color: #eee; */ } - - .b2b-profile-card .profile-image .default-img { - font-family: "Omnes-ECOMP-W02", Arial; - color: #333; - background-color: #fff; - font-size: 32px; - line-height: 22px; - padding: 5px; - padding-top: 13px; - width: 60px; - height: 60px; - text-transform: uppercase; } - - .b2b-profile-card .profile-image .name { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 16px; - color: #333; + margin-top: 30px; + margin-bottom: auto; + margin-left: 10px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -o-user-select: none; + user-select: none; } + .b2b-boardstrip .centered { + display: table-cell; text-align: center; - margin-bottom: 5px; - margin-top: 5px; - overflow: hidden; - word-break: break-word; - white-space: normal; - text-transform: capitalize; } - - .b2b-profile-card .profile-image .status-icon { - border-radius: 10px; - border: 1px solid #fff; - margin: 0 3px 0 0; - width: 10px; - height: 10px; - display: inline-block; vertical-align: middle; } - - .b2b-profile-card .profile-image .status { - font-size: 12px; - line-height: 15px; + +.breadcrumb { + padding: 10px 15px; + height: 40px; + list-style: none; + border-bottom: 1px solid #d2d2d2; + font-size: 1.2rem; + width: 100%; + z-index: 1000; } + +.breadcrumb > li { + position: relative; + display: inline-block; + margin-right: 15px; } + +.breadcrumb > li:after { + font-size: 8px; + margin-right: 0; + right: -8px; + color: #333333; } + +.breadcrumb > li:last-child { + color: #333333; } + +.breadcrumb > li:last-child:after { + content: ""; } + +.breadcrumb li > * { + float: none !important; + margin: 0; } + +.breadcrumb { + padding: 10px 15px !important; } + +/* ARROW */ +/* spanish */ +.datepicker { + background-color: #FFFFFF; + padding: 0; + border-radius: 5px; + direction: ltr; } + .datepicker > div { + display: none; } + .datepicker table { + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + margin: 0 0 0 0; } + .datepicker td { text-align: center; - margin: 0 15px 0 0; - color: #444; } - - .b2b-profile-card .status .circle { - width: 10px; - height: 10px; - border-radius: 50%; - margin: 30px 6px 0px 20px; + display: block; + width: 30px; + height: 30px; + border: none; } + .datepicker td span { + display: block; + width: 23%; + height: 54px; + line-height: 54px; + float: left; + margin: 1%; + cursor: pointer; + border-radius: 4px; } + .datepicker td span:hover { + background: #eeeeee; } + .datepicker td span.disabled { + background: none; + color: #5A5A5A; + cursor: default; } + .datepicker td span.disabled:hover { + background: none; + color: #5A5A5A; + cursor: default; } + .datepicker td span.active { + color: #FFFFFF; + background-color: #0568ae; + border-color: #357ebd; } + .datepicker td span.active:hover { + color: #FFFFFF; + background-color: #0568ae; + border-color: #357ebd; } + .datepicker td span.active.disabled { + color: #FFFFFF; + background-color: #0568ae; + border-color: #357ebd; } + .datepicker th { text-align: center; - background-color: #444; } - - .b2b-profile-card .profile-image .status-green { - background-color: #0c0; } - - .b2b-profile-card .profile-image .status-red { - background-color: red; } - - .b2b-profile-card .profile-image .status-blue { - background-color: #00f; } - - .b2b-profile-card .profile-image .status-yellow { - background-color: #ff0; } - - .b2b-profile-card .profile-image .status .status-badge { - margin-left: 5px; - border: dotted 1px #444; + display: block; + width: 30px; + height: 30px; + border: none; } + .datepicker tbody:focus { + outline: none; } + .datepicker td.day { background-color: transparent; - font-weight: 400; - color: #444; - height: 17px; - padding: 0 5px; - font-size: 11px; - padding-left: 5px; - padding-right: 5px; } - - .b2b-profile-card .profile-details { - background: #fff; } - .b2b-profile-card .profile-details label { - display: block; - cursor: text; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-weight: bolder; - font-size: 14px; - color: #333; - padding: 0; - margin: 0; } - .b2b-profile-card .profile-details div { - margin: 0; - font-size: 14px; - color: #333; - padding-bottom: 6.5px; } - - .b2b-profile-card .b2b-add-user { - background: white; - border-style: dotted; - font-size: 16px; - color: #333; - position: relative; } - .b2b-profile-card .b2b-add-user i { - font-size: 30px; - padding-bottom: 15px; } - - .b2b-profile-card .atcenter { + color: #0568ae; cursor: pointer; - margin-top: 60%; - vertical-align: middle; - text-align: center; } - - .b2b-profile-card .tooltip { - cursor: pointer; } - .b2b-profile-card .tooltip .helpertext { - position: relative; - color: white; } - - .b2b-profile-card .tooltip-wrapper { - position: relative; } - - /* Overrides for tooltip absolute positioning */ - @media (min-width: 1025px) { - .b2b-profile-card .tooltip-size-control { - width: 100% !important; } } - - @-webkit-keyframes progress-bar-stripes { - from { - background-position: 0 0; } - to { - background-position: 80px 0; } } - - @keyframes progress-bar-stripes { - from { - background-position: 0 0; } - to { - background-position: 80px 0; } } - - .progress { - background-color: #e4e4e4; - border-radius: 4px; - height: 14px; - margin-bottom: 20px; - min-width: 250px; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 16px; + height: 34px; + line-height: 30rem; + margin: -2px -1px 0 0; overflow: hidden; - padding: 0; - position: relative; } - - a .progress { - margin-bottom: 0; } - - .progress .bar { - background-color: #666; - border-radius: 4px; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - height: 100%; - width: 0; } - - .progress-arrow { - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-align-items: center; - -ms-flex-align: center; - align-items: center; - -webkit-justify-content: flex-end; - -ms-flex-pack: end; - justify-content: flex-end; } - - .progress-link + .usage-bar { - margin-top: 5px; } - - .progress-success .bar, .progress .bar-success { - background-color: #1b7e28; } - - .progress-warning .bar, .progress .bar-warning { - background-color: #ef6f00; } - - .progress-danger .bar, .progress .bar-danger { - background-color: #cf2a2a; } - - .progress.increment { - display: -webkit-flex; - display: -ms-flexbox; - display: flex; } - - .progress.increment .bar:first-child:not(:last-child) { - border-right: none; - border-radius: 4px 0 0 4px; } - - .progress.increment .bar:last-child:not(:first-child) { - border-left: none; - border-radius: 0 4px 4px 0; } - - .progress.increment .bar + .bar:not(:last-child) { - border-left: none; - border-right: none; - border-radius: 0; } - - .progress.increment .bar:not(:first-child) { - border-left: 1px solid white !important; } - - .usage-bar { - display: table; - float: none; - width: 100%; - margin-bottom: 1px; } - - .usage-bar > .usage-text { - display: table-cell; - width: 1%; } - - .progress + .usage-bar { - margin-top: -15px; } - - .usage-bar .usage-text { - font-size: 1.4rem; } - - .usage-bar .usage-text:first-child { - white-space: nowrap; } - - .usage-bar .usage-text.text-right { - vertical-align: top; - font-size: 1.4rem; - width: auto !important; } - - .usage-bar .usage-text.text-right:before { - content: ""; - display: table; - height: .1em; } - - .usage-bar.billing-cycle .usage-text { - font-size: 1.4rem; } - - .usage-bar.billing-cycle .usage-text.text-right { - vertical-align: bottom; } - - .progress.autocolor [data-percentage="1"], .progress.autocolor [data-percentage="2"], .progress.autocolor [data-percentage="3"], .progress.autocolor [data-percentage="4"], .progress.autocolor [data-percentage="5"], .progress.autocolor [data-percentage="6"], .progress.autocolor [data-percentage="7"], .progress.autocolor [data-percentage="8"], .progress.autocolor [data-percentage="9"], .progress.autocolor [data-percentage="10"] .progress.autocolor [data-percentage^="2"], .progress.autocolor [data-percentage^="3"], .progress.autocolor [data-percentage^="4"], .progress.autocolor [data-percentage^="5"], .progress.autocolor [data-percentage="60"], .progress.autocolor [data-percentage="61"], .progress.autocolor [data-percentage="62"], .progress.autocolor [data-percentage="63"], .progress.autocolor [data-percentage="64"] { - background-color: #1b7e28; } - - .progress.autocolor [data-percentage="65"], .progress.autocolor [data-percentage="66"], .progress.autocolor [data-percentage="67"], .progress.autocolor [data-percentage="68"], .progress.autocolor [data-percentage="69"], .progress.autocolor [data-percentage^="7"], .progress.autocolor [data-percentage^="8"] { - background-color: #ef6f00; } - - .progress.autocolor [data-percentage^="9"], .progress.autocolor [data-percentage="100"] { - background-color: #cf2a2a; } - - .b2b-seek-bar-container { - position: relative; } - .b2b-seek-bar-container div { - position: absolute; } - .b2b-seek-bar-container .b2b-seek-bar-track-container { - width: 100%; } - .b2b-seek-bar-container .b2b-seek-bar-track { - width: 100%; - height: 6px; - background-color: #cccccc; - border-radius: 10px; } - .b2b-seek-bar-container .b2b-seek-bar-track-fill { - width: 100%; - height: 6px; - background-color: #cccccc; - border-radius: 10px; - width: 0; - background-color: #157BB2; - transition: width 0s linear; } - - .seek-bar-container .seek-bar-knob-container { - transition: left 0s linear; } - - .b2b-seek-bar-container .b2b-seek-bar-knob { - width: 14px; - height: 14px; - border-radius: 10px; - top: -4px; - left: -8px; - border: 1px solid #cccccc; - background: white; + text-align: center; + width: 42px; } + .datepicker:focus { + outline: 1px dotted #191919; + outline-offset: -2px; } + .datepicker th[tabindex]:focus { + outline-offset: -15px; } + .datepicker td.day.focused { + background: #ededed; cursor: pointer; } - - .b2b-seek-bar-container .b2b-seek-bar-knob:focus { - outline: thin dotted #666; } - - .b2b-seek-bar-container.vertical { - width: 100%; - height: 100%; - margin: 0 auto; - position: relative; - border-radius: 10px; } - .b2b-seek-bar-container.vertical .b2b-seek-bar-track-container { - position: relative; - height: 100%; } - .b2b-seek-bar-container.vertical .b2b-seek-bar-track { + .datepicker td.day.focused.active { + background-color: #ededed; + color: #0568ae; } + .datepicker td.disabled { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5A5A5A; + cursor: default; } + .datepicker td.disabled:hover { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5A5A5A; + cursor: default; } + .datepicker td.disabled:hover .show-date { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5A5A5A; } + .datepicker td.disabled .show-date { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5A5A5A; } + .datepicker td.today { + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today:hover { + color: #FFFFFF; + background-color: #0568ae; + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today:active { + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today:focus { + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today.disabled { + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today.active { + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today.active:hover { + color: #FFFFFF; } + .datepicker td.selected { + color: #FFFFFF; + background-color: #95959500; } + .datepicker td.selected:hover { + color: #FFFFFF; + background-color: #95959500; } + .datepicker td.selected.disabled { + color: #FFFFFF; + background-color: #95959500; } + .datepicker td.active:not(.new) { + color: #FFFFFF; + border-color: #357ebd; } + .datepicker td.active:not(.new) .show-date { + color: #0568ae; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + .datepicker td.active:hover:not(.new) { + color: #FFFFFF; + border-color: #357ebd; } + .datepicker td.active:hover:not(.new) .show-date { + color: #0568ae; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + .datepicker .start-date .show-date { + background-color: #0568ae; + color: #FFFFFF !important; + border-radius: 5px 0 0 5px; + z-index: 1; } + .datepicker .start-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: 20px; position: absolute; - height: 100%; } - .b2b-seek-bar-container.vertical .b2b-seek-bar-track-fill { + width: 100%; + z-index: -1; } + .datepicker .between-date .show-date { + background-color: #0568ae; + color: #FFFFFF !important; } + .datepicker .between-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: 0; position: absolute; - bottom: 0; - height: 0; - width: 100%; } - .b2b-seek-bar-container.vertical .b2b-seek-bar-knob-container { - transition: bottom .01s linear; - position: relative; - bottom: 0; } - .b2b-seek-bar-container.vertical .b2b-seek-bar-knob { + width: 100%; + z-index: -1; } + .datepicker .between-date:first-child .show-date:before { + background-color: #FFFFFF; + content: ""; + height: 26px; + position: absolute; + left: 0; + width: 8px; } + .datepicker .end-date .show-date { + background-color: #0568ae; + color: #FFFFFF !important; + border-radius: 0 5px 5px 0; } + .datepicker .end-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: -20px; position: absolute; - border-radius: 10px; - top: -7px; - left: -4px; } - - .form-search .search-query { - width: 100% !important; } - - .form-search .well { - margin-top: 0; } - - .form-search > ul.nav > li.section { - min-height: 20px !important; } - - input.b2b-search-input-field { - margin-bottom: 0px; } - - .search-suggestion-list { + width: 100%; + z-index: -1; } + .datepicker .end-date:first-child .show-date:after { background-color: #FFFFFF; - border: 1px solid #ccc; - border-radius: 0 0 6px 6px; - box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); - margin-top: -5px; - max-height: 400px; - overflow-x: hidden; - overflow-y: auto; - padding: 15px 0; + content: ""; + height: 26px; position: absolute; - width: 100%; - z-index: 1000; } - .search-suggestion-list > li.active { - background-color: #cccccc; } - .search-suggestion-list:empty { - display: none; } - - .b2b-search-hightlight { - font-weight: bold; } - - input[type="text"]::-moz-placeholder { - color: #767676; - font-family: "Omnes-ECOMP-W02-Italic", Arial; } - - input[type="text"]:focus { - z-index: 1000; } - - input[type="text"] + .reset-field { + left: 0; + width: 8px; } + .datepicker .end-date:first-child .show-date::before { + background-color: #FFFFFF; } + .datepicker tr td.start-date:last-child .show-date:after { background-color: #FFFFFF; - height: 90%; - top: 5%; } - - .btn-search:focus { - outline: 1px dotted #0574ac; } - - .field-group input:not([type="button"])[disabled] ~ .btn-search { - background-color: #eee; } - - .btn-search[class*="btn"] { + content: ""; + height: 26px; + position: absolute; + right: 0; + width: 8px; } + .datepicker tr td.start-date:last-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker tr td.start-date:first-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker tr td.between-date:last-child .show-date:after { background-color: #FFFFFF; - background-size: 20px 20px; - border-radius: 0 1.5rem 1.5rem 0; - height: 3rem; - min-width: 4.4rem !important; - right: 0.15rem; - top: 0.15rem; - width: 4.4rem; } - - .search-suggestion-wrapper { - margin-bottom: 15px; - position: relative; } - .search-suggestion-wrapper .no-result { - padding: 0px 15px; } - - .search-suggestion-item { - color: #333333; - line-height: 4rem; - padding: 0 15px; + content: ""; + height: 26px; + position: absolute; + right: 0; + width: 8px; } + .datepicker tr td.between-date:last-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker tr td.between-date:first-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker tr td.end-date:last-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker tr td.end-date:first-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker th.datepicker-switch { + width: 198px; + font-size: 20px; + font-weight: normal; + cursor: default !important; } + .datepicker thead tr:first-child th { + cursor: pointer; + height: 60px; + line-height: 60px; } + .datepicker thead tr:first-child th.cw { + cursor: default; + background-color: transparent; } + .datepicker tfoot tr th { + cursor: pointer; + height: 60px; + line-height: 60px; + height: auto; + line-height: normal; } + .datepicker tfoot tr th li { + margin-bottom: 5px; } + .datepicker .prev { + color: transparent; + font-size: 0; + margin: 0 -1px -1px 0; + width: 46px; } + .datepicker .prev i { + color: #0568ae; + position: absolute; + font-size: 27px; + margin: 0; + top: 15px; + left: 8px; } + .datepicker .next { + color: transparent; + font-size: 0; + margin: 0 -1px -1px 0; + width: 46px; } + .datepicker .next i { + color: #0568ae; + position: absolute; + font-size: 27px; + margin: 0; + top: 15px; + right: 8px; } + .datepicker .cw { + font-size: 5px; + width: 12px; + padding: 0 2px 0 5px; + vertical-align: middle; } + .datepicker .due-date .show-date { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + background-color: #cf2a2a; + border-radius: 5px; + color: #FFFFFF !important; } + .datepicker .day.active .show-date:after { + border: 2px solid #0568ae; + border-radius: 7px; + content: ""; + display: block; + height: 30px; + left: 4px; + position: absolute; + top: 0; + width: 30px; } + .datepicker .day:focus .show-date:after { + border: 2px solid #0568ae; + border-radius: 7px; + content: ""; + display: block; + height: 30px; + left: 4px; + position: absolute; + top: 0; + width: 30px; + height: 30px; + left: 4px; + top: 0; + width: 30px; } + .datepicker .due-date.disabled .show-date:after { + border: 2px solid #0568ae; + border-radius: 7px; + content: ""; + display: block; + height: 30px; + left: 4px; + position: absolute; + top: 0; + width: 30px; } + .datepicker .day.due-date:focus .show-date:after { + height: 30px; + left: 4px; + top: 0; + width: 30px; } + .datepicker .due-date.old:after { + visibility: hidden; } + .datepicker .due-date.new:after { + visibility: hidden; } + .datepicker .due-date.active:after { + border-color: #FFFFFF; } + .datepicker .due-date.active.focused { + color: #0568ae !important; } + .datepicker .due-date.active.focused:after { + border-color: #cf2a2a !important; } + .datepicker .dow { + height: 24px; + width: 42px; + font-weight: normal; position: relative; - z-index: 1000; } - .search-suggestion-item:hover { - background-color: #e4e4e4; - cursor: pointer; } - .search-suggestion-item:focus { - background-color: #e4e4e4; - cursor: pointer; } - .search-suggestion-item a { - color: #333333; - text-decoration: none; } - - .btn-search i { - color: #767676; } - - input.b2b-search-input-field:focus ~ .btn-search > i, .btn-search:focus > i { - color: #0568ae; } - - button.btn-search[disabled] { - cursor: not-allowed; } - button.btn-search[disabled] i { - color: #767676; } - - .innershadow { - -webkit-background-blend-mode: mutilply; - box-shadow: 0 3px 0 2px rgba(0, 0, 0, 0.08); } - - .linkSelectorModule { + overflow: hidden; + color: transparent; + letter-spacing: -6px; + margin: 0 -1px -1px 0; } + .datepicker .dow span[aria-hidden="true"] { + bottom: 0; + color: #5A5A5A; + display: block; + left: 1px; + letter-spacing: 0; + line-height: .9; + margin: 0 auto; + padding: 0; + position: relative; + width: 22px; } + .datepicker .calendar-legend { + margin-top: 3px; + margin-bottom: 20px; } + .datepicker .calendar-legend li { + font-size: 1.4rem; + font-weight: normal; + margin-bottom: 5px; + padding-left: 10px; + padding-top: 5px; + position: relative; } + .datepicker i.legend-due-date { + background-color: #cf2a2a; + border-radius: 5px; + height: 18px; + width: 18px; + margin-right: 8px; + vertical-align: middle; + display: inline-block; } + .datepicker i.legend-selected-date { + background-color: #FFFFFF; + border: 2px solid #0568ae; + border-radius: 5px; + height: 18px; + width: 18px; + margin-right: 8px; + vertical-align: middle; + display: inline-block; } + .datepicker i.legend-selectedisdue { + background-color: #FFFFFF; + border: 2px solid #0568ae; + border-radius: 5px; + display: inline-block; + height: 18px; + margin-right: 8px; position: relative; - height: 32px; - line-height: 20px; - border: 0px; - width: auto; - display: block; } - .linkSelectorModule .icon-primary-down { - font-size: 23px; - margin-top: -10px; - position: absolute; - top: 50%; - margin-left: -30px; } - .linkSelectorModule .selectModule { - background-color: transparent; - border: none; - color: #0568ae; - cursor: pointer; - border: 1px solid transparent; - box-shadow: none; - padding-right: 35px; - position: relative; - user-select: none; - font-size: 1.6rem; } - .linkSelectorModule .selectModule:focus { - border: 1px dotted #ccc; - box-shadow: none; - -moz-user-select: none; } - .linkSelectorModule .selectModule:hover { - text-decoration: underline; } - .linkSelectorModule .active + .moduleWrapper:before { - background-color: #FFFFFF; - border-color: #d2d2d2; - border-style: solid; - border-width: 1px 1px 0 0; + vertical-align: middle; + width: 18px; } + .datepicker i.legend-selectedisdue:after { + background-color: #cf2a2a; + border-radius: 3px; content: ""; display: block; - height: 15px; - right: 122px; - margin: 0; + height: 10px; + left: 2px; position: absolute; - top: -8px; - -webkit-transform: rotate(-45deg); - transform: rotate(-45deg); - width: 15px; } - .linkSelectorModule .moduleWrapper { - top: 40px; } - .linkSelectorModule ul.awd-module-list { - border-radius: 6px 6px 0px 0px; } - - .selectorModule .icon-primary-down { - font-size: 23px; - margin-top: -11px; - position: absolute; - right: 4px; - top: 50%; } - - .selectorModule .selectModule { - border: 1px solid #d2d2d2; - border-radius: 6px; - box-shadow: 1px 5px 2px -5px rgba(0, 0, 0, 0.15); + top: 2px; + width: 10px; } + .datepicker .text-left { + width: 100%; } + .datepicker .active.old { + background-color: #ededed !important; + color: #ededed !important; } + +.datepicker-inline { + width: 220px; } + +.datepicker.datepicker-rtl { + direction: rtl; } + .datepicker.datepicker-rtl td span { + float: right; } + +.datepicker-dropdown { + top: 0; + left: 0; } + .datepicker-dropdown:before { + content: " "; + display: inline-block; + border-left: 10px solid transparent; + border-right: 10px solid transparent; + border-bottom: 10px solid #d2d2d2; + border-top: 0; + border-bottom-color: rgba(0, 0, 0, 0.2); + position: absolute; } + .datepicker-dropdown:after { + content: " "; + display: inline-block; + border-left: 10px solid transparent; + border-right: 10px solid transparent; + border-bottom: 10px solid #fff; + border-top: 0; + position: absolute; } + +.datepicker-dropdown.datepicker-orient-left:before { + left: 16px; } + +.datepicker-dropdown.datepicker-orient-left:after { + left: 16px; } + +.datepicker-dropdown.datepicker-orient-right:before { + right: 16px; } + +.datepicker-dropdown.datepicker-orient-right:after { + right: 16px; } + +.datepicker-dropdown.datepicker-orient-top:before { + top: -10px; } + +.datepicker-dropdown.datepicker-orient-top:after { + top: -9px; } + +.datepicker-dropdown.datepicker-orient-bottom:before { + bottom: -7px; + border-bottom: 0; + border-top: 7px solid #959595; } + +.datepicker-dropdown.datepicker-orient-bottom:after { + bottom: -6px; + border-bottom: 0; + border-top: 6px solid #fff; } + +.datepicker.days div.datepicker-days { + display: block; } + +.datepicker.months div.datepicker-months { + display: block; } + +.datepicker.years div.datepicker-years { + display: block; } + +.show-date { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + color: #0568ae; + height: 26px; + line-height: 26px; + margin: 4px auto 0; + width: 26px; } + +.input-group.date .input-group-addon i { + cursor: pointer; + width: 16px; + height: 16px; } + +.datepicker.dropdown-menu { + box-shadow: 0 10px 15px -10px rgba(0, 0, 0, 0.7); + position: absolute; + top: 100%; + left: 0; + float: left; + display: none; + margin-top: 13px; + width: 290px; + list-style: none; + background-color: #FFFFFF; + border: 1px solid #d2d2d2; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 5px; + color: #333333; + font-size: 13px; + line-height: 1.428571429; + z-index: 1050; } + .datepicker.dropdown-menu th { display: block; - width: 100%; - padding-left: 15px; - background-color: transparent; - cursor: pointer; } - .selectorModule .selectModule:focus { - border: 1px solid #0568ae; - -moz-user-select: none; } - .selectorModule .selectModule span.module-data { - position: absolute; - bottom: 6px; - line-height: 20px; } - .selectorModule .selectModule img + span.module-data { - padding-left: 45px; } - - .selectorModule .selectModule.active { - border-bottom-right-radius: 0px; - border-bottom-left-radius: 0px; } - - .selectorModule .moduleWrapper { + float: left; + padding: 0; + position: relative; } + .datepicker.dropdown-menu td { + display: block; + float: left; + padding: 0; + position: relative; } + +.s { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: -62px 0; } + +.m { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: -5px 0; } + +.t { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: -19px 0; } + +.w { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: -34px 0; } + +.f { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: -49px 0; } + +.d { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: 0 0; } + +.l { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: 0 0; } + +.v { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: 0 0; } + +.j { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: 0 0; } + +.b2b-coachmark-label { + z-index: 1060; + opacity: 1; + cursor: not-allowed; + position: relative; } + +.b2b-coachmark-highlight { + border: 1px solid #d3d3d3; + cursor: default; + z-index: 1045; + opacity: 1; + background-color: #ffffff; + border-radius: 10px; + position: relative; + box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.25); + padding: 10px; + position: absolute; } + +.b2b-coachmark-highlight-mask { + z-index: 1100; + opacity: .1; } + +.b2b-coachmark-container { + border: 1px solid #cccccc; + width: 316px; + pointer-events: auto; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + font-size: 16px; + -webkit-transition: opacity .2s ease-out; + -moz-transition: opacity .2s ease-out; + transition: opacity .2s ease-out; + background: #fff; + border-radius: 20px; + box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.15); + color: #333; + line-height: 20px; + position: absolute; + top: 50px; + left: -97px; + display: block; + background-color: #ffffff; + z-index: 1050; + opacity: 1; } + .b2b-coachmark-container i.b2b-coachmark-caret { position: absolute; - width: 100% !important; - border-top: none; } - - .selectorModule ul.awd-module-list { - border-radius: 0px 0px 6px 6px; } - - .selectorModule .large > img { - height: 30px; + top: -12px; + left: 47%; + opacity: 1; + z-index: 1050; } + .b2b-coachmark-container i.b2b-coachmark-caret:before { + content: ""; + border-left: 12px solid transparent; + border-right: 12px solid transparent; + border-bottom: 12px solid #d3d3d3; position: absolute; - width: 30px; - top: 20px; - left: 15px; } - - .selectModule { - background-color: transparent; + top: -1px; } + .b2b-coachmark-container i.b2b-coachmark-caret:after { + content: ""; + border-left: 12px solid transparent; + border-right: 12px solid transparent; + border-bottom: 12px solid #fff; + position: absolute; } + .b2b-coachmark-container .b2b-coachmark-header { + position: relative; + height: 47px; + overflow: hidden; } + .b2b-coachmark-container .b2b-coachmark-header .corner-button { + box-shadow: 0 -24px 0 0 #f2f2f2 inset; + height: 69px; + position: absolute; + right: -33px; + top: -38px; + transform: rotate(45deg); + width: 69px; } + .b2b-coachmark-container .b2b-coachmark-countlabel { + font-size: 12px; font-family: "Omnes-ECOMP-W02", Arial; color: #333333; - font-size: 1.6rem; - height: 36px; - line-height: 35px; - margin-bottom: 0; - position: relative; - text-align: left; - top: 0; - z-index: 10; - padding: 0px; - margin: 0px; - cursor: pointer; } - - .moduleWrapper { - background-color: #FFFFFF; - position: absolute; - color: #191919; - z-index: 9999; - box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15); - border-radius: 0px 0px 6px 6px; } - .moduleWrapper .module-list-item img { - height: 30px; + margin-left: 20px; + margin-top: 20px; } + .b2b-coachmark-container .b2b-coachmark-content { + padding: 0px 20px 20px 20px; + float: left; } + .b2b-coachmark-container .b2b-coachmark-content .icon-misc-dimmer { + font-size: 32px; + float: left; + margin-right: 10px; + width: 32px; } + .b2b-coachmark-container .b2b-coachmark-content .offscreen-text { position: absolute; - width: 30px; - top: 30px; - left: 15px; - align-self: center; } - .moduleWrapper span { - display: block; - white-space: nowrap; - font-size: 1.5rem; } - - .awd-module-list { - overflow-y: auto; - z-index: 9999; - max-height: 360px; - border: 1px solid #d2d2d2; } - .awd-module-list .module-list-item > .module-data { - overflow: ellipsis; - white-space: nowrap; - line-height: 20px; - font-size: 1.6rem; - border-bottom: 1px dotted #959595; - margin: 0px 15px 0px 15px; - padding-right: 50px; - padding-bottom: 14px; - padding-top: 14px; - align-self: center; + left: -10000px; + top: auto; + width: 1px; + height: 1px; + overflow: hidden; } + .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-content-header { + font-size: 16px; + color: #333333; + line-height: 18px; + float: left; + width: 220px; } + .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-description { + font-size: 14px; + line-height: 18px; + color: #333333; + width: 100%; + float: left; + margin-top: 15px; } + .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-btn-group { + margin-top: 20px; + float: left; + text-align: right; width: 100%; } - .awd-module-list .module-list-item:hover { - background-color: #f2f2f2; } - .awd-module-list .module-list-item:active { - background-color: #f2f2f2; } - .awd-module-list .module-list-item[aria-selected="true"] { - background-color: #f2f2f2; } - - .module-list-item { - cursor: pointer; + .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-btn-group .b2b-coachmark-link { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 15px; + color: #0574ac; + line-height: 18px; + margin-right: 20px; } + .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-btn-group button { + font-size: 15px; + margin: 0px; } + +.datepicker { + background-color: #fff; + padding: 0; + border-radius: 5px; + direction: ltr; } + +.datepicker-inline { + width: 220px; } + +.datepicker.datepicker-rtl { + direction: rtl; } + +.datepicker.datepicker-rtl td span { + float: right; } + +.datepicker-dropdown { + top: 0; + left: 0; } + +/* ARROW */ +.datepicker-dropdown:before { + content: " "; + display: inline-block; + border-left: 10px solid transparent; + border-right: 10px solid transparent; + border-bottom: 10px solid #d2d2d2; + border-top: 0; + border-bottom-color: rgba(0, 0, 0, 0.2); + position: absolute; } + +.datepicker-dropdown:after { + content: " "; + display: inline-block; + border-left: 10px solid transparent; + border-right: 10px solid transparent; + border-bottom: 10px solid #fff; + border-top: 0; + position: absolute; } + +.datepicker-dropdown.datepicker-orient-left:before, +.datepicker-dropdown.datepicker-orient-left:after { + left: 255px; } + +.datepicker-dropdown.datepicker-orient-right:before, +.datepicker-dropdown.datepicker-orient-right:after { + right: 16px; } + +.datepicker-dropdown.datepicker-orient-top:before { + top: -10px; } + +.datepicker-dropdown.datepicker-orient-top:after { + top: -9px; } + +.datepicker-dropdown.datepicker-orient-bottom:before { + bottom: -7px; + border-bottom: 0; + border-top: 7px solid #959595; } + +.datepicker-dropdown.datepicker-orient-bottom:after { + bottom: -6px; + border-bottom: 0; + border-top: 6px solid #fff; } + +.datepicker > div { + display: none; } + +.datepicker.days div.datepicker-days { + display: block; } + +.datepicker.months div.datepicker-months { + display: block; } + +.datepicker.years div.datepicker-years { + display: block; } + +.datepicker table { + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + margin: 0 0 0 0; } + +.datepicker td, +.datepicker th { + text-align: center; + display: block; + width: 30px; + height: 30px; + border: none; } + +.datepicker tbody :focus { + outline: none; } + +.datepicker td.day { + background-color: transparent; + color: #0568ae; + cursor: pointer; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 16px; + height: 34px; + line-height: 30rem; + margin: -2px -1px 0 0; + overflow: hidden; + text-align: center; + width: 42px; } + +.datepicker :focus { + outline: 1px dotted #000; + outline-offset: -2px; } + +.datepicker td.day.focused { + background: #ededed; + cursor: pointer; } + +.datepicker td.day.focused.active { + background-color: #ededed; + color: #0568ae; } + +.datepicker td.disabled, +.datepicker td.disabled:hover { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5a5a5a; + cursor: default; } + +.datepicker td.today, +.datepicker td.today:hover, +.datepicker td.today.disabled { + color: #fff; + background-color: #0568ae; } + +.datepicker td.today.active, +.datepicker td.today:active, +.datepicker td.today:hover, +.datepicker td.today:focus { + color: #fff; + background-color: #0568ae; } + +.datepicker td.today.active:hover { + color: #fff; } + +.datepicker td.selected, +.datepicker td.selected:hover, +.datepicker td.selected.disabled { + color: #ffffff; + background-color: #959595; } + +.datepicker td.active:not(.new), +.datepicker td.active:hover:not(.new) { + color: #ffffff; + border-color: #357ebd; } + +.show-date { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + color: #0568ae; + height: 26px; + line-height: 26px; + margin: 4px auto 0; + width: 26px; } + +.datepicker .start-date .show-date, +.datepicker .between-date .show-date, +.datepicker .end-date .show-date { + background-color: #0568ae; + color: #fff !important; } + +.datepicker .start-date .show-date { + border-radius: 5px 0 0 5px; + z-index: 1; } + +.datepicker .start-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: 20px; + position: absolute; + width: 100%; + z-index: -1; } + +.datepicker .between-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: 0; + position: absolute; + width: 100%; + z-index: -1; } + +.datepicker .end-date .show-date { + border-radius: 0 5px 5px 0; } + +.datepicker .end-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: -20px; + position: absolute; + width: 100%; + z-index: -1; } + +.datepicker .between-date:first-child .show-date:before { + background-color: #fff; + content: ""; + height: 26px; + position: absolute; + left: 0; + width: 8px; } + +.datepicker .end-date:first-child .show-date:after { + background-color: #fff; + content: ""; + height: 26px; + position: absolute; + left: 0; + width: 8px; } + +.datepicker .end-date:first-child .show-date::before { + background-color: #fff; } + +.datepicker tr td.start-date:last-child .show-date:after, +.datepicker tr td.between-date:last-child .show-date:after { + background-color: #fff; + content: ""; + height: 26px; + position: absolute; + right: 0; + width: 8px; } + +.datepicker tr td.start-date:last-child:focus .show-date:after, +.datepicker tr td.end-date:last-child:focus .show-date:after, +.datepicker tr td.between-date:last-child:focus .show-date:after, +.datepicker tr td.start-date:first-child:focus .show-date:after, +.datepicker tr td.end-date:first-child:focus .show-date:after, +.datepicker tr td.between-date:first-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + +.datepicker td.active:not(.new) .show-date, +.datepicker td.active:hover:not(.new) .show-date { + color: #0568ae; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + +.datepicker td.disabled .show-date, +.datepicker td.disabled:hover .show-date { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5a5a5a; } + +.datepicker td span { + display: block; + width: 23%; + height: 54px; + line-height: 54px; + float: left; + margin: 1%; + cursor: pointer; + border-radius: 4px; } + +.datepicker td span:hover { + background: #eeeeee; } + +.datepicker td span.disabled, +.datepicker td span.disabled:hover { + background: none; + color: #5a5a5a; + cursor: default; } + +.datepicker td span.active, +.datepicker td span.active:hover, +.datepicker td span.active.disabled { + color: #ffffff; + background-color: #0568ae; + border-color: #357ebd; } + +.datepicker th.datepicker-switch { + width: 198px; + font-size: 20px; + font-weight: normal; + cursor: default !important; } + +.datepicker thead tr:first-child th, +.datepicker tfoot tr th { + cursor: pointer; + height: 60px; + line-height: 60px; } + +.datepicker tfoot tr th { + height: auto; + line-height: normal; } + +.datepicker tfoot tr th li { + margin-bottom: 5px; } + +.datepicker .prev, +.datepicker .next { + color: transparent; + font-size: 0; + margin: 0 -1px -1px 0; + width: 46px; } + +.datepicker .prev i, +.datepicker .next i { + color: #0568ae; + position: absolute; + font-size: 27px; + margin: 0; + top: 15px; } + +.datepicker .prev i { + left: 8px; } + +.datepicker .next i { + right: 8px; } + +.datepicker .cw { + font-size: 5px; + width: 12px; + padding: 0 2px 0 5px; + vertical-align: middle; } + +.datepicker thead tr:first-child th.cw { + cursor: default; + background-color: transparent; } + +.input-group.date .input-group-addon i { + cursor: pointer; + width: 16px; + height: 16px; } + +.datepicker.dropdown-menu { + box-shadow: 0 10px 15px -10px rgba(0, 0, 0, 0.7); + position: absolute; + top: 100%; + left: 0; + float: left; + display: none; + margin-top: 13px; + width: 290px; + list-style: none; + background-color: #ffffff; + border: 1px solid #d2d2d2; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 5px; + color: #333333; + font-size: 13px; + line-height: 1.428571429; + z-index: 1050; } + +.datepicker.dropdown-menu th, +.datepicker.dropdown-menu td { + display: block; + float: left; + padding: 0; + position: relative; } + +.datepicker .due-date .show-date { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + background-color: #cf2a2a; + border-radius: 5px; + color: #fff !important; } + +.datepicker .day.active .show-date:after, +.datepicker .day:focus .show-date:after, +.datepicker .due-date.disabled .show-date:after { + border: 2px solid #0568ae; + border-radius: 7px; + content: ""; + display: block; + height: 30px; + left: 4px; + position: absolute; + top: 0; + width: 30px; } + +.datepicker .day:focus .show-date:after { + height: 30px; + left: 4px; + top: 0; + width: 30px; } + +.datepicker .day.due-date:focus .show-date:after { + height: 30px; + left: 4px; + top: 0; + width: 30px; } + +.datepicker .due-date.old:after, +.datepicker .due-date.new:after { + visibility: hidden; } + +.datepicker .due-date.active:after { + border-color: #fff; } + +.datepicker .due-date.active.focused { + color: #0568ae !important; } + +.datepicker .due-date.active.focused:after { + border-color: #cf2a2a !important; } + +.datepicker .dow { + height: 24px; + width: 42px; + font-weight: normal; + position: relative; + overflow: hidden; + color: transparent; + letter-spacing: -6px; + margin: 0 -1px -1px 0; } + +.datepicker .dow span[aria-hidden="true"] { + bottom: 0; + color: #5a5a5a; + display: block; + left: 1px; + letter-spacing: 0; + line-height: .9; + margin: 0 auto; + padding: 0; + position: relative; + width: 22px; } + +.datepicker .calendar-legend { + margin-top: 3px; + margin-bottom: 20px; } + +.datepicker .calendar-legend li { + font-size: 1.4rem; + font-weight: normal; + margin-bottom: 5px; + padding-left: 10px; + padding-top: 5px; + position: relative; } + +.datepicker i.legend-due-date { + background-color: #cf2a2a; + border-radius: 5px; + height: 18px; + width: 18px; + margin-right: 8px; + vertical-align: middle; + display: inline-block; } + +.datepicker i.legend-selected-date { + background-color: #fff; + border: 2px solid #0568ae; + border-radius: 5px; + height: 18px; + width: 18px; + margin-right: 8px; + vertical-align: middle; + display: inline-block; } + +.datepicker i.legend-selectedisdue { + background-color: #fff; + border: 2px solid #0568ae; + border-radius: 5px; + display: inline-block; + height: 18px; + margin-right: 8px; + position: relative; + vertical-align: middle; + width: 18px; } + +.datepicker i.legend-selectedisdue:after { + background-color: #cf2a2a; + border-radius: 3px; + content: ""; + display: block; + height: 10px; + left: 2px; + position: absolute; + top: 2px; + width: 10px; } + +.datepicker .text-left { + width: 100%; } + +.datepicker .active.old { + background-color: #ededed !important; + color: #ededed !important; } + +.s, +.m, +.t, +.w, +.f, +.d, +.l, +.v, +.j { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: white; + background-repeat: no-repeat; } + +.s { + background-position: -62px 0; } + +.m { + background-position: -5px 0; } + +.t { + background-position: -19px 0; } + +.w { + background-position: -34px 0; } + +.f { + background-position: -49px 0; } + +/* spanish */ +.d { + background-position: 0 0; } + +.l { + background-position: 0 0; } + +.v { + background-position: 0 0; } + +.j { + background-position: 0 0; } + +.datepicker-container { + position: relative; } + +.btn-calendar-icon:focus .icon-primary-calendar { + outline: 1px dotted #191919; } + +.btn-calendar-icon:focus { + outline: none; } + +/* remove focus outline when dropdown is opened */ +/*resolve blue focus outline over dropdown with error*/ +select { + margin-right: -1; + max-width: 400px; + height: 36px; + line-height: 25px; + width: 400px; + background-color: #95959521; } + +.selectWrap.disabled .icon-primary-down { + color: #d6d6d6; } + +.selectWrap.disabled input.awd-select { + z-index: 0; + padding: 10px 45px 10px 15px; + text-indent: 0; } + +.selectWrap.disabled button.awd-select { + z-index: 0; + text-indent: 15px; } + +.selectWrap.disabled:after { + color: #5A5A5A; + cursor: not-allowed; } + +input.awd-select { + background-color: transparent; + border: 1px solid #d2d2d2; + border-radius: 6px; + box-shadow: 1px 5px 2px -5px rgba(0, 0, 0, 0.15); + color: #333333; + display: block; + font-family: "Omnes-ECOMP-W02", Arial; + /*font-size: 1.6rem;*/ + height: 36px; + line-height: 0; + margin-bottom: 0; + position: relative; + text-align: left; + top: 0; + width: 100%; + z-index: 10; + padding: 12px 45px 8px 15px; + user-select: none; } + input.awd-select:focus { + border-color: #0568ae !important; + text-overflow: ellipsis; + padding-right: 45px; } + +button.awd-select { + background-color: transparent; + border: 1px solid #d2d2d2; + border-radius: 6px; + box-shadow: 1px 5px 2px -5px rgba(0, 0, 0, 0.15); + color: #333333; + display: block; + font-family: "Omnes-ECOMP-W02", Arial; + /*font-size: 1.6rem;*/ + height: 36px; + line-height: 36px; + margin-bottom: 5; + position: relative; + text-align: left; + top: 0; + width: 100%; + z-index: 10; } + button.awd-select:not(.large) { + text-indent: 15px; + white-space: nowrap; overflow: hidden; + text-overflow: clip; + text-overflow: ellipsis; } + button.awd-select img { + height: 26px; + margin-right: 7px; + margin-top: -10px; position: relative; - overflow: ellipsis; - white-space: nowrap; - z-index: 1000; - color: #191919; - display: flex; } - .module-list-item:last-of-type .module-data { - border-bottom: none; } - .module-list-item img + span.module-data { - padding-left: 45px; } - - .module-groups:first-of-type .module-list-item:last-of-type .module-data { - border-bottom: 1px solid #959595; } - - .module-groupitem { - padding-bottom: 4px; } - - .selectorModule.large { - height: 72px; - vertical-align: middle; - text-align: left; } - .selectorModule.large .moduleWrapper { - top: 71px; } - .selectorModule.large input { - height: 72px; - vertical-align: middle; - text-align: left; } - .selectorModule.large button { - height: 72px; - vertical-align: middle; - text-align: left; } - .selectorModule.large .selectModule img { - left: 15px; - top: 21px; } - - ul.module-groupitem li { - margin: 0 -15px 0 -15px; } - - span.module-data span { - display: block; - line-height: 20px; - font-size: 1.5rem; } - - li.module-groups { - cursor: default !important; - padding: 18px 15px 0px 15px; } - - li.module-list-item[selected]:before { - box-sizing: border-box; - display: inline-block; - font-size: 2em; - height: 1em; + top: 2px; + vertical-align: text-bottom; } + button.awd-select:focus { + border-color: #0568ae !important; } + button.awd-select i { + font-size: 23px; + position: absolute; + right: 33px; + top: 5px; + z-index: 1000; } + +button.awd-select.large { + align-items: center; + display: flex; + height: 60px; + line-height: 20px; + overflow: hidden; + padding-left: 70px; + vertical-align: middle; } + button.awd-select.large img { + height: 40px; + left: 20px; position: absolute; top: 20px; - right: 0px; - vertical-align: middle; - width: 1em; - color: #007a3e; } - - ul.module-optinalcta { - position: relative; - height: 44px; - margin-top: 0px; - border-bottom: 1px solid #d2d2d2; - border-left: 1px solid #d2d2d2; - border-right: 1px solid #d2d2d2; - border-radius: 0px 0px 6px 6px; } - ul.module-optinalcta li { - position: absolute; - bottom: 10px; } - ul.module-optinalcta a { - text-indent: 15px; - padding: 15px; } - - .b2b-slider-container { - position: relative; } - .b2b-slider-container.slider-disabled { - cursor: not-allowed !important; } - .b2b-slider-container div { - position: absolute; } - .b2b-slider-container .slider-track-container { - width: 100%; - cursor: pointer; } - .b2b-slider-container .slider-track { - width: 100%; - height: 6px; - background-color: #cccccc; - border-radius: 10px; - border: 1px solid #cccccc; } - .b2b-slider-container .slider-track-fill { - width: 100%; - height: 6px; - background-color: #cccccc; - border-radius: 10px; - width: 0; - background-color: #157BB2; - transition: width 0s linear; - border: 1px solid #cccccc; } - .b2b-slider-container .slider-knob-container { - transition: left 0s linear; } - .b2b-slider-container .slider-knob-container.slider-knob-hidden { - display: none !important; } - .b2b-slider-container .slider-knob { - width: 14px; - height: 14px; - border-radius: 10px; - top: -4px; - left: -8px; - border: 1px solid #cccccc; - background: white; - cursor: pointer; } - .b2b-slider-container .slider-knob:focus { - outline: thin dotted #666; } - - .b2b-slider-endpoints-container { - margin-top: 13px; - color: #333; - font-size: 12px; } - .b2b-slider-endpoints-container .b2b-slider-endpoints-left { - float: left; - line-height: 100%; } - .b2b-slider-endpoints-container .b2b-slider-endpoints-right { - float: right; - line-height: 100%; } - .b2b-slider-endpoints-container::after { - clear: both; - content: ""; - display: block; } - - .b2b-slider-container.vertical { - width: 100%; - height: 100%; - margin: 0 auto; - position: relative; - border-radius: 10px; } - .b2b-slider-container.vertical .slider-track-container { - position: relative; - height: 100%; } - .b2b-slider-container.vertical .slider-track { - position: absolute; - height: 100%; } - .b2b-slider-container.vertical .slider-track-fill { - position: absolute; - bottom: 0; - height: 0; - width: 100%; } - .b2b-slider-container.vertical .slider-knob-container { - transition: bottom 0s linear; - position: relative; - bottom: 0; } - .b2b-slider-container.vertical .slider-knob-container.slider-knob-hidden { - display: none !important; } - .b2b-slider-container.vertical .slider-knob { - position: absolute; - border-radius: 10px; - top: -7px; - left: -4px; } - - .icon-primary-spinner { - background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%20id%3D%22svg-spinner%22%20x%3D%220px%22%20y%3D%220px%22%20xml%3Aspace%3D%22preserve%22%3E%0A%20%20%20%3Cpath%20fill%3D%22%23F5F5F5%22%20d%3D%22M18%2036C8.1%2036%200%2027.9%200%2018S8.1%200%2018%200s18%208.1%2018%2018-8.1%2018-18%2018zm0-31.5c-7.5%200-13.5%206-13.5%2013.5S10.6%2031.5%2018%2031.5c7.5%200%2013.5-6.1%2013.5-13.5%200-7.5-6-13.5-13.5-13.5z%22%2F%3E%0A%20%20%20%3Cpath%20fill%3D%22%230568AE%22%20id%3D%22spinner%22%20d%3D%22M30.7%205.3l-3.1%203.2c2.4%202.4%203.9%205.8%203.9%209.5%200%207.4-6.1%2013.5-13.5%2013.5S4.5%2025.4%204.5%2018%2010.6%204.5%2018%204.5V0C8.1%200%200%208.1%200%2018s8.1%2018%2018%2018%2018-8.1%2018-18c0-5-2-9.5-5.3-12.7z%22%3E%0A%20%20%20%20%20%20%3CanimateTransform%20%0A%20%20%20%20%20%20%20%20%20attributeType%3D%22xml%22%0A%20%20%20%20%20%20%20%20%20attributeName%3D%22transform%22%0A%20%20%20%20%20%20%20%20%20type%3D%22rotate%22%0A%20%20%20%20%20%20%20%20%20from%3D%220%2018%2018%22%0A%20%20%20%20%20%20%20%20%20to%3D%22360%2018%2018%22%0A%20%20%20%20%20%20%20%20%20dur%3D%221.0s%22%0A%20%20%20%20%20%20%20%20%20repeatCount%3D%22indefinite%22%0A%20%20%20%20%20%20%2F%3E%0A%20%20%20%3C%2Fpath%3E%0A%3C%2Fsvg%3E"); - height: 50px; - width: 50px; } - - .icon-primary-spinner.small { - margin-right: 5px; - height: 30px !important; - width: 30px !important; } - - .isIE .icon-primary-spinner, - .isIE .icon-primary-spinner.small { - animation: spinner 1s linear infinite; } - - .ds2-no-colors .icon-primary-spinner { - animation: spinner 1s linear infinite; - border: 5px dotted transparent; - border-radius: 50%; } - - @keyframes spinner { - 0% { - transform: rotate(0deg); } - 100% { - transform: rotate(359deg); } } - - .b2b-status-tracker > .btn-arrow:nth-of-type(1) { - margin-right: 10px; } - - .b2b-status-tracker > .btn-arrow:nth-of-type(2) { - margin-left: 20px; } - - .b2b-status-tracker > .btn-arrow { - height: 20px; - margin-top: 25px; - overflow: visible; } - .b2b-status-tracker > .btn-arrow > .btn-secondary > .icon-primary-left { - margin-right: 5px; - color: #0574ac; } - .b2b-status-tracker > .btn-arrow > .btn-secondary > .icon-primary-right { - color: #0574ac; } - - .b2b-status-tracker > .b2b-status-tracker-step { - padding: 0; - position: relative; } - - .b2b-status-tracker-step { - margin-left: 5px; } - - .b2b-status-tracker > .b2b-status-tracker-step .b2b-status-tracker-heading { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 14px; - color: #191919; - margin-bottom: 10px; } - - .b2b-status-tracker > .b2b-status-tracker-step.complete > .progress > .progress-bar { - width: 100%; - background-color: #1b7e28; } - - .b2b-status-tracker > .b2b-status-tracker-step.complete .icoControls-approval { - color: #1b7e28; } - - .b2b-status-tracker > .b2b-status-tracker-step.current > .progress > .progress-bar { - width: 100%; - background-color: #333333; } - - .b2b-status-tracker > .b2b-status-tracker-step.current .icon-misc-time { - color: #333333; } - - .b2b-status-tracker > .b2b-status-tracker-step.pending > .progress > .progress-bar { - width: 100%; - background-color: #ffb81c; } - - .b2b-status-tracker > .b2b-status-tracker-step.pending .icoControls-statusokay { - color: #ffb81c; } - - .b2b-status-tracker > .b2b-status-tracker-step.actionRequired > .progress > .progress-bar { - width: 100%; - background-color: #cf2a2a; } - - .b2b-status-tracker > .b2b-status-tracker-step.actionRequired .icoSecurityalerts-alert { - color: #cf2a2a; } - - .b2b-status-tracker > .b2b-status-tracker-step.notAvailable > .progress > .progress-bar { - width: 100%; - background-color: #767676; } - - .b2b-status-tracker > .b2b-status-tracker-step.notAvailable .icoControls-restricted { - color: #767676; } - - .b2b-status-tracker > .b2b-status-tracker-step > .progress { - position: relative; - border-radius: 1.5px; - height: 3px; - margin-bottom: 10px; - background-color: #c5c5c5; } - .b2b-status-tracker > .b2b-status-tracker-step > .progress > .progress-bar { - width: 0; - height: 3px; } - - .b2b-status-tracker > .b2b-status-tracker-step > .b2b-status-tracker-estimate { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 14px; - color: #191919; - margin-bottom: 10px; } - - .b2b-status-tracker > .b2b-status-tracker-step > .b2b-status-tracker-description { - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 12px; - color: #767676; - padding-right: 15px; } - .b2b-status-tracker > .b2b-status-tracker-step > .b2b-status-tracker-description a { - cursor: pointer; } - - .step-indicator { - height: auto; - padding: 40px 0; } - - .step-heading { - color: #333333; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 3.8rem; - line-height: 0.8; } - - .steps { - display: flex; - height: 5px; - margin-top: 60px; - position: relative; } - - .steps li { - color: #5a5a5a; - flex: 1; - margin-right: 5px; - background-color: #c4c4c4; - outline: 1px solid transparent; } - - .steps li:first-child { - border-radius: 4px 0 0 4px; } - - .steps li:last-child { - margin-right: 0; - border-radius: 0 4px 4px 0; } - - .steps li.step-on, - .steps li.step-done { - background-color: #007a3e; - color: #007a3e; - border: 1px solid transparent; } - - .step-text { - bottom: 29px; - display: inline-block; - font-size: 1.8rem; - margin-top: 0; - position: relative; - white-space: nowrap; } - - .step-on .step-text { - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - - .steps li .step-text[data-large-text]:before { - content: attr(data-large-text) " "; } - - .step-confirmation { - color: #007a3e; - margin-bottom: 30px; } - - .step-confirmation > div { - display: flex; } - - .step-confirmation > div i { - color: #007a3e; - font-size: 50px; - margin-right: 10px; } - - .step-confirmation.centered > div i { - margin-left: -60px; } - - .step-confirmation > div h3 { - font-size: 2.4rem; - margin: 26px 0 20px; } - - .step-confirmation > p { - margin: 0; } - - @media (max-width: 1024px) { - .step-indicator { - padding: 25px 0; } - .steps { - margin-top: 0; } - .step-heading { - font-size: 2.4rem; - margin-bottom: 11px; } - .step-text { - display: none; } - .step-on .step-text { - bottom: 6px; - display: block; - font-size: 1.2rem; - left: 0; - line-height: 1; - margin-top: 10px; - position: absolute; - top: 4px; } - .steps li .step-text[data-sm-text]:before { - content: attr(data-sm-text) " "; - color: #333333; } - .step-confirmation { - margin-top: 30px !important; } } - - @media (max-width: 767px) { - .step-confirmation.centered > div i { - margin-left: 0; } - .step-confirmation.centered > p { - margin-left: 40px; } - .step-confirmation > div h3 { - font-size: 1.8rem; - margin: 13px 0 10px; } - .step-confirmation > div i { - font-size: 30px; - margin-right: 10px; } } - - .step-indicator.vertical { - height: auto; } - - .vertical .step-heading { - font-size: 24px; } - - .vertical .steps { - display: block; - height: inherit; - width: 100%; } - - .vertical .steps li { + width: 40px; } + +.selectWrap.large { + height: 60px; } + .selectWrap.large .awd-select-list-item { align-items: center; - background-color: transparent; display: flex; height: 60px; - margin: 0 0 4px; - padding: 0 0 0 20px; - position: relative; } - - .vertical .steps li .step-text { - align-self: center; - color: #0568ae; - display: block; - margin: 0; - position: relative; - font-size: 14px; - top: 0; } - - .vertical .steps li .step-text[data-large-text]:before { - content: attr(data-large-text) " "; } - - .vertical .steps li:after { - background-color: transparent; - border-left: 4px solid #d2d2d2; - content: ""; - height: 60px; - left: 0; - margin: 0; - padding: 0; + line-height: 20px; + overflow: hidden; + padding-left: 70px; + vertical-align: middle; } + .selectWrap.large .awd-select-list-item img { + height: 40px; + left: 20px; + position: absolute; + top: 20px; + width: 40px; + top: 10px; } + + .inputWrap { + border-radius: 6px; + position: relative; + height: 36px; + line-height: 44px; + display: block; + margin: 0; + } + +button.awd-select.active { + border-radius: 6px 6px 0 0; } + button.awd-select.active:focus { + border-color: #d2d2d2 !important; } + +input.awd-select.active { + border-radius: 6px 6px 0 0; } + input.awd-select.active:focus { + border-color: #d2d2d2 !important; } + +.selectWrapper { + position: relative; } + +span.selectWrap input[readonly]:focus { + color: transparent; + text-shadow: 0 0 0 #000; } + +.isIE.ds2-no-colors .awd-select:focus { + outline: 1px dashed transparent; } + +.awd-select-list { + box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); + border-radius: 0 0 6px 6px; + position: absolute; + border: 1px solid #d2d2d2; + border-top: 0; + padding: 0; + background-color: #f2f2f2; + z-index: 1000; + width: 100%; + max-height: 320px; + overflow-y: auto; } + +.awd-select-list-item { + cursor: pointer; + height: 100%; + min-height: 36px; + line-height: 20px; + overflow: hidden; + padding: 8px 15px; + position: relative; + z-index: 1000; } + .awd-select-list-item:hover { + cursor: pointer; + background-color: #d2d2d2; + outline: 1px dashed transparent; } + .awd-select-list-item:focus { + cursor: pointer; + background-color: #d2d2d2; + outline: 1px dashed transparent; } + .awd-select-list-item img { + margin-top: 0; + margin-right: 7px; + height: 26px; + width: 26px; } + +.selectWrap { + border-radius: 6px; + position: relative; + height: 36px; + line-height: 28px; + display: block; + margin: 0; + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + background: -webkit-linear-gradient(top, #fcfcfc 0%, #f2f2f2 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="@att-gray-highlight", endColorstr="@att-functional-bg-gray", GradientType=0); } + .selectWrap:not(.large) .awd-select-list-item:first-child { + margin-top: 15px; } + .selectWrap:not(.large) .awd-select-list-item:last-child { + margin-bottom: 15px; } + .selectWrap .icon-primary-down { + font-size: 23px; + margin-top: -11px; + position: absolute; + right: 4px; + top: 50%; } + .selectWrap + [aria-expanded="true"] { + padding-bottom: 9px; + padding-top: 20px; } + +.awd-select-list-item[data-hover="true"] { + background-color: #d2d2d2; } + +span input.awd-select { + width: 100%; + cursor: pointer; + text-overflow: ellipsis; + padding-right: 45px; } + +li.optgroup-wrapper { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + cursor: default !important; + padding: 0px 15px; } + li.optgroup-wrapper:first-child { + padding-top: 10px; } + li.optgroup-wrapper:hover { + background-color: #f2f2f2; } + +ul.optgroup { + font-family: "Omnes-ECOMP-W02", Arial; + cursor: pointer !important; + margin: 0 -15px; } + ul.optgroup li { + padding: 0 0 0 33px; } + +label + .selectWrap { + margin-top: 4px; } + +.selectorModule { + border-radius: 6px; + position: relative; + height: 36px; + line-height: 28px; + display: block; + margin: 0; + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + background: -webkit-linear-gradient(top, #fcfcfc 0%, #f2f2f2 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="@att-gray-highlight", endColorstr="@att-functional-bg-gray", GradientType=0); } + +.group .selectWrap { + margin: 0 0 10px 0; } + +select.awd-select { + position: relative; + top: 0; + left: 0; + font-size: 16px; + z-index: 1010; + height: 33px; + min-width: 100%; + opacity: 0.01; } + select.awd-select > optgroup { + padding-left: 8px; + font-style: normal; + margin-top: 10px; } + select.awd-select > optgroup:first-child { + margin-top: 0; } + select.awd-select > optgroup > option { + padding-left: 8px; } + select.awd-select > option { + padding-left: 8px; } + select.awd-select + span { + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + background: -webkit-linear-gradient(top, #fcfcfc 0%, #f2f2f2 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="@att-gray-highlight", endColorstr="@att-functional-bg-gray", GradientType=0); position: absolute; top: 0; - width: 4px; } - - .vertical .steps li.step-on:after, - .vertical .steps li.step-done:after { + left: 0; + z-index: 0; + display: block; + border: 1px solid #d2d2d2; + border-radius: 6px; + height: 35px; + line-height: 0; + padding: 18px 45px 15px 15px; + width: 100%; + font-size: 1.6rem; + padding-right: 45px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } + select.awd-select + span > i { + font-size: 23px; + position: absolute; + right: 33px; + top: 5px; + z-index: 1000; } + select.awd-select + span > i:before { + left: 1px; + position: absolute; + top: -1px; } + select.awd-select:focus + span { border-color: #0568ae; } - - .b2b-step-tracker { - height: auto; - padding: 0px 0px 0px 0px; } - .b2b-step-tracker .btn.btn-left { - margin-right: 10px; } - .b2b-step-tracker .btn.btn-right { - margin-left: 5px; } - .b2b-step-tracker .b2b-left-arrow { - float: left; - margin-top: -5px; } - .b2b-step-tracker .b2b-right-arrow { - float: right; - margin-top: -5px; } - .b2b-step-tracker .b2b-steps { - display: flex; - height: 5px; - margin-top: 30px; - position: relative; } - .b2b-step-tracker .b2b-steps li { - color: #767676; - flex: 1; - margin-right: 5px; - background-color: #767676; - outline: 1px solid transparent; - height: 3px; } - .b2b-step-tracker .b2b-steps li.b2b-step-done { - background-color: #1b7e28; - color: #007a3e; - height: 3px; } - .b2b-step-tracker .b2b-steps li.b2b-step-on { - background-color: #333333; - color: #333333; - height: 3px; - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - .b2b-step-tracker .b2b-steps li .b2b-step-text { - bottom: 29px; - display: inline-block; - font-size: 14px; - margin-top: 0; - position: relative; - white-space: nowrap; } - .b2b-step-tracker .b2b-steps li .b2b-step-text[data-large-text]:before { - content: attr(data-large-text) " "; } - .b2b-step-tracker .b2b-steps li:first-child { - border-radius: 2px 0 0 2px; } - .b2b-step-tracker .b2b-steps li:last-child { - margin-right: 0; - border-radius: 0 2px 2px 0; } - - @media (max-width: 1024px) { - .b2b-step-tracker { - padding: 25px 0; } - .b2b-step-tracker .b2b-steps { - margin-top: 0; } - .b2b-step-tracker .b2b-steps li .b2b-step-text { - display: none; } - .b2b-step-tracker .b2b-steps li .b2b-step-text[data-sm-text]:before { - content: attr(data-sm-text) " "; - color: #333333; } - .b2b-step-tracker .b2b-steps li.b2b-step-on .b2b-step-text { - bottom: 6px; - display: block; - font-size: 10px; - left: 0; - line-height: 1; - margin-top: 10px; - position: absolute; - top: 4px; } } - - .strength-meter-container { - height: 26px; - max-width: 450px; } - - .strength-meter-gauge { - border-radius: 2px; + +.isIE select.awd-select + span { + line-height: 1; } + +[data-default-option="true"] { + color: #767676 !important; + font-family: "Omnes-ECOMP-W02-Italic", Arial; } + +.placeholdercolor { + color: #767676 !important; + font-family: "Omnes-ECOMP-W02-Italic", Arial; } + +.filterTank button.awd-select { + border-color: #d2d2d2; + background-color: #333333; + color: #FFFFFF; + color: #333333; } + .filterTank button.awd-select:after { + background-color: #FFFFFF !important; + border-color: #d2d2d2; } + +.utility-bg button.awd-select { + border-color: #d2d2d2; + background-color: #333333; + color: #FFFFFF; + color: #333333; } + .utility-bg button.awd-select:after { + background-color: #FFFFFF !important; + border-color: #d2d2d2; } + +.utility-bg select.awd-select + span { + border-color: #d2d2d2; + border-color: #d2d2d2; + background-color: #333333; + background-color: #333333; + color: #FFFFFF; + color: #FFFFFF; } + .utility-bg select.awd-select + span:after { + background-color: #FFFFFF !important; + background-color: #FFFFFF !important; + border-color: #d2d2d2; + border-color: #d2d2d2; } + +.utility-bg select.awd-select:focus + span { + border-color: #d2d2d2; + border-color: #d2d2d2; + background-color: #333333; + background-color: #333333; + color: #FFFFFF; + color: #FFFFFF; } + .utility-bg select.awd-select:focus + span:after { + background-color: #FFFFFF !important; + background-color: #FFFFFF !important; + border-color: #d2d2d2; + border-color: #d2d2d2; } + +.utility-bg select.awd-select:hover + span { + border-color: #d2d2d2; + border-color: #d2d2d2; + background-color: #333333; + background-color: #333333; + color: #FFFFFF; + color: #FFFFFF; } + .utility-bg select.awd-select:hover + span:after { + background-color: #FFFFFF !important; + background-color: #FFFFFF !important; + border-color: #d2d2d2; + border-color: #d2d2d2; } + +input.awd-select[disabled] { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + input.awd-select[disabled] + span { + cursor: not-allowed; + border-color: #d2d2d2; background-color: #d2d2d2; - height: 5px; + background-image: none; + color: #5A5A5A; } + +button.awd-select[disabled] { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + button.awd-select[disabled]:after { + background-color: #d2d2d2 !important; + border-color: #d2d2d2; } + +select.awd-select[disabled] + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + select.awd-select[disabled] + span:after { + background-color: #d2d2d2 !important; + border-color: #d2d2d2; } + +select.awd-select[disabled]:focus + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + +select.awd-select[disabled]:hover + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + +input.awd-select[disabled="disabled"] { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + input.awd-select[disabled="disabled"] + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + +select.awd-select[disabled="disabled"] + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + select.awd-select[disabled="disabled"] + span:after { + background-color: #d2d2d2 !important; + border-color: #d2d2d2; } + +select.awd-select[disabled="disabled"]:focus + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + select.awd-select[disabled="disabled"]:focus + span:after { + background-color: #d2d2d2 !important; + border-color: #d2d2d2; } + +select.awd-select[disabled="disabled"]:hover + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + select.awd-select[disabled="disabled"]:hover + span:after { + background-color: #d2d2d2 !important; + border-color: #d2d2d2; } + +.ddexpand-wrapper > h2 { + margin-bottom: 11px; } + .ddexpand-wrapper > h2 + p { + margin-bottom: 4px; } + +.ddexpand-wrapper .selectWrap + [aria-expanded="true"] .form-row { + margin-top: 11px; } + +.ddexpand-wrapper .selectWrap + [aria-expanded="true"] .row + .row .form-row { + margin-top: 14px; } + +.modal .awd-select-list { + z-index: 1060 !important; } + +.form-row.error button.awd-select.active:focus { + border-color: #cf2a2a !important; } + +.form-row.error input.awd-select.active:focus { + border-color: #cf2a2a !important; } + +.awd-module-list .module-list-item[aria-selected="true"] { + background-color: #f2f2f2; } + +li.module-list-item[aria-selected="true"]:before { + color: #0568ae; + display: inline-block; + font-family: "icoControls" !important; + font-style: normal; + font-size: 20px; + font-weight: normal; + font-variant: normal; + height: 1em; + margin-right: 7px; + text-transform: none; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + position: relative; + speak: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + vertical-align: middle; + width: 1em; + content: "\e907"; + box-sizing: border-box; + display: inline-block; + font-size: 2em; + height: 1em; + position: absolute; + top: 20px; + right: 0px; + vertical-align: middle; + width: 1em; + color: #007a3e; } + +@media (min-width: 768px) { + span[class*="large"] { + max-width: 370px; } + .large { + max-width: 370px; } } + +@media (max-width: 767px) { + .selectWrap.large:after { + right: 5px; } + .selectWrap.large .awd-select-list-item { + padding-right: 41px; } + .selectWrap + div > h4 { + margin-bottom: 0; + font-size: 16px; } } + +/**********************Dropdown Chrome scrolling fix start ********************/ +input.awd-select { + -webkit-user-select: text; + -moz-user-select: text; + -ms-user-select: text; + user-select: text; } + +/**********************Dropdown Chrome scrolling fix end ********************/ +.mpc-expanders { + border-bottom: 1px solid #e4e4e4; + border-top: 1px solid #e4e4e4; } + +.mpc-expanders + .mpc-expanders { + border-top: 0px; } + +.mpc-expanders .heading-medium { + margin-bottom: 10px; } + +.mpc-expanders .p-small { + margin-top: 5px; } + +.mpc-expander-body { + border-top: 1px solid #e4e4e4; } + +.mpc-expander-body .mpc-expanders { + border-bottom: 1px solid #e4e4e4; + border-top: 0; } + +.mpc-expander-body .mpc-expanders:last-child { + border-bottom: 0px; } + +.ddh-blue { + color: #0574ac; } + +.b2b-dragdrop { + border: 1px dashed #bbb; + border-radius: 5px; + padding: 0; + text-align: center; + color: #bbb; + position: relative; } + +.b2b-dragdrop-over { + background: #0091d9; + color: #006496; } + .b2b-dragdrop-over:after { + content: "Drop the file"; + color: #fff; + width: 80px; + height: 20px; + overflow: hidden; + margin: auto; + position: absolute; + top: 0; + left: 0; + bottom: 0; + right: 0; } + +.b2b-file-container { + position: relative; + overflow: hidden; + display: inline-table; + font-weight: 400; } + .b2b-file-container [type=file] { + position: absolute; + cursor: inherit; display: block; - position: relative; - outline: 1px solid transparent; } - - .strength-meter-gauge-fill { - height: 100%; + font-size: 0; + opacity: 0; + height: 0; + width: 0; + left: 0; + top: 0; + -ms-filter: "alpha(Opacity=0)"; } + +.b2b-upload-link { + color: #0568ae; } + +.b2b-flyout { + position: relative; + display: inline-block; + cursor: default; } + +.b2b-flyout-icon { + cursor: pointer; } + .b2b-flyout-icon:focus { + outline: thin dotted #666; + outline-offset: -1px; } + +.b2b-flyout .b2b-flyout-container { + border: 1px solid #d3d3d3; + width: 300px; + padding: 20px; + pointer-events: auto; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + font-size: 16px; + -webkit-transition: opacity .2s ease-out; + -moz-transition: opacity .2s ease-out; + transition: opacity .2s ease-out; + background: #fff; + border-radius: 6px; + box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.25); + color: #333; + line-height: 20px; + position: absolute; + top: 35px; + opacity: 0; + z-index: 1010; + display: none; } + .b2b-flyout .b2b-flyout-container.open-flyout { + opacity: 1; + display: block; } + +.b2b-flyout i.b2b-flyout-caret { + position: absolute; + top: -8px; + left: 50%; + opacity: 0; + z-index: 1011; + display: none; } + .b2b-flyout i.b2b-flyout-caret.open-flyout { + opacity: 1; + display: block; } + .b2b-flyout i.b2b-flyout-caret:before { + content: ""; + border-left: 8px solid transparent; + border-right: 8px solid transparent; + border-bottom: 8px solid #d3d3d3; + position: absolute; + top: -1px; } + .b2b-flyout i.b2b-flyout-caret:after { + content: ""; + border-left: 8px solid transparent; + border-right: 8px solid transparent; + border-bottom: 8px solid #fff; + position: absolute; } + +.b2b-flyout .b2b-flyout-container.b2b-flyout-left i.b2b-flyout-caret { + left: 16px !important; } + +.b2b-flyout .b2b-flyout-container.b2b-flyout-right i.b2b-flyout-caret { + left: inherit !important; + right: 30px !important; } + +.b2b-flyout .b2b-flyout-container.b2b-flyout-above { + box-shadow: 0 -5px 6px 0 rgba(0, 0, 0, 0.25); } + .b2b-flyout .b2b-flyout-container.b2b-flyout-above i.b2b-flyout-caret { + top: auto; + bottom: 0px; } + .b2b-flyout .b2b-flyout-container.b2b-flyout-above i.b2b-flyout-caret:before { + top: auto; + bottom: -9px; + border-top: 8px solid #d3d3d3; + border-bottom: none; } + .b2b-flyout .b2b-flyout-container.b2b-flyout-above i.b2b-flyout-caret:after { + border-top: 8px solid #fff; + border-bottom: none; } + +.b2b-flyout .b2b-flyout-container.b2b-flyout-centerLeft i.b2b-flyout-caret { + left: inherit !important; + right: -7px !important; + top: 8px; + transform: rotate(90deg); } + +.b2b-flyout .b2b-flyout-container.b2b-flyout-centerRight i.b2b-flyout-caret { + left: -8px !important; + top: 296px; + transform: rotate(-90deg); } + +.b2b-flyout .buttons-group { + margin-top: 20px; } + .b2b-flyout .buttons-group .cta-button-group { + width: 100%; + border-top: 1px solid #ccc; + padding: 20px 0 0; } + .b2b-flyout .buttons-group .cta-button-group button { + margin-bottom: 0; } + +.b2b-flyout .heading { + font-size: 20px; + margin-bottom: 10px; } + +.b2b-flyout .body-text { + font-size: 14px; + margin-bottom: 30px; } + +.b2b-footer-wrapper { + width: 100%; + background-color: #222; } + +.b2b-footer-container { + width: 980px; + margin: 0 auto; + padding-top: 15px; } + .b2b-footer-container .footer-columns { + display: inline-block; + text-align: left; + vertical-align: top; } + .b2b-footer-container .footer-columns.three-column, .b2b-footer-container .footer-columns.four-column, .b2b-footer-container .footer-columns.five-column { + padding-top: 30px; } + .b2b-footer-container .footer-columns.three-column { + width: 33.3%; + padding-left: 75px; } + .b2b-footer-container .footer-columns.four-column { + width: 25%; + padding-left: 75px; } + .b2b-footer-container .footer-columns.five-column { + width: 20%; } + .b2b-footer-container .footer-columns .b2b-footer-header { + color: #009fdb; + font-size: 18px; + font-style: normal; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + line-height: 23.9px; + margin: 0; } + .b2b-footer-container .footer-columns li { + padding: 7.5px 0; } + .b2b-footer-container .footer-columns ul li:first-child { + padding-top: 15px; } + .b2b-footer-container .footer-columns li a { + color: #fff; + font-size: 16px; + font-family: "Omnes-ECOMP-W02", Arial; } + .b2b-footer-container .footer-nav-content { + padding-bottom: 10px; } + .b2b-footer-container .footer-nav-content li { + display: inline; + font-size: 14px; + color: #fff; + vertical-align: middle; } + .b2b-footer-container .footer-nav-content li a { + color: #fff; + font-size: 14px; + vertical-align: middle; + margin-right: 5px; + font-family: "Omnes-ECOMP-W02", Arial; } + +.b2b-footer-wrapper .b2b-footer-container hr { + background: #d2d2d2; + margin-top: 50px; } + +.b2b-footer-wrapper .divider-bottom-footer { + padding: 45px 0 50px 0; } + +.b2b-footer-wrapper .footerLogo { + margin: 10px 0 0 0px; + vertical-align: top; } + .b2b-footer-wrapper .footerLogo div { + display: inline-block; } + .b2b-footer-wrapper .footerLogo .icon-primary-att-globe { + font-size: 40px; } + .b2b-footer-wrapper .footerLogo .logo-title { + color: #fff; + margin-left: 10px; + display: inline-block; + font-size: 26px; + margin-top: 0px; } + +.b2b-footer-wrapper .copyright-text { + color: #fff; + font-size: 11px; + text-align: left; + font-family: "Omnes-ECOMP-W02", Arial; } + .b2b-footer-wrapper .copyright-text a { + color: #fff; + text-decoration: underline; + display: inline-block; } + .b2b-footer-wrapper .copyright-text a:hover { + text-decoration: none; } + +@media (max-width: 768px) { + .b2b-footer-wrapper { + padding: 0 15px; } + .b2b-footer-container { + width: 100%; } + .b2b-footer-container .footer-columns.three-column, .b2b-footer-container .footer-columns.four-column, .b2b-footer-container .footer-columns.five-column { + width: 50%; } + .b2b-footer-wrapper .divider-bottom-footer { + padding-top: 15px; } + .b2b-footer-wrapper .divider-bottom-footer .footer-links { + width: 100%; } + .b2b-footer-wrapper .footerLogo { + margin: 30px 0 0 0; } + .b2b-footer-wrapper .footerLogo .footer-logo { + margin: 0; + padding-left: 10px; } } + +.b2b-header-tabs { + background-color: #222; + width: 100%; + position: relative; + height: 45px; } + .b2b-header-tabs .icon-primary-att-globe { + color: #0568ae; } + .b2b-header-tabs a:focus { + border: 1px solid white; } + .b2b-header-tabs .header__items { + width: 980px; + margin: 0 auto; display: block; - border-radius: 2px; - text-indent: -9999px; - width: 0%; - border: 2px solid transparent; } - - .strength-meter-gauge-fill.strength-meter-animate { - transition: width 0.5s linear, background-color 0.5s linear; } - - .strength-meter-animate[style*="20"] { - background-color: #cf2a2a; } - - .strength-meter-animate[style*="20"] + .strength-meter-divider + .strength-meter-content:after { - content: "Unacceptable"; } - - .strength-meter-animate[style*="40"] { - background-color: #ea7400; } - - .strength-meter-animate[style*="40"] + .strength-meter-divider + .strength-meter-content:after { - content: "Weak"; } - - .strength-meter-animate[style*="60"] { - background-color: #ea7400; } - - .strength-meter-animate[style*="60"] + .strength-meter-divider + .strength-meter-content:after { - content: "Fair"; } - - .strength-meter-animate[style*="80"] { - background-color: #007a3e; } - - .strength-meter-animate[style*="80"] + .strength-meter-divider + .strength-meter-content:after { - content: "Good"; } - - .strength-meter-animate[style*="100"] { - background-color: #007a3e; } - - .strength-meter-animate[style*="100"] + .strength-meter-divider + .strength-meter-content:after { - content: "Excellent"; } - - .strength-meter-divider { + list-style: none; + padding: 6px 0px 0px 0px; + border-spacing: 30px 0; } + .b2b-header-tabs .header__item { + display: inline-block; + text-align: left; + width: auto; + font-size: 16px; + font-family: "Omnes-ECOMP-W02", Arial; + cursor: pointer; + padding: 5px 15px; + color: #fff; } + .b2b-header-tabs .header__item.b2b-headermenu { + padding: 0; } + .b2b-header-tabs .header__item.b2b-headermenu:last-child { + background: none; } + .b2b-header-tabs .header__item.b2b-headermenu a.menu__item { + color: #fff; + text-decoration: none; + display: inline-block; + padding: 5px 15px; } + .b2b-header-tabs .header__item.active { + background-color: #fff; + border-radius: 2px; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } + .b2b-header-tabs .header__item.active a.menu__item { + color: #0578ae; } + .b2b-header-tabs li:focus { + outline: 2px solid #0578ae; } + .b2b-header-tabs .header__item .header-secondary-wrapper, .b2b-header-tabs .header__item .header-tertiary-wrapper { + background-color: #fff; + position: absolute; + width: 100%; + left: 0; + top: 42px; + border-bottom: solid 1px #ccc; + -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + display: none; + z-index: 111; } + .b2b-header-tabs .header-secondary, .b2b-header-tabs .header-tertiary { + background-color: #fff; + width: 980px; + margin: 0 auto; } + .b2b-header-tabs .header__item.active .header-secondary-wrapper { + display: block; } + .b2b-header-tabs .header-secondary .header-subitem { + display: inline-block; + width: auto; + margin: 0 15px; } + .b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary-wrapper { + display: block; } + .b2b-header-tabs .header-secondary .header-subitem a.menu__item { + display: inline-block; + padding: 15px 0; + color: #333; } + .b2b-header-tabs .header-secondary .header-subitem a.menu__item:hover, .b2b-header-tabs .header-secondary .header-subitem a.menu__item:focus { + color: #0578ae; } + +/** Secondary Menu **/ +.b2b-labelhide { + position: absolute; + clip: rect(1px, 1px, 1px, 1px); } + +/** Tertiary Level Menu **/ +.b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { + position: absolute; + z-index: 111; + top: 25px; } + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after, .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { + content: ''; + border-left: 8px solid transparent; + border-right: 8px solid transparent; position: absolute; - top: 0; - bottom: 0; - left: 0; - right: 0; - display: flex; - overflow: hidden; } - - .strength-meter-divider span { - background: transparent; - display: block; - flex-grow: 1; - border-right: solid 1px #fff; } - - .strength-meter-divider span:first-child { - border-radius: 2px 0 0 2px; } - - .strength-meter-divider span + .strength-meter-divider span { - border-radius: 0; } - - .strength-meter-divider span:last-child { - border-radius: 0 2px 2px 0; - border-right: 0; } - - .strength-meter-content { - font-size: 14px; - line-height: 1; - padding-top: 7px; - position: absolute; } - - .strength-meter-content:before { - font-family: "Omnes-ECOMP-W02", Arial; - content: "Password strength: "; } - - .strength-meter-content:after { - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - - .strength-meter-container { - height: 26px; - min-width: 290px; - max-width: 450px; } - - .strength-meter-container .strength-meter-gauge { - border-radius: 2px; - background-color: #cccccc; - box-shadow: 0 1px 1px -1px #333 inset; - height: 5px; + -webkit-transition: left .2s ease-out; + -moz-transition: left .2s ease-out; + transition: left .2s ease-out; } + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after { + border-bottom: 8px solid #fff; + top: 10px; } + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { + border-bottom: 8px solid #ccc; + top: 9px; } + +.b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary { + border-top: solid 1px #ccc; } + +.b2b-header-tabs .header-tertiary:after { + content: ''; + clear: both; + display: block; } + +.b2b-header-tabs .header-tertiary li { + display: inline-block; + padding: 0; + float: left; } + .b2b-header-tabs .header-tertiary li a { + color: #333; display: block; - overflow: hidden; - position: relative; } - - .strength-meter-container > .strength-meter-gauge > .strength-meter-gauge-fill { - height: 100%; - box-shadow: 0 1px 1px -1px #999 inset; + padding: 10px 15px; } + .b2b-header-tabs .header-tertiary li label { + text-align: left; display: block; - text-indent: -9999px; - width: 0%; } - - .strength-meter-container > .strength-meter-gauge > .strength-meter-gauge-fill.strength-meter-animate { - transition: width 0ms ease-out, background-color 0ms ease-in; } - - .strength-meter-container > .strength-meter-gauge > .strength-meter-divider { - position: absolute; - top: 0; - bottom: 0; - left: 0; + font-size: 16px; + font-weight: bold; + color: #857B7B; + padding: 15px 0 0 15px; } + +.b2b-header-tabs .header__item.skip { + padding: 0; + display: inline-block; + cursor: default !important; } + .b2b-header-tabs .header__item.skip a { + color: transparent; + font-size: 12px; + line-height: 15px; + text-decoration: none; } + .b2b-header-tabs .header__item.skip a:focus { + color: #fff; + outline: 2px solid #0578ae; } + +.b2b-header-tabs .selectWrap { + min-width: 150px; } + .b2b-header-tabs .selectWrap button.awd-select { + height: 30px; + line-height: 31px; + font-size: 1rem; + display: inline-block; } + .b2b-header-tabs .selectWrap .awd-select-list { + background-color: #fff; + color: #333; + -webkit-transition: opacity .2s ease-out; + -moz-transition: opacity .2s ease-out; + transition: opacity .2s ease-out; + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176); } + +@media (max-width: 768px) { + .b2b-header-tabs { + padding: 0 15px; } + .b2b-header-tabs .header__items, .b2b-header-tabs .header-secondary, .b2b-header-tabs .header-tertiary { + width: 100%; } + .b2b-header-tabs .header__item { + padding: 5px 0; } + .b2b-header-tabs .globe-text { + display: none; } + .b2b-header-tabs .header__item.b2b-headermenu a.menu__item { + padding: 5px 7px 9px 7px; } + .b2b-header-tabs .header__item .header-tertiary-wrapper { + top: 30px; } + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { + top: 14px; } + .b2b-header-tabs .header__item .header-secondary-wrapper { + top: 45px; } + .b2b-header-tabs .header__item.profile { + padding-left: 15px; + float: none; } } + +/************* Header - Start *************/ +.b2b-header-tabs { + background-color: #222; + width: 100%; + position: relative; + height: 45px; } + +.b2b-header-tabs .icon-primary-primary-att-globe { + color: #0568ae; + font-size: 34px; + bottom: 1px; } + +/* + *TODO: delete below .icon-primary-att-globel will not be used + *instead the one above, icon-primary-primary-att-globe not available here + */ +.b2b-header-tabs .icon-primary-att-globe { + color: #0568ae; + font-size: 34px; } + +.b2b-header-tabs .globe-text { + margin-left: 20px; + font-size: 2rem; } + +.b2b-header-tabs .header__items { + width: 980px; + margin: 0 auto; + display: block; + list-style: none; + border-spacing: 30px 0; + padding: 3px 0px 0px 0px; } + +.b2b-header-tabs .header__item { + display: inline-block; + text-align: left; + width: auto; + font-size: 14px; + font-family: "Omnes-ECOMP-W02", Arial; + cursor: pointer; + padding: 0 15px 4px 15px; + /*margin-top:-3px;*/ + color: #fff; } + +.b2b-header-tabs .header__item.b2b-headermenu { + padding: 0; } + +.b2b-header-tabs .header__item.b2b-headermenu a.menu__item { + color: #fff; + text-decoration: none; + display: inline-block; + padding: 8px 15px 12px 15px; + font-size: 16px; } + +.b2b-header-tabs .header__item.active { + background-color: #fff; + border-radius: 2px; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } + +.b2b-header-tabs .header__item.active a.menu__item { + color: #0578ae; } + +.b2b-header-tabs li:focus { + outline: 2px solid #0578ae; } + +/** profile pop Over **/ +.b2b-header-tabs .header__item.profile { + position: relative; + float: right; } + +/** Secondary Menu **/ +.b2b-header-tabs .header__item .header-secondary-wrapper, .b2b-header-tabs .header__item .header-tertiary-wrapper { + background-color: #fff; + position: absolute; + width: 100%; + left: 0; + top: 42px; + border-bottom: solid 1px #ccc; + -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + display: none; + z-index: 111; } + +.b2b-header-tabs .header-secondary, .b2b-header-tabs .header-tertiary { + background-color: #fff; + width: 980px; + margin: 0 auto; } + +.b2b-header-tabs .header__item.active .header-secondary-wrapper, +.b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary-wrapper { + display: block; } + +.b2b-header-tabs .header-secondary .header-subitem { + display: inline-block; + width: auto; + margin: 0 15px; } + +.b2b-header-tabs .header-secondary .header-subitem a.menu__item { + display: inline-block; + padding: 15px 0; + color: #333; + font-size: 14px; } + +.b2b-header-tabs .header-secondary .header-subitem a.menu__item:hover, .b2b-header-tabs .header-secondary .header-subitem a.menu__item:focus { + color: #0578ae; } + +.b2b-label-hide { + position: absolute; + clip: rect(1px, 1px, 1px, 1px); } + +/** Tertiary Level Menu **/ +.b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after, +.b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { + content: ''; + border-left: 8px solid transparent; + border-right: 8px solid transparent; + position: absolute; + -webkit-transition: left .2s ease-out; + -moz-transition: left .2s ease-out; + transition: left .2s ease-out; } + +.b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { + position: absolute; + z-index: 111; + top: 25px; } + +.b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after { + border-bottom: 8px solid #fff; + top: 10px; } + +.b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { + border-bottom: 8px solid #ccc; + top: 9px; } + +/** Tertiary Level Menu **/ +.b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary { + border-top: solid 1px #ccc; } + +.b2b-header-tabs .header-tertiary:after { + content: ''; + clear: both; + display: block; } + +.b2b-header-tabs .header-tertiary li { + display: inline-block; + padding: 0; + float: left; } + +.b2b-header-tabs .header-tertiary li a { + color: #333; + display: block; + padding: 7px 15px; + max-width: 228px; } + +.b2b-header-tabs .header-tertiary li label { + text-align: left; + display: block; + font-size: 14px !important; + font-weight: bold; + color: #857B7B; + padding: 15px 0 0 15px; } + +/** Quarternary Level Menu **/ +.b2b-header-tabs .header-quarternary { + width: 100%; + float: left; } + +.b2b-header-tabs .header-quarternary li { + padding-left: 15px; + font-family: "Omnes-ECOMP-W02", Arial; + display: none; } + +.b2b-header-tabs .header-quarternary li.active { + display: block; } + +.b2b-header-tabs .header-quarternary li a { + color: #666666; + font-size: 14px; + padding: 0px 10px 10px 10px; } + +/** Skip Navigation**/ +.b2b-header-tabs .header__item.skip { + padding: 0; + display: inline-block; + cursor: default !important; } + +.b2b-header-tabs .header__item.skip a { + color: transparent; + font-size: 12px; + line-height: 15px; + text-decoration: none; } + +.b2b-header-tabs .header__item.skip a:focus { + color: #fff; + outline: 2px solid #0578ae; } + +/** Dropdown css inside Header ****/ +.b2b-header-tabs .selectWrap { + min-width: 150px; } + +.b2b-header-tabs .selectWrap button.awd-select, .b2b-header-tabs .selectWrap input.awd-select { + height: 36px; + line-height: 31px; + font-size: 1rem; + display: inline-block; } + +.b2b-header-tabs .selectWrap .awd-select-list { + background-color: #fff; + color: #333; + -webkit-transition: opacity .2s ease-out; + -moz-transition: opacity .2s ease-out; + transition: opacity .2s ease-out; + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176); } + +/* + * responsive header media queries + */ +@media screen and (max-width: 1100px) { + .b2b-header-tabs .globe-text { + display: none; } + .b2b-header-tabs .header__item.profile { + padding-left: 15px; + float: none; } + .b2b-header-tabs .header__items { + padding-top: 0px; } } + +@media screen and (max-width: 950px) { + .header__item.profile { + top: 20px; } + .b2b-header-tabs { + height: 90px; } + .header__item .selectWrap { + bottom: 15px; } + .b2b-header-tabs .header__items { + padding-top: 25px; } + .b2b-header-tabs .header__item .header-secondary-wrapper, .b2b-header-tabs .header__item .header-tertiary-wrapper { + top: 80px; } + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { + top: 35px; } + .b2b-header-tabs .header__item.b2b-headermenu a.menu__item { + padding-bottom: 30px; } + .b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary { + margin-top: -28px; } } + +/*************** Header - END ******************/ +.hp-container { + display: block; + max-width: 408px; } + .hp-container i:focus { + outline: thin dotted #666; } + .hp-container .icon-misc-pen { + cursor: pointer; } + .hp-container .icon-misc-trash { + cursor: pointer; } + +.hp-selected { + border-bottom: 1px solid #ccc; + border-bottom: 1px solid #ccc; + margin-bottom: 16px; + padding-bottom: 16px; } + .hp-selected .selected-days { + padding-bottom: 16px; } + .hp-selected .selected-days .day { + padding-top: 10px; + float: left; } + +/* .hp-checkbox { + padding-top: 20px; + margin: 16px auto 0 auto; } + .hp-checkbox label { + position: relative; + width: 20px; + margin-right: 34px; } + .hp-checkbox label span { + position: absolute; + top: -20px; + left: 0px; + margin-left: 0px; } */ + +.hp-dropdowns { + margin-top: 15px; + display: flex; + display: -webkit-flex; + display: -ms-flexbox; } + +.hp-buttons { + margin-top: 20px; + display: flex; + display: -webkit-flex; + display: -ms-flexbox; } + +.hp-dropdowns .radio-buttons { + margin-top: 30px; } + .hp-dropdowns .radio-buttons .radio { + margin-right: 15px; } + + + +/* TODO: Build a reference page for these classes */ +.font-regular { + font-family: "Omnes-ECOMP-W02", Arial !important; } + +.font-light { + font-family: "Omnes-ECOMP-W02-Light", Arial !important; } + +.font-italic { + font-family: "Omnes-ECOMP-W02-Italic", Arial !important; } + +.font-light-italic { + font-family: "Omnes-ECOMP-W02-Light-Italic", Arial !important; } + +.font-medium { + font-family: "Omnes-ECOMP-W02-Medium", Arial !important; } + +.font-medium-italic { + font-family: "Omnes-ECOMP-W02-Medium-Italic",Arial !important; } + +.font-reset { + font-style: normal; + font-variant: normal; + font-weight: normal; + text-transform: none; } + +.b2b-nav-menu { + background-color: #efefef; + border: 1px solid #efefef; + width: 230px; + font-size: 1.4rem; } + +.b2b-subnav-container > ul { + padding: 0px; } + +.b2b-subnav-content { + margin: 0; + margin-bottom: 10px; } + +.b2b-subnav-content > li { + border-bottom: 1px solid #999999; + position: relative; + cursor: pointer; } + +.b2b-subnav-content > li > a { + text-decoration: none; + line-height: 18px; + display: block; + padding: 10px; } + +.b2b-subnav-content > li > a.expand { + color: #333; } + +.b2b-subnav-content > li ul { + overflow: hidden; + max-height: 0; + transition-duration: 0.5s; + transition-timing-function: cubic-bezier(0, 1, 0.5, 1); } + +.b2b-subnav-content > li ul.expand { + transition-duration: 0.7s; + transition-timing-function: ease-in-out; + max-height: 1000px; + overflow: hidden; } + +.b2b-subnav-content > li > a:focus, .b2b-subnav-content > li ul > li > a:focus { + outline: thin dotted #666; } + +.b2b-subnav-content > li ul > li > a { + line-height: 18px; + padding: 8px 0; + display: block; + outline-offset: -4px; + padding-left: 10px; } + +.b2b-icon-primary-plus-minus { + display: inline-block; + height: 20px; + margin-right: 10px; + padding: 0; + position: absolute; + right: 0px; + top: 10px; + vertical-align: middle; + width: 20px; } + +@media (min-width: 320px) and (max-width: 767px) { + .b2b-nav-menu { + background-color: #fff; + border: 1px solid white; + width: 100%; } + .b2b-subnav-content > li { + padding-left: 10px; } + .b2b-subnav-container > ul:first-child { + border-top: 1px solid #999; } + .b2b-icon-primary-plus-minus { + right: 10px; } + .b2b-subnav-content > li li > a.active { + color: #0574ac; + text-decoration: none; + font-family: "Omnes-ECOMP-W02", Arial; } } + +.b2b-list-box-item { + white-space: nowrap; + margin: 1px; + border: 1px solid transparent; + outline: none; + visibility: inherit; + display: inherit; + text-align: left; + overflow: hidden; + cursor: pointer; + padding: 5px 0 5px; + padding-left: 15px; + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; } + .b2b-list-box-item:focus { + border: 2px solid #5e8cb3; } + +.b2b-list-box-item--selected { + background-color: #cfdde9; } + +.btn.disabled[ddh-load-button] { + line-height: 46px; + padding: 0 19px 0 18px; } + +.btn.disabled[ddh-load-button] { + color: #666666; } + +.icon-primary-spinner-ddh.large { + height: 50px; + width: 50px; } + +.icon-primary-spinner-ddh.small { + height: 30px; + width: 30px; } + +.icon-primary-spinner-ddh { + -webkit-animation: 1s linear infinite spinner; + animation: 1s linear infinite spinner; + background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzNiAzNiIgaWQ9InN2Zy1zcGlubmVyIiB4PSIwcHgiIHk9IjBweCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CiAgIDxwYXRoIGZpbGw9IiNGNUY1RjUiIGQ9Ik0xOCAzNkM4LjEgMzYgMCAyNy45IDAgMThTOC4xIDAgMTggMHMxOCA4LjEgMTggMTgtOC4xIDE4LTE4IDE4em0wLTMxLjVjLTcuNSAwLTEzLjUgNi0xMy41IDEzLjVTMTAuNiAzMS41IDE4IDMxLjVjNy41IDAgMTMuNS02LjEgMTMuNS0xMy41IDAtNy41LTYtMTMuNS0xMy41LTEzLjV6Ii8+CiAgIDxwYXRoIGZpbGw9IiMwNTY4QUUiIGlkPSJzcGlubmVyIiBkPSJNMzAuNyA1LjNsLTMuMSAzLjJjMi40IDIuNCAzLjkgNS44IDMuOSA5LjUgMCA3LjQtNi4xIDEzLjUtMTMuNSAxMy41UzQuNSAyNS40IDQuNSAxOCAxMC42IDQuNSAxOCA0LjVWMEM4LjEgMCAwIDguMSAwIDE4czguMSAxOCAxOCAxOCAxOC04LjEgMTgtMThjMC01LTItOS41LTUuMy0xMi43eiIgdHJhbnNmb3JtPSIiPiAgICAgIAogICA8L3BhdGg+Cjwvc3ZnPg==); } + +.btn-small .icon-primary-spinner-ddh { + height: 30px !important; + width: 30px !important; } + +.btn-small .icon-primary-spinner { + height: 30px; + width: 30px; } + +.load-backdrop { + position: absolute; + top: 50%; + left: 50%; } + +.small-modal-loader { + width: 420px !important; + height: 212px !important; + text-align: center; } + +.small-modal-loader .icon-primary-spinner { + margin-bottom: 5px; } + +.body.styled-by-modal { + position: fixed; } + +.b2b-modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: -1; } + +.b2b-modal-backdrop.fade { + background-color: #000; + opacity: 0; + filter: alpha(opacity=0); + transition: all 0.3s linear 0s; } + +.b2b-modal-backdrop.fade.in { + z-index: 1040; + opacity: 0.7; + filter: alpha(opacity=70); + background-color: #000; + transition: opacity 0.3s linear 0s; } + +.modalwrapper { + height: 100%; + width: 100%; + left: 0; + overflow-y: hidden; + position: absolute; + right: 0; + padding: 20px; + top: 0; + z-index: -1; } + +.modalwrapper.active { + z-index: 1050; + overflow-y: auto; } + +.modal { + background-clip: padding-box; + background-color: #ffffff; + border: 1px solid rgba(0, 0, 0, 0.1); + border-radius: 8px; + box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.4); + margin: 0 auto; + /*margin-bottom:10%;*/ + outline: medium none; + /*position: absolute;*/ + height: 0; + min-height: 150px; + overflow: hidden; + /*top: 10%;*/ + width: 100%; + z-index: -1; } + +.modalwrapper.modal-docked .modal { + max-height: 80%; + height: 80%; + overflow: hidden; + top: 0; } + +.modal.fade.in { + position: relative; + height: auto; + overflow: auto; + top: 10%; + z-index: 1060; + transition: opacity .5s linear 0s; } + +.modal.fade.in.modal-landscape { + overflow-y: auto; } + +.modal.fade { + transition: opacity .5s linear 0s; } + +.fade.in { + opacity: 1; } + +.fade { + opacity: 0; } + +.b2b-modal-header { + align-items: center; + border-radius: 8px 8px 0 0; + display: flex; + min-height: 60px; + overflow: hidden; + padding: 30px 46px 30px 30px; + position: relative; } + +.b2b-modal-header > h2 { + line-height: 1; + margin: 0; + padding: 0; } + +.modal-header-portrait { + -webkit-overflow-scrolling: auto; } + +.modal-header-landscape { + -webkit-overflow-scrolling: auto; } + +.b2b-modal-body { + -webkit-overflow-scrolling: touch; + padding: 0 30px 20px; + position: relative; + width: auto; } + +.b2b-modal-body:focus { + outline: 1px dotted #333333; } + +.modal-form { + margin-bottom: 0; } + +.b2b-modal-footer { + background-color: #fff; + width: 100%; + padding: 0 30px; + border-radius: 0; + position: absolute; + bottom: 0; } + +:not(.modal-docked) .b2b-modal-footer { + position: relative; } + +.modal-landscape .b2b-modal-footer { + position: relative; } + +.b2b-modal-footer .cta-button-group { + display: flex; + justify-content: flex-end; + padding: 20px 0 5px; + width: 100%; + border-top: 1px solid #d2d2d2; } + +.b2b-modal-footer .cta-button-group .btn { + margin-left: auto; + margin-right: auto; + float: right; + margin-left: 10px; } + +.b2b-modal-footer .cta-button-group .marginLeft0 { + margin-left: 0px; } + +.b2b-modal-footer .cta-button-group .btn-footer-left { + margin-right: auto; } + +.b2b-modal-footer .cta-button-group .btn + .btn { + margin-right: 0 !important; } + +[class*="modal-"] { + width: 100%; } + +.modal-small { + max-width: 420px; } + +.modal-medium { + max-width: 620px; } + +.modal-large { + max-width: 720px; } + +.modal-xlarge { + max-width: 860px; } + +.modal-jumbo { + max-width: 1000px; } + +.modalwrapper.modal-docked { + height: 100%; + display: flex; + align-items: center; } + +.modalwrapper.modal-docked .b2b-modal-body { + height: 80%; + overflow-y: scroll; + padding-bottom: 60px; } + +.modalwrapper.modal-docked .modal { + max-height: 80%; + height: 80%; + overflow: hidden; + top: 0; } + +.modalwrapper.modal-docked .b2b-modal-body > *:last-child { + margin-bottom: 60px; } + +@media (max-width: 767px) { + .modalwrapper { + padding: 15px; + overflow-x: hidden; } + .modal.fade.in { + top: 0; right: 0; - display: flex; } - - .strength-meter-container > .strength-meter-gauge > .strength-meter-divider span { - background: transparent; - display: block; - flex-grow: 1; - border-right: solid 1px #fff; } - - .strength-meter-container > .strength-meter-gauge > .strength-meter-divider span:last-child { - border-right: 0; } - - .strength-meter-container > .strength-meter-content { - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 14px; - line-height: 1; - padding-top: 7px; } - - .strength-meter-container > .strength-meter-content:before { - content: none; } - - .strength-meter-container > .strength-meter-content > .strength-meter-content-state { - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - - .btn-switch-label { - display: flex; - align-items: center; } - .btn-switch-label:focus .btn-switch { - outline: 1px dotted #666; - outline-offset: 5px; } - .btn-switch-label input:focus .btn-switch { - outline: 1px dotted #666; - outline-offset: 5px; } - .btn-switch-label > span { - flex: 1; } - - .btn-switch { - background-color: #fff; - border: 1px solid #d2d2d2; - border-radius: 16px; - box-shadow: 0 4px 5px -5px rgba(0, 0, 0, 0.15) inset, 0 5px 5px -5px rgba(0, 0, 0, 0.15); - height: 32px; - overflow: hidden; - position: relative; - width: 80px; - user-select: none; } - .btn-switch input[type="checkbox"] { - left: 0; - margin: 0; - opacity: 0; - position: absolute; - top: 0; - transition: none; } - .btn-switch input[type="checkbox"] + .switch-overlay .btn-slider-on .activo { - font: 0px/0 "Omnes-ECOMP-W02", Arial; } - .btn-switch input[type="checkbox"] + .switch-overlay .btn-slider-on + .btn + .btn-slider-off .inactivo { - font: 0px/0 "Omnes-ECOMP-W02", Arial; } - .btn-switch input:checked + .switch-overlay { - left: 0; - transition: all .3s linear .0s; } - .btn-switch input:checked + .switch-overlay .switch-handle { - background-color: #007a3e; - background: linear-gradient(to bottom, #008744 0%, #007a3e 100%); - transition: background-color 0.3s linear 0s; - border: 1px solid transparent; } - .btn-switch input + .switch-overlay { - left: -48px; - transition: all .3s linear .0s; } - .btn-switch input + .switch-overlay .switch-handle { - background-color: #f2f2f2; - background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); - transition: background-color 0.3s linear 0s; - border: 1px solid #d2d2d2; } - .btn-switch input[disabled] + .switch-overlay { - left: 0; - width: 100% !important; - background-color: #d2d2d2; - color: #959595; - cursor: not-allowed !important; } - .btn-switch input[disabled] + .switch-overlay .btn-slider-on { - display: none; } - .btn-switch input[disabled] + .switch-overlay .activo { - display: none; } - .btn-switch input[disabled] + .switch-overlay .switch-handle { - display: none; } - .btn-switch input[disabled] + .switch-overlay .btn-slider-off { - left: 0; - text-align: center; - padding: 0; } - .btn-switch input[disabled]:checked + .switch-overlay { - left: 0; - width: 100% !important; - background-color: #fff; } - .btn-switch input[disabled]:checked + .switch-overlay .btn-slider-off { - display: none; } - .btn-switch input[disabled]:checked + .switch-overlay .btn-slider-off + .inactivo { - display: none; } - .btn-switch input[disabled]:checked + .switch-overlay .switch-handle { - display: none; } - .btn-switch input[disabled]:checked + .switch-overlay .btn-slider-on { - display: block; - text-align: center; - padding: 0; - color: #007a3e !important; - font-weight: bold; } - .btn-switch input[disabled]:checked + .switch-overlay .activo { - display: block; - text-align: center; - padding: 0; - color: #007a3e !important; - font-weight: bold; } - .btn-switch input[disabled]:checked + .btn-slider-on { - display: block; } - .btn-switch input[disabled] + .btn-slider-on + .switch-handle { - width: 100%; - margin: 0; } - .btn-switch input[disabled] + .btn-slider-on + .switch-handle + .btn-slider-off { - display: block; } - .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on { - display: none; } - .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on .activo { - border: medium none; - color: #666; - font: 16px/32px "Omnes-ECOMP-W02", Arial; - height: auto; - margin: 0 auto; - width: auto; } - .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on .activo:before { - display: none; } - .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off { - display: block; - padding: 0; - text-align: center; - color: #333333; } - .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off .inactivo { - border: medium none; - color: #666; - font: 16px/32px "Omnes-ECOMP-W02", Arial; - height: auto; - margin: 0 auto; - width: auto; } - .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off .inactivo:before { - display: none; } - .btn-switch input[type="checkbox"][disabled]:checked + .switch-overlay .btn-slider-on { - display: block; - padding: 0; - text-align: center; - color: #007a3e; } - .btn-switch input[type="checkbox"][disabled]:checked + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off { - display: none; } - .btn-switch input[type="checkbox"][disabled]:checked + .switch-overlay .activo { - color: #007a3e; - font-weight: bold; } - - .switch-overlay { - border-radius: 16px; - color: black !important; - font-size: 1.6rem; - height: 32px; left: 0; + margin-bottom: 15px; + border: none; } + .b2b-modal-header { + padding: 20px 46px 20px 15px; } + .b2b-modal-body { + width: 100%; + padding: 0 15px 15px; } + .modalwrapper.modal-docked { position: absolute; - top: -1px; - width: 126px; - overflow: hidden; } - - .btn-slider-on { - left: -1px; - text-align: left; - padding-left: 12px; - display: inline-block; - font-family: "Omnes-ECOMP-W02", Arial; - height: 32px; - line-height: 32px; - position: absolute; - top: 1px; - width: 80px; } - - .btn-slider-off { - display: inline-block; - font-family: "Omnes-ECOMP-W02", Arial; - height: 32px; - line-height: 32px; - position: absolute; - top: 1px; - width: 80px; - right: 1px; - text-align: right; - padding-right: 11px; } - - .switch-handle { - border-radius: 50%; - display: inline-block; - height: 26px; - left: 50px; - position: absolute; - top: 3px; - width: 26px; } - - .activo { + height: 100%; + padding: 0; } + .modalwrapper.modal-docked .modal.fade.in { + margin-bottom: 0; + width: 100% !important; + max-height: 100%; + height: 100%; + border-radius: 0; } + .modalwrapper.modal-docked .b2b-modal-body { + overflow-y: scroll; + height: 100%; } + .modalwrapper.modal-docked.modal-landscape { + overflow-y: hidden; + position: fixed; } + .modalwrapper.modal-docked.modal-landscape .modal { + overflow-y: scroll; + max-width: 100%; } + .modalwrapper.modal-docked.modal-landscape .b2b-modal-body { + height: auto; + overflow-y: hidden; } + .b2b-modal-footer { + padding: 0 15px; } + .b2b-modal-footer .cta-button-group { + display: block; + padding: 15px 0; } + .b2b-modal-footer .cta-button-group .btn { + float: none; } + .b2b-modal-footer .cta-button-group .btn + .btn { + margin-bottom: 0; } + .b2b-modal-footer .cta-button-group a.visible-phone { + align-items: center; + display: flex !important; + height: 42px; + justify-content: center; } } + +.b2b-modal-footer > .cta-button-group { + line-height: 40px; } + +.ajaxed, +.modal.fade.in .b2b-modal-header, +.modal.fade.in .b2b-modal-body, +.modal.fade.in .b2b-modal-footer { + animation-duration: 0.01s; + -o-animation-duration: 0.01s; + -ms-animation-duration: 0.01s; + -moz-animation-duration: 0.01s; + -webkit-animation-duration: 0.01s; + animation-name: DOMinsertion; + -o-animation-name: DOMinsertion; + -ms-animation-name: DOMinsertion; + -moz-animation-name: DOMinsertion; + -webkit-animation-name: DOMinsertion; } + +.monthselector thead tr th { + min-width: 46px; } + +.monthselector thead tr:after { + content: ""; + position: absolute; + left: 20px; + top: 52px; + height: 1px; + width: 85%; + border-bottom: 1px solid #ccc; } + +.monthselector tbody tr:last-child { + height: 50px; } + +.monthselector td.day { + margin: 1px 4px !important; + width: 64px !important; } + +.monthselector .datepicker-switch { + width: 195px !important; } + +.monthselector .show-date { + width: 30px !important; } + +.monthselector button.faux-input { + width: 100%; } + .monthselector button.faux-input:focus { + border: 1px solid #0574ac; } + .monthselector button.faux-input:disabled { + cursor: not-allowed; } + +.monthselector .cta-button-group { + padding: 0 20px; } + .monthselector .cta-button-group a { + margin-right: 20px; } + +.monthselector .day.active .show-date:after, .monthselector .day:focus .show-date:after, .monthselector .due-date.disabled .show-date:after { + height: 30px; + left: 9px !important; + top: 0; + width: 42px !important; } + +.monthselector .disabled.day:focus .show-date:after { + border: none; } + +.monthselector .icon-primary-calendar { + display: block; } + +.b2b-ml-nav { + padding: 0 10px 0 10px; + width: 320px; } + +.b2b-ml-nav ul { + list-style: none; + list-style-type: none; } + +.b2b-ml-nav a { + display: block; + padding: 0 0 5px 30px; + line-height: 22px; + margin-left: -10px; + color: #0568ae; + font-size: 1.4rem; } + +.b2b-ml-nav a:focus { + outline-offset: 1px; } + +.b2b-ml-nav li:focus { + outline: none; } + +.b2b-ml-nav li:focus > a { + outline: thin dotted #666; + outline-offset: 1px; } + +.b2b-ml-nav ul li { + border-left: 1px solid #ccc; } + +.b2b-ml-nav ul ul { + padding: 0 0 0 20px; } + +.b2b-ml-nav ul > li { + position: relative; + line-height: 18px; } + +.b2b-ml-nav a > span { + background-color: #FFF; + display: inline; + margin: 0; + padding: 0; + position: absolute; + left: -11px; + top: 0; } + +.b2b-ml-nav a > span > i { + font-size: 20px; } + +.b2b-ml-nav a:only-child > span { + left: -6px; + border-radius: 50%; + line-height: 7px; + top: 5px; } + +.b2b-ml-nav a:only-child > span > i { + background-color: inherit; + background: #fff; + font-size: 5px; } + +.b2b-ml-nav ul li:first-child > a:only-child > span { + left: -6px; + border-radius: 50%; + line-height: 12px; + top: 0px; } + +.b2b-ml-nav li a + ul { + display: none; } + +.b2b-ml-nav li a.active + ul { + display: block; } + +.b2b-ml-nav .selected { + color: #333; } + +/*to overide ng-doc inline property for library demo - TODO: Move to docs.css*/ +.b2b-ml-nav a [class^="icon-primary-"], a [class*=" icon-primary-"], a [class^="icon-primary-"]:before, a [class*=" icon-primary-"]:before { + display: inline-block; } + +.b2b-alerts-messages { + background-color: #fff; + border-radius: 8px; + height: auto; } + .b2b-alerts-messages h3 { + color: #333 !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + margin-bottom: 0 !important; + margin: 1em 0 5px; + line-height: 27px; + font-size: 18px; } + .b2b-alerts-messages h4 { + color: #333 !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + margin-bottom: 0 !important; } + .b2b-alerts-messages .alert-info { + background-color: #0574ac; + border: 0; } + .b2b-alerts-messages .alert-error { + background-color: #cf2a2a; + border: 0; } + .b2b-alerts-messages .alert-success { + background-color: #1b7e28; + border: 0; } + .b2b-alerts-messages div:nth-child(2) { + padding: 0 0 15px 10px; + vertical-align: baseline; } + .b2b-alerts-messages .close:before { + color: #767676; } + .b2b-alerts-messages p { + font-size: 14px; + color: #333; + font-family: "Omnes-ECOMP-W02", Arial; } + .b2b-alerts-messages p a { + color: #333; } + .b2b-alerts-messages .btn-small { + margin-bottom: 0px; } + +.b2b-alerts-success { + border: 1px solid #1b7e28; } + +.b2b-alerts-error { + border: 1px solid #cf2a2a; } + +.b2b-alerts-info { + border: 1px solid #0574ac; } + +/* TODO: Rearange this and move to patches if needed */ +.b2b-breadcrumb-css-override > li { + margin-right: 24px; } + +.b2b-breadcrumb-css-override li > * { + float: left !important; } + +.b2b-css-override ul.nav-tabs { + margin-bottom: 0; } + + +.b2b-top-nav-buttons-css-override { + margin-bottom: 0; + margin-top: 2px; } + +.b2b-auto-width { + width: auto !important; } + +.b2b-toggle-header-active { + color: #0568ae; } + +.b2b-toggle-header-inactive { + color: #333333; } + +.b2b-toggle-header-icon { + cursor: pointer; } + + +.icon-primary-circle:before { + background-image: url("data:image/svg+xml,%3Csvg%20baseProfile%3D%22tiny%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%3E%3Ccircle%20fill%3D%22transparent%22%20stroke%3D%22%23666%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2218%22%20cy%3D%2218%22%20r%3D%2216%22%2F%3E%3C%2Fsvg%3E"); + content: ""; + position: absolute; + top: 0; + z-index: 1; } + +.ds2-no-colors .icon-primary-circle:before { + background-image: none; + content: "\e902"; } + +i:focus { + outline: thin dotted #666; } + +.p-col-md-12 { + width: 50%; } + +.pager__item { + border-radius: 0; + cursor: default; + display: inline-block; + margin: 5px; + width: 22px; + height: 23px; + vertical-align: baseline; } + +.pager { + padding-top: 10px; + padding-bottom: 20px; + text-align: center; + margin: 0 auto; } + +.pager__item--input { + color: #067ab4; + max-height: 32px; + max-width: 40px; + padding-left: 0; + padding-right: 0; + text-align: center; + margin-left: 10px; } + +.row.section-row { + margin-bottom: 20px; } + +.pager__item--active { + border-bottom: 2px solid #0574ac; + border-radius: 0; + color: #333333; } + +.pager a.pager__item--active:hover { + cursor: default; } + +.pager a:hover, .pager a:focus { + text-decoration: none; + color: #333333; + cursor: pointer; } + +.pager a.disabled:hover, .pager a.disabled:focus { + cursor: not-allowed; } + +.row.section-row.b2b-page { + display: block; } + +a.pager__item--next:focus, a.pager__item--prev:focus { + text-decoration: none; + border: 0; } + +.pager__item--next, .pager__item--prev { + margin: 5px; + padding: 1.5px 6px 1.5px 6px; } + +.pager .disabled i { + pointer-events: none; + cursor: default; + color: #c4c4c4; } + +.fieldLabel { + color: #666666; } + +.fieldLabel input { + color: #666666; } + +.pSelect { + float: right; + width: 150px; } + +.numericResult { + margin-bottom: 20px; + font-size: 1.6rem; + margin-top: 20px; + display: inline-block; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + +.mobile-view > .pager__item { + margin: 5px 10px; + width: 24px; + height: 34px; + vertical-align: middle; + line-height: 34px; } + +.fade1, .fadel { + opacity: 0.4; } + +.fade2, .fadesl { + opacity: 0.6; } + +h4#pagination-truncated { + margin-top: 50px; } + +h4#pagination-large-count { + margin-top: 50px; } + +.p-col-md-12 input { + margin-left: 20px; } + +.pager a .icon-primary-right:before { + display: inline-block; } + +.pager a .icon-primary-left:before { + display: inline-block; } + +.page-heading { + background: white none repeat scroll 0 0; + margin-bottom: -12px; + padding-left: 10px; + padding-right: 10px; + position: relative; } + +.numericResult:focus { + outline: 1px dotted #0574ac; } + +.page-heading-group { + color: #ef6f00; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + +.pager > div > span.fieldLabel { + margin-left: 18px; } + +.pager .fieldLabel .btn-arrow { + top: 0; + left: 10px; + margin-left: -5px; } + +.b2b-p-col-md-12 { + width: 50%; } + .b2b-p-col-md-12 input { + margin-left: 20px; } + +.b2b-pager__item { + border-radius: 0; + cursor: default; + display: inline-block; + margin: 0px 5px 0 5px; + height: 23px; + vertical-align: baseline; } + +.b2b-pager__item--noclick { + pointer-events: none !important; + cursor: default !important; } + +.b2b-pager__item--droppable { + pointer-events: all !important; } + +.b2b-pager { + padding-top: 10px; + padding-bottom: 20px; + text-align: center; + margin: 0 auto; } + .b2b-pager a:hover { + text-decoration: none; + color: #333333; + cursor: pointer; } + .b2b-pager a:focus { + text-decoration: none; + color: #333333; + cursor: pointer; } + .b2b-pager a .icon-primary-right:before { + display: inline-block; } + .b2b-pager a .icon-primary-left:before { + display: inline-block; } + .b2b-pager .disabled i { + pointer-events: none; + cursor: default; + color: #c4c4c4; } + +.b2b-pager__item--input { + color: #067ab4; + max-height: 32px; + max-width: 60px; + padding-left: 0; + padding-right: 0; + text-align: center; + margin-left: 5px; } + +.row.section-row { + margin-bottom: 20px; } + +.b2b-pager__item--active { + border-bottom: 2px solid #0574ac; + border-radius: 0; + color: #333333; } + +.row.section-row.b2b-page { + display: block; } + +a.b2b-pager__item--next:focus { + text-decoration: none; + border: 0; } + +a.b2b-pager__item--next-disabled { + outline: 0; } + +a.b2b-pager__item--next-disabled > [class^="icon-primary-"] { + color: #cccccc; + cursor: not-allowed; + outline: 0; } + +a.b2b-pager__item--prev:focus { + text-decoration: none; + border: 0; } + +a.b2b-pager__item--prev-disabled { + outline: 0; } + +a.b2b-pager__item--prev-disabled > [class^="icon-primary-"] { + color: #cccccc; + cursor: not-allowed; } + +.b2b-pager__item--next { + padding: 1.5px 0px 1.5px 0px; } + +.b2b-pager__item--prev { + padding: 1.5px 0px 1.5px 0px; } + +.fieldLabel { + color: #666666; } + .fieldLabel input { + color: #666666; } + .fieldLabel .btn-arrow { + top: 0; + left: 10px; } + +.b2b-pSelect { + float: right; + width: 150px; } + +.b2b-numericResult { + margin-bottom: 20px; + font-size: 1.6rem; + margin-top: 20px; } + +.b2b-mobile-view > .b2b-pager__item { + margin: 5px 10px; + min-width: 23px; + height: 34px; + vertical-align: middle; + line-height: 34px; } + +.b2b-fade1 { + opacity: 0.4; } + +.b2b-fade2 { + opacity: 0.6; } + +.b2b-fadesl { + opacity: 0.6; } + +h4#b2b-pagination-truncated { + margin-top: 50px; } + +h4#b2b-pagination-large-count { + margin-top: 50px; } + +.b2b-page-heading { + background: white none repeat scroll 0 0; + margin-bottom: -12px; + padding-left: 10px; + padding-right: 10px; + position: relative; } + +.b2b-numericResult:focus { + outline: 1px dotted #0574ac; } + +.b2b-page-heading-group { + color: #ef6f00; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + +.b2b-pager > div > span.fieldLabel { + margin-left: 18px; } + +.b2b-go-to-page { + margin-top: 14px; } + +.b2b-go-to-page-inline { + display: inline-block; } + +input.b2b-phone-mask-input { + padding-right: 15px; } + input.b2b-phone-mask-input:hover, input.b2b-phone-mask-input:focus { + padding-right: 15px; } + +/************************** Start - Should be removed after the styling in global is fixed *******************/ +input::-ms-clear { + display: none; } + +/************************** End - Should be removed after the styling in global is fixed *******************/ +@media (max-width: 767px) { + input::-ms-clear { + display: block; } } + +.pivot-link-group { + background-color: #5a5a5a; + border-top: 1px solid #959595; } + +.pivot-links > li { + border-bottom: 1px solid #959595; } + +.pivot-links > li > a { + color: #fff; + display: block; + padding: 12px 15px 10px; + line-height: normal; } + +.b2b-profile-block-container { + min-height: 200px; + height: auto; + background-color: #fff; + border-radius: 8px; + border: 1px solid #ccc; + box-shadow: 0px 1px 1px 1px #ccc; + display: inline-table; + margin: 15px 15px; } + +.b2b-profile-block-details p, .b2b-profile-block-details div { + padding: 2px 7px; + font-size: 1.4rem; } + +.b2b-profile-block-details .radio-label, .b2b-profile-block-details a { + font-size: 1.4rem; } + +.b2b-profile-block-details p label, .b2b-profile-block-details p span { + padding-left: 10px; } + +.b2b-profile-block-footer { + margin-bottom: 12px; + margin-top: 5px; + height: 35px; } + +.b2b-profile-block-details p { + word-wrap: break-word; + height: 61px; } + .b2b-profile-block-details p:first-child { + margin-top: 10px; } + .b2b-profile-block-details p:after { + content: ' '; display: block; - font-size: 0.1px; - line-height: 40px; - overflow: hidden; } - .activo:before { - background-image: none; - border-left: 3px solid #007a3e; - content: " "; - height: 18px; - left: 22px; - margin: 2px auto; - position: absolute; - top: 5px; - width: 0; } - - .inactivo { - font-size: 0.1px; - line-height: 40px; } - .inactivo:before { - background-image: none; - border: 3px solid #959595; - border-radius: 100%; - content: " "; - display: block; - position: absolute; - top: 4px; - right: 3px; - height: 16px; - width: 16px; } - - .btn-switch.focused { - outline: 1px dotted #000; - outline-offset: 5px; } - - table { - max-width: 100%; - background-color: transparent; - border-collapse: collapse; - border-spacing: 0; - width: 100%; - margin-bottom: 20px; } - - table caption { - text-align: left; } - - table thead th { - vertical-align: bottom; } - - table th, - table td { - padding: 19px 20px; - line-height: 1; - font-size: 1.4rem; - text-align: left; - vertical-align: top; - word-wrap: break-word; } - - table th { + border: 0.2px solid #ccc; + margin-top: 12px; } + +.b2b-profile-block-details .radio { + margin-left: 15px; + height: 30px; } + +.b2b-approval-icon { + color: #1b7e28; + float: right; + position: relative; + left: 10px; } + .b2b-approval-icon i { + color: #1b7e28; + float: right; } + +.b2b-profile-link { + float: right; + position: relative; + left: -4px; } + +a.link-profile { + position: relative; + left: -5px; + float: right; + margin-bottom: 16px; } + +.b2b-profile-block-radio { + position: relative; + top: -5px; } + +.b2b-profile-card { + min-width: 229px; + min-height: 354px; + margin: 10px; + border: solid 1px #CCC; + font-family: "Omnes-ECOMP-W02", Arial; + display: inline-block; + vertical-align: top; } + .b2b-profile-card .top-block { + padding: 15px 20px; + background-color: #e4e4e4; + max-height: 153px; } + .b2b-profile-card .bottom-block { + padding: 15px 20px 15px 20px; + background-color: #fff; } + .b2b-profile-card .profile-image { + background: #e4e4e4; + margin-bottom: 15px; + text-align: center; } + .b2b-profile-card .profile-image .default-img { + display: inline-block; + width: 60px; + height: 60px; + margin-bottom: 10px; + border: 6px solid #fff; + border-radius: 99em; + -webkit-border-radius: 99em; + -moz-border-radius: 99em; + /* background-color: #eee; */ } + +.profile-image img { + display: inline-block; + width: 60px; + height: 60px; + margin-bottom: 10px; + border: 6px solid #fff; + border-radius: 99em; + -webkit-border-radius: 99em; + -moz-border-radius: 99em; + /* background-color: #eee; */ } + +.b2b-profile-card .profile-image .default-img { + font-family: "Omnes-ECOMP-W02", Arial; + color: #333; + background-color: #fff; + font-size: 32px; + line-height: 22px; + padding: 5px; + padding-top: 13px; + width: 60px; + height: 60px; + text-transform: uppercase; } + +.b2b-profile-card .profile-image .name { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 16px; + color: #333; + text-align: center; + margin-bottom: 5px; + margin-top: 5px; + overflow: hidden; + word-break: break-word; + white-space: normal; + text-transform: capitalize; } + +.b2b-profile-card .profile-image .status-icon { + border-radius: 10px; + border: 1px solid #fff; + margin: 0 3px 0 0; + width: 10px; + height: 10px; + display: inline-block; + vertical-align: middle; } + +.b2b-profile-card .profile-image .status { + font-size: 12px; + line-height: 15px; + text-align: center; + margin: 0 15px 0 0; + color: #444; } + +.b2b-profile-card .status .circle { + width: 10px; + height: 10px; + border-radius: 50%; + margin: 30px 6px 0px 20px; + text-align: center; + background-color: #444; } + +.b2b-profile-card .profile-image .status-green { + background-color: #0c0; } + +.b2b-profile-card .profile-image .status-red { + background-color: red; } + +.b2b-profile-card .profile-image .status-blue { + background-color: #00f; } + +.b2b-profile-card .profile-image .status-yellow { + background-color: #ff0; } + +.b2b-profile-card .profile-image .status .status-badge { + margin-left: 5px; + border: dotted 1px #444; + background-color: transparent; + font-weight: 400; + color: #444; + height: 17px; + padding: 0 5px; + font-size: 11px; + padding-left: 5px; + padding-right: 5px; } + +.b2b-profile-card .profile-details { + background: #fff; } + .b2b-profile-card .profile-details label { + display: block; + cursor: text; font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 1.6rem; - font-weight: normal; - color: #333333; - padding: 13px 20px; } - - table tbody td { - border-left: 1px solid #d2d2d2; - border-top: 1px solid #d2d2d2; } - - table tbody td:first-child { - border-left: none; } - - .tiny-accordion.iconleft.accordion-table-layout .toggle-header, - .tiny-accordion.iconleft.accordion-table-layout .toggle-header + .accordion-content, - .tiny-accordion.iconleft.accordion-table-layout .inactive-toggle-header { - padding: 0 0 0 50px; } - - .faux-table-cell, - .inactive-toggle-header .faux-table-cell { - display: table-cell; - width: 100%; - padding: 13px 0 10px 0; - font-size: 16px; - color: #333333; } - - .accordion-content .faux-table-cell { - display: table-cell; - width: 100%; - padding: 0 0 10px 0; } - - .faux-table-cell:last-child { - text-align: right; - min-width: 100px; - max-width: 150px; - width: 1%; - background-color: #f2f2f2; - color: #333333; + font-weight: bolder; font-size: 14px; - border-left: 1px solid #d2d2d2; - padding: 0 20px 0 10px; } - - .tiny-accordion.iconleft.accordion-table-layout .toggle-header.opened .hide-when-expanded { - opacity: 1; } - - .tiny-accordion.iconleft.accordion-table-layout .toggle-header.opened .hide-when-expanded { - opacity: 0; - transition: opacity .3s linear .2s; } - - @media (max-width: 767px) { - table th, - table td { - padding: 19px 10px; } - table th:first-child, - table td:first-child { - padding: 19px 15px; } } - - .data-row-list ul > li { - background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewport%3D%220%200%201%201%22%20style%3D%22width%3A100%25%3B%20height%3A1px%3B%22%3E%3Cstyle%3Eline%7Bstroke%3Argba(153%2C153%2C153%2C1)%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cline%20y2%3D%221%22%20y1%3D%221%22%20x1%3D%221%22%20x2%3D%22100%25%22%20stroke-dasharray%3D%221%2C%203%22%2F%3E%3C%2Fsvg%3E") !important; } - - table { - border-bottom: 1px solid #d2d2d2; } - - table th, - table td { - padding: 15px 15px 10px; } - - .data-row .col-1 { - white-space: nowrap; - padding: 15px 15px 0 15px; - position: relative; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 1.4rem; - border-top: 1px solid #d2d2d2; } - - .data-row.has-button .col-1 { - padding: 0; } - - .complex-table .data-row .col-1 { - color: #0568ae; - cursor: pointer; } - - .data-row.opened { - box-shadow: 0 -2px 0 0 #d2d2d2; } - - .data-row.opened td, - .data-row.opened th { - border-left: 1px solid transparent; - border-bottom: 1px solid transparent; } - - .data-row.opened + .data-row-list { - box-shadow: 0 1px 0 0 #d2d2d2; } - - .data-row.opened + .data-row-list > td { - padding-top: 0; } - - .data-row.opened + .data-row-list + .data-row.opened { - box-shadow: 0 -1px 0 0 #d2d2d2; } - - .data-row button { - background-color: transparent; - border: medium none; - border-radius: 0; - color: #0568ae; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 1.4rem; - left: 0; + color: #333; + padding: 0; + margin: 0; } + .b2b-profile-card .profile-details div { margin: 0; - padding: 12px 15px 7px; + font-size: 14px; + color: #333; + padding-bottom: 6.5px; } + +.b2b-profile-card .b2b-add-user { + background: white; + border-style: dotted; + font-size: 16px; + color: #333; + position: relative; } + .b2b-profile-card .b2b-add-user i { + font-size: 30px; + padding-bottom: 15px; } + +.b2b-profile-card .atcenter { + cursor: pointer; + margin-top: 60%; + vertical-align: middle; + text-align: center; } + +.b2b-profile-card .tooltip { + cursor: pointer; } + .b2b-profile-card .tooltip .helpertext { position: relative; - text-align: left; - top: 0; - vertical-align: middle; } - - .data-row button:focus { - outline: 1px dotted black; } - - .data-row .col-1 i { - top: -1px; - margin-right: 10px; - display: inline-block !important; } - - .data-row-list th:first-child { - background-color: inherit !important; - border-top: none; - padding: 0 15px 15px; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 1.4rem; } - - .data-row-list ul { - margin: 0 0 0 30px; } - - .data-row-list ul > li:before { - display: none; } - - .data-row-list ul > li { - /* background-image in tables.less */ - background-position: left 13px; - background-repeat: repeat-x; - background-size: 4px 1px; - display: table; - padding-left: 0; + color: white; } + +.b2b-profile-card .tooltip-wrapper { + position: relative; } + +/* Overrides for tooltip absolute positioning */ +@media (min-width: 1025px) { + .b2b-profile-card .tooltip-size-control { + width: 100% !important; } } + +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 0 0; } + to { + background-position: 80px 0; } } + +@keyframes progress-bar-stripes { + from { + background-position: 0 0; } + to { + background-position: 80px 0; } } + +.progress { + background-color: #e4e4e4; + border-radius: 4px; + height: 14px; + margin-bottom: 20px; + min-width: 250px; + overflow: hidden; + padding: 0; + position: relative; } + +a .progress { + margin-bottom: 0; } + +.progress .bar { + background-color: #666; + border-radius: 4px; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + height: 100%; + width: 0; } + +.progress-arrow { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + -webkit-justify-content: flex-end; + -ms-flex-pack: end; + justify-content: flex-end; } + +.progress-link + .usage-bar { + margin-top: 5px; } + +.progress-success .bar, .progress .bar-success { + background-color: #1b7e28; } + +.progress-warning .bar, .progress .bar-warning { + background-color: #ef6f00; } + +.progress-danger .bar, .progress .bar-danger { + background-color: #cf2a2a; } + +.progress.increment { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; } + +.progress.increment .bar:first-child:not(:last-child) { + border-right: none; + border-radius: 4px 0 0 4px; } + +.progress.increment .bar:last-child:not(:first-child) { + border-left: none; + border-radius: 0 4px 4px 0; } + +.progress.increment .bar + .bar:not(:last-child) { + border-left: none; + border-right: none; + border-radius: 0; } + +.progress.increment .bar:not(:first-child) { + border-left: 1px solid white !important; } + +.usage-bar { + display: table; + float: none; + width: 100%; + margin-bottom: 1px; } + +.usage-bar > .usage-text { + display: table-cell; + width: 1%; } + +.progress + .usage-bar { + margin-top: -15px; } + +.usage-bar .usage-text { + font-size: 1.4rem; } + +.usage-bar .usage-text:first-child { + white-space: nowrap; } + +.usage-bar .usage-text.text-right { + vertical-align: top; + font-size: 1.4rem; + width: auto !important; } + +.usage-bar .usage-text.text-right:before { + content: ""; + display: table; + height: .1em; } + +.usage-bar.billing-cycle .usage-text { + font-size: 1.4rem; } + +.usage-bar.billing-cycle .usage-text.text-right { + vertical-align: bottom; } + +.progress.autocolor [data-percentage="1"], .progress.autocolor [data-percentage="2"], .progress.autocolor [data-percentage="3"], .progress.autocolor [data-percentage="4"], .progress.autocolor [data-percentage="5"], .progress.autocolor [data-percentage="6"], .progress.autocolor [data-percentage="7"], .progress.autocolor [data-percentage="8"], .progress.autocolor [data-percentage="9"], .progress.autocolor [data-percentage="10"] .progress.autocolor [data-percentage^="2"], .progress.autocolor [data-percentage^="3"], .progress.autocolor [data-percentage^="4"], .progress.autocolor [data-percentage^="5"], .progress.autocolor [data-percentage="60"], .progress.autocolor [data-percentage="61"], .progress.autocolor [data-percentage="62"], .progress.autocolor [data-percentage="63"], .progress.autocolor [data-percentage="64"] { + background-color: #1b7e28; } + +.progress.autocolor [data-percentage="65"], .progress.autocolor [data-percentage="66"], .progress.autocolor [data-percentage="67"], .progress.autocolor [data-percentage="68"], .progress.autocolor [data-percentage="69"], .progress.autocolor [data-percentage^="7"], .progress.autocolor [data-percentage^="8"] { + background-color: #ef6f00; } + +.progress.autocolor [data-percentage^="9"], .progress.autocolor [data-percentage="100"] { + background-color: #cf2a2a; } + +.b2b-seek-bar-container { + position: relative; } + .b2b-seek-bar-container div { + position: absolute; } + .b2b-seek-bar-container .b2b-seek-bar-track-container { width: 100%; } - - .data-row-list li div { - display: table-cell; - background-color: white; - float: left; - text-align: left; - padding-left: 0; - padding-right: 7px; } - - .data-row-list li div + div { - float: right; - text-align: right; - padding-right: 0; - padding-left: 7px; } - - .complex-table td:nth-child(1), - .complex-table td:nth-child(2), - .complex-table td:nth-child(3), - .complex-table td:nth-child(4), - .complex-table td:nth-child(5), - .complex-table td:nth-child(6), - .complex-table td:nth-child(7), - .complex-table td:nth-child(8), - .complex-table td:nth-child(9) { - white-space: nowrap; } - - th:nth-child(8) { - word-wrap: break-word; - word-spacing: 0; } - - .align-col-right { - text-align: right; } - - .complex-table th:not(:first-child), - .complex-table td:not(:first-child) { - text-align: right; } - - .striped tbody > tr td { - background-color: transparent !important; } - - .striped tbody > tr.data-row.odd, - .striped tbody > tr.data-row.odd + .data-row-list, - .striped tbody > tr.data-row.odd + .data-row-list li div { - background-color: #f2f2f2 !important; } - - .striped tbody > tr:not('.data-row'):nth-child(even) { - background-color: #f2f2f2; } - - .b2b-table-div .selectWrap { - width: 290px; + .b2b-seek-bar-container .b2b-seek-bar-track { + width: 100%; + height: 6px; + background-color: #cccccc; + border-radius: 10px; } + .b2b-seek-bar-container .b2b-seek-bar-track-fill { + width: 100%; + height: 6px; + background-color: #cccccc; + border-radius: 10px; + width: 0; + background-color: #157BB2; + transition: width 0s linear; } + +.seek-bar-container .seek-bar-knob-container { + transition: left 0s linear; } + +.b2b-seek-bar-container .b2b-seek-bar-knob { + width: 14px; + height: 14px; + border-radius: 10px; + top: -4px; + left: -8px; + border: 1px solid #cccccc; + background: white; + cursor: pointer; } + +.b2b-seek-bar-container .b2b-seek-bar-knob:focus { + outline: thin dotted #666; } + +.b2b-seek-bar-container.vertical { + width: 100%; + height: 100%; + margin: 0 auto; + position: relative; + border-radius: 10px; } + .b2b-seek-bar-container.vertical .b2b-seek-bar-track-container { position: relative; - display: inline-table; - margin-bottom: 0px; } - - .b2b-external-sort-div { - float: right; - padding-bottom: 25px; } - - .b2b-external-sort-div .sortButton { - font-size: 36px; - border: 1px solid #ccc; - background: #FFF; - border-radius: 6px; - text-align: center; - background: linear-gradient(#fcfcfc, #f2f2f2); - background-blend-mode: multiply; - width: 1em; } - - .b2b-external-sort-label { - padding-bottom: 10px; } - - .b2b-external-sort-div a:hover { + height: 100%; } + .b2b-seek-bar-container.vertical .b2b-seek-bar-track { + position: absolute; + height: 100%; } + .b2b-seek-bar-container.vertical .b2b-seek-bar-track-fill { + position: absolute; + bottom: 0; + height: 0; + width: 100%; } + .b2b-seek-bar-container.vertical .b2b-seek-bar-knob-container { + transition: bottom .01s linear; + position: relative; + bottom: 0; } + .b2b-seek-bar-container.vertical .b2b-seek-bar-knob { + position: absolute; + border-radius: 10px; + top: -7px; + left: -4px; } + +.form-search .search-query { + width: 100% !important; } + +.form-search .well { + margin-top: 0; } + +.form-search > ul.nav > li.section { + min-height: 20px !important; } + +input.b2b-search-input-field { + margin-bottom: 0px; } + +.search-suggestion-list { + background-color: #FFFFFF; + border: 1px solid #ccc; + border-radius: 0 0 6px 6px; + box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); + margin-top: -5px; + max-height: 400px; + overflow-x: hidden; + overflow-y: auto; + padding: 15px 0; + position: absolute; + width: 100%; + z-index: 1000; } + .search-suggestion-list > li.active { + background-color: #cccccc; } + .search-suggestion-list:empty { + display: none; } + +.b2b-search-hightlight { + font-weight: bold; } + +input[type="text"]::-moz-placeholder { + color: #767676; + font-family: "Omnes-ECOMP-W02-Italic", Arial; } + +input[type="text"]:focus { + z-index: 1000; } + +input[type="text"] + .reset-field { + background-color: #FFFFFF; + height: 90%; + top: 5%; } + +.btn-search:focus { + outline: 1px dotted #0574ac; } + +.field-group input:not([type="button"])[disabled] ~ .btn-search { + background-color: #eee; } + +.btn-search[class*="btn"] { + background-color: #FFFFFF; + background-size: 20px 20px; + border-radius: 0 1.5rem 1.5rem 0; + height: 3rem; + min-width: 4.4rem !important; + right: 0.15rem; + top: 0.15rem; + width: 4.4rem; } + +.search-suggestion-wrapper { + margin-bottom: 15px; + position: relative; } + .search-suggestion-wrapper .no-result { + padding: 0px 15px; } + +.search-suggestion-item { + color: #333333; + line-height: 4rem; + padding: 0 15px; + position: relative; + z-index: 1000; } + .search-suggestion-item:hover { + background-color: #e4e4e4; cursor: pointer; } - - .b2b-external-sort-div a:hover, .b2b-external-sort-div a:focus { - text-decoration: none; } - - .b2b-external-sort-label label { - position: relative; } - - .b2b-external-sort-margin { - margin-right: 13px !important; } - - .b2b-table-sorter-icon [class*="icoArrows-"]:before { - font-size: 20px; } - - @media screen and (max-width: 950px) { - .b2b-external-sort-margin .selectWrap { - bottom: 0px !important; } } - - .tablesorter-default .tablesorter-header.sorter-false .tablesorter-header-inner { - background: 0 0; - cursor: default; } - - .tablesorter-default .tablesorter-header .tablesorter-header-inner { - /* background-image: url(images/tables/upanddown.png);*/ - background-position: center right; - background-repeat: no-repeat; + .search-suggestion-item:focus { + background-color: #e4e4e4; + cursor: pointer; } + .search-suggestion-item a { + color: #333333; + text-decoration: none; } + +.btn-search i { + color: #767676; } + +input.b2b-search-input-field:focus ~ .btn-search > i, .btn-search:focus > i { + color: #0568ae; } + +button.btn-search[disabled] { + cursor: not-allowed; } + button.btn-search[disabled] i { + color: #767676; } + +.innershadow { + -webkit-background-blend-mode: mutilply; + box-shadow: 0 3px 0 2px rgba(0, 0, 0, 0.08); } + +.linkSelectorModule { + position: relative; + height: 32px; + line-height: 20px; + border: 0px; + width: auto; + display: block; } + .linkSelectorModule .icon-primary-down { + font-size: 23px; + margin-top: -10px; + position: absolute; + top: 50%; + margin-left: -30px; } + .linkSelectorModule .selectModule { + background-color: transparent; + border: none; + color: #0568ae; cursor: pointer; - white-space: normal; - display: inline-block; - vertical-align: baseline; - zoom: 1; - *display: inline; - *vertical-align: auto; - /* padding: 0 24px 0 0;*/ } - - .tablesorter-default .tablesorter-header.sorter-false .tablesorter-header-inner { - padding: 0; } - - .tablesorter-default .tablesorter-header.tablesort-sortable .tablesorter-header-inner span { - margin-right: 24px; - display: inline-block; } - - /* - .tablesorter-default thead .headerSortUp .tablesorter-header-inner,.tablesorter-default thead .tablesorter-headerAsc .tablesorter-header-inner,.tablesorter-default thead .tablesorter-headerSortUp .tablesorter-header-inner { - background-image: url(images/tables/up.png); - } - - .tablesorter-default thead .headerSortDown .tablesorter-header-inner,.tablesorter-default thead .tablesorter-headerDesc .tablesorter-header-inner,.tablesorter-default thead .tablesorter-headerSortDown .tablesorter-header-inner { - background-image: url(images/tables/down.png); - } - */ - .tablesorter-default thead .headerSortUp .tablesorter-header-inner, - .tablesorter-default thead .tablesorter-headerAsc .tablesorter-header-inner, - .tablesorter-default thead .tablesorter-headerSortUp .tablesorter-header-inner, - .tablesorter-default thead .headerSortDown .tablesorter-header-inner, - .tablesorter-default thead .tablesorter-headerDesc .tablesorter-header-inner, - .tablesorter-default thead .tablesorter-headerSortDown .tablesorter-header-inner { - padding-right: 0; - line-height: 16px; } - - .tablesorter-default thead .headerSortUp .tablesorter-header-inner:after, - .tablesorter-default thead .tablesorter-headerAsc .tablesorter-header-inner:after, - .tablesorter-default thead .tablesorter-headerSortUp .tablesorter-header-inner:after { - font-family: 'icoPrimary' !important; - speak: none; - font-style: normal; - font-size: 24px; - font-weight: normal; - font-variant: normal; - text-transform: none; - line-height: 14px; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - -moz-user-select: none; - -ms-user-select: none; - -webkit-user-select: none; + border: 1px solid transparent; + box-shadow: none; + padding-right: 35px; + position: relative; user-select: none; - content: "\ea3c"; - /* position: relative;*/ + font-size: 1.6rem; } + .linkSelectorModule .selectModule:focus { + border: 1px dotted #ccc; + box-shadow: none; + -moz-user-select: none; } + .linkSelectorModule .selectModule:hover { + text-decoration: underline; } + .linkSelectorModule .active + .moduleWrapper:before { + background-color: #FFFFFF; + border-color: #d2d2d2; + border-style: solid; + border-width: 1px 1px 0 0; + content: ""; + display: block; + height: 15px; + right: 122px; + margin: 0; position: absolute; - text-decoration: inherit; - display: inline-block; - transform: rotate(180deg); - margin-left: -22px; - margin-top: 2px; } - - .tablesorter-default thead .headerSortDown .tablesorter-header-inner:after, - .tablesorter-default thead .tablesorter-headerDesc .tablesorter-header-inner:after, - .tablesorter-default thead .tablesorter-headerSortDown .tablesorter-header-inner:after { - font-family: 'icoPrimary' !important; - speak: none; - font-style: normal; - font-size: 24px; - font-weight: normal; - font-variant: normal; - text-transform: none; - line-height: 14px; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - -moz-user-select: none; - -ms-user-select: none; - -webkit-user-select: none; - user-select: none; - content: "\ea3c"; - /* position: relative;*/ + top: -8px; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + width: 15px; } + .linkSelectorModule .moduleWrapper { + top: 40px; } + .linkSelectorModule ul.awd-module-list { + border-radius: 6px 6px 0px 0px; } + +.selectorModule .icon-primary-down { + font-size: 23px; + margin-top: -11px; + position: absolute; + right: 4px; + top: 50%; } + +.selectorModule .selectModule { + border: 1px solid #d2d2d2; + border-radius: 6px; + box-shadow: 1px 5px 2px -5px rgba(0, 0, 0, 0.15); + display: block; + width: 100%; + padding-left: 15px; + background-color: transparent; + cursor: pointer; } + .selectorModule .selectModule:focus { + border: 1px solid #0568ae; + -moz-user-select: none; } + .selectorModule .selectModule span.module-data { position: absolute; - text-decoration: inherit; - display: inline-block; - margin-left: -22px; - margin-top: 2px; } - - .tablesorter-search-highlight { - font-weight: 700; } - - .tablesorter-headerRow th:focus { - outline: thin dotted #666; - outline-offset: -1px; } - - .b2b-table-message { - font-family: "Omnes-ECOMP-W02", Arial; } - .b2b-table-message .b2b-magnify-glass { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%20enable-background%3D%22new%200%200%2036%2036%22%3E%3Cpath%20d%3D%22M27.847%208.26c-1.805-1.803-4.202-2.795-6.751-2.795-2.548%200-4.945.993-6.749%202.796-1.803%201.803-2.796%204.2-2.796%206.75%200%201.879.543%203.681%201.576%205.242l-7.059%207.059c-.357.356-.554.831-.554%201.336-.001.505.196.98.554%201.337.357.356.832.552%201.336.552.503%200%20.977-.196%201.336-.553l7.047-7.048c1.576%201.062%203.402%201.622%205.309%201.622%202.55%200%204.948-.993%206.751-2.796%201.803-1.804%202.796-4.201%202.796-6.751%200-2.549-.993-4.947-2.796-6.751zm-6.761.96c3.186%200%205.778%202.592%205.778%205.778%200%203.186-2.592%205.778-5.778%205.778-3.186%200-5.778-2.592-5.778-5.778%200-3.185%202.592-5.778%205.778-5.778z%22%20fill%3D%22%23767676%22%2F%3E%3C%2Fsvg%3E"); - background-repeat: no-repeat; - background-position: center; - height: 50px; } - .b2b-table-message .b2b-alert { - font-size: 50px; } - .b2b-table-message .b2b-loading-dots { - font-size: 50px; - margin-bottom: 20px; } - .b2b-table-message .b2b-message { - text-align: center; - padding-bottom: 45px; - padding-top: 40px; - border-style: solid; - border-width: 1px; - border-top: none; - padding-bottom: 45px; - border-color: #d2d2d2; - width: 100%; - min-height: 220px; } - .b2b-table-message .b2b-error-title { - font-family: "Omnes-ECOMP-W02", Arial; - color: #444444; - line-height: 26px; - margin-top: 10px; } - .b2b-table-message .b2b-message-title { - color: #444; - font-family: "Omnes-ECOMP-W02", Arial; } - - .b2b-table-scrollbar { - border: 1px solid; - width: 651px; - position: relative; } - .b2b-table-scrollbar .b2b-table-inner-container { - width: 650px; - padding-left: 150px; - overflow-x: scroll; } - .b2b-table-scrollbar th:first-child { - background-color: #FFFFFF; } - .b2b-table-scrollbar td:first-child { - background-color: #FFFFFF; - border-top: 1px solid #cccccc; - border-right: 1px solid #cccccc; - margin-top: -0.5px; } - .b2b-table-scrollbar tr { - th: nth-child(2), td; } - .b2b-table-scrollbar tr :nth-child(2) { - border-left: none; } - .b2b-table-scrollbar tr:last-child > td:first-child { - border-bottom: 1px solid #cccccc; } - - .b2b-scrollbar-arrow-left { + bottom: 6px; + line-height: 20px; } + .selectorModule .selectModule img + span.module-data { + padding-left: 45px; } + +.selectorModule .selectModule.active { + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; } + +.selectorModule .moduleWrapper { + position: absolute; + width: 100% !important; + border-top: none; } + +.selectorModule ul.awd-module-list { + border-radius: 0px 0px 6px 6px; } + +.selectorModule .large > img { + height: 30px; + position: absolute; + width: 30px; + top: 20px; + left: 15px; } + +.selectModule { + background-color: transparent; + font-family: "Omnes-ECOMP-W02", Arial; + color: #333333; + font-size: 1.6rem; + height: 36px; + line-height: 35px; + margin-bottom: 0; + position: relative; + text-align: left; + top: 0; + z-index: 10; + padding: 0px; + margin: 0px; + cursor: pointer; } + +.moduleWrapper { + background-color: #FFFFFF; + position: absolute; + color: #191919; + z-index: 9999; + box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15); + border-radius: 0px 0px 6px 6px; } + .moduleWrapper .module-list-item img { + height: 30px; + position: absolute; + width: 30px; + top: 30px; + left: 15px; + align-self: center; } + .moduleWrapper span { + display: block; + white-space: nowrap; + font-size: 1.5rem; } + +.awd-module-list { + overflow-y: auto; + z-index: 9999; + max-height: 360px; + border: 1px solid #d2d2d2; } + .awd-module-list .module-list-item > .module-data { + overflow: ellipsis; + white-space: nowrap; + line-height: 20px; + font-size: 1.6rem; + border-bottom: 1px dotted #959595; + margin: 0px 15px 0px 15px; + padding-right: 50px; + padding-bottom: 14px; + padding-top: 14px; + align-self: center; + width: 100%; } + .awd-module-list .module-list-item:hover { + background-color: #f2f2f2; } + .awd-module-list .module-list-item:active { + background-color: #f2f2f2; } + .awd-module-list .module-list-item[aria-selected="true"] { + background-color: #f2f2f2; } + +.module-list-item { + cursor: pointer; + overflow: hidden; + position: relative; + overflow: ellipsis; + white-space: nowrap; + z-index: 1000; + color: #191919; + display: flex; } + .module-list-item:last-of-type .module-data { + border-bottom: none; } + .module-list-item img + span.module-data { + padding-left: 45px; } + +.module-groups:first-of-type .module-list-item:last-of-type .module-data { + border-bottom: 1px solid #959595; } + +.module-groupitem { + padding-bottom: 4px; } + +.selectorModule.large { + height: 72px; + vertical-align: middle; + text-align: left; } + .selectorModule.large .moduleWrapper { + top: 71px; } + .selectorModule.large input { + height: 72px; + vertical-align: middle; + text-align: left; } + .selectorModule.large button { + height: 72px; + vertical-align: middle; + text-align: left; } + .selectorModule.large .selectModule img { + left: 15px; + top: 21px; } + +ul.module-groupitem li { + margin: 0 -15px 0 -15px; } + +span.module-data span { + display: block; + line-height: 20px; + font-size: 1.5rem; } + +li.module-groups { + cursor: default !important; + padding: 18px 15px 0px 15px; } + +li.module-list-item[selected]:before { + box-sizing: border-box; + display: inline-block; + font-size: 2em; + height: 1em; + position: absolute; + top: 20px; + right: 0px; + vertical-align: middle; + width: 1em; + color: #007a3e; } + +ul.module-optinalcta { + position: relative; + height: 44px; + margin-top: 0px; + border-bottom: 1px solid #d2d2d2; + border-left: 1px solid #d2d2d2; + border-right: 1px solid #d2d2d2; + border-radius: 0px 0px 6px 6px; } + ul.module-optinalcta li { + position: absolute; + bottom: 10px; } + ul.module-optinalcta a { + text-indent: 15px; + padding: 15px; } + +.b2b-slider-container { + position: relative; } + .b2b-slider-container.slider-disabled { + cursor: not-allowed !important; } + .b2b-slider-container div { + position: absolute; } + .b2b-slider-container .slider-track-container { + width: 100%; + cursor: pointer; } + .b2b-slider-container .slider-track { + width: 100%; + height: 6px; + background-color: #cccccc; + border-radius: 10px; + border: 1px solid #cccccc; } + .b2b-slider-container .slider-track-fill { + width: 100%; + height: 6px; + background-color: #cccccc; + border-radius: 10px; + width: 0; + background-color: #157BB2; + transition: width 0s linear; + border: 1px solid #cccccc; } + .b2b-slider-container .slider-knob-container { + transition: left 0s linear; } + .b2b-slider-container .slider-knob-container.slider-knob-hidden { + display: none !important; } + .b2b-slider-container .slider-knob { + width: 14px; + height: 14px; + border-radius: 10px; + top: -4px; + left: -8px; + border: 1px solid #cccccc; + background: white; + cursor: pointer; } + .b2b-slider-container .slider-knob:focus { + outline: thin dotted #666; } + +.b2b-slider-endpoints-container { + margin-top: 13px; + color: #333; + font-size: 12px; } + .b2b-slider-endpoints-container .b2b-slider-endpoints-left { float: left; - margin: 10px; } - - .b2b-scrollbar-arrow-right { + line-height: 100%; } + .b2b-slider-endpoints-container .b2b-slider-endpoints-right { float: right; - clear: right; - margin: 10px; } - .b2b-scrollbar-arrow-right.btn-arrow .btn { - margin-right: 0; } - - .b2b-table-scrollbar ::-webkit-scrollbar { - height: 10px; } - - .b2b-table-scrollbar ::-webkit-scrollbar-thumb { - background: #666666; - border-radius: 5px; } - - .tabs { - margin-left: 0; - margin-bottom: 20px; - list-style: none; } - - .tabs > li > a { - display: block; } - - .tabs > li > a:hover, - .tabs > li > a:focus { - text-decoration: none; - background-color: #d2d2d2; } - - .tabs > .pull-right { - float: right; } - - .tabs:before, - .tabs:after { - display: table; + line-height: 100%; } + .b2b-slider-endpoints-container::after { + clear: both; content: ""; - line-height: 0; } - - .tabs:after { - clear: both; } - - .tabs > li { - float: left; } - - .tabs > li > a { - padding-right: 20px; - padding-left: 20px; - margin-right: 3px; - line-height: 16px; } - - .tabs { - margin: 0; } - - .tabs > li { - margin-bottom: -1px; } - - .tabs > li:first-child { - margin-left: 20px; } - - .tabs > li > a { - padding: 12px 20px; - border: 1px solid #d2d2d2; - border-radius: 6px 6px 0 0; - background-color: #f2f2f2; - color: #5a5a5a; - border-color: #d2d2d2; } - - .tabs > li > a { - margin-right: 6px; } - - .tabs > li > a, - .tabs > li > a:hover, - .tabs > li > a:focus { - background-image: none; - background-color: #ffffff; - color: #5a5a5a; - border-color: #d2d2d2; - border-bottom: 1px solid transparent; - cursor: pointer; } - - .tabs.tabs-justified, - .tabs.promo-tabs { - width: 100%; - border-bottom: 0; - margin-bottom: -1px; } - - .tabs.tabs-justified > li, - .tabs.promo-tabs > li { - display: table-cell; - float: none; - width: 1%; - border-left: 1px solid #d2d2d2; } - - .tabs.tabs-justified > li.active, - .tabs.promo-tabs > li.active { - position: relative; - z-index: 1000; } - - .tabs.tabs-justified > li > a { - padding-right: 5px; - padding-left: 5px; } - - .tabs.tabs-justified > li > a, - .tabs.promo-tabs > li > a { - text-align: center; } - - .tabs.promo-tabs > li > a { - padding: 0; - margin: 0; - border-radius: 0; - border: none; - color: #0568ae; - font-size: 1.2rem; - text-align: center; - padding: 6px 10px 10px; - border-top: 4px solid #e6e6e6; - filter: none; - border-bottom: 1px solid #d2d2d2; - background-color: #f9f9f9; } - - .tabs > li:last-child > a { - margin-right: 0; } - - .tabs.promo-tabs > li.active > a { - color: #333333; - border-top: 4px solid #ea7400; - border-bottom-color: white; - background-color: #fff !important; - filter: none; - cursor: default; } - - .tabs.promo-tabs > li:first-child { - border-left: none; } - - .tabs.promo-tabs > li > a img { - max-width: inherit; - max-height: 39px; - margin: 0 auto 5px auto; display: block; } - - .tabbable:before, - .tabbable:after { - display: table; - content: ""; - line-height: 0; } - - .tabbable:after { - clear: both; } - - .tab-content { - overflow: auto; - border: 1px solid #e6e6e6; } - - .tabs.promo-tabs + .tab-content { - border: none; - border-bottom: 1px solid #e6e6e6; } - - .tab-content > .tab-pane { - padding: 10px 15px; } - - .tab-content.noborder { - border: none; } - - .tab-content.noborder > .tab-pane { - padding: 0; } - - .tab-content > .tab-pane { + +.b2b-slider-container.vertical { + width: 100%; + height: 100%; + margin: 0 auto; + position: relative; + border-radius: 10px; } + .b2b-slider-container.vertical .slider-track-container { + position: relative; + height: 100%; } + .b2b-slider-container.vertical .slider-track { + position: absolute; + height: 100%; } + .b2b-slider-container.vertical .slider-track-fill { + position: absolute; + bottom: 0; + height: 0; + width: 100%; } + .b2b-slider-container.vertical .slider-knob-container { + transition: bottom 0s linear; + position: relative; + bottom: 0; } + .b2b-slider-container.vertical .slider-knob-container.slider-knob-hidden { + display: none !important; } + .b2b-slider-container.vertical .slider-knob { + position: absolute; + border-radius: 10px; + top: -7px; + left: -4px; } + +.icon-primary-spinner { + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%20id%3D%22svg-spinner%22%20x%3D%220px%22%20y%3D%220px%22%20xml%3Aspace%3D%22preserve%22%3E%0A%20%20%20%3Cpath%20fill%3D%22%23F5F5F5%22%20d%3D%22M18%2036C8.1%2036%200%2027.9%200%2018S8.1%200%2018%200s18%208.1%2018%2018-8.1%2018-18%2018zm0-31.5c-7.5%200-13.5%206-13.5%2013.5S10.6%2031.5%2018%2031.5c7.5%200%2013.5-6.1%2013.5-13.5%200-7.5-6-13.5-13.5-13.5z%22%2F%3E%0A%20%20%20%3Cpath%20fill%3D%22%230568AE%22%20id%3D%22spinner%22%20d%3D%22M30.7%205.3l-3.1%203.2c2.4%202.4%203.9%205.8%203.9%209.5%200%207.4-6.1%2013.5-13.5%2013.5S4.5%2025.4%204.5%2018%2010.6%204.5%2018%204.5V0C8.1%200%200%208.1%200%2018s8.1%2018%2018%2018%2018-8.1%2018-18c0-5-2-9.5-5.3-12.7z%22%3E%0A%20%20%20%20%20%20%3CanimateTransform%20%0A%20%20%20%20%20%20%20%20%20attributeType%3D%22xml%22%0A%20%20%20%20%20%20%20%20%20attributeName%3D%22transform%22%0A%20%20%20%20%20%20%20%20%20type%3D%22rotate%22%0A%20%20%20%20%20%20%20%20%20from%3D%220%2018%2018%22%0A%20%20%20%20%20%20%20%20%20to%3D%22360%2018%2018%22%0A%20%20%20%20%20%20%20%20%20dur%3D%221.0s%22%0A%20%20%20%20%20%20%20%20%20repeatCount%3D%22indefinite%22%0A%20%20%20%20%20%20%2F%3E%0A%20%20%20%3C%2Fpath%3E%0A%3C%2Fsvg%3E"); + height: 50px; + width: 50px; } + +.icon-primary-spinner.small { + margin-right: 5px; + height: 30px !important; + width: 30px !important; } + +.isIE .icon-primary-spinner, +.isIE .icon-primary-spinner.small { + animation: spinner 1s linear infinite; } + +.ds2-no-colors .icon-primary-spinner { + animation: spinner 1s linear infinite; + border: 5px dotted transparent; + border-radius: 50%; } + +@keyframes spinner { + 0% { + transform: rotate(0deg); } + 100% { + transform: rotate(359deg); } } + +.b2b-status-tracker > .btn-arrow:nth-of-type(1) { + margin-right: 10px; } + +.b2b-status-tracker > .btn-arrow:nth-of-type(2) { + margin-left: 20px; } + +.b2b-status-tracker > .btn-arrow { + height: 20px; + margin-top: 25px; + overflow: visible; } + .b2b-status-tracker > .btn-arrow > .btn-secondary > .icon-primary-left { + margin-right: 5px; + color: #0574ac; } + .b2b-status-tracker > .btn-arrow > .btn-secondary > .icon-primary-right { + color: #0574ac; } + +.b2b-status-tracker > .b2b-status-tracker-step { + padding: 0; + position: relative; } + +.b2b-status-tracker-step { + margin-left: 5px; } + +.b2b-status-tracker > .b2b-status-tracker-step .b2b-status-tracker-heading { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 14px; + color: #191919; + margin-bottom: 10px; } + +.b2b-status-tracker > .b2b-status-tracker-step.complete > .progress > .progress-bar { + width: 100%; + background-color: #1b7e28; } + +.b2b-status-tracker > .b2b-status-tracker-step.complete .icoControls-approval { + color: #1b7e28; } + +.b2b-status-tracker > .b2b-status-tracker-step.current > .progress > .progress-bar { + width: 100%; + background-color: #333333; } + +.b2b-status-tracker > .b2b-status-tracker-step.current .icon-misc-time { + color: #333333; } + +.b2b-status-tracker > .b2b-status-tracker-step.pending > .progress > .progress-bar { + width: 100%; + background-color: #ffb81c; } + +.b2b-status-tracker > .b2b-status-tracker-step.pending .icoControls-statusokay { + color: #ffb81c; } + +.b2b-status-tracker > .b2b-status-tracker-step.actionRequired > .progress > .progress-bar { + width: 100%; + background-color: #cf2a2a; } + +.b2b-status-tracker > .b2b-status-tracker-step.actionRequired .icoSecurityalerts-alert { + color: #cf2a2a; } + +.b2b-status-tracker > .b2b-status-tracker-step.notAvailable > .progress > .progress-bar { + width: 100%; + background-color: #767676; } + +.b2b-status-tracker > .b2b-status-tracker-step.notAvailable .icoControls-restricted { + color: #767676; } + +.b2b-status-tracker > .b2b-status-tracker-step > .progress { + position: relative; + border-radius: 1.5px; + height: 3px; + margin-bottom: 10px; + background-color: #c5c5c5; } + .b2b-status-tracker > .b2b-status-tracker-step > .progress > .progress-bar { + width: 0; + height: 3px; } + +.b2b-status-tracker > .b2b-status-tracker-step > .b2b-status-tracker-estimate { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 14px; + color: #191919; + margin-bottom: 10px; } + +.b2b-status-tracker > .b2b-status-tracker-step > .b2b-status-tracker-description { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 12px; + color: #767676; + padding-right: 15px; } + .b2b-status-tracker > .b2b-status-tracker-step > .b2b-status-tracker-description a { + cursor: pointer; } + +.step-indicator { + height: auto; + padding: 40px 0; } + +.step-heading { + color: #333333; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 3.8rem; + line-height: 0.8; } + +.steps { + display: flex; + height: 5px; + margin-top: 60px; + position: relative; } + +.steps li { + color: #5a5a5a; + flex: 1; + margin-right: 5px; + background-color: #c4c4c4; + outline: 1px solid transparent; } + +.steps li:first-child { + border-radius: 4px 0 0 4px; } + +.steps li:last-child { + margin-right: 0; + border-radius: 0 4px 4px 0; } + +.steps li.step-on, +.steps li.step-done { + background-color: #007a3e; + color: #007a3e; + border: 1px solid transparent; } + +.step-text { + bottom: 29px; + display: inline-block; + font-size: 1.8rem; + margin-top: 0; + position: relative; + white-space: nowrap; } + +.step-on .step-text { + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + +.steps li .step-text[data-large-text]:before { + content: attr(data-large-text) " "; } + +.step-confirmation { + color: #007a3e; + margin-bottom: 30px; } + +.step-confirmation > div { + display: flex; } + +.step-confirmation > div i { + color: #007a3e; + font-size: 50px; + margin-right: 10px; } + +.step-confirmation.centered > div i { + margin-left: -60px; } + +.step-confirmation > div h3 { + font-size: 2.4rem; + margin: 26px 0 20px; } + +.step-confirmation > p { + margin: 0; } + +@media (max-width: 1024px) { + .step-indicator { + padding: 25px 0; } + .steps { + margin-top: 0; } + .step-heading { + font-size: 2.4rem; + margin-bottom: 11px; } + .step-text { display: none; } - - .tab-content > .active { - display: block; } - - .tabs.promo-tabs > li > a { - font-size: 2.0rem; - height: 70px; - padding: 20px 20px 24px; - background-color: #FFFFFF; - border-top: 5px solid #FFFFFF; - white-space: nowrap; } - - .tabs.promo-tabs > li.active > a { - border-top: 5px solid #0574ac; } - - .tabs.promo-tabs > li > a:hover { + .step-on .step-text { + bottom: 6px; + display: block; + font-size: 1.2rem; + left: 0; + line-height: 1; + margin-top: 10px; + position: absolute; + top: 4px; } + .steps li .step-text[data-sm-text]:before { + content: attr(data-sm-text) " "; color: #333333; } - - .tabs.promo-tabs > li { - width: auto; } - - .tabs > li[disabled="disabled"] > a:hover { - cursor: not-allowed; } - - .b2b-tags { - background-color: #f2f2f2; - -webkit-transition: all .3s ease-out; - -moz-transition: all .3s ease-out; - transition: all .3s ease-out; - margin: 3px 5px 3px 0; - padding: 2px 15px; - border-radius: 6px; - border: 1px solid #c9c9c9; - display: inline-block; } - .b2b-tags .tags__item { - font-size: 14px; - vertical-align: baseline; - zoom: 1; - color: #333; } - .b2b-tags .tags__item i { - color: #0574ac; + .step-confirmation { + margin-top: 30px !important; } } + +@media (max-width: 767px) { + .step-confirmation.centered > div i { + margin-left: 0; } + .step-confirmation.centered > p { + margin-left: 40px; } + .step-confirmation > div h3 { + font-size: 1.8rem; + margin: 13px 0 10px; } + .step-confirmation > div i { + font-size: 30px; + margin-right: 10px; } } + +.step-indicator.vertical { + height: auto; } + +.vertical .step-heading { + font-size: 24px; } + +.vertical .steps { + display: block; + height: inherit; + width: 100%; } + +.vertical .steps li { + align-items: center; + background-color: transparent; + display: flex; + height: 60px; + margin: 0 0 4px; + padding: 0 0 0 20px; + position: relative; } + +.vertical .steps li .step-text { + align-self: center; + color: #0568ae; + display: block; + margin: 0; + position: relative; + font-size: 14px; + top: 0; } + +.vertical .steps li .step-text[data-large-text]:before { + content: attr(data-large-text) " "; } + +.vertical .steps li:after { + background-color: transparent; + border-left: 4px solid #d2d2d2; + content: ""; + height: 60px; + left: 0; + margin: 0; + padding: 0; + position: absolute; + top: 0; + width: 4px; } + +.vertical .steps li.step-on:after, +.vertical .steps li.step-done:after { + border-color: #0568ae; } + +.b2b-step-tracker { + height: auto; + padding: 0px 0px 0px 0px; } + .b2b-step-tracker .btn.btn-left { + margin-right: 10px; } + .b2b-step-tracker .btn.btn-right { + margin-left: 5px; } + .b2b-step-tracker .b2b-left-arrow { + float: left; + margin-top: -5px; } + .b2b-step-tracker .b2b-right-arrow { + float: right; + margin-top: -5px; } + .b2b-step-tracker .b2b-steps { + display: flex; + height: 5px; + margin-top: 30px; + position: relative; } + .b2b-step-tracker .b2b-steps li { + color: #767676; + flex: 1; + margin-right: 5px; + background-color: #767676; + outline: 1px solid transparent; + height: 3px; } + .b2b-step-tracker .b2b-steps li.b2b-step-done { + background-color: #1b7e28; + color: #007a3e; + height: 3px; } + .b2b-step-tracker .b2b-steps li.b2b-step-on { + background-color: #333333; + color: #333333; + height: 3px; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + .b2b-step-tracker .b2b-steps li .b2b-step-text { + bottom: 29px; + display: inline-block; font-size: 14px; - font-weight: bold; - margin-left: 10px; } - .b2b-tags .tags__item i:hover { - cursor: pointer; } - .b2b-tags .tags__item i:focus { - outline: thin dotted #666; } - .b2b-tags .tags__item:last-child { - margin-right: 0; } - .b2b-tags .tags__item:hover { - text-decoration: none; } - .b2b-tags .tags__item:focus { - outline: 1px dotted #666; } - - .tooltip-size-control { - display: block; } - - .tooltip { - display: inline-block; - height: 20px; - vertical-align: middle; - margin: 1px 0 0 7px; } - - p .tooltip { - margin: -3px 7px 0 0; } - - label .tooltip { - margin: 1px 0 0 7px; } - - .tooltip .icon-primary-tooltip { - background: none; - border: none; - display: inline-block; - font-size: 20px; - height: 20px; + margin-top: 0; + position: relative; + white-space: nowrap; } + .b2b-step-tracker .b2b-steps li .b2b-step-text[data-large-text]:before { + content: attr(data-large-text) " "; } + .b2b-step-tracker .b2b-steps li:first-child { + border-radius: 2px 0 0 2px; } + .b2b-step-tracker .b2b-steps li:last-child { + margin-right: 0; + border-radius: 0 2px 2px 0; } + +@media (max-width: 1024px) { + .b2b-step-tracker { + padding: 25px 0; } + .b2b-step-tracker .b2b-steps { + margin-top: 0; } + .b2b-step-tracker .b2b-steps li .b2b-step-text { + display: none; } + .b2b-step-tracker .b2b-steps li .b2b-step-text[data-sm-text]:before { + content: attr(data-sm-text) " "; + color: #333333; } + .b2b-step-tracker .b2b-steps li.b2b-step-on .b2b-step-text { + bottom: 6px; + display: block; + font-size: 5px; + left: 0; + line-height: 1; + margin-top: 10px; + position: absolute; + top: 4px; } } + +.strength-meter-container { + height: 26px; + max-width: 450px; } + +.strength-meter-gauge { + border-radius: 2px; + background-color: #d2d2d2; + height: 5px; + display: block; + position: relative; + outline: 1px solid transparent; } + +.strength-meter-gauge-fill { + height: 100%; + display: block; + border-radius: 2px; + text-indent: -9999px; + width: 0%; + border: 2px solid transparent; } + +.strength-meter-gauge-fill.strength-meter-animate { + transition: width 0.5s linear, background-color 0.5s linear; } + +.strength-meter-animate[style*="20"] { + background-color: #cf2a2a; } + +.strength-meter-animate[style*="20"] + .strength-meter-divider + .strength-meter-content:after { + content: "Unacceptable"; } + +.strength-meter-animate[style*="40"] { + background-color: #ea7400; } + +.strength-meter-animate[style*="40"] + .strength-meter-divider + .strength-meter-content:after { + content: "Weak"; } + +.strength-meter-animate[style*="60"] { + background-color: #ea7400; } + +.strength-meter-animate[style*="60"] + .strength-meter-divider + .strength-meter-content:after { + content: "Fair"; } + +.strength-meter-animate[style*="80"] { + background-color: #007a3e; } + +.strength-meter-animate[style*="80"] + .strength-meter-divider + .strength-meter-content:after { + content: "Good"; } + +.strength-meter-animate[style*="100"] { + background-color: #007a3e; } + +.strength-meter-animate[style*="100"] + .strength-meter-divider + .strength-meter-content:after { + content: "Excellent"; } + +.strength-meter-divider { + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + display: flex; + overflow: hidden; } + +.strength-meter-divider span { + background: transparent; + display: block; + flex-grow: 1; + border-right: solid 1px #fff; } + +.strength-meter-divider span:first-child { + border-radius: 2px 0 0 2px; } + +.strength-meter-divider span + .strength-meter-divider span { + border-radius: 0; } + +.strength-meter-divider span:last-child { + border-radius: 0 2px 2px 0; + border-right: 0; } + +.strength-meter-content { + font-size: 14px; + line-height: 1; + padding-top: 7px; + position: absolute; } + +.strength-meter-content:before { + font-family: "Omnes-ECOMP-W02", Arial; + content: "Password strength: "; } + +.strength-meter-content:after { + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + +.strength-meter-container { + height: 26px; + min-width: 290px; + max-width: 450px; } + +.strength-meter-container .strength-meter-gauge { + border-radius: 2px; + background-color: #cccccc; + box-shadow: 0 1px 1px -1px #333 inset; + height: 5px; + display: block; + overflow: hidden; + position: relative; } + +.strength-meter-container > .strength-meter-gauge > .strength-meter-gauge-fill { + height: 100%; + box-shadow: 0 1px 1px -1px #999 inset; + display: block; + text-indent: -9999px; + width: 0%; } + +.strength-meter-container > .strength-meter-gauge > .strength-meter-gauge-fill.strength-meter-animate { + transition: width 0ms ease-out, background-color 0ms ease-in; } + +.strength-meter-container > .strength-meter-gauge > .strength-meter-divider { + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + display: flex; } + +.strength-meter-container > .strength-meter-gauge > .strength-meter-divider span { + background: transparent; + display: block; + flex-grow: 1; + border-right: solid 1px #fff; } + +.strength-meter-container > .strength-meter-gauge > .strength-meter-divider span:last-child { + border-right: 0; } + +.strength-meter-container > .strength-meter-content { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 14px; + line-height: 1; + padding-top: 7px; } + +.strength-meter-container > .strength-meter-content:before { + content: none; } + +.strength-meter-container > .strength-meter-content > .strength-meter-content-state { + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + +.btn-switch-label { + display: flex; + align-items: center; } + .btn-switch-label:focus .btn-switch { + outline: 1px dotted #666; + outline-offset: 5px; } + .btn-switch-label input:focus .btn-switch { + outline: 1px dotted #666; + outline-offset: 5px; } + .btn-switch-label > span { + flex: 1; } + +.btn-switch { + background-color: #fff; + border: 1px solid #d2d2d2; + border-radius: 16px; + box-shadow: 0 4px 5px -5px rgba(0, 0, 0, 0.15) inset, 0 5px 5px -5px rgba(0, 0, 0, 0.15); + height: 32px; + overflow: hidden; + position: relative; + width: 80px; + user-select: none; } + /* .btn-switch input[type="checkbox"] { + left: 0; margin: 0; - position: relative; - width: 20px; } - - .tooltip .icon-primary-tooltip:before { - top: 0; } - - .tooltip .icon-primary-tooltip:focus { - text-decoration: none; - outline: 1px dotted black; } - - .tooltip.active .icon-primary-tooltip:focus { - outline: none; } - - .tooltip .arrow { - display: none; - border-color: transparent; - border-style: solid; - background-color: #0568ae; - height: 20px; - width: 20px; + opacity: 0; position: absolute; top: 0; - right: 0; - bottom: 0; + transition: none; } + .btn-switch input[type="checkbox"] + .switch-overlay .btn-slider-on .activo { + font: 0px/0 "Omnes-ECOMP-W02", Arial; } + .btn-switch input[type="checkbox"] + .switch-overlay .btn-slider-on + .btn + .btn-slider-off .inactivo { + font: 0px/0 "Omnes-ECOMP-W02", Arial; } */ + .btn-switch input:checked + .switch-overlay { left: 0; - opacity: 0; - transform: rotate(45deg); - z-index: 20; } - - .tooltip.active .icon-primary-tooltip[data-placement="top"] .arrow { - display: block; - bottom: 32px; - top: auto; - border-width: 0 1px 1px 0; } - - .tooltip.active .icon-primary-tooltip[data-placement="bottom"] .arrow { - border-width: 1px 0 0 1px; - display: block; - bottom: -33px; - top: auto; } - - .tooltip.active .arrow { - opacity: 1; } - - .tooltip .closingtooltip { + transition: all .3s linear .0s; } + .btn-switch input:checked + .switch-overlay .switch-handle { + background-color: #007a3e; + background: linear-gradient(to bottom, #008744 0%, #007a3e 100%); + transition: background-color 0.3s linear 0s; + border: 1px solid transparent; } + .btn-switch input + .switch-overlay { + left: -48px; + transition: all .3s linear .0s; } + .btn-switch input + .switch-overlay .switch-handle { + background-color: #f2f2f2; + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + transition: background-color 0.3s linear 0s; + border: 1px solid #d2d2d2; } + .btn-switch input[disabled] + .switch-overlay { + left: 0; + width: 100% !important; + background-color: #d2d2d2; + color: #959595; + cursor: not-allowed !important; } + .btn-switch input[disabled] + .switch-overlay .btn-slider-on { + display: none; } + .btn-switch input[disabled] + .switch-overlay .activo { + display: none; } + .btn-switch input[disabled] + .switch-overlay .switch-handle { + display: none; } + .btn-switch input[disabled] + .switch-overlay .btn-slider-off { + left: 0; + text-align: center; + padding: 0; } + .btn-switch input[disabled]:checked + .switch-overlay { + left: 0; + width: 100% !important; + background-color: #fff; } + .btn-switch input[disabled]:checked + .switch-overlay .btn-slider-off { + display: none; } + .btn-switch input[disabled]:checked + .switch-overlay .btn-slider-off + .inactivo { + display: none; } + .btn-switch input[disabled]:checked + .switch-overlay .switch-handle { + display: none; } + .btn-switch input[disabled]:checked + .switch-overlay .btn-slider-on { + display: block; + text-align: center; + padding: 0; + color: #007a3e !important; + font-weight: bold; } + .btn-switch input[disabled]:checked + .switch-overlay .activo { + display: block; + text-align: center; + padding: 0; + color: #007a3e !important; + font-weight: bold; } + .btn-switch input[disabled]:checked + .btn-slider-on { display: block; } - - .tooltip.active .closingtooltip { - display: none; } - - .tooltip-wrapper { - position: absolute; - margin-top: 20px; - left: 15px; - right: 15px; - display: none; - opacity: 0; - z-index: 1010; - text-align: left; } - - .helpertext { - background-color: #0568ae; - border: 1px solid transparent; - border-radius: 6px; - color: #fff; - display: none; - margin: 0; - padding: 25px; - position: relative; - text-align: left; + .btn-switch input[disabled] + .btn-slider-on + .switch-handle { width: 100%; - top: 0; - z-index: 1009; } - - .tooltip .helpertext { - position: absolute; } - - .tooltip.active .icon-primary-tooltip[data-placement="bottom"] + .tooltip-wrapper .helpertext { - bottom: inherit; - top: 19px; } - - .tooltip.active .icon-primary-tooltip[data-placement="top"] + .tooltip-wrapper .helpertext { - top: inherit; - bottom: 38px; } - - .tooltip.active .tooltip-wrapper { - opacity: 1; + margin: 0; } + .btn-switch input[disabled] + .btn-slider-on + .switch-handle + .btn-slider-off { + display: block; } + /* .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on { + display: none; } + .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on .activo { + border: medium none; + color: #666; + font: 16px/32px "Omnes-ECOMP-W02", Arial; + height: auto; + margin: 0 auto; + width: auto; } + .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on .activo:before { + display: none; } + .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off { + display: block; + padding: 0; + text-align: center; + color: #333333; } + .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off .inactivo { + border: medium none; + color: #666; + font: 16px/32px "Omnes-ECOMP-W02", Arial; + height: auto; + margin: 0 auto; + width: auto; } + .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off .inactivo:before { + display: none; } + .btn-switch input[type="checkbox"][disabled]:checked + .switch-overlay .btn-slider-on { display: block; - margin-top: 0; } - - .tooltip.active .tooltip-wrapper .helpertext { - display: block; } - - .tooltip-onclick .btn.icon-primary-tooltip { - border: medium none; - box-shadow: none; - color: #0568ae; - font-size: 20px; - height: 34px; - line-height: 36px; - margin: 0; - min-width: 50px; padding: 0; + text-align: center; + color: #007a3e; } + .btn-switch input[type="checkbox"][disabled]:checked + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off { + display: none; } + .btn-switch input[type="checkbox"][disabled]:checked + .switch-overlay .activo { + color: #007a3e; + font-weight: bold; } */ + +.switch-overlay { + border-radius: 16px; + color: black !important; + font-size: 1.6rem; + height: 32px; + left: 0; + position: absolute; + top: -1px; + width: 126px; + overflow: hidden; } + +.btn-slider-on { + left: -1px; + text-align: left; + padding-left: 12px; + display: inline-block; + font-family: "Omnes-ECOMP-W02", Arial; + height: 32px; + line-height: 32px; + position: absolute; + top: 1px; + width: 80px; } + +.btn-slider-off { + display: inline-block; + font-family: "Omnes-ECOMP-W02", Arial; + height: 32px; + line-height: 32px; + position: absolute; + top: 1px; + width: 80px; + right: 1px; + text-align: right; + padding-right: 11px; } + +.switch-handle { + border-radius: 50%; + display: inline-block; + height: 26px; + left: 50px; + position: absolute; + top: 3px; + width: 26px; } + +.activo { + display: block; + font-size: 0.1px; + line-height: 40px; + overflow: hidden; } + .activo:before { + background-image: none; + border-left: 3px solid #007a3e; + content: " "; + height: 18px; + left: 22px; + margin: 2px auto; position: absolute; - right: 0; - top: 0; } - - .tooltip-onclick .icon-primary-tooltip:before { - display: inline; - position: relative; } - - .tooltip-onclick textarea + .reset-field + .icon-primary-tooltip { - top: 4px; - right: 5px; - min-width: 40px; } - - .tooltip-onclick.active .helpertext:before, - .tooltip-onfocus.active .helpertext:before { - background-color: #0568ae; - border-color: transparent; - border-style: solid; - border-width: 1px 1px 0 0; - content: ""; + top: 5px; + width: 0; } + +.inactivo { + font-size: 0.1px; + line-height: 40px; } + .inactivo:before { + background-image: none; + border: 3px solid #959595; + border-radius: 100%; + content: " "; display: block; - height: 15px; - left: 17px; - margin: 0; position: absolute; - top: -7px; - transform: rotate(-45deg); - width: 15px; } - - .tooltip-onclick.active .helpertext { - display: block; - opacity: 1; - margin: 14px 0 0; } - - .tooltip-onclick.active .helpertext:before { - left: inherit; - right: 18px; } - - .tooltip-onclick .reset-field { - right: 37px; } - - .tooltip-onclick .reset-field:before { - position: relative; - top: -1px; } - - .tooltip-onfocus.active .helpertext { - display: block; - margin: 14px 0 10px 0; } - - .popover-title { - display: block; + top: 4px; + right: 3px; + height: 16px; + width: 16px; } + +.btn-switch.focused { + outline: 1px dotted #000; + outline-offset: 5px; } + +table { + max-width: 100%; + background-color: transparent; + border-collapse: collapse; + border-spacing: 0; + width: 100%; + } + +table caption { + text-align: left; } + +table thead th { + vertical-align: bottom; } + +table th, +table td { + padding: 19px 20px; + line-height: 0.5; + font-size: 0.9rem; + text-align: left; + vertical-align: top; + word-wrap: break-word; } + +table th { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 1rem; + font-weight: normal; + padding: 13px 20px; +line-height: 0.9} + +.tabs { + margin-left: 0; + margin-bottom: 20px; + list-style: none; } + +.tabs > li > a { + display: block; } + +.tabs > li > a:hover, +.tabs > li > a:focus { + text-decoration: none; + background-color: #d2d2d2; } + +.tabs > .pull-right { + float: right; } + +.tabs:before, +.tabs:after { + display: table; + content: ""; + line-height: 0; } + +.tabs:after { + clear: both; } + +.tabs > li { + float: left; } + +.tabs > li > a { + padding-right: 20px; + padding-left: 20px; + margin-right: 3px; + line-height: 16px; } + +.tabs { + margin: 0; } + +.tabs > li { + margin-bottom: -1px; } + +.tabs > li:first-child { + margin-left: 20px; } + +.tabs > li > a { + padding: 12px 20px; + border: 1px solid #d2d2d2; + border-radius: 6px 6px 0 0; + background-color: #f2f2f2; + color: #5a5a5a; + border-color: #d2d2d2; } + +.tabs > li > a { + margin-right: 6px; } + +.tabs > li > a, +.tabs > li > a:hover, +.tabs > li > a:focus { + background-image: none; + background-color: #ffffff; + color: #5a5a5a; + border-color: #d2d2d2; + border-bottom: 1px solid transparent; + cursor: pointer; } + +.tabs.tabs-justified, +.tabs.promo-tabs { + width: 100%; + border-bottom: 0; + margin-bottom: -1px; } + +.tabs.tabs-justified > li, +.tabs.promo-tabs > li { + display: table-cell; + float: none; + width: 1%; + border-left: 1px solid #d2d2d2; } + +.tabs.tabs-justified > li.active, +.tabs.promo-tabs > li.active { + position: relative; + z-index: 1000; } + +.tabs.tabs-justified > li > a { + padding-right: 5px; + padding-left: 5px; } + +.tabs.tabs-justified > li > a, +.tabs.promo-tabs > li > a { + text-align: center; } + +.tabs.promo-tabs > li > a { + padding: 0; + margin: 0; + border-radius: 0; + border: none; + color: #0568ae; + font-size: 1.2rem; + text-align: center; + padding: 6px 10px 10px; + border-top: 4px solid #e6e6e6; + filter: none; + border-bottom: 1px solid #d2d2d2; + background-color: #f9f9f9; } + +.tabs > li:last-child > a { + margin-right: 0; } + +.tabs.promo-tabs > li.active > a { + color: #333333; + border-top: 4px solid #ea7400; + border-bottom-color: white; + background-color: #fff !important; + filter: none; + cursor: default; } + +.tabs.promo-tabs > li:first-child { + border-left: none; } + +.tabs.promo-tabs > li > a img { + max-width: inherit; + max-height: 39px; + margin: 0 auto 5px auto; + display: block; } + +.tabbable:before, +.tabbable:after { + display: table; + content: ""; + line-height: 0; } + +.tabbable:after { + clear: both; } + + + +.tabs.promo-tabs > li > a { + font-size: 2.0rem; + height: 70px; + padding: 20px 20px 24px; + background-color: #FFFFFF; + border-top: 5px solid #FFFFFF; + white-space: nowrap; } + +.tabs.promo-tabs > li.active > a { + border-top: 5px solid #0574ac; } + +.tabs.promo-tabs > li > a:hover { + color: #333333; } + +.tabs.promo-tabs > li { + width: auto; } + +.tabs > li[disabled="disabled"] > a:hover { + cursor: not-allowed; } + +.b2b-tags { + background-color: #f2f2f2; + -webkit-transition: all .3s ease-out; + -moz-transition: all .3s ease-out; + transition: all .3s ease-out; + margin: 3px 5px 3px 0; + padding: 2px 15px; + border-radius: 6px; + border: 1px solid #c9c9c9; + display: inline-block; } + .b2b-tags .tags__item { font-size: 14px; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-weight: bold; - margin-bottom: 8px; - white-space: normal; } - - .popover-content { - display: block; - font-size: 12px; - font-family: "Omnes-ECOMP-W02", Arial; - line-height: 1.5rem; - white-space: normal; } - - .popover-content span, - .popover-content p { - line-height: 1.5rem; } - - .popover-content p:last-child { - margin-bottom: 0; } - - .tooltip .tooltip-element { - position: relative; } - - .tooltip .icon-primary-tooltip:hover { - text-decoration: none; } - - .tooltip.active .tooltip-element[data-placement="top"] .arrow { - display: block; - bottom: 32px; - top: auto; } - - .tooltip.active .tooltip-element[data-placement="bottom"] .arrow { + vertical-align: baseline; + zoom: 1; + color: #333; } + .b2b-tags .tags__item i { + color: #0574ac; + font-size: 14px; + font-weight: bold; + margin-left: 10px; } + .b2b-tags .tags__item i:hover { + cursor: pointer; } + .b2b-tags .tags__item i:focus { + outline: thin dotted #666; } + .b2b-tags .tags__item:last-child { + margin-right: 0; } + .b2b-tags .tags__item:hover { + text-decoration: none; } + .b2b-tags .tags__item:focus { + outline: 1px dotted #666; } + +.tooltip-size-control { + display: block; } + +.tooltip { + display: inline-block; + height: 20px; + vertical-align: middle; + margin: 1px 0 0 7px; } + +p .tooltip { + margin: -3px 7px 0 0; } + +label .tooltip { + margin: 1px 0 0 7px; } + +.tooltip .icon-primary-tooltip { + background: none; + border: none; + display: inline-block; + font-size: 20px; + height: 20px; + margin: 0; + position: relative; + width: 20px; } + +.tooltip .icon-primary-tooltip:before { + top: 0; } + +.tooltip .icon-primary-tooltip:focus { + text-decoration: none; + outline: 1px dotted black; } + +.tooltip.active .icon-primary-tooltip:focus { + outline: none; } + +.tooltip .arrow { + display: none; + border-color: transparent; + border-style: solid; + background-color: #0568ae; + height: 20px; + width: 20px; + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + opacity: 0; + transform: rotate(45deg); + z-index: 20; } + +.tooltip.active .icon-primary-tooltip[data-placement="top"] .arrow { + display: block; + bottom: 32px; + top: auto; + border-width: 0 1px 1px 0; } + +.tooltip.active .icon-primary-tooltip[data-placement="bottom"] .arrow { + border-width: 1px 0 0 1px; + display: block; + bottom: -33px; + top: auto; } + +.tooltip.active .arrow { + opacity: 1; } + +.tooltip .closingtooltip { + display: block; } + +.tooltip.active .closingtooltip { + display: none; } + +.tooltip-wrapper { + position: absolute; + margin-top: 20px; + left: 15px; + right: 15px; + display: none; + opacity: 0; + z-index: 1010; + text-align: left; } + +.helpertext { + background-color: #0568ae; + border: 1px solid transparent; + border-radius: 6px; + color: #fff; + display: none; + margin: 0; + padding: 25px; + position: relative; + text-align: left; + width: 100%; + top: 0; + z-index: 1009; } + +.tooltip .helpertext { + position: absolute; } + +.tooltip.active .icon-primary-tooltip[data-placement="bottom"] + .tooltip-wrapper .helpertext { + bottom: inherit; + top: 19px; } + +.tooltip.active .icon-primary-tooltip[data-placement="top"] + .tooltip-wrapper .helpertext { + top: inherit; + bottom: 38px; } + +.tooltip.active .tooltip-wrapper { + opacity: 1; + display: block; + margin-top: 0; } + +.tooltip.active .tooltip-wrapper .helpertext { + display: block; } + +.tooltip-onclick .btn.icon-primary-tooltip { + border: medium none; + box-shadow: none; + color: #0568ae; + font-size: 20px; + height: 34px; + line-height: 36px; + margin: 0; + min-width: 50px; + padding: 0; + position: absolute; + right: 0; + top: 0; } + +.tooltip-onclick .icon-primary-tooltip:before { + display: inline; + position: relative; } + +.tooltip-onclick textarea + .reset-field + .icon-primary-tooltip { + top: 4px; + right: 5px; + min-width: 40px; } + +.tooltip-onclick.active .helpertext:before, +.tooltip-onfocus.active .helpertext:before { + background-color: #0568ae; + border-color: transparent; + border-style: solid; + border-width: 1px 1px 0 0; + content: ""; + display: block; + height: 15px; + left: 17px; + margin: 0; + position: absolute; + top: -7px; + transform: rotate(-45deg); + width: 15px; } + +.tooltip-onclick.active .helpertext { + display: block; + opacity: 1; + margin: 14px 0 0; } + +.tooltip-onclick.active .helpertext:before { + left: inherit; + right: 18px; } + +.tooltip-onclick .reset-field { + right: 37px; } + +.tooltip-onclick .reset-field:before { + position: relative; + top: -1px; } + +.tooltip-onfocus.active .helpertext { + display: block; + margin: 14px 0 10px 0; } + +.popover-title { + display: block; + font-size: 14px; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-weight: bold; + margin-bottom: 8px; + white-space: normal; } + +.popover-content { + display: block; + font-size: 12px; + font-family: "Omnes-ECOMP-W02", Arial; + line-height: 1.5rem; + white-space: normal; } + +.popover-content span, +.popover-content p { + line-height: 1.5rem; } + +.popover-content p:last-child { + margin-bottom: 0; } + +.tooltip .tooltip-element { + position: relative; } + +.tooltip .icon-primary-tooltip:hover { + text-decoration: none; } + +.tooltip.active .tooltip-element[data-placement="top"] .arrow { + display: block; + bottom: 32px; + top: auto; } + +.tooltip.active .tooltip-element[data-placement="bottom"] .arrow { + display: block; + border-color: transparent transparent #0574ac; + bottom: -33px; + top: auto; } + +.tooltip.active .tooltip-element[data-placement="bottom"] + .tooltip-wrapper .helpertext { + bottom: inherit; + top: 19px; } + +.tooltip.active .tooltip-element[data-placement="top"] + .tooltip-wrapper .helpertext { + top: inherit; + bottom: 38px; } + +.b2b-tree { + padding: 0 10px 0 10px; + width: 320px; } + .b2b-tree ul { + list-style: none; + list-style-type: none; } + .b2b-tree a { display: block; - border-color: transparent transparent #0574ac; - bottom: -33px; - top: auto; } - - .tooltip.active .tooltip-element[data-placement="bottom"] + .tooltip-wrapper .helpertext { - bottom: inherit; - top: 19px; } - - .tooltip.active .tooltip-element[data-placement="top"] + .tooltip-wrapper .helpertext { - top: inherit; - bottom: 38px; } - - .b2b-tree { - padding: 0 10px 0 10px; - width: 320px; } - .b2b-tree ul { - list-style: none; - list-style-type: none; } - .b2b-tree a { - display: block; - padding: 0 0 5px 30px; - line-height: 22px; - margin-left: -10px; - font-size: 1.4rem; + padding: 0 0 5px 30px; + line-height: 22px; + margin-left: -10px; + font-size: 1.4rem; + outline-offset: -1px; } + .b2b-tree li:focus { + outline: none; } + .b2b-tree li:focus > a { + outline: thin dotted #666; outline-offset: -1px; } - .b2b-tree li:focus { - outline: none; } - .b2b-tree li:focus > a { - outline: thin dotted #666; - outline-offset: -1px; } - .b2b-tree ul li { - border-left: 1px solid #ccc; } - .b2b-tree ul li .b2b-tree-tooltip { - display: none; - position: absolute; - top: -25px; - left: 100%; - white-space: nowrap; - margin-left: 10px; - z-index: 1010; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 12px; } - .b2b-tree ul li .b2b-tree-tooltip-content { - background-color: #0568ae; - margin-left: 9px; - border-radius: 6px; - color: #fff; - padding: 25px; } - .b2b-tree ul li .b2b-tree-arrow-left { - width: 0; - height: 0; - border-top: 10px solid transparent; - border-bottom: 10px solid transparent; - border-right: 10px solid #0568ae; - position: absolute; - top: 25px; } - .b2b-tree ul li.activeTooltip > a .b2b-tree-tooltip { - display: block; } - .b2b-tree ul ul { - padding: 0 0 0 20px; } - .b2b-tree ul > li { - position: relative; - line-height: 18px; } - .b2b-tree a > span.b2b-tree-node-icon { - background-color: #FFF; - display: inline; - margin: 0; - padding: 0; + .b2b-tree ul li { + border-left: 1px solid #ccc; } + .b2b-tree ul li .b2b-tree-tooltip { + display: none; position: absolute; - left: -11px; - top: 0; - line-height: 14px; - width: 11px; } - .b2b-tree a > span.b2b-tree-node-icon > i { - font-size: 20px; } - .b2b-tree a:only-child { - color: #0574ac; } - .b2b-tree a:only-child > span.b2b-tree-node-icon { - left: -11px; - border-radius: 50%; - line-height: 7px; - top: 0; } - .b2b-tree a:only-child > span.b2b-tree-node-icon > i { - background-color: inherit; - background: #fff; } - .b2b-tree a > span.b2b-tree-node-icon > i.icon-primary-circle { - background-color: inherit; - background: #fff; - font-size: 10px; } - .b2b-tree a.b2b-locked-node:after { - content: "\ec58"; - float: right; - font-family: 'icoSecurityalerts' !important; } - .b2b-tree a:hover .b2b-locked-node:after { - text-decoration: none; } - .b2b-tree ul li:first-child > a:only-child > span.b2b-tree-node-icon { - left: -11px; - border-radius: 50%; - line-height: 12px; } - .b2b-tree ul li:last-child > a:only-child > span.b2b-tree-node-icon { - height: 27px; - background-color: #fff; } - .b2b-tree li a + ul { + top: -25px; + left: 100%; + white-space: nowrap; + margin-left: 10px; + z-index: 1010; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 12px; } + .b2b-tree ul li .b2b-tree-tooltip-content { + background-color: #0568ae; + margin-left: 9px; + border-radius: 6px; + color: #fff; + padding: 25px; } + .b2b-tree ul li .b2b-tree-arrow-left { + width: 0; height: 0; - overflow: hidden; } - .b2b-tree li a.active + ul { - height: auto; - overflow: visible; } - .b2b-tree li a.grp { - font-family: "Omnes-ECOMP-W02-Italic", Arial; } - .b2b-tree li a.grp.active { - color: #333; } - .b2b-tree span.end { - left: -6px !important; - top: 5px !important; } - .b2b-tree span.first-link { - width: 3px !important; - height: 15px !important; - top: 0px !important; - left: -2px !important; - background: #fff; } - - .b2b-tree-checkbox { - padding: 0 10px 0 10px; - width: 320px; } - .b2b-tree-checkbox ul { - list-style: none; - list-style-type: none; } - .b2b-tree-checkbox a { - display: block; - padding: 0 0 5px 30px; - line-height: 22px; - margin-left: -10px; - font-size: 14px; - outline-offset: -1px; } - .b2b-tree-checkbox li:focus { - outline: none; } - .b2b-tree-checkbox li:focus > a { - outline: thin dotted #666; - outline-offset: -1px; } - .b2b-tree-checkbox ul li { - border-left: 1px solid #ccc; } - .b2b-tree-checkbox ul ul { - padding: 0 0 0 20px; } - .b2b-tree-checkbox ul > li { - position: relative; - line-height: 18px; } - .b2b-tree-checkbox a > span.nodeIcon { - background-color: #FFF; - display: inline; - margin: 0; - padding: 0; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + border-right: 10px solid #0568ae; position: absolute; - left: -11px; - top: 0; - line-height: 14px; - width: 11px; } - .b2b-tree-checkbox a > span.nodeIcon > i { - font-size: 20px; } - .b2b-tree-checkbox a > span.nodeIcon.end { - margin-top: 10px; } - .b2b-tree-checkbox a:only-child { - color: #0574ac; } - .b2b-tree-checkbox a:only-child > span.nodeIcon { - left: -11px; - border-radius: 50%; - line-height: 7px; - top: 0; } - .b2b-tree-checkbox a:only-child > span.nodeIcon > i { - background-color: inherit; - background: #fff; } - .b2b-tree-checkbox a > span.nodeIcon > i.icon-primary-circle { - background-color: inherit; - background: #fff; - font-size: 10px; } - .b2b-tree-checkbox ul li:first-child > a:only-child > span { - left: -11px; - border-radius: 50%; - line-height: 12px; - top: 0px; } - .b2b-tree-checkbox ul li:first-child > a:only-child > span.end { - margin-top: 0px; } - .b2b-tree-checkbox ul li:first-child > a:only-child > span i.icon-primary-circle { - top: 8px; } - .b2b-tree-checkbox ul li:last-child > a:only-child > span { - height: 34px; - background-color: #fff; } - .b2b-tree-checkbox li a + ul { - height: 0; - overflow: hidden; } - .b2b-tree-checkbox li a.active + ul { - height: auto; } - .b2b-tree-checkbox li a.grp { - font-family: "Omnes-ECOMP-W02-Italic", Arial; } - .b2b-tree-checkbox span.end { - left: -6px !important; } - .b2b-tree-checkbox .checkbox { - margin-bottom: 0px; - margin-top: 2px; - font-size: 14px; } - .b2b-tree-checkbox .checkbox input:indeterminate + .skin:after { - content: "\2014"; - padding-left: 2px; - font-family: inherit !important; - line-height: inherit !important; } - .b2b-tree-checkbox span.first-link { - width: 3px !important; - height: 15px !important; - top: 0px !important; - left: -2px !important; - background: #fff; } - - .b2b-widget-window { - width: 147px; - right: 5px; - top: 60px; + top: 25px; } + .b2b-tree ul li.activeTooltip > a .b2b-tree-tooltip { + display: block; } + .b2b-tree ul ul { + padding: 0 0 0 20px; } + .b2b-tree ul > li { + position: relative; + line-height: 18px; } + .b2b-tree a > span.b2b-tree-node-icon { + background-color: #FFF; + display: inline; + margin: 0; + padding: 0; position: absolute; - border: 1px solid #ccc; - background-color: #fff; - border-radius: 8px; - z-index: 1000; } - .b2b-widget-window li { - margin: 15px; } - - .b2b-widget-container { - background-color: #fff; - border-radius: 8px; - border: 1px solid #ccc; - position: relative; } - .b2b-widget-container .b2b-widget-header { - font-family: "Omnes-ECOMP-W02", Arial; - color: #333; - height: 55px; - padding-left: 15px; - padding-top: 19px; } - .b2b-widget-container .b2b-widget-header .header { - font-size: 18px; } - .b2b-widget-container .b2b-widget-header-icons { - font-size: 16px; - color: #0574ac; } - - .b2b-widget-header-icons button { - border: none; - background: transparent; + left: -11px; + top: 0; + line-height: 14px; + width: 11px; } + .b2b-tree a > span.b2b-tree-node-icon > i { + font-size: 20px; } + .b2b-tree a:only-child { color: #0574ac; } - .b2b-widget-header-icons button:focus { - outline-style: solid; - outline-width: 1px; - outline-color: #0574ac; } - .b2b-widget-header-icons button:first-child { - margin-right: 0px; } - - .b2b-widget-container .b2b-widget-content { - height: 325px; - margin: 0; - padding: 20px; + .b2b-tree a:only-child > span.b2b-tree-node-icon { + left: -11px; + border-radius: 50%; + line-height: 7px; + top: 0; } + .b2b-tree a:only-child > span.b2b-tree-node-icon > i { + background-color: inherit; + background: #fff; } + .b2b-tree a > span.b2b-tree-node-icon > i.icon-primary-circle { + background-color: inherit; + background: #fff; + font-size: 5px; } + .b2b-tree a.b2b-locked-node:after { + content: "\ec58"; + float: right; + font-family: 'icoSecurityalerts' !important; } + .b2b-tree a:hover .b2b-locked-node:after { + text-decoration: none; } + .b2b-tree ul li:first-child > a:only-child > span.b2b-tree-node-icon { + left: -11px; + border-radius: 50%; + line-height: 12px; } + .b2b-tree ul li:last-child > a:only-child > span.b2b-tree-node-icon { + height: 27px; + background-color: #fff; } + .b2b-tree li a + ul { + height: 0; + overflow: hidden; } + .b2b-tree li a.active + ul { + height: auto; + overflow: visible; } + .b2b-tree li a.grp { + font-family: "Omnes-ECOMP-W02-Italic", Arial; } + .b2b-tree li a.grp.active { + color: #333; } + .b2b-tree span.end { + left: -6px !important; + top: 5px !important; } + .b2b-tree span.first-link { + width: 3px !important; + height: 15px !important; + top: 0px !important; + left: -2px !important; + background: #fff; } + +/* .b2b-tree-checkbox { + padding: 0 10px 0 10px; + width: 320px; } + .b2b-tree-checkbox ul { + list-style: none; + list-style-type: none; } + .b2b-tree-checkbox a { + display: block; + padding: 0 0 5px 30px; + line-height: 22px; + margin-left: -10px; + font-size: 14px; + outline-offset: -1px; } + .b2b-tree-checkbox li:focus { + outline: none; } + .b2b-tree-checkbox li:focus > a { + outline: thin dotted #666; + outline-offset: -1px; } + .b2b-tree-checkbox ul li { + border-left: 1px solid #ccc; } + .b2b-tree-checkbox ul ul { + padding: 0 0 0 20px; } + .b2b-tree-checkbox ul > li { position: relative; - border-top: 1px solid #ccc; } - - .b2b-widget-content .form-row:first-child { - margin-top: 0; } - - .b2b-widget-header-icons button.icoControls-gear:focus, .b2b-widget-header-icons button.icon-primary-close:focus { - outline: thin dotted #666; } - - .b2b-widget-header .icon-primary-close:before { - content: '-'; - display: inline-block; + line-height: 18px; } */ + /* .b2b-tree-checkbox a > span.nodeIcon { + background-color: #FFF; + display: inline; margin: 0; padding: 0; - outline: none; } - - .b2b-widget-window .arrow_box { + position: absolute; + left: -11px; + top: 0; + line-height: 14px; + width: 11px; } */ + /* .b2b-tree-checkbox a > span.nodeIcon > i { + font-size: 20px; } */ + .b2b-tree-checkbox a > span.nodeIcon.end { + margin-top: 10px; } + .b2b-tree-checkbox a:only-child { + color: #0574ac; } + .b2b-tree-checkbox a:only-child > span.nodeIcon { + left: -11px; + border-radius: 50%; + line-height: 7px; + top: 0; } + .b2b-tree-checkbox a:only-child > span.nodeIcon > i { + background-color: inherit; + background: #fff; } + .b2b-tree-checkbox a > span.nodeIcon > i.icon-primary-circle { + background-color: inherit; background: #fff; - border: 1px solid #ccc; } - - .b2b-widget-window.arrow_box:after, .b2b-widget-window.arrow_box:before { - bottom: 100%; - left: 75%; - border: solid transparent; - content: " "; + font-size: 5px; } + .b2b-tree-checkbox ul li:first-child > a:only-child > span { + left: -11px; + border-radius: 50%; + line-height: 12px; + top: 0px; } + .b2b-tree-checkbox ul li:first-child > a:only-child > span.end { + margin-top: 0px; } + .b2b-tree-checkbox ul li:first-child > a:only-child > span i.icon-primary-circle { + top: 8px; } + .b2b-tree-checkbox ul li:last-child > a:only-child > span { + height: 34px; + background-color: #fff; } + .b2b-tree-checkbox li a + ul { height: 0; - width: 0; - position: absolute; - pointer-events: none; } - - .b2b-widget-window.arrow_box:after { - border-color: rgba(255, 255, 255, 0); - border-bottom-color: #fff; - border-width: 10px; - margin-left: 1px; } - - .b2b-widget-window.arrow_box:before { - border-color: rgba(204, 204, 204, 0); - border-bottom-color: #ccc; - border-width: 11px; - margin-left: 0px; } - - /************************** Overrides for Filters ***************************/ - .filter-container .filter-header h2 { - line-height: 1 !important; - margin: 0 !important; } - - .filter-container .icon-primary-spinner:before { - content: none; } - + overflow: hidden; } + .b2b-tree-checkbox li a.active + ul { + height: auto; } + .b2b-tree-checkbox li a.grp { + font-family: "Omnes-ECOMP-W02-Italic", Arial; } + .b2b-tree-checkbox span.end { + left: -6px !important; } + .b2b-tree-checkbox .checkbox { + margin-bottom: 0px; + margin-top: 2px; + font-size: 14px; } + .b2b-tree-checkbox .checkbox input:indeterminate + .skin:after { + content: "\2014"; + padding-left: 2px; + font-family: inherit !important; + line-height: inherit !important; } + /* .b2b-tree-checkbox span.first-link { + width: 3px !important; + height: 15px !important; + top: 0px !important; + left: -2px !important; + background: #fff; } */ + +.b2b-widget-window { + width: 147px; + right: 5px; + top: 60px; + position: absolute; + border: 1px solid #ccc; + background-color: #fff; + border-radius: 8px; + z-index: 1000; } + .b2b-widget-window li { + margin: 15px; } + +.b2b-widget-container { + background-color: #fff; + border-radius: 8px; + border: 1px solid #ccc; + position: relative; } + .b2b-widget-container .b2b-widget-header { + font-family: "Omnes-ECOMP-W02", Arial; + color: #333; + height: 55px; + padding-left: 15px; + padding-top: 19px; } + .b2b-widget-container .b2b-widget-header .header { + font-size: 18px; } + .b2b-widget-container .b2b-widget-header-icons { + font-size: 16px; + color: #0574ac; } + +.b2b-widget-header-icons button { + border: none; + background: transparent; + color: #0574ac; } + .b2b-widget-header-icons button:focus { + outline-style: solid; + outline-width: 1px; + outline-color: #0574ac; } + .b2b-widget-header-icons button:first-child { + margin-right: 0px; } + +.b2b-widget-container .b2b-widget-content { + height: 325px; + margin: 0; + padding: 20px; + position: relative; + border-top: 1px solid #ccc; } + +.b2b-widget-content .form-row:first-child { + margin-top: 0; } + +.b2b-widget-header-icons button.icoControls-gear:focus, .b2b-widget-header-icons button.icon-primary-close:focus { + outline: thin dotted #666; } + +.b2b-widget-header .icon-primary-close:before { + content: '-'; + display: inline-block; + margin: 0; + padding: 0; + outline: none; } + +.b2b-widget-window .arrow_box { + background: #fff; + border: 1px solid #ccc; } + +.b2b-widget-window.arrow_box:after, .b2b-widget-window.arrow_box:before { + bottom: 100%; + left: 75%; + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; + pointer-events: none; } + +.b2b-widget-window.arrow_box:after { + border-color: rgba(255, 255, 255, 0); + border-bottom-color: #fff; + border-width: 10px; + margin-left: 1px; } + +.b2b-widget-window.arrow_box:before { + border-color: rgba(204, 204, 204, 0); + border-bottom-color: #ccc; + border-width: 11px; + margin-left: 0px; } + +/************************** Overrides for Filters ***************************/ +.filter-container .filter-header h2 { + line-height: 1 !important; + margin: 0 !important; } + +.filter-container .icon-primary-spinner:before { + content: none; } + +.filter-container .fixed-230-subnav { + margin: 10px !important; + width: inherit !important; } + +.filter-container .unlinked:focus { + outline: thin dotted #666 !important; } + +.filter-container .unlinked.active { + color: inherit !important; } + +.filter-container .fixed-230-subnav a > i { + background: none; } + +.filter-container .fixed-230-subnav ul { + margin: 0 0 10px 10px; } + +/************************** Overrides for Filters ***************************/ +.row .filter-container { + background-color: #fff; } + +.filter-header { + overflow: hidden; + padding: 20px 0; + position: relative; } + +.filter-header h2 { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 2.4rem; + margin-bottom: 0; } + +.filter-selected { + border-top: 1px solid #ccc; + padding-top: 20px; } + +.filter-selected > span { + font-size: 1.3rem; + text-transform: uppercase; } + +.filter-selected > a.clear-all-filters { + float: right; + font-size: 1.4rem; } + +.filter-selected > span, +.filter-selected > a.clear-all-filters { + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + +.filter-selected-group { + padding-top: 15px; } + +.filter-selected-badge { + background-color: #f2f2f2; + border-radius: 15px; + display: inline-block; + font-size: 1.4rem; + margin-bottom: 10px; + padding: 0 0 0 12px; } + +.filter-selected-badge .icoControls-optionsoff { + background: transparent none repeat scroll 0 0; + border: medium none; + font-size: 2.5em; + margin: 0; + padding: 0; } + +.filters .fixed-230-subnav > ng-transclude > div:first-child { + border-top: 1px solid #ccc; } + +.filters .fixed-230-subnav > ng-transclude > div { + border-bottom: 1px solid #ccc; } + +.filter-results { + align-items: center; + border-bottom: 1px solid #ccc; + display: flex; + flex-wrap: wrap; + height: 50px; + -webkit-justify-content: space-between; + -ms-flex-pack: justify; + justify-content: space-between; } + +.filter-results-sortby > span { + text-transform: uppercase; } + +.filter-results-view .icon-primary-content-gridguide { + font-size: 2em; + margin-right: 0; } + +.filter-container .fixed-230-subnav > ng-transclude > div > a { + font-size: 1.8rem; + margin: 0; + padding: 15px 20px 15px 0; + color: #0574ac !important; + cursor: pointer !important; + font-family: "Omnes-ECOMP-W02", Arial !important; + outline-offset: inherit !important; + position: relative; + height: auto; + width: auto; } + +.filter-container .fixed-230-subnav a > i { + right: 0; + top: 15px; } + +.filter-container .fixed-230-subnav .icon-primary-collapsed:before, .filter-container .fixed-230-subnav .icon-primary-expanded:before { + float: right; } + +.filter-container .fixed-230-subnav ul.collapse { + position: inherit; + transition: height 0.5s ease; + height: 0; + overflow: hidden; } + +.filter-container .checkbox .icon-primary-spinner { + height: 24px; + position: absolute; + width: 24px; } + +.fixed-230-subnav.affix { + margin: -28px 0 0; } + +#nav-menu .b2b-menu, +#nav-menu .fixed-230-subnav { + margin: 0; } + +.b2b-menu > li, +.fixed-230-subnav > div { + border-bottom: 1px solid #ccc; + line-height: 4.0rem; } + +.b2b-menu > li:first-child, +.fixed-230-subnav > li:first-child { + border-top: 1px solid #ccc; } + +.b2b-menu div > a, +.fixed-230-subnav div > a { + color: #0574ac; + cursor: pointer; + display: block; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 1.4rem; + margin: 0; + outline-offset: -1px; + padding: 0 10px; + position: relative; } + +.fixed-230-subnav div > a.live { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + color: #666; } + +.fixed-230-subnav > ng-transclude > div li > a { + display: block; + font-size: 1.4rem; + line-height: 20px; } + +.fixed-230-subnav > ng-transclude > div li > a.active { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + text-decoration: none; + color: #666; } + +#nav-menu .fixed-230-subnav a > i { + top: 10px; } + +.fixed-230-subnav > li > a.active > i:after { + display: none; } + +.b2b-menu ul, +.fixed-230-subnav ul { + margin: 0 0 10px 0; } + +.b2b-menu ul div a, +.fixed-230-subnav ul div a { + padding: 0 10px; } + +.unlinked { + outline: medium none !important; + text-decoration: none !important; } + +@media (max-width: 1024px) { .filter-container .fixed-230-subnav { - margin: 10px !important; - width: inherit !important; } - - .filter-container .unlinked:focus { - outline: thin dotted #666 !important; } - - .filter-container .unlinked.active { - color: inherit !important; } - - .filter-container .fixed-230-subnav a > i { - background: none; } - - .filter-container .fixed-230-subnav ul { - margin: 0 0 10px 10px; } - - /************************** Overrides for Filters ***************************/ + margin: 0 20px; + width: auto; } + .filter-container .fixed-230-subnav > li { + margin: 0; } .row .filter-container { - background-color: #fff; } - + display: none; + height: 100%; + left: 0; + position: fixed; + overflow: auto; + top: 0; + transition: all 0.5s ease 0s; + width: 285px; + z-index: 9999; } .filter-header { - overflow: hidden; - padding: 20px 0; - position: relative; } - - .filter-header h2 { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 2.4rem; - margin-bottom: 0; } - + padding-left: 20px; } .filter-selected { - border-top: 1px solid #ccc; - padding-top: 20px; } - - .filter-selected > span { - font-size: 1.3rem; - text-transform: uppercase; } - - .filter-selected > a.clear-all-filters { - float: right; - font-size: 1.4rem; } - - .filter-selected > span, - .filter-selected > a.clear-all-filters { - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - - .filter-selected-group { - padding-top: 15px; } - - .filter-selected-badge { - background-color: #f2f2f2; - border-radius: 15px; + margin: 0 20px 10px; } } + +.b2b-pane-selector-wrapper { + width: 100%; + display: block; + border-top: solid 1px #ccc; + border-bottom: solid 1px #ccc; } + .b2b-pane-selector-wrapper .side-nav { + width: 20% !important; display: inline-block; - font-size: 1.4rem; - margin-bottom: 10px; - padding: 0 0 0 12px; } - - .filter-selected-badge .icoControls-optionsoff { - background: transparent none repeat scroll 0 0; - border: medium none; - font-size: 2.5em; - margin: 0; - padding: 0; } - - .filters .fixed-230-subnav > ng-transclude > div:first-child { - border-top: 1px solid #ccc; } - - .filters .fixed-230-subnav > ng-transclude > div { - border-bottom: 1px solid #ccc; } - - .filter-results { - align-items: center; - border-bottom: 1px solid #ccc; - display: flex; - flex-wrap: wrap; - height: 50px; - -webkit-justify-content: space-between; - -ms-flex-pack: justify; - justify-content: space-between; } - - .filter-results-sortby > span { - text-transform: uppercase; } - - .filter-results-view .icon-primary-content-gridguide { - font-size: 2em; - margin-right: 0; } - - .filter-container .fixed-230-subnav > ng-transclude > div > a { - font-size: 1.8rem; + float: left; } + .b2b-pane-selector-wrapper .pane-container { + width: 80%; + vertical-align: top; margin: 0; - padding: 15px 20px 15px 0; - color: #0574ac !important; - cursor: pointer !important; - font-family: "Omnes-ECOMP-W02", Arial !important; - outline-offset: inherit !important; - position: relative; - height: auto; - width: auto; } - - .filter-container .fixed-230-subnav a > i { - right: 0; - top: 15px; } - - .filter-container .fixed-230-subnav .icon-primary-collapsed:before, .filter-container .fixed-230-subnav .icon-primary-expanded:before { - float: right; } - - .filter-container .fixed-230-subnav ul.collapse { - position: inherit; - transition: height 0.5s ease; - height: 0; - overflow: hidden; } - - .filter-container .checkbox .icon-primary-spinner { - height: 24px; - position: absolute; - width: 24px; } - - .fixed-230-subnav.affix { - margin: -28px 0 0; } - - #nav-menu .b2b-menu, - #nav-menu .fixed-230-subnav { - margin: 0; } - - .b2b-menu > li, - .fixed-230-subnav > div { - border-bottom: 1px solid #ccc; - line-height: 4.0rem; } - - .b2b-menu > li:first-child, - .fixed-230-subnav > li:first-child { - border-top: 1px solid #ccc; } - - .b2b-menu div > a, - .fixed-230-subnav div > a { - color: #0574ac; - cursor: pointer; - display: block; + padding-top: 30px; + border-left: solid 1px #ccc; font-family: "Omnes-ECOMP-W02", Arial; - font-size: 1.4rem; - margin: 0; - outline-offset: -1px; - padding: 0 10px; - position: relative; } - - .fixed-230-subnav div > a.live { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - color: #666; } - - .fixed-230-subnav > ng-transclude > div li > a { - display: block; - font-size: 1.4rem; - line-height: 20px; } - - .fixed-230-subnav > ng-transclude > div li > a.active { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - text-decoration: none; - color: #666; } - - #nav-menu .fixed-230-subnav a > i { - top: 10px; } - - .fixed-230-subnav > li > a.active > i:after { - display: none; } - - .b2b-menu ul, - .fixed-230-subnav ul { - margin: 0 0 10px 0; } - - .b2b-menu ul div a, - .fixed-230-subnav ul div a { - padding: 0 10px; } - - .unlinked { - outline: medium none !important; - text-decoration: none !important; } - - @media (max-width: 1024px) { - .filter-container .fixed-230-subnav { - margin: 0 20px; - width: auto; } - .filter-container .fixed-230-subnav > li { - margin: 0; } - .row .filter-container { - display: none; - height: 100%; - left: 0; - position: fixed; - overflow: auto; - top: 0; - transition: all 0.5s ease 0s; - width: 285px; - z-index: 9999; } - .filter-header { - padding-left: 20px; } - .filter-selected { - margin: 0 20px 10px; } } - - .b2b-pane-selector-wrapper { - width: 100%; - display: block; - border-top: solid 1px #ccc; - border-bottom: solid 1px #ccc; } - .b2b-pane-selector-wrapper .side-nav { - width: 20% !important; - display: inline-block; - float: left; } - .b2b-pane-selector-wrapper .pane-container { - width: 80%; - vertical-align: top; - margin: 0; - padding-top: 30px; - border-left: solid 1px #ccc; - font-family: "Omnes-ECOMP-W02", Arial; - display: none; } - .b2b-pane-selector-wrapper .pane-container.active { - display: inline-block; } - .b2b-pane-selector-wrapper .pane-container .pane-container-top { - padding-left: 15px; } - .b2b-pane-selector-wrapper .pane-container .panes { - display: -webkit-flex; - display: flex; - border-top: solid 1px #ccc; - margin-top: 30px; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block { - height: inherit; - overflow-y: auto; - border-right: solid 1px #ccc; - position: relative; - flex: 1; - -webkit-flex: 1; - /* Safari 6.1+ */ - -ms-flex: 1; - /* IE 10 */ } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block:focus { - outline: dotted 1px #333333; } - .b2b-pane-selector-wrapper .pane-container .search-block { - position: relative; - float: right; } - .b2b-pane-selector-wrapper .pane-container .search-block input[type="search"]:focus { - padding-right: 40px; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row p { - margin-top: 15px; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block div { - border-bottom: solid 1px #ccc; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row { - display: block; - padding: 19px 14px 19px 14px; - margin-top: 0px; - border: dotted 1px transparent; - border-bottom: solid 1px #ccc; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row:focus { - border: dotted 1px #333333 !important; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row:last-child { - border-bottom: none; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block > .no-content { - text-align: center; - border-bottom: none; - display: block; - position: absolute; - top: 45%; - left: 0; - right: 0; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block div:last-child { - border-bottom: none; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row span.margin-chk { - margin: 15px 15px 0px 15px; - float: left; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row .checkbox-selectall { - margin: 0px 0 0 24px !important; } - .b2b-pane-selector-wrapper .side-nav li { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - border: none; + display: none; } + .b2b-pane-selector-wrapper .pane-container.active { + display: inline-block; } + .b2b-pane-selector-wrapper .pane-container .pane-container-top { + padding-left: 15px; } + .b2b-pane-selector-wrapper .pane-container .panes { + display: -webkit-flex; + display: flex; border-top: solid 1px #ccc; - display: block !important; - width: auto !important; - margin-left: 0px !important; } - .b2b-pane-selector-wrapper .side-nav li.active { - background-color: #f6f6f6; - position: inherit !important; } - .b2b-pane-selector-wrapper .side-nav li.active > a { - font-size: 16px; - color: #333; - text-decoration: none; - border: none; - background-color: transparent; - padding: 20px 15px; - display: block; - height: auto; - border-left: 4px solid #0574ac; } - .b2b-pane-selector-wrapper .side-nav li > a { + margin-top: 30px; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block { + height: inherit; + overflow-y: auto; + border-right: solid 1px #ccc; + position: relative; + flex: 1; + -webkit-flex: 1; + /* Safari 6.1+ */ + -ms-flex: 1; + /* IE 10 */ } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block:focus { + outline: dotted 1px #333333; } + .b2b-pane-selector-wrapper .pane-container .search-block { + position: relative; + float: right; } + .b2b-pane-selector-wrapper .pane-container .search-block input[type="search"]:focus { + padding-right: 40px; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row p { + margin-top: 15px; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block div { + border-bottom: solid 1px #ccc; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row { + display: block; + padding: 19px 14px 19px 14px; + margin-top: 0px; + border: dotted 1px transparent; + border-bottom: solid 1px #ccc; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row:focus { + border: dotted 1px #333333 !important; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row:last-child { + border-bottom: none; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block > .no-content { + text-align: center; + border-bottom: none; + display: block; + position: absolute; + top: 45%; + left: 0; + right: 0; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block div:last-child { + border-bottom: none; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row span.margin-chk { + margin: 15px 15px 0px 15px; + float: left; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row .checkbox-selectall { + margin: 0px 0 0 24px !important; } + .b2b-pane-selector-wrapper .side-nav li { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + border: none; + border-top: solid 1px #ccc; + display: block !important; + width: auto !important; + margin-left: 0px !important; } + .b2b-pane-selector-wrapper .side-nav li.active { + background-color: #f6f6f6; + position: inherit !important; } + .b2b-pane-selector-wrapper .side-nav li.active > a { font-size: 16px; color: #333; text-decoration: none; @@ -10905,926 +10611,1162 @@ i, em { padding: 20px 15px; display: block; height: auto; - text-align: left; } - .b2b-pane-selector-wrapper .side-nav li > a:focus { - border-right: dotted 1px #333333; } - .b2b-pane-selector-wrapper .side-nav li:first-child { - border-top: none; - margin-left: none !important; } - /********************* Utility CSS Starts **********************/ - .offscreen-text { - position: absolute; - left: -10000px; - top: auto; - width: 1px; - height: 1px; - overflow: hidden; } - - /********************* Utility CSS Ends **********************/ - /* Fix for alignment issue on Cancel link inside modal */ - .modal-footer > .cta-button-group { - line-height: 40px; } - - /* .att-dark-green { // Not used - color: #007a3e; - } */ - .colors-off-msg { - display: none; } - - button .colors-off-msg { - position: relative; } - - .ds2-no-colors .colors-off-msg { - display: block; } - - .ds2-no-colors [data-colordatatext] button .colors-off-msg { - font-size: 1.1rem; - line-height: normal; - padding: 5px 0; - position: absolute; - top: 0; - white-space: normal; - width: 60px; } - - /* Not used - .make-all-white * { - color: #fff; - } - .make-all-white a { - text-decoration: underline; - } */ - .loader > span { - display: block; - padding-top: 20px; } - - .modal > .loader { - left: 50%; - margin-left: -25px; - margin-top: -25px; - position: absolute; - top: 50%; } - - #pageLevelLoader.modal { - background-color: transparent; - border: none; - box-shadow: none; - top: 40%; } - - .modal.fade .loader { - display: none; } - - .modal.fade.in .loader { - display: block; } - - .btn.disabled[data-loading-text] { - padding: 0 19px 0 18px; - line-height: 46px; } - - .btn.disabled[data-loading-text] img { - position: relative; - top: 2px; } - - /* Seems to already be in docs.css - .fixed-230.leftnav { - position: relative; - } - .fixed-230-subnav { - margin: 10px; - } - .fixed-230-subnav > li:first-child { - border-top: none; - } - .fixed-230-subnav > li { - border-bottom: 1px solid #d2d2d2; - } - .fixed-230-subnav > li > a { - display: block; - font-size: 1.4rem; - line-height: normal; - margin: 0 -9px; - padding: 11px 35px 12px 9px; - outline-offset: 0; - position: relative; - } - .fixed-230-subnav > li > a.live { - color: #333333; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - } - .fixed-230-subnav a > i { - right: 10px; - margin: 0; - position: absolute; - top: 10px; - } - .fixed-230-subnav a > i:after { - display: none; - } - .fixed-230-subnav > li li > a { - display: block; - font-size: 1.4rem; - line-height: 18px; - } - .fixed-230-subnav > li li > a.active { - color: #333333; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - text-decoration: none; - } - .fixed-230-subnav ul { - margin: 0 0 10px; - } */ - .unlinked { - color: #0568ae !important; - font-family: "Omnes-ECOMP-W02", Arial !important; } - - .unlinked.active { - color: inherit !important; } - - /* @media (max-width: 767px) { - .row.has-leftnav { - flex-wrap: wrap; - } - .row.has-leftnav .fluid-space { - padding-right: 0; - } - .row .fixed-230 { - background-color: #fff; - width: auto; - } - .row .leftnav { - background-color: #fff !important; - display: block !important; - } - .fixed-230-subnav { - margin: 10px 0 0; - width: 100%; - } - .fixed-230-subnav > li { - margin-left: -15px; - margin-right: -15px; - } - .fixed-230-subnav > li:first-child { - border-top: 1px solid #d2d2d2; - } - .fixed-230-subnav > li > a { - margin: 0; - } - .fixed-230-subnav a:hover, - .fixed-230-subnav a:focus { - text-decoration: none !important; - } - .fixed-230-subnav > li li > a { - padding: 5px 10px; - } - .fixed-230-subnav > li li > a.active { - color: inherit; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - } - } */ - @keyframes DOMinsertion { - from { - outline-color: transparent; } - to { - outline-color: transparent; } } - - @-moz-keyframes DOMinsertion { - from { - outline-color: transparent; } - to { - outline-color: transparent; } } - - @-webkit-keyframes DOMinsertion { - from { - outline-color: transparent; } - to { - outline-color: transparent; } } - - @-ms-keyframes DOMinsertion { - from { - outline-color: transparent; } - to { - outline-color: transparent; } } - - @-o-keyframes DOMinsertion { - from { - outline-color: transparent; } - to { - outline-color: transparent; } } - - .ajaxed, - .modal.fade.in .modal-header, - .modal.fade.in .modal-body, - .modal.fade.in .modal-footer { - animation-duration: 0.01s; - -o-animation-duration: 0.01s; - -ms-animation-duration: 0.01s; - -moz-animation-duration: 0.01s; - -webkit-animation-duration: 0.01s; - animation-name: DOMinsertion; - -o-animation-name: DOMinsertion; - -ms-animation-name: DOMinsertion; - -moz-animation-name: DOMinsertion; - -webkit-animation-name: DOMinsertion; } - - .dda-css-override ul.nav-tabs { - margin-bottom: 0; } - - .dda-css-override div.tab-content { - margin-top: 0; - border-top: none; } - - .dda-css-override .tab-content .prettyprint, .dda-css-override .usage .prettyprint { - max-height: 500px; - overflow-y: auto; } - - .formsWithinProcessButton { - margin-right: 0px; } - - .heading-sub-section-form { - font-size: 2.4rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 20px; - margin-top: 10px; } - - .heading-small-form { - font-size: 1.6rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-top: 0px; } - - .icon-primary-form-sizeL { - font-size: 50px; } - - .icon-primary-form-size { - font-size: 30px; } - - .spanformfix { - margin-right: 15px !important; } - - @media (max-width: 767px) { - .heading-sub-section-form { - font-size: 1.8rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 20px; - padding-top: 10px; - margin-top: 30px; } - .heading-small-form { - font-size: 1.4rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-top: 0px; } } - - @media (max-width: 479px) { - .icon-primary-form-resizeL { - display: none; } - .icon-primary-form-resize { - display: none; } - .heading-center-form { - margin-left: 20px; } } - - @media (min-width: 480px) { - .icon-primary-form-resizeL { - display: none; } - .icon-primary-form-resize { - display: inherit; } - .icon-primary-center-min { - margin-top: 30px; } } - - @media (min-width: 768px) { - .icon-primary-form-resizeL { - display: inherit; - margin-top: 30px; } - .icon-primary-form-resize { - display: none; } - .center-form-align { - margin-top: 35px; } } - - @media (min-width: 1024px) { - .icon-primary-form-resizeL { - display: inherit; - margin-top: 0px; } - .icon-primary-form-resize { - display: none; } - .center-form-align { - margin-top: 5px; } } - - .data-row.has-button td.col-1 { - padding: 0; } - - .tab-content > .tab-pane { - display: none; } - - .tab-content > .active { - display: block; } - - .icon-primary-circle:before { - background-image: url("data:image/svg+xml,%3Csvg%20baseProfile%3D%22tiny%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%3E%3Ccircle%20fill%3D%22transparent%22%20stroke%3D%22%23666%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2218%22%20cy%3D%2218%22%20r%3D%2216%22%2F%3E%3C%2Fsvg%3E"); - content: ""; - position: absolute; - top: 0; - z-index: 1; } - - .b2b-drag-handle { - cursor: move; - -ms-interpolation-mode: bicubic; - margin-bottom: 40px; - height: 23px; - padding-right: 10px; - float: left; } - - .b2b-drag-over { - background-color: #d1d1d1; } - - .b2-drag-element { - background-color: #e8e8e8; } - - [draggable] { - -moz-user-select: none; - -khtml-user-select: none; - -webkit-user-select: none; - user-select: none; } - /* Flyout inputs color is not aligned */ - textarea, input { - color: #333; } - - .isIE .btn-primary.btn:focus::after, - .isIE .btn-specialty.btn:focus::after, - .isIE .btn-alt.btn:focus::after { - border: 1px dashed #fff !important; } - .b2b-config-section-container { - height: auto; - min-height: 330px; - width: 815px; - background-color: #fff; - border: 1px solid #ccc; - display: inline-table; - border-radius: 6px; } - - .b2b-config-section-first-div { - border-right: 1px solid #ccc; - height: auto; - min-height: 330px; } - - .b2b-config-section-icon-primary-font { - font-size: 50px; - height: 31px; - line-height: 31px; } - - .b2b-config-section-padding { - padding: 20px 20px 15px 15px; - height: auto; } - - .b2b-config-sec-flyout { - position: relative; - left: 10px; - float: right; - color: #0574ac; - font-size: 16px; - font-family: "Omnes-ECOMP-W02", Arial; } - - .b2b-config-sec-divider { - border-bottom: 1px solid #ccc; } - - .b2b-confi-sec-span-border { - border-right: 1px solid; - height: auto; } - - .b2b-config-sec-speed-div { - text-align: center; - margin-top: 20px; } - - .b2b-config-sec-label-font { - font-size: 16px; } - - .b2b-config-sec-expander-main { - padding: 0 5px 0px 15px; } - - .b2b-config-sec-expander-body .b2b-config-vlan-padding { - padding: 5px 15px 10px 0px; } - - .b2b-conif-sec-row-height { - height: 110px; } - - .b2b-config-sec-expander-body { - font-size: 14px; } - .b2b-config-sec-expander-body .b2b-config-vlan-data { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - padding-left: 15px; } - - .b2b-config-sec-expander-body-first-div { - border-top: 1px solid #ccc; } - - .b2b-config-sec-expander-body .tooltip { - position: static; - opacity: 1; } - - .b2b-config-section-container .row > [class*="span"] { - margin-right: 0px; } - - .b2b-config-vlan-icons { - font-size: 16px; - float: right; - margin-right: 0px; } - - .b2b-config-section-container .span6 { - width: 50%; } - - .b2b-config-sec-data-link-style { - position: relative; - left: 95%; - top: 30px; - border-radius: 50%; - width: 23px; - height: 23px; - background: #fff; - border: 1px solid #ccc; - color: #666666; } - - .b2b-config-sec-text-align { - text-align: center; - margin-top: 15px; - margin-bottom: 35px; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 14px; - color: #333333; } - - .b2b-config-port-text-align { - text-align: center; - margin-top: 15px; - margin-bottom: 8px; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 14px; - color: #333333; } - - .b2b-config-port-text-label { - margin-top: 6px; - margin-bottom: 8px; - font-size: 14px; - text-align: center; } - - .b2b-confi-sec-last-div p { - font-size: 14px; - padding: 10px 15px 0 15px; } - - .b2b-confi-sec-router-label { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 16px; - color: #333333; - float: left; + border-left: 4px solid #0574ac; } + .b2b-pane-selector-wrapper .side-nav li > a { + font-size: 16px; + color: #333; + text-decoration: none; + border: none; + background-color: transparent; + padding: 20px 15px; + display: block; + height: auto; + text-align: left; } + .b2b-pane-selector-wrapper .side-nav li > a:focus { + border-right: dotted 1px #333333; } + .b2b-pane-selector-wrapper .side-nav li:first-child { + border-top: none; + margin-left: none !important; } +/********************* Utility CSS Starts **********************/ +.offscreen-text { + position: absolute; + left: -10000px; + top: auto; + width: 1px; + height: 1px; + overflow: hidden; } + +/********************* Utility CSS Ends **********************/ +/* Fix for alignment issue on Cancel link inside modal */ +.modal-footer > .cta-button-group { + line-height: 40px; } + +/* .att-dark-green { // Not used + color: #007a3e; +} */ +.colors-off-msg { + display: none; } + +button .colors-off-msg { + position: relative; } + +.ds2-no-colors .colors-off-msg { + display: block; } + +.ds2-no-colors [data-colordatatext] button .colors-off-msg { + font-size: 1.1rem; + line-height: normal; + padding: 5px 0; + position: absolute; + top: 0; + white-space: normal; + width: 60px; } + +/* Not used +.make-all-white * { + color: #fff; +} +.make-all-white a { + text-decoration: underline; +} */ +.loader > span { + display: block; + padding-top: 20px; } + +.modal > .loader { + left: 50%; + margin-left: -25px; + margin-top: -25px; + position: absolute; + top: 50%; } + +#pageLevelLoader.modal { + background-color: transparent; + border: none; + box-shadow: none; + top: 40%; } + +.modal.fade .loader { + display: none; } + +.modal.fade.in .loader { + display: block; } + +.btn.disabled[data-loading-text] { + padding: 0 19px 0 18px; + line-height: 46px; } + +.btn.disabled[data-loading-text] img { + position: relative; + top: 2px; } + +/* Seems to already be in docs.css +.fixed-230.leftnav { + position: relative; +} +.fixed-230-subnav { + margin: 10px; +} +.fixed-230-subnav > li:first-child { + border-top: none; +} +.fixed-230-subnav > li { + border-bottom: 1px solid #d2d2d2; +} +.fixed-230-subnav > li > a { + display: block; + font-size: 1.4rem; + line-height: normal; + margin: 0 -9px; + padding: 11px 35px 12px 9px; + outline-offset: 0; + position: relative; +} +.fixed-230-subnav > li > a.live { + color: #333333; + font-family: "Omnes-ECOMP-W02-Medium", Arial; +} +.fixed-230-subnav a > i { + right: 10px; + margin: 0; + position: absolute; + top: 10px; +} +.fixed-230-subnav a > i:after { + display: none; +} +.fixed-230-subnav > li li > a { + display: block; + font-size: 1.4rem; + line-height: 18px; +} +.fixed-230-subnav > li li > a.active { + color: #333333; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + text-decoration: none; +} +.fixed-230-subnav ul { + margin: 0 0 10px; +} */ +.unlinked { + color: #0568ae !important; + font-family: "Omnes-ECOMP-W02", Arial !important; } + +.unlinked.active { + color: inherit !important; } + +/* @media (max-width: 767px) { + .row.has-leftnav { + flex-wrap: wrap; + } + .row.has-leftnav .fluid-space { + padding-right: 0; + } + .row .fixed-230 { + background-color: #fff; + width: auto; + } + .row .leftnav { + background-color: #fff !important; + display: block !important; + } + .fixed-230-subnav { + margin: 10px 0 0; width: 100%; - margin-bottom: 7px; } - - .b2b-config-vlan-label { + } + .fixed-230-subnav > li { + margin-left: -15px; + margin-right: -15px; + } + .fixed-230-subnav > li:first-child { + border-top: 1px solid #d2d2d2; + } + .fixed-230-subnav > li > a { + margin: 0; + } + .fixed-230-subnav a:hover, + .fixed-230-subnav a:focus { + text-decoration: none !important; + } + .fixed-230-subnav > li li > a { + padding: 5px 10px; + } + .fixed-230-subnav > li li > a.active { + color: inherit; font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 14px; - color: #333333; - margin-top: 1px; - margin-bottom: 9px; } - - .b2b-config-vlan-info { + } +} */ +@keyframes DOMinsertion { + from { + outline-color: transparent; } + to { + outline-color: transparent; } } + +@-moz-keyframes DOMinsertion { + from { + outline-color: transparent; } + to { + outline-color: transparent; } } + +@-webkit-keyframes DOMinsertion { + from { + outline-color: transparent; } + to { + outline-color: transparent; } } + +@-ms-keyframes DOMinsertion { + from { + outline-color: transparent; } + to { + outline-color: transparent; } } + +@-o-keyframes DOMinsertion { + from { + outline-color: transparent; } + to { + outline-color: transparent; } } + +.ajaxed, +.modal.fade.in .modal-header, +.modal.fade.in .modal-body, +.modal.fade.in .modal-footer { + animation-duration: 0.01s; + -o-animation-duration: 0.01s; + -ms-animation-duration: 0.01s; + -moz-animation-duration: 0.01s; + -webkit-animation-duration: 0.01s; + animation-name: DOMinsertion; + -o-animation-name: DOMinsertion; + -ms-animation-name: DOMinsertion; + -moz-animation-name: DOMinsertion; + -webkit-animation-name: DOMinsertion; } + +.dda-css-override ul.nav-tabs { + margin-bottom: 0; } + + +.formsWithinProcessButton { + margin-right: 0px; } + +.heading-sub-section-form { + font-size: 2.4rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; + margin-top: 10px; } + +.heading-small-form { + font-size: 1.6rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-top: 0px; } + +.icon-primary-form-sizeL { + font-size: 50px; } + +.icon-primary-form-size { + font-size: 30px; } + +.spanformfix { + margin-right: 15px !important; } + +@media (max-width: 767px) { + .heading-sub-section-form { + font-size: 1.8rem; font-family: "Omnes-ECOMP-W02", Arial; - font-size: 14px; - color: #333333; - margin-bottom: 1px; } - .b2b-config-vlan-info .icon-misc-pen { - padding-left: 7px; } - - .b2b-confi-sec-model-label { + margin-bottom: 20px; + padding-top: 10px; + margin-top: 30px; } + .heading-small-form { + font-size: 1.4rem; font-family: "Omnes-ECOMP-W02", Arial; - font-size: 14px; - color: #333333; } - - .b2b-confi-sec-router-info { - float: left; - width: 62%; } - - .b2b-config-sec-speed-sec { - border-right: 1px solid #ccc; } + margin-top: 0px; } } + +@media (max-width: 479px) { + .icon-primary-form-resizeL { + display: none; } + .icon-primary-form-resize { + display: none; } + .heading-center-form { + margin-left: 20px; } } + +@media (min-width: 480px) { + .icon-primary-form-resizeL { + display: none; } + .icon-primary-form-resize { + display: inherit; } + .icon-primary-center-min { + margin-top: 30px; } } + +@media (min-width: 768px) { + .icon-primary-form-resizeL { + display: inherit; + margin-top: 30px; } + .icon-primary-form-resize { + display: none; } + .center-form-align { + margin-top: 35px; } } + +@media (min-width: 1024px) { + .icon-primary-form-resizeL { + display: inherit; + margin-top: 0px; } + .icon-primary-form-resize { + display: none; } + .center-form-align { + margin-top: 5px; } } + +.data-row.has-button td.col-1 { + padding: 0; } + - .b2b-config-sec-speed-label { +.icon-primary-circle:before { + background-image: url("data:image/svg+xml,%3Csvg%20baseProfile%3D%22tiny%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%3E%3Ccircle%20fill%3D%22transparent%22%20stroke%3D%22%23666%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2218%22%20cy%3D%2218%22%20r%3D%2216%22%2F%3E%3C%2Fsvg%3E"); + content: ""; + position: absolute; + top: 0; + z-index: 1; } + +.b2b-drag-handle { + cursor: move; + -ms-interpolation-mode: bicubic; + margin-bottom: 40px; + height: 23px; + padding-right: 10px; + float: left; } + +.b2b-drag-over { + background-color: #d1d1d1; } + +.b2-drag-element { + background-color: #e8e8e8; } + +[draggable] { + -moz-user-select: none; + -khtml-user-select: none; + -webkit-user-select: none; + user-select: none; } +/* Flyout inputs color is not aligned */ +textarea, input { + color: #333; } + +.isIE .btn-primary.btn:focus::after, +.isIE .btn-specialty.btn:focus::after, +.isIE .btn-alt.btn:focus::after { + border: 1px dashed #fff !important; } +.b2b-config-section-container { + height: auto; + min-height: 330px; + width: 815px; + background-color: #fff; + border: 1px solid #ccc; + display: inline-table; + border-radius: 6px; } + +.b2b-config-section-first-div { + border-right: 1px solid #ccc; + height: auto; + min-height: 330px; } + +.b2b-config-section-icon-primary-font { + font-size: 50px; + height: 31px; + line-height: 31px; } + +.b2b-config-section-padding { + padding: 20px 20px 15px 15px; + height: auto; } + +.b2b-config-sec-flyout { + position: relative; + left: 10px; + float: right; + color: #0574ac; + font-size: 16px; + font-family: "Omnes-ECOMP-W02", Arial; } + +.b2b-config-sec-divider { + border-bottom: 1px solid #ccc; } + +.b2b-confi-sec-span-border { + border-right: 1px solid; + height: auto; } + +.b2b-config-sec-speed-div { + text-align: center; + margin-top: 20px; } + +.b2b-config-sec-label-font { + font-size: 16px; } + +.b2b-config-sec-expander-main { + padding: 0 5px 0px 15px; } + +.b2b-config-sec-expander-body .b2b-config-vlan-padding { + padding: 5px 15px 10px 0px; } + +.b2b-conif-sec-row-height { + height: 110px; } + +.b2b-config-sec-expander-body { + font-size: 14px; } + .b2b-config-sec-expander-body .b2b-config-vlan-data { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + padding-left: 15px; } + +.b2b-config-sec-expander-body-first-div { + border-top: 1px solid #ccc; } + +.b2b-config-sec-expander-body .tooltip { + position: static; + opacity: 1; } + +.b2b-config-section-container .row > [class*="span"] { + margin-right: 0px; } + +.b2b-config-vlan-icons { + font-size: 16px; + float: right; + margin-right: 0px; } + +.b2b-config-section-container .span6 { + width: 50%; } + +.b2b-config-sec-data-link-style { + position: relative; + left: 95%; + top: 30px; + border-radius: 50%; + width: 23px; + height: 23px; + background: #fff; + border: 1px solid #ccc; + color: #666666; } + +.b2b-config-sec-text-align { + text-align: center; + margin-top: 15px; + margin-bottom: 35px; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 14px; + color: #333333; } + +.b2b-config-port-text-align { + text-align: center; + margin-top: 15px; + margin-bottom: 8px; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 14px; + color: #333333; } + +.b2b-config-port-text-label { + margin-top: 6px; + margin-bottom: 8px; + font-size: 14px; + text-align: center; } + +.b2b-confi-sec-last-div p { + font-size: 14px; + padding: 10px 15px 0 15px; } + +.b2b-confi-sec-router-label { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 16px; + color: #333333; + float: left; + width: 100%; + margin-bottom: 7px; } + +.b2b-config-vlan-label { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 14px; + color: #333333; + margin-top: 1px; + margin-bottom: 9px; } + +.b2b-config-vlan-info { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 14px; + color: #333333; + margin-bottom: 1px; } + .b2b-config-vlan-info .icon-misc-pen { + padding-left: 7px; } + +.b2b-confi-sec-model-label { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 14px; + color: #333333; } + +.b2b-confi-sec-router-info { + float: left; + width: 62%; } + +.b2b-config-sec-speed-sec { + border-right: 1px solid #ccc; } + +.b2b-config-sec-speed-label { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 20px; + color: #333333; + text-align: center; } + .b2b-config-sec-speed-label i { + margin-left: 15px; + font-size: 16px; } + +.b2b-config-sec-yellow-flag-div { + width: 1.6%; + background-color: #ffb18c; } + +.b2b-config-sec-expander-icons { + margin-top: 6px; } + .b2b-config-sec-expander-icons .icon-misc-trash { + margin-right: 10px; } + +.b2b-config-sec-yellow-flag .b2b-config-sec-expander-icons { + left: 40px; } + +.b2b-config-sec-expander-body-icons .icon-misc-pen { + position: relative; + left: 18px; } +.b2b-directory-listing .center { + display: block; + margin: 2em auto; } + +.b2b-directory-listing .listBox { + height: 310px; + width: 450px; + padding-left: 1px; + padding-right: 1px; + font-family: "Omnes-ECOMP-W02", Arial; } + +.b2b-directory-listing .listBox:focus { + outline: thin dotted #666; } + +.b2b-directory-listing .b2b-directory-listing-no-results { + font-weight: bold; } + +.b2b-directory-listing .b2b-directory-listing-list { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5a5a5a; + overflow-x: hidden; + position: relative; + height: 300px; + border: 1px solid #333; + border-radius: 6px; + margin-bottom: 10px; } + +.b2b-directory-listing .b2b-directory-listing-item { + margin: 1px; + border: 1px solid transparent; + outline: none; + text-align: left; + overflow: hidden; + cursor: pointer; + padding-top: 13px; + padding-bottom: 7px; + padding-left: 15px; + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + word-wrap: break-word; } + .b2b-directory-listing .b2b-directory-listing-item:focus { + border: 1px #3399FF solid; } + +.b2b-directory-listing .b2b-directory-listing-item-selected { + color: #fff; + background-color: #3399FF; } + +.b2b-directory-listing input[type="text"] { + padding-right: 30px; } + .b2b-directory-listing input[type="text"]:focus, .b2b-directory-listing input[type="text"]:hover { + padding-right: 30px; } + +.b2b-directory-listing .row .btns { + margin-right: 90px; + margin-left: -115px; + margin-top: 100px; } + +.b2b-directory-listing .btn-remove { + margin-right: auto !important; + margin-bottom: 15px; } + .b2b-directory-listing .btn-remove i { + margin-right: 0; + color: #fff; + top: -1px; } + +.b2b-directory-listing .btn-remove-all { + margin-top: 0; + margin-bottom: 61px !important; + /* need to be removed */ + margin-right: auto !important; } + .b2b-directory-listing .btn-remove-all i { + margin-right: 0; + color: #fff; + top: -1px; } + +.b2b-directory-listing .btn-add { + margin-bottom: 15px !important; } + .b2b-directory-listing .btn-add i { + margin-right: 0; + color: #fff; + top: -1px; } + +.b2b-directory-listing .btn-add-all { + margin-top: 0; + margin-bottom: 61px !important; } + .b2b-directory-listing .btn-add-all i { + margin-right: 0; + color: #fff; + top: -1px; } + +.b2b-directory-listing .btn-search[class*="btn"] { + right: 0.09rem; } + +.b2b-directory-listing .btn { + width: 130px; } + +.b2b-directory-listing-disabled { + cursor: not-allowed; } + +.b2b-directory-listing-label-heading { + margin-top: 24px; + padding-bottom: 5px; } + +.b2b-dl-list-box option { + padding-top: 13px; + padding-bottom: 7px; + padding-left: 15px; } + +.b2b-dl-modal-button-div { + padding-top: 110px; + text-align: center; } +.b2b-tmpl-notification-card { + border-radius: 6px; + height: auto; + width: 420px; + background-color: #ffffff; + border: 1px solid rgba(0, 0, 0, 0.1); + border-radius: 8px; + overflow: hidden; } + .b2b-tmpl-notification-card .b2b-tmpl-card-header { + padding-left: 30px; font-family: "Omnes-ECOMP-W02", Arial; - font-size: 20px; color: #333333; - text-align: center; } - .b2b-config-sec-speed-label i { - margin-left: 15px; - font-size: 16px; } - - .b2b-config-sec-yellow-flag-div { - width: 1.6%; - background-color: #ffb18c; } - - .b2b-config-sec-expander-icons { - margin-top: 6px; } - .b2b-config-sec-expander-icons .icon-misc-trash { - margin-right: 10px; } - - .b2b-config-sec-yellow-flag .b2b-config-sec-expander-icons { - left: 40px; } - - .b2b-config-sec-expander-body-icons .icon-misc-pen { + font-size: 24px; + margin-top: 2px; + display: inline-block; + min-height: 60px; + position: relative; } + .b2b-tmpl-notification-card .b2b-tmpl-card-body { + padding: 0 0px 0px; + position: relative; } + .b2b-tmpl-notification-card .b2b-tmpl-card-header-title { + margin-top: 10px; } + .b2b-tmpl-notification-card .b2b-tmpl-card-corner-button { + box-shadow: 0 -50px 0 0 #f2f2f2 inset; + height: 69px; + position: absolute; + border-color: #f2f2f2 #f2f2f2 transparent transparent; + border-style: solid; + border-width: 35px; + height: 0; + right: -295px; + top: -4px; + width: 69px; + /*Old properties */ + box-shadow: none; + transform: none; } + .b2b-tmpl-notification-card .b2b-tmpl-card-corner-button .close { + height: 48px; + right: -40px; + top: -40px; + width: 48px; + position: relative; + /*Old properties */ + transform: none; } + .b2b-tmpl-notification-card .b2b-tmpl-card-corner-button .close:before { + color: #0568ae; + display: block; + font-size: 20px; + height: auto; + right: -4px; + top: 4px; + width: auto; + /*Old properties */ + left: auto; + height: auto; + bottom: auto; } + .b2b-tmpl-notification-card .b2b-tmpl-card-corner-button .close:focus { + outline: 1px dotted black; } + .b2b-tmpl-notification-card button.close { + -webkit-appearance: none; + moz-appearance: none; + appearance: none; } + .b2b-tmpl-notification-card .b2b-tmpl-card-icon-primary-cirlce { + width: 30px; + height: 30px; + border-radius: 50%; } + .b2b-tmpl-notification-card .b2b-tmpl-card-outer-cirlce { + background: #f0f5f5; + border-radius: 50%; + height: 16px; + width: 16px; + vertical-align: middle; } + .b2b-tmpl-notification-card .b2b-tmpl-card-inner-cirlce { + background: #fff; + width: 22px; + height: 22px; position: relative; - left: 18px; } - .b2b-directory-listing .center { + border-radius: 50%; display: block; - margin: 2em auto; } - - .b2b-directory-listing .listBox { - height: 310px; - width: 450px; - padding-left: 1px; - padding-right: 1px; - font-family: "Omnes-ECOMP-W02", Arial; } - - .b2b-directory-listing .listBox:focus { - outline: thin dotted #666; } - - .b2b-directory-listing .b2b-directory-listing-no-results { - font-weight: bold; } - - .b2b-directory-listing .b2b-directory-listing-list { - font-family: "Omnes-ECOMP-W02", Arial; - color: #5a5a5a; - overflow-x: hidden; - position: relative; - height: 300px; - border: 1px solid #333; - border-radius: 6px; - margin-bottom: 10px; } - - .b2b-directory-listing .b2b-directory-listing-item { - margin: 1px; - border: 1px solid transparent; - outline: none; - text-align: left; - overflow: hidden; - cursor: pointer; - padding-top: 13px; - padding-bottom: 7px; - padding-left: 15px; - -moz-user-select: none; - -webkit-user-select: none; - -ms-user-select: none; - word-wrap: break-word; } - .b2b-directory-listing .b2b-directory-listing-item:focus { - border: 1px #3399FF solid; } - - .b2b-directory-listing .b2b-directory-listing-item-selected { - color: #fff; - background-color: #3399FF; } - - .b2b-directory-listing input[type="text"] { - padding-right: 30px; } - .b2b-directory-listing input[type="text"]:focus, .b2b-directory-listing input[type="text"]:hover { - padding-right: 30px; } - - .b2b-directory-listing .row .btns { - margin-right: 90px; - margin-left: -115px; - margin-top: 100px; } - - .b2b-directory-listing .btn-remove { - margin-right: auto !important; - margin-bottom: 15px; } - .b2b-directory-listing .btn-remove i { - margin-right: 0; - color: #fff; - top: -1px; } - - .b2b-directory-listing .btn-remove-all { - margin-top: 0; - margin-bottom: 61px !important; - /* need to be removed */ - margin-right: auto !important; } - .b2b-directory-listing .btn-remove-all i { - margin-right: 0; - color: #fff; - top: -1px; } - - .b2b-directory-listing .btn-add { - margin-bottom: 15px !important; } - .b2b-directory-listing .btn-add i { - margin-right: 0; - color: #fff; - top: -1px; } - - .b2b-directory-listing .btn-add-all { - margin-top: 0; - margin-bottom: 61px !important; } - .b2b-directory-listing .btn-add-all i { - margin-right: 0; - color: #fff; - top: -1px; } - - .b2b-directory-listing .btn-search[class*="btn"] { - right: 0.09rem; } - - .b2b-directory-listing .btn { - width: 130px; } - - .b2b-directory-listing-disabled { - cursor: not-allowed; } - - .b2b-directory-listing-label-heading { - margin-top: 24px; - padding-bottom: 5px; } - - .b2b-dl-list-box option { - padding-top: 13px; - padding-bottom: 7px; - padding-left: 15px; } - - .b2b-dl-modal-button-div { - padding-top: 110px; - text-align: center; } - .b2b-tmpl-notification-card { - border-radius: 6px; - height: auto; - width: 420px; - background-color: #ffffff; - border: 1px solid rgba(0, 0, 0, 0.1); - border-radius: 8px; - overflow: hidden; } - .b2b-tmpl-notification-card .b2b-tmpl-card-header { - padding-left: 30px; - font-family: "Omnes-ECOMP-W02", Arial; - color: #333333; - font-size: 24px; - margin-top: 2px; - display: inline-block; - min-height: 60px; - position: relative; } - .b2b-tmpl-notification-card .b2b-tmpl-card-body { - padding: 0 30px 20px; - position: relative; } - .b2b-tmpl-notification-card .b2b-tmpl-card-header-title { + left: 4px; + top: 4px; + border: 1px solid #767676; } + .b2b-tmpl-notification-card .b2b-tmpl-card-row { + padding-top: 10px; } + .b2b-tmpl-notification-card .b2b-tmpl-card-sub-header { + margin-top: 0px; } + .b2b-tmpl-notification-card .b2b-tmpl-favourite-view-item { + background-color: #fff; + margin-top: 25px; + border-top: 1px solid #ccc; } + .b2b-tmpl-notification-card .b2b-tmpl-favourite-view-item .cta-button-group { + line-height: 40px; + padding-top: 20px; } + .b2b-tmpl-notification-card .b2b-tmpl-card-edit-section .cta-button-group { + line-height: 40px; + padding-top: 15px; } + .b2b-tmpl-notification-card .b2b-tmpl-card-add-item-container { + padding-top: 30px; } + .b2b-tmpl-notification-card .b2b-tmpl-card-link-active { + pointer-events: none; + cursor: default; + color: #ccc; } + .b2b-tmpl-notification-card .b2b-tmpl-card-cursor:hover { + cursor: pointer; } +.b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-icon { + text-align: center; + margin-top: 91px; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-icon i { + font-size: 99px; + color: #1b7e28; } + +.b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-heading { + color: #333333; + text-align: center; + margin-top: 20px; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-heading h1 { + font-size: 38px; } + +.b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-sub-heading { + color: #333333; + text-align: center; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-sub-heading h5 { + font-size: 18px; } + +.b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-info { + padding-left: 18%; + font-size: 16px; + margin-top: 20px; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-info ul { + list-style-type: disc; + list-style-position: inside; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-info li { + padding-top: 5px; } + +.b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-link-section { + font-size: 15px; + color: #0574ac; + margin-top: 20px; + text-align: center; + margin-bottom: 55px; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-link-section .b2b-tmpl-order-confirmation-link { + margin-right: 8%; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-link-section a { + cursor: pointer; } +.b2b-tmpl-profile-block-container { + min-height: 200px; + height: auto; + background-color: #fff; + border-radius: 8px; + border: 1px solid #ccc; + box-shadow: 0px 1px 1px 1px #ccc; + display: inline-table; + margin: 15px 15px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-title { + font-weight: bold; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-footer { + margin-bottom: 12px; + margin-top: 5px; + height: 35px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p { + word-wrap: break-word; + height: 61px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p:first-child { margin-top: 10px; } - .b2b-tmpl-notification-card .b2b-tmpl-card-corner-button { - box-shadow: 0 -50px 0 0 #f2f2f2 inset; - height: 69px; - position: absolute; - border-color: #f2f2f2 #f2f2f2 transparent transparent; - border-style: solid; - border-width: 35px; - height: 0; - right: -295px; - top: -4px; - width: 69px; - /*Old properties */ - box-shadow: none; - transform: none; } - .b2b-tmpl-notification-card .b2b-tmpl-card-corner-button .close { - height: 48px; - right: -40px; - top: -40px; - width: 48px; - position: relative; - /*Old properties */ - transform: none; } - .b2b-tmpl-notification-card .b2b-tmpl-card-corner-button .close:before { - color: #0568ae; - display: block; - font-size: 20px; - height: auto; - right: -4px; - top: 4px; - width: auto; - /*Old properties */ - left: auto; - height: auto; - bottom: auto; } - .b2b-tmpl-notification-card .b2b-tmpl-card-corner-button .close:focus { - outline: 1px dotted black; } - .b2b-tmpl-notification-card button.close { - -webkit-appearance: none; - moz-appearance: none; - appearance: none; } - .b2b-tmpl-notification-card .b2b-tmpl-card-icon-primary-cirlce { - width: 30px; - height: 30px; - border-radius: 50%; } - .b2b-tmpl-notification-card .b2b-tmpl-card-outer-cirlce { - background: #f0f5f5; - border-radius: 50%; - height: 16px; - width: 16px; - vertical-align: middle; } - .b2b-tmpl-notification-card .b2b-tmpl-card-inner-cirlce { - background: #fff; - width: 22px; - height: 22px; - position: relative; - border-radius: 50%; + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p:after { + content: ' '; display: block; - left: 4px; - top: 4px; - border: 1px solid #767676; } - .b2b-tmpl-notification-card .b2b-tmpl-card-row { - padding-top: 10px; } - .b2b-tmpl-notification-card .b2b-tmpl-card-sub-header { - margin-top: 0px; } - .b2b-tmpl-notification-card .b2b-tmpl-favourite-view-item { - background-color: #fff; - margin-top: 25px; - border-top: 1px solid #ccc; } - .b2b-tmpl-notification-card .b2b-tmpl-favourite-view-item .cta-button-group { - line-height: 40px; - padding-top: 20px; } - .b2b-tmpl-notification-card .b2b-tmpl-card-edit-section .cta-button-group { - line-height: 40px; - padding-top: 15px; } - .b2b-tmpl-notification-card .b2b-tmpl-card-add-item-container { - padding-top: 30px; } - .b2b-tmpl-notification-card .b2b-tmpl-card-link-active { - pointer-events: none; - cursor: default; - color: #ccc; } - .b2b-tmpl-notification-card .b2b-tmpl-card-cursor:hover { - cursor: pointer; } - .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-icon { - text-align: center; - margin-top: 91px; } - .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-icon i { - font-size: 99px; - color: #1b7e28; } - - .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-heading { - color: #333333; - text-align: center; - margin-top: 20px; } - .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-heading h1 { - font-size: 38px; } - - .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-sub-heading { - color: #333333; - text-align: center; } - .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-sub-heading h5 { - font-size: 18px; } - - .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-info { - padding-left: 18%; - font-size: 16px; - margin-top: 20px; } - .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-info ul { - list-style-type: disc; - list-style-position: inside; } - .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-info li { - padding-top: 5px; } - - .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-link-section { - font-size: 15px; - color: #0574ac; - margin-top: 20px; - text-align: center; - margin-bottom: 55px; } - .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-link-section .b2b-tmpl-order-confirmation-link { - margin-right: 8%; } - .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-link-section a { - cursor: pointer; } - .b2b-tmpl-profile-block-container { - min-height: 200px; - height: auto; - background-color: #fff; - border-radius: 8px; - border: 1px solid #ccc; - box-shadow: 0px 1px 1px 1px #ccc; - display: inline-table; - margin: 15px 15px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-title { - font-weight: bold; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-footer { - margin-bottom: 12px; - margin-top: 5px; - height: 35px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p { - word-wrap: break-word; - height: 61px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p:first-child { - margin-top: 10px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p:after { - content: ' '; - display: block; - border: 0.2px solid #ccc; - margin-top: 12px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details .radio { - margin-left: 15px; - height: 30px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p, .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details div { - padding: 2px 7px; - font-size: 14px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details .radio-label, .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details a { - font-size: 14px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p label, .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p span { - padding-left: 10px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-approval-icon { + border: 0.2px solid #ccc; + margin-top: 12px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details .radio { + margin-left: 15px; + height: 30px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p, .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details div { + padding: 2px 7px; + font-size: 14px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details .radio-label, .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details a { + font-size: 14px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p label, .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p span { + padding-left: 10px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-approval-icon { + color: #1b7e28; + float: right; + position: relative; + left: 10px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-approval-icon i { color: #1b7e28; - float: right; - position: relative; - left: 10px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-approval-icon i { - color: #1b7e28; - float: right; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-link { - float: right; - position: relative; - left: -4px; } - .b2b-tmpl-profile-block-container a.link-profile { - position: relative; - left: -5px; - float: right; - margin-bottom: 16px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-radio { - position: relative; - top: -5px; } - .b2b-static-route-container { - padding-left: 32px; - display: inline-block; } - - .b2b-static-route-label-heading { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 16px !important; - color: #333333; - font-style: normal; - text-align: left; } - - label.b2b-static-route-label-heading { - margin-bottom: 12px; - margin-top: 15px; - display: block; } - - #b2b-static-route-input { - margin: 5px 0 5px; } - - .b2b-static-route-list { - margin-bottom: 30px; - width: 216px; - float: left; - margin-right: 20px; - max-height: 540px; - overflow-y: auto; } - .b2b-static-route-list .status-text { - flex: 1; - display: flex; - align-items: center; - outline: 0; } - - .b2b-static-route-list-item { - border: 1px #cccccc solid; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 14px; + float: right; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-link { + float: right; + position: relative; + left: -4px; } + .b2b-tmpl-profile-block-container a.link-profile { + position: relative; + left: -5px; + float: right; + margin-bottom: 16px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-radio { + position: relative; + top: -5px; } +.b2b-static-route-container { + padding-left: 32px; + display: inline-block; } + +.b2b-static-route-label-heading { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 5px !important; + color: #333333; + font-style: normal; + text-align: left; } + +label.b2b-static-route-label-heading { + margin-bottom: 12px; + margin-top: 15px; + display: block; } + +#b2b-static-route-input { + margin: 5px 0 5px; } + +.b2b-static-route-list { + margin-bottom: 30px; + width: 216px; + float: left; + margin-right: 20px; + max-height: 540px; + overflow-y: auto; } + .b2b-static-route-list .status-text { + flex: 1; display: flex; - cursor: pointer; } - .b2b-static-route-list-item > .status-bar { - padding: 20px 0 20px; - background-color: #ea7400; - border-radius: 0; - width: 10px; - display: inline-block; - margin-right: 20px; - height: 100%; - float: left; } - .b2b-static-route-list-item > .status-bar:after { - content: '.'; - visibility: hidden; } - .b2b-static-route-list-item > .status-bar-unedited { - padding: 20px 0 20px; - background-color: #ffb81c; - border-radius: 0; - width: 10px; - display: inline-block; - margin-right: 20px; - height: 100%; - float: left; - background-color: transparent; } - .b2b-static-route-list-item > .status-bar-unedited:after { - content: '.'; - visibility: hidden; } + align-items: center; + outline: 0; } + +.b2b-static-route-list-item { + border: 1px #cccccc solid; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 5px; + display: flex; + cursor: pointer; } + .b2b-static-route-list-item > .status-bar { + padding: 20px 0 20px; + background-color: #ea7400; + border-radius: 0; + width: 10px; + display: inline-block; + margin-right: 20px; + height: 100%; + float: left; } + .b2b-static-route-list-item > .status-bar:after { + content: '.'; + visibility: hidden; } + .b2b-static-route-list-item > .status-bar-unedited { + padding: 20px 0 20px; + background-color: #ffb81c; + border-radius: 0; + width: 10px; + display: inline-block; + margin-right: 20px; + height: 100%; + float: left; + background-color: transparent; } + .b2b-static-route-list-item > .status-bar-unedited:after { + content: '.'; + visibility: hidden; } + +.b2b-static-route-list-item:focus { + outline: 1px dashed #00f; } + +.b2b-static-route-list-item--selected { + background: #f2f2f2; } + +.b2b-static-route-content { + display: inline-block; } + + .selectWrap::after { + align-items: center; + background-position: 7px 7px; + background-repeat: no-repeat; + background-size: auto 23px; + border-left: 1px solid transparent; + color: #0568ae; + display: flex; + font-size: 23px; + height: 36px; + margin-right: 0; + overflow: hidden; + position: absolute; + right: 0; + text-indent: 7px; + top: 0; + user-select: none; + width: 41px; + z-index: 0; + position: absolute !important; + display: flex !important; +} + +.card{ + border-radius: 5px; +} + +.card-header{ + height: 50px; +} + +.card-body{ + height: 150px; +} + +.card-footer{ + height: 50px; +} + +.dialog__close-btn { + border: 0; + background: #087ac2; + color: #ffffff; + position: absolute; + top: 8px; + right: 8px; + font-size: 1.2em; + display: block; + border: #087ac2 2px solid; +} + +.dialog{ + margin-top: 50px; +} + +.modalTitle{ + font-size: 35px; +} + +.defaultFontSize{ + font-size: 15px; +} + + +.tab-content{ + margin-right: 20px; + /* background-color: #006496; */ + color: rgb(0, 0, 0); +} + +.btn-sm{ + width: 30px; + height: 15px; + font-size: 10px; +} + + + + +/* .left { + width: auto; + float: left; + text-align: right; +} +.right { + width: auto; - .b2b-static-route-list-item:focus { - outline: 1px dashed #00f; } + float: left; +} */ + +mat-icon{ + color: #006496; + cursor: pointer; +} + +/* .tab-pane{ + padding-right: 130px; + padding-left: 120px; + color: rgba(0, 0, 0, 0.603) +} */ + +.boxMargin{ - .b2b-static-route-list-item--selected { - background: #f2f2f2; } + width: auto; +} + +mat-button-toggle{ + display: block; + width: 400px; + border-radius: 5px; +} + +input { + width: 400px; + height: 20px; +} + +.tab-content{ + margin-right: 20px; + /* background-color: #006496; */ + color: rgb(0, 0, 0); +} + +.stdForm{ + margin-left: 20px; +} + +.field-group { + position: relative; + display: block; +} + +label + .field-group, label + .input-append, label + .row, label + .row-nowrap, label + .form-row { + margin-top: 5px; +} + +textarea { + display: block; + width: 400px; - .b2b-static-route-content { - display: inline-block; } + margin: 0px; +} + + + +.webform-component-my-select select { + height: 200px; +} + +.checkbox .skin { + background-color: #fff; + border: 1px solid #d2d2d2; + border-radius: 3px; + display: inline-block; + height: 24px; + width: 24px; + position: absolute; + left: 0; + top: 0; +} + +i, em { + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; +} + + + +.card{ + border-radius: 5px; +} + +.card-header{ + height: 50px; +} + +.card-body{ + height: 150px; +} + +.card-footer{ + height: 50px; +} + +.dialog__close-btn { + border: 0; + background: #087ac2; + color: #ffffff; + position: absolute; + top: 8px; + right: 8px; + font-size: 1.2em; + display: block; + border: #087ac2 2px solid; +} + +.modalTitle{ + font-size: 35px; +} + + +.full-width-table { + width: 100%; +} + + +.app-data-table { + margin-top: 80px; + /* margin-left: 250px; + margin-right: 250px; */ + /* overflow: scroll; */ +} + +.app-data-table1 { + margin-left: 150px; + margin-right: 150px; +} + + +.card{ + border-radius: 5px; - .selectWrap::after { - align-items: center; - background-position: 7px 7px; - background-repeat: no-repeat; - background-size: auto 23px; - border-left: 1px solid transparent; - color: #0568ae; - display: flex; - font-size: 23px; - height: 36px; - margin-right: 0; - overflow: hidden; - position: absolute; - right: 0; - text-indent: 7px; - top: 0; - user-select: none; - width: 41px; - z-index: 0; - position: absolute !important; - display: flex !important; - } \ No newline at end of file +} + +.card-header{ + height: 50px; +} + +.card-body{ + height: 150px; +} + +.card-footer{ + height: 50px; + margin-right: 10px; +} + +.dialog__close-btn { + border: 0; + background: #087ac2; + color: #ffffff; + position: absolute; + top: 8px; + right: 8px; + font-size: 1.2em; + display: block; + border: #087ac2 2px solid; +} + +.modalTitle{ + font-size: 35px; +} + +table, tr, td, th { + border: 0; +} + +td{ + height: 5px; +} \ No newline at end of file diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields.component.html b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields.component.html index 78d993b3..5b358860 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields.component.html +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields.component.html @@ -1,6 +1,201 @@ + +
+
+
+
+
+
+
+
{{Validatestatus}}
+ +
+ + +
+
+ +
+
+
+ + +
+
+
Report Form Field - Edit
+ +
+
+ + +
+
+
+
+
+ +
+ + +
+
+
+
+ + +
+
+
+ +
+ + +
+ +
+
+
+ + +
+ +
+
+
+ + +
+ +
+
+
+
+ + + + +
+
+
+
+
+
+ + +
+
+
+
+ + + +
+
+
+
+ + +
+
+
+
+
+
+ + delete +
+
+
+
+
+ + + + +
+
+ +
+

Step 4 - Report Form Fields

+ +
+ +
+
+
+ +
+ + + + + + + + + + + + + + + + + +
Order NumberField NameEditOrderDelete
+ {{item.orderSeq}} + + {{item.name}} + + edit + + expand_less + expand_more + + delete +
+
+ +
+ +
+
+
+
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields.component.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields.component.ts index 4a365039..1e1cecdb 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields.component.ts +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields.component.ts @@ -1,4 +1,5 @@ import { Component, OnInit, Input } from '@angular/core'; +import { FormFieldsService } from './form-fields.service'; @Component({ selector: 'app-form-fields', @@ -9,9 +10,487 @@ export class FormFieldsComponent implements OnInit { @Input("reportId") reportId1 : string; - constructor() { } + formFieldsListObj : any[]; + postMoveUpwrdObj : {}; + postDownwardObj : {}; + orderSeqOfDown : number; + orderSeqOfUp : number; + showDialog : boolean; + closable : boolean; + sqlAsDefaultValue : Boolean; + showDefaultSQLOption : boolean; + verifyFieldValueAs : number; + predefinedValueList : any[]; + predefinedValue : string; + tabId : string; + tabName : string; + validationType : string; + visible : string; + orderSeq : number; + message : any; + groupFormField : boolean; + fieldType : string; + fieldSQL : string; + fieldName : string; + fieldId : string; + fieldDefaultSQL : string; + errorStackTrace : any; + errorMessage : any; + defaultValue : boolean; + finalPOSTObj : any; + mode : string; + showSpinner : boolean; + showDialog1 : boolean; + queryObj : {}; + validateResponseString : string; + showVerifySpinner : boolean; + + + constructor(private _formFieldsService : FormFieldsService) { + this.formFieldsListObj = new Array(); + this.postMoveUpwrdObj = new Object(); + this.postDownwardObj = new Object(); + this.showDialog = false; + this.showDefaultSQLOption = false; + this.closable = true; + this.predefinedValueList = new Array(); + this.finalPOSTObj = new Object(); + this.showSpinner = false; + this.showDialog1 = false; + this.queryObj = {}; + this.showVerifySpinner = false; + } ngOnInit() { + + this._formFieldsService.getListOfFormFields() + .subscribe((responseFormFields) => { + + for(let k=0; k { + this.postMoveUpwrdObj = responseGetFormFieldn; + + this._formFieldsService.getFormFieldData(this.formFieldsListObj[n-1]["id"]) + .subscribe((responseGetFormFieldnmin1) => { + this.postDownwardObj = responseGetFormFieldnmin1; + + this.orderSeqOfDown = this.postMoveUpwrdObj["orderSeq"]; + this.orderSeqOfUp = this.postDownwardObj["orderSeq"]; + + this.postMoveUpwrdObj["orderSeq"] = this.orderSeqOfUp; + this.postDownwardObj["orderSeq"] = this.orderSeqOfDown; + + this._formFieldsService.postFormFieldData(this.postDownwardObj, this.reportId1) + .subscribe((responsePostn) => { + if(responsePostn["message"]) + { + this._formFieldsService.postFormFieldData(this.postMoveUpwrdObj, this.reportId1) + .subscribe((responsePostnmin1) => { + if(responsePostnmin1["message"]) + { + + this.formFieldsListObj = []; + this._formFieldsService.getListOfFormFields() + .subscribe((finalListResponse) => { + for(let k=0; k { + this.postMoveUpwrdObj = responseGetFormFieldn; + + this._formFieldsService.getFormFieldData(this.formFieldsListObj[n+1]["id"]) + .subscribe((responseGetFormFieldnmin1) => { + this.postDownwardObj = responseGetFormFieldnmin1; + + this.orderSeqOfDown = this.postMoveUpwrdObj["orderSeq"]; + this.orderSeqOfUp = this.postDownwardObj["orderSeq"]; + + this.postMoveUpwrdObj["orderSeq"] = this.orderSeqOfUp; + this.postDownwardObj["orderSeq"] = this.orderSeqOfDown; + + this._formFieldsService.postFormFieldData(this.postDownwardObj, this.reportId1) + .subscribe((responsePostn) => { + if(responsePostn["message"]) + { + this._formFieldsService.postFormFieldData(this.postMoveUpwrdObj, this.reportId1) + .subscribe((responsePostnmin1) => { + if(responsePostnmin1["message"]) + { + + this.formFieldsListObj = []; + this._formFieldsService.getListOfFormFields() + .subscribe((finalListResponse) => { + for(let k=0; k { + console.log(responseFormFieldData); + this.validationType = responseFormFieldData["validationType"]; + + if(responseFormFieldData["visible"] === true) + { + this.visible = "YES"; + } + else + { + this.visible = "NO"; + } + + this.orderSeq = responseFormFieldData["orderSeq"]; + this.message = responseFormFieldData["message"]; + this.groupFormField = responseFormFieldData["groupFormField"]; + this.fieldType = responseFormFieldData["fieldType"]; + this.fieldSQL = responseFormFieldData["fieldSQL"]; + this.fieldName = responseFormFieldData["fieldName"]; + this.fieldId = responseFormFieldData["fieldId"]; + this.fieldDefaultSQL = responseFormFieldData["fieldDefaultSQL"]; + this.errorStackTrace = responseFormFieldData["errorStackTrace"]; + this.errorMessage = responseFormFieldData["errorMessage"]; + + if(this.fieldDefaultSQL !== null) + { + this.defaultValue = true; + } + else + { + this.defaultValue = false; + } + + if(responseFormFieldData["predefinedValueList"] == null) + { + this.predefinedValueList = []; + } + else + { + this.predefinedValueList = responseFormFieldData["predefinedValueList"]; + } + + this.showDialog = true; + this.closable = true; + this.mode = "Edit"; + }); + + } + + add() + { + this.showDialog = true; + this.closable = true; + this.validationType = ""; + this.visible = "YES"; + this.message = ""; + this.groupFormField = false; + this.fieldType = ""; + this.fieldSQL = ""; + this.fieldName = ""; + this.fieldId = ""; + this.fieldDefaultSQL = ""; + this.errorStackTrace = ""; + this.errorMessage = ""; + this.defaultValue = false; + this.predefinedValueList = []; + + this.showDialog = true; + this.closable = true; + + this.mode = "Add"; + + } + + close() { + this.showDialog = !this.showDialog; + this.closable = false; + + } + + closeValidateModal() + { + this.showDialog1 = !this.showDialog1; + this.showVerifySpinner = false; + } + + addToList( attrib : string) + { + // console.log(attrib); + this.predefinedValueList.push( + { + "id" : attrib, + "name" : attrib, + "selected" : false + }); + } + + deleteFromList(attrib : string) + { + + for(let k=0; k { + if(responsePost["message"]) + { + this._formFieldsService.getListOfFormFields() + .subscribe((responseFormFields) => { + this.formFieldsListObj = []; + let m=0; + while(responseFormFields[m]) + { + this.formFieldsListObj.push(responseFormFields[m]); + m++; + } + + + this.showSpinner = false; + + }); + + } + }); + } + else + { + this._formFieldsService.addFormFieldData(this.finalPOSTObj, this.reportId1) + .subscribe((responsePost) => { + if(responsePost["message"]) + { + this._formFieldsService.getListOfFormFields() + .subscribe((responseFormFields) => { + this.formFieldsListObj = []; + let m=0; + while(responseFormFields[m]) + { + this.formFieldsListObj.push(responseFormFields[m]); + m++; + } + + this.showSpinner = false; + + }); + } + }); + } + } + + delete( id : string) + { + this.showSpinner = true; + this._formFieldsService.deleteFormField(id) + .subscribe((responseDeleted) => { + if(responseDeleted["message"] == "Formfield Deleted") + { + this._formFieldsService.getListOfFormFields() + .subscribe((responseFormFields) => { + this.formFieldsListObj = []; + let m=0; + while(responseFormFields[m]) + { + this.formFieldsListObj.push(responseFormFields[m]); + m++; + } + + this.showSpinner = false; + + }); + } + }) + } + + verify( SQLType : string) + { + this.showVerifySpinner = true; + this.showDialog1 = true; + if(SQLType == "Default") + { + this.queryObj = { + query : this.fieldDefaultSQL + }; + this._formFieldsService.verifySQL(this.queryObj) + .subscribe((responseDefaultSQL) => { + console.log(responseDefaultSQL); + this.validateResponseString = responseDefaultSQL["data"]["elements"]; + this.showVerifySpinner = false; + }); + } + else + { + this.queryObj = { + query : this.fieldSQL + }; + this._formFieldsService.verifySQL(this.queryObj) + .subscribe((responseSQL) => { + console.log(responseSQL); + this.validateResponseString = responseSQL["data"]["elements"]; + this.showVerifySpinner = false; + }); + } + } } diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields.service.spec.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields.service.spec.ts new file mode 100644 index 00000000..b56fc029 --- /dev/null +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields.service.spec.ts @@ -0,0 +1,12 @@ +import { TestBed } from '@angular/core/testing'; + +import { FormFieldsService } from './form-fields.service'; + +describe('FormFieldsService', () => { + beforeEach(() => TestBed.configureTestingModule({})); + + it('should be created', () => { + const service: FormFieldsService = TestBed.get(FormFieldsService); + expect(service).toBeTruthy(); + }); +}); diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields.service.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields.service.ts new file mode 100644 index 00000000..97511374 --- /dev/null +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/form-fields.service.ts @@ -0,0 +1,42 @@ +import { Injectable } from '@angular/core'; +import { HttpClient, HttpHeaders } from '@angular/common/http'; +import { environment } from '../../../../../../environments/environment'; +import { Observable } from 'rxjs'; + +@Injectable({ + providedIn: 'root' +}) +export class FormFieldsService { + + constructor(private _http : HttpClient) { } + + getListOfFormFields() : Observable + { + return this._http.get(environment.baseUrl + "report/wizard/list_formfields"); + } + + getFormFieldData(id : string) : Observable + { + return this._http.get(environment.baseUrl + "report/wizard/retrieve_form_tab_wise_data/" + id); + } + + postFormFieldData( obj : any, reportId : string) : Observable + { + return this._http.post(environment.baseUrl + "report/wizard/save_formfield_tab_data", obj, { headers: new HttpHeaders({'Content-Type': 'application/json'})}); + } + + addFormFieldData(obj : any, reportId : string) : Observable + { + return this._http.post(environment.baseUrl + "report/wizard/add_formfield_tab_data", obj, { headers: new HttpHeaders({'Content-Type': 'application/json'})}); + } + + deleteFormField( id : string) : Observable + { + return this._http.get(environment.baseUrl + "report/wizard/retrieve_form_tab_wise_data/"+id+"/delete"); + } + + verifySQL( queryObj : any) : Observable + { + return this._http.post(environment.baseUrl + "report/wizard/retrieve_data/false", queryObj, { headers: new HttpHeaders({'Content-Type': 'application/json'})}); + } +} diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-page.component.css b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-page.component.css deleted file mode 100644 index 85407d25..00000000 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-page.component.css +++ /dev/null @@ -1,11866 +0,0 @@ - - -.lds-ring { - display: inline-block; - position: relative; - width: 64px; - height: 64px; -} -.lds-ring div { - box-sizing: border-box; - display: block; - position: absolute; - width: 80px; - height: 80px; - margin: 6px; - margin-top: -10px; - border: 10px solid #006496; - border-radius: 80%; - animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite; - border-color: #006496 transparent transparent transparent; -} -.lds-ring div:nth-child(1) { - animation-delay: -0.45s; -} -.lds-ring div:nth-child(2) { - animation-delay: -0.3s; -} -.lds-ring div:nth-child(3) { - animation-delay: -0.15s; -} -@keyframes lds-ring { - 0% { - transform: rotate(0deg); - } - 100% { - transform: rotate(360deg); - } -} - - -mat-button-toggle{ - display: block; - width: 400px; - border-radius: 5px; -} - -label{ - size: 70px; -} - -input { - width: 400px; - height: 20px; -} - -.Heading{ - font-size: 45px; -} - -.stdForm{ - margin-left: 20px; -} - -.field-group { - position: relative; - display: block; -} - -label + .field-group, label + .input-append, label + .row, label + .row-nowrap, label + .form-row { - margin-top: 5px; -} - -textarea { - display: block; - width: 400px; - max-width: 50%; - padding: 15px; -} - -select{ - display: block; - width: 400px; - max-width: 400px; - padding: 15px; - background-color: #e6e6e61a -} - -.webform-component-my-select select { - height: 200px; -} - -.checkbox .skin { - background-color: #fff; - border: 1px solid #d2d2d2; - border-radius: 3px; - display: inline-block; - height: 24px; - width: 24px; - position: absolute; - left: 0; - top: 0; -} - -i, em { - font-family: "Omnes-ECOMP-W02-Italic", Arial; - font-style: normal; -} - - -.b2b-horizontal-table ::-webkit-scrollbar { - height: 10px; } - -.b2b-horizontal-table ::-webkit-scrollbar-thumb { - background: #666666; - border-radius: 5px; } - -.b2b-horizontal-table .b2b-frozen-col { - font-size: 5px; - font-weight: normal; - font-style: italic; } -/* -.b2b-horizontal-table .b2b-horizontal-table-inner-container { - overflow-x: scroll; } */ - -.b2b-horizontal-table .b2b-horizontal-table-column-info { - text-align: center; } - -.b2b-horizontal-table .b2b-horizontal-table-legend div[b2b-flyout-toggler] { - color: #0568ae; - cursor: pointer; } - -.b2b-horizontal-table .b2b-horizontal-table-legend .b2b-frozen-cell { - width: 16px; - height: 16px; - background-color: #F2F2F2; - display: inline-block; - margin-right: 10px; } - -.b2b-horizontal-table .b2b-horizontal-table-arrows { - margin-bottom: 20px; } - .b2b-horizontal-table .b2b-horizontal-table-arrows .b2b-disabled-text { - color: #767676; } - .b2b-horizontal-table .b2b-horizontal-table-arrows .b2b-next-link { - padding-right: 15px; } - .b2b-horizontal-table .b2b-horizontal-table-arrows .b2b-prev-link { - padding-left: 15px; } - -@-moz-document url-prefix() { - .b2b-horizontal-table td:first-child { - border-top: none; } } -* { - box-sizing: border-box; } - -:root { - -ms-overflow-style: -ms-autohiding-scrollbar; - overflow-y: scroll; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; - box-sizing: border-box; - font: 0.625pc/1.5 sans-serif; - text-rendering: optimizeLegibility; } - -html { - overflow-y: scroll; - -webkit-overflow-scrolling: touch; - height: 100%; - position: relative; } - -h1, -h2, -h3, -h4, -h5, -p, -blockquote, -figure, -ol, -ul { - margin: 0; - padding: 0; } - -/* a:focus { - outline: thin dotted #191919; -} */ -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: top; } - -sup { - top: .75em; - display: inline-block; } - -sub { - bottom: -0.25em; } - -img { - max-width: 100%; - height: auto; - vertical-align: middle; - border: 0; - -ms-interpolation-mode: bicubic; } - -.img-no-rwd { - max-width: inherit !important; } - -svg { - display: inline-block; } - -.responsive-img { - width: 100%; - height: auto; } - -button, -input, -select, -textarea { - margin: 0; - font-size: 100%; - vertical-align: middle; } - -::-moz-focus-inner { - padding: 0; - border: 0; } - -button, -html input[type="button"], -input[type="reset"], -input[type="submit"] { - appearance: button; - cursor: pointer; } - -label, -select, -button, -input[type="button"], -input[type="reset"], -input[type="submit"], -input[type="radio"], -input[type="checkbox"] { - cursor: pointer; } - -input[type=search] { - -webkit-appearance: textfield; } - -input[type=search]:-webkit-search-cancel-button, -input[type=search]:-webkit-search-decoration { - -webkit-appearance: none; } - - - -select { - -moz-appearance: none; - -webkit-appearance: none; } - -[aria-busy=true] { - cursor: progress; } - -[aria-controls] { - cursor: pointer; } - -body { - background-color: #ffffff; - color: #191919; - font-family: "Omnes-ECOMP-W02", Arial; -/* font-size: 1.6rem; - line-height: 2rem;*/ - margin: 0; - position: relative; - width: 100%; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; } - -small { - font-size: 1.6rem; } - -.container { - margin: 0 auto; - padding: 0; } - -.tooltip { - display: inline-block; - height: 20px; - margin: 1px 0 0 7px; - vertical-align: middle; } - -.tooltip-wrapper { - display: none; } - - - -/* TODO: Build a reference page for these classes */ -.font-regular { - font-family: "Omnes-ECOMP-W02", Arial !important; } - -.font-light { - font-family: "Omnes-ECOMP-W02-Light", Arial !important; } - -.font-italic { - font-family: "Omnes-ECOMP-W02-Italic", Arial !important; } - -.font-light-italic { - font-family: "Omnes-ECOMP-W02-Light-Italic", Arial !important; } - -.font-medium { - font-family: "Omnes-ECOMP-W02-Medium", Arial !important; } - -.font-medium-italic { - font-family: "Omnes-ECOMP-W02-Medium-Italic",Arial !important; } - -.font-reset { - font-style: normal; - font-variant: normal; - font-weight: normal; - text-transform: none; } - -.visible-phone { - display: none !important; } - -.visible-tablet { - display: none !important; } - -.hidden-desktop { - display: none !important; } - -.visible-desktop { - display: inherit !important; } - -.row, -.row-nowrap { - margin-left: 0; } - -.row:before, -.row-nowrap:before, -.row:after, -.row-nowrap:after { - display: table; - content: ""; - line-height: 0; } - -.row:after, -.row-nowrap:after { - clear: both; } - -.row:before, -.row-nowrap:before, -.row:after, -.row-nowrap:after { - display: table; - content: ""; - line-height: 0; } - -.row:after, -.row-nowrap:after { - clear: both; } - -.row, -.row-nowrap { - display: flex; } - -.row > [class*="span"], -.row-nowrap > [class*="span"] { - float: left; - margin-right: 14px; - margin-right: 1.40845%\9; } - -.row > [class*="span"]:last-child, -.row-nowrap > [class*="span"]:last-child { - margin-right: 0; } - -.row > [class*="span"].centered, -.row-nowrap > [class*="span"].centered { - margin-left: auto !important; - margin-right: auto !important; } - -.row.no-flex, -.row-nowrap.no-flex { - display: block; } - -.row.no-flex > [class*="span"], -.row-nowrap.no-flex > [class*="span"] { - margin-right: 1.408450704225352%; } - -.row.no-flex > [class*="span"]:last-child, -.row-nowrap.no-flex > [class*="span"]:last-child { - margin-right: 0; } - -.row.flex-justify, -.row-nowrap.flex-justify { - justify-content: space-between; } - -.row.flex-justify > [class*="span"], -.row-nowrap.flex-justify > [class*="span"] { - flex: 1 1 0; } - -.row.flex-justify > .flex-col, -.row-nowrap.flex-justify > .flex-col { - margin-right: 14px; - margin-right: 1.40845%\9; } - -.row.flex-wrap, -.row-nowrap.flex-wrap { - flex-wrap: wrap; } - -.align-items-top { - align-items: flex-start; } - -.align-items-center { - align-items: center; } - -.align-items-bottom { - align-items: flex-end; } - -.align-self-top { - align-self: flex-start; } - -.align-self-center { - align-self: center; } - -.align-self-bottom { - align-self: flex-end; } - -.row .fixed-230 { - flex: 0; - display: block; - width: 230px; - vertical-align: top; - min-width: 230px; - background-color: #efefef; } - -.row .fluid-space { - flex: 1 1 0; - display: block; - vertical-align: top; - padding-left: 0; - padding-right: 20px; - width: 100%; } - -.row .fixed-230 + .fluid-space { - padding-left: 20px; - padding-right: 20px; } - -.row .fluid-space:last-child { - padding-right: 0; } - -.span1 { - width: 7.042253521126761%; } - -.span2 { - width: 15.49295774647887%; } - -.span3 { - width: 23.94366197183099%; } - -.span4 { - width: 32.3943661971831%; } - -.span5 { - width: 40.84507042253521%; } - -.span6 { - width: 49.29577464788733%; } - -.span7 { - width: 57.74647887323944%; } - -.span8 { - width: 66.19718309859155%; } - -.span9 { - width: 74.64788732394367%; } - -.span10 { - width: 83.09859154929578%; } - -.span11 { - width: 91.54929577464789%; } - -.span12 { - width: 100%; } - -.offset1 { - margin-left: 8.450704225352113%; } - -.offset2 { - margin-left: 16.90140845070423%; } - -.offset3 { - margin-left: 25.35211267605634%; } - -.offset4 { - margin-left: 33.8028169%; } - -.offset5 { - margin-left: 42.25352113%; } - -.offset6 { - margin-left: 50.70422535%; } - -.offset7 { - margin-left: 59.15492958%; } - -.offset8 { - margin-left: 67.6056338%; } - -.offset9 { - margin-left: 76.05633803%; } - -.offset10 { - margin-left: 84.50704225%; } - -.offset11 { - margin-left: 92.95774648%; } - -.align-center { - margin: 0 auto; - text-align: center; } - -[class*="span"].align-center { - margin: 0 auto !important; - float: none; } - -.align-left .container { - padding-left: 0 !important; - margin: 0 !important; } - -/* BEGIN RESPONSIVE-4.LESS ************** */ -@media (min-width: 1025px) { - .row > [class*="span"], - .row-nowrap > [class*="span"] { - margin-right: 20px; - margin-right: 1.487301587301587%\9; } - .container { - padding-left: 20px; - padding-right: 20px; - max-width: 1260px; } - /* 1col = 6.878306878306879 */ - /* 1colgutter = 1.587301587301587 */ - .span0 { - display: none; } - .span1 { - width: 6.878306878306879%; } - .span2 { - width: 15.34391534391534%; } - .span3 { - width: 23.80952380952381%; } - .span4 { - width: 32.27513227513228%; } - .span5 { - width: 40.74074074074074%; } - .span6 { - width: 49.20634920634921%; } - .span7 { - width: 57.67195767195767%; } - .span8 { - width: 66.13756613756614%; } - .span9 { - width: 74.60317460317461%; } - .span10 { - width: 83.06878306878308%; } - .span11 { - width: 91.53439153439154%; } - .span12 { - width: 100%; } - .offset1 { - margin-left: 8.465608465608466%; } - .offset2 { - margin-left: 16.93121693121693%; } - .offset3 { - margin-left: 25.3968253968254%; } - .offset4 { - margin-left: 33.86243386%; } - .offset5 { - margin-left: 42.32804233%; } - .offset6 { - margin-left: 50.79365079%; } - .offset7 { - margin-left: 59.25925926%; } - .offset8 { - margin-left: 67.72486772%; } - .offset9 { - margin-left: 76.19047619%; } - .offset10 { - margin-left: 84.65608466%; } - .offset11 { - margin-left: 93.12169312%; } - .tooltip-size-control { - position: relative; - width: 400px; } - .thumbnails > li { - margin-left: 1.40845070422535%; } - .row .thumbnails { - margin-left: 0; } } - -/* END RESPONSIVE-4.LESS ****************** */ -/* BEGIN RESPONSIVE-3.LESS ******************* */ -@media (min-width: 768px) and (max-width: 1024px) { - .hidden-desktop { - display: inherit !important; } - .visible-desktop { - display: none !important; } - .visible-tablet { - display: inherit !important; } - .hidden-tablet { - display: none !important; } - .container { - width: 100%; - margin: 0 auto; - padding-left: 20px; - padding-right: 20px; } - .span0-md { - display: none; } - .span1-md { - width: 7.042253521126761%; } - .span2-md { - width: 15.49295774647887%; } - .span3-md { - width: 23.94366197183099%; } - .span4-md { - width: 32.3943661971831%; } - .span5-md { - width: 40.84507042253521%; } - .span6-md { - width: 49.29577464788733%; } - .span7-md { - width: 57.74647887323944%; } - .span8-md { - width: 66.19718309859155%; } - .span9-md { - width: 74.64788732394367%; } - .span10-md { - width: 83.09859154929578%; } - .span11-md { - width: 91.54929577464789%; } - .span12-md { - width: 100%; } - .offset1-md { - margin-left: 8.450704225352113%; } - .offset2-md { - margin-left: 16.90140845070423%; } - .offset3-md { - margin-left: 25.35211267605634%; } - .offset4-md { - margin-left: 33.8028169%; } - .offset5-md { - margin-left: 42.25352113%; } - .offset6-md { - margin-left: 50.70422535%; } - .offset7-md { - margin-left: 59.15492958%; } - .offset8-md { - margin-left: 67.6056338%; } - .offset9-md { - margin-left: 76.05633803%; } - .offset10-md { - margin-left: 84.50704225%; } - .offset11-md { - margin-left: 92.95774648%; } - .tooltip-size-control { - position: relative; - width: 300px; } } - -/* END RESPONSIVE-3.LESS ******************* */ -/* BEGIN RESPONSIVE-2.LESS *************** */ -@media (max-width: 767px) { - .hidden-desktop { - display: inherit !important; } - .visible-desktop { - display: none !important; } - .visible-phone { - display: inherit !important; } - .visible-tablet { - display: inherit !important; } - .hidden-phone { - display: none !important; } - .hidden-tablet { - display: none !important; } - .container { - width: auto; - padding-left: 15px; - padding-right: 15px; } - /*.row{ display:block; }*/ - .row > [class*="span"] { - float: none; - margin-left: 0; - margin-right: 0; - width: 100%; } - .row { - display: block; } - .row.flex > .flex-col, - .row-nowrap.flex > .flex-col { - margin-right: 0; } - .row .fixed-230 { - display: block; - width: 100%; } - .row .fluid-space { - display: block; - padding-left: 0; - padding-right: 0; - width: auto; } - .row .fluid-space + .fixed-230 { - padding-left: 0; } - .row .fluid-space:last-child { - padding-right: 0; } - .span0-sm { - display: none; } - .span1-sm { - width: 7.042253521126761%; } - .span2-sm { - width: 15.49295774647887%; } - .span3-sm { - width: 23.94366197183099%; } - .span4-sm { - width: 32.3943661971831%; } - .span5-sm { - width: 40.84507042253521%; } - .span6-sm { - width: 49.29577464788733%; } - .span7-sm { - width: 57.74647887323944%; } - .span8-sm { - width: 66.19718309859155%; } - .span9-sm { - width: 74.64788732394367%; } - .span10-sm { - width: 83.09859154929578%; } - .span11-sm { - width: 91.54929577464789%; } - .span12-sm { - width: 100%; } - .offset1-sm { - margin-left: 8.450704225352113%; } - .offset2-sm { - margin-left: 16.90140845070423%; } - .offset3-sm { - margin-left: 25.35211267605634%; } - .offset4-sm { - margin-left: 33.8028169%; } - .offset5-sm { - margin-left: 42.25352113%; } - .offset6-sm { - margin-left: 50.70422535%; } - .offset7-sm { - margin-left: 59.15492958%; } - .offset8-sm { - margin-left: 67.6056338%; } - .offset9-sm { - margin-left: 76.05633803%; } - .offset10-sm { - margin-left: 84.50704225%; } - .offset11-sm { - margin-left: 92.95774648%; } - input { - padding: 8px 15px 8px 15px; } - .field-group input.input-emphasized[type="search"] + .reset-field:after { - top: 14px; } - .field-group input.input-emphasized[type="search"] + .reset-field { - height: 46px; - top: 1px; } - .marquee { - margin-bottom: 30px; } - .marquee .blur-overlay { - border-radius: 0; - position: absolute; - bottom: 0; - left: 0; - width: 100%; - margin: 0; - padding: 34px 15px 30px; } - .marquee + div { - margin-top: 30px; } - .marquee h1 { - font-size: 1.8rem; - letter-spacing: -0.035px; } - .marquee .lead { - font-size: 3.0rem; - line-height: 3.6rem; - margin-bottom: 0; } - .marquee p:not(.lead) { - font-family: "Omnes-ECOMP-W02-Light", Arial; - font-size: 1.8rem; - margin-bottom: 0; } - .marquee .btn-fullwidth { - margin-top: 10px; - width: 100%; - float: none; } - .tooltip-size-control { - width: 100%; } - .table-wrapper, - .accordion-table-layout { - margin-left: -15px; - margin-right: -15px; } - .table-wrapper caption { - padding-left: 15px; } } - -@media (max-width: 480px) { - .span1-xsm { - width: 7.042253521126761%; } - .span2-xsm { - width: 15.49295774647887%; } - .span3-xsm { - width: 23.94366197183099%; } - .span4-xsm { - width: 32.3943661971831%; } - .span5-xsm { - width: 40.84507042253521%; } - .span6-xsm { - width: 49.29577464788733%; } - .span7-xsm { - width: 57.74647887323944%; } - .span8-xsm { - width: 66.19718309859155%; } - .span9-xsm { - width: 74.64788732394367%; } - .span10-xsm { - width: 83.09859154929578%; } - .span11-xsm { - width: 91.54929577464789%; } - .span12-xsm { - width: 100%; } - .offset1-xsm { - margin-left: 8.450704225352113%; } - .offset2-xsm { - margin-left: 16.90140845070423%; } - .offset3-xsm { - margin-left: 25.35211267605634%; } - .offset4-xsm { - margin-left: 33.8028169%; } - .offset5-xsm { - margin-left: 42.25352113%; } - .offset6-xsm { - margin-left: 50.70422535%; } - .offset7-xsm { - margin-left: 59.15492958%; } - .offset8-xsm { - margin-left: 67.6056338%; } - .offset9-xsm { - margin-left: 76.05633803%; } - .offset10-xsm { - margin-left: 84.50704225%; } - .offset11-xsm { - margin-left: 92.95774648%; } } - -/* END RESPONSIVE-2.LESS ******************* */ -/* BEGIN RESPONSIVE-1.LESS ************** */ -.xxxxxxxx-begin-responsive-480px.less { - /* placeholder */ } - -@media (max-width: 480px) { - .hidden-desktop { - display: inherit !important; } - .hidden-tablet { - display: inherit !important; } - .hidden-phone { - display: none !important; } - .visible-desktop { - display: none !important; } - .visible-tablet { - display: none !important; } - .visible-phone { - display: inherit !important; } - .container { - width: auto; - padding-left: 15px; - padding-right: 15px; } } - -[class*="icon-primary-"], -.nav-links a:after, -.bellyband-link a:after, -.breadcrumb > li:after, -.checkbox input:checked + .skin:after, -.checkbox input.indeterminate + .skin:after, -.checkbox input:indeterminate + .skin:after, -.selectWrap.large:before, -.form-row.error .error-msg:before, -.close:before, -.reset-field:before, -.cssIcon-globe:before, -.selectWrap:after { - color: #0568ae; - left: 6px; - top: -3px; - width: 2px; - height: 3px; - border: solid white; - border-width: 0 3px 3px 0; - -webkit-transform: rotate(45deg); - -ms-transform: rotate(45deg); - transform: rotate(45deg);} - -[class*="icoWeather-"], [class*="icoTrans-"], [class*="icoBubble-"], [class*="icoRetail-"], [class*="icoPeople-"], [class*="icoNumslets-"], [class*="icoLocation-"], [class*="icoHealthcare-"], [class*="icoDocuments-"], [class*="icoDevices-"], [class*="icoDatanetwork-"], [class*="icoControls-"], [class*="icoBuilding-"], [class*="icoArrows-"] { - color: #0568ae; - display: inline-block; - font-style: normal; - font-size: 20px; - font-weight: normal; - font-variant: normal; - font-style: normal; - width: 20px; - text-transform: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - position: relative; - speak: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - vertical-align: middle; } - -[class*="icon-primary-"]:before, -[class*="icon-primary-"]:after { - box-sizing: border-box; - display: inline-block; - font-size: 1em; - height: 1em; - position: relative; - top: 0; - left: 0; - vertical-align: middle; - width: 1em; } - -.icon-primary-att-globe:before, -.cssIcon-globe:before { - content: "\e900"; - color: #44c7f5; } - -.icon-primary-hamburger:before { - content: "\e903"; } - -.icon-primary-secure:before { - content: "\e918"; } - -.icon-primary-secureL:before { - content: "\e919"; } - -.icon-primary-padlockopen:before { - content: "\e916"; } - -.icon-primary-padlockopenL:before { - content: "\e917"; } - -.icon-primary-shoppingcart:before { - content: "\e914"; } - -.icon-primary-shoppingcartL:before { - content: "\e915"; } - -.icon-primary-print:before { - content: "\e921"; } - -.icon-primary-printL:before { - content: "\e922"; } - -.icon-primary-mobilesmartphone:before { - content: "\e908"; } - -.icon-primary-mobilesmartphoneL:before { - content: "\e90c"; } - -.icon-primary-tablet:before { - content: "\e904"; } - -.icon-primary-tabletL:before { - content: "\e905"; } - -.icon-primary-tv:before { - content: "\e906"; } - -.icon-primary-tvL:before { - content: "\e907"; } - -.icon-primary-calendar { - width: 100% !important; } - -.icon-primary-calendar:before { - content: "\e91a"; - z-index: 1; } - -.icon-primary-calendarL:before { - content: "\e91b"; } - -.icon-primary-star:before { - content: "\e96c"; } - -.icon-primary-close:before, -.close:before, -.reset-field:before { - content: "\e910"; } - -.icon-primary-down:before { - content: "\ea3c"; } - - - -.icon-primary-add-maximize:before { - content: "\e91f"; } - - - -.icon-primary-questionmark:before { - content: "\e90f"; } - -.icon-primary-badgealert:before, -.form-row.error .error-msg:before { - content: "\e90e"; } - -.icon-primary-approval:before { - content: "\e925"; } - -.icon-primary-flat-info:before { - content: "\e927"; } - -.icon-primary-alert:before { - content: "\e913"; } - -.icon-primary-tooltip:before, -.icon-primary-flat-faq:before { - content: "\e90d"; } - -.icon-primary-tooltip { - font-size: 20px; } - -.nav-links a:after, -.bellyband-link a:after, -.breadcrumb > li:after, -.icon-primary-right:before { - content: "\ea3c"; - transform: rotate(-90deg); } - -.icon-primary-left:before { - content: "\ea3c"; - transform: rotate(90deg); } - -.icon-primary-accordion-plus:after, -.icon-primary-collapsed:after, -.icon-primary-accordion-minus:after, -.icon-primary-expanded:after { - content: ""; - position: absolute; - top: 0; - z-index: 1; } - -.icon-primary-accordion-minus, -.icon-primary-expanded, -.icon-primary-accordion-plus, -.icon-primary-collapsed { - font-size: 20px !important; } - -:not(.ds2-no-colors) .icon-primary-accordion-minus:before, -:not(.ds2-no-colors) .icon-primary-expanded:before { - background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2021%2021%22%3E%3Cpath%20fill%3D%22%230568ae%22%20d%3D%22M15.1%2011.3H5.9c-.4%200-.8-.3-.8-.8s.3-.8.8-.8h9.3c.4%200%20.8.3.8.8s-.4.8-.9.8z%22%2F%3E%3Cpath%20fill%3D%22%23d2d2d2%22%20d%3D%22M10.5%2021C4.7%2021%200%2016.3%200%2010.5S4.7%200%2010.5%200%2021%204.7%2021%2010.5%2016.3%2021%2010.5%2021zm0-20C5.3%201%201%205.3%201%2010.5S5.3%2020%2010.5%2020s9.5-4.3%209.5-9.5S15.7%201%2010.5%201z%22%2F%3E%3C%2Fsvg%3E"); - content: ""; } - -:not(.ds2-no-colors) .icon-primary-accordion-plus:before, -:not(.ds2-no-colors) .icon-primary-collapsed:before { - background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2021%2021%22%3E%3Cpath%20fill%3D%22%230568ae%22%20d%3D%22M10.5%2015.9c-.4%200-.8-.3-.8-.8V5.9c0-.4.3-.8.8-.8s.8.3.8.8v9.3c0%20.4-.4.7-.8.7z%22%2F%3E%3Cpath%20fill%3D%22%230568ae%22%20d%3D%22M15.1%2011.3H5.9c-.4%200-.8-.3-.8-.8s.3-.8.8-.8h9.3c.4%200%20.8.3.8.8s-.4.8-.9.8z%22%2F%3E%3Cpath%20fill%3D%22%23d2d2d2%22%20d%3D%22M10.5%2021C4.7%2021%200%2016.3%200%2010.5S4.7%200%2010.5%200%2021%204.7%2021%2010.5%2016.3%2021%2010.5%2021zm0-20C5.3%201%201%205.3%201%2010.5S5.3%2020%2010.5%2020s9.5-4.3%209.5-9.5S15.7%201%2010.5%201z%22%2F%3E%3C%2Fsvg%3E"); - content: ""; } - -.ds2-no-colors .icon-primary-accordion-minus:before, -.ds2-no-colors .icon-primary-expanded:before { - background-image: none; - content: "\e901"; } - -.ds2-no-colors .icon-primary-accordion-minus:after, -.ds2-no-colors .icon-primary-expanded:after { - content: "\e902"; } - -.ds2-no-colors .icon-primary-accordion-plus:before, -.ds2-no-colors .icon-primary-collapsed:before { - background-image: none; - content: "\e90b"; } - -.ds2-no-colors .icon-primary-accordion-plus:after, -.ds2-no-colors .icon-primary-collapsed:after { - content: "\e911"; } - -.icon-primary-circle-arrow { - outline: 1px solid transparent; - border-radius: 50%; - font-size: 20px !important; - background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08); - margin-right: 7px; } - -.icon-primary-circle-arrow:after { - background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2036%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20baseProfile%3D%22tiny%22%3E%3Ccircle%20r%3D%2217%22%20cy%3D%2218%22%20cx%3D%2218%22%20stroke-width%3D%221%22%20fill%3D%22transparent%22%20stroke%3D%22%23ccc%22%2F%3E%3C%2Fsvg%3E"); - content: ""; - position: absolute; - top: 0; - z-index: 2; } - -.icon-primary-circle-arrow:before { - border-radius: 50%; - content: "\ea3c"; - font-size: 12px; - top: 0; - position: absolute; - transform: rotate(-90deg); - width: 20px; - z-index: 1; } - -[class*="icon-primary-"] [class*="icon-primary-"] { - display: inline-block; - float: left; - font-size: 1em; - margin-left: -1em; - position: absolute; } - -[class*="icon-primary-"].white, [class^="ico"][class*="-"].white { - color: #fff; } - -[class*="icon-primary-"].black, [class^="ico"][class*="-"].black { - color: #000; } - -[class*="icon-primary-"].blue, [class^="ico"][class*="-"].blue { - color: #0568ae; } - -[class*="icon-primary-"].green, [class^="ico"][class*="-"].green { - color: #007a3e; } - -@-webkit-viewport { - width: device-width; } - -@-moz-viewport { - width: device-width; } - -@-ms-viewport { - width: device-width; } - -@-o-viewport { - width: device-width; } - -@viewport { - width: device-width; } - -.clearfix:before, -.clearfix:after { - display: table; - content: ""; - line-height: 0; } - -.clearfix:after { - clear: both; } - -.pull-right { - float: right !important; } - -.pull-left { - float: left !important; } - -.float-children-left:before, -.float-children-left:after { - display: table; - content: ""; - line-height: 0; } - -.float-children-left:after { - clear: both; } - -.float-children-left > div { - float: left; - white-space: nowrap; } - -.block { - display: block !important; } - -.inline { - display: inline !important; } - -.inline-block { - display: inline-block !important; } - -.table-cell { - display: table-cell !important; - width: 1%; - vertical-align: middle; } - -@media (max-width: 767px) { - .full-bleed { - width: auto; - margin-left: -15px; - margin-right: -15px; - padding: 15px; } } - -@media (min-width: 768px) { - .full-bleed { - width: auto; - margin-left: -20px; - margin-right: -20px; - padding: 20px; } } - -@media (max-width: 480px) { - .full-bleed { - width: auto; - margin-left: -15px; - margin-right: -15px; - padding: 0 15px; } } - -.fade { - opacity: 0; - filter: alpha(opacity=0); - transition: opacity .15s linear; } - -.fade.in { - opacity: 1; - filter: alpha(opacity=100); } - -.b2bCollapse { - display: none; } - -.collapse.in { - height: auto; } - -.nowrap { - white-space: nowrap; } - -.pre { - white-space: pre; } - -.hidden-spoken { - border: 0 none !important; - clip: rect(0px, 0px, 0px, 0px) !important; - height: 1px !important; - letter-spacing: 0; - line-height: 0; - overflow: hidden !important; - margin-top: -1px; - padding: 0 !important; - position: absolute !important; - width: 1px !important; } - -[data-sr-text].hidden-spoken:before { - border: 0 none !important; - content: attr(data-sr-text); - clip: rect(0px, 0px, 0px, 0px) !important; - height: 1px !important; - letter-spacing: 0; - line-height: 0; - overflow: hidden !important; - padding: 0 !important; - position: absolute !important; - width: 100% !important; - z-index: -1; } - -[data-sr-text].hidden-spoken { - position: relative !important; - width: auto !important; } - -[data-show-between] { - display: none; - visibility: hidden; } - -.noscroll-y { - overflow-y: hidden !important; } - -.invisible { - visibility: hidden !important; - opacity: 0 !important; } - -.transparent { - background-color: rgba(255, 255, 255, 0) !important; } - -.hide { - display: none !important; } - -.show { - display: block !important; } - -.rel { - position: relative !important; } - -.legend-pad { - padding: 0 15px; } - -.border-top { - border-top-width: 1px !important; } - -.border-left { - border-left-width: 1px !important; } - -.border-right { - border-right-width: 1px !important; } - -.border-bottom { - border-bottom-width: 1px !important; } - -.border-dark { - border-color: #000; } - -.border-light { - border-color: #fff; } - -.no-border-top { - border-top-width: 0 !important; } - -.no-border-left { - border-left-width: 0 !important; } - -.no-border-right { - border-right-width: 0 !important; } - -.no-border-bottom { - border-bottom-width: 0 !important; } - -.align-middle { - margin: 0 auto !important; } - -.align-top { - position: absolute; - top: 0; } - -.align-bottom { - position: absolute; - bottom: 0; } - -.valign-top { - vertical-align: top !important; } - -.valign-middle { - vertical-align: middle !important; } - -.valign-bottom { - vertical-align: bottom !important; } - -.align-children-middle > * { - margin: 0 auto; } - -[class*="valign-children-"] { - display: table; } - -[class*="valign-children-"] > * { - display: table-cell; } - -.valign-children-top > * { - vertical-align: top; } - -.valign-children-middle > * { - vertical-align: middle; } - -.valign-children-bottom > * { - vertical-align: bottom; } - -.no-pad { - padding: 0 !important; } - -.top-space { - margin-top: 60px !important; } - -.bottom-space { - margin-bottom: 60px !important; } - -.top-pad { - padding-top: 60px !important; } - -.bottom-pad { - padding-bottom: 60px !important; } - -@media (max-width: 767px) { - .top-space { - margin-top: 30px !important; } - .bottom-space { - margin-bottom: 30px !important; } - .top-pad { - padding-top: 30px !important; } - .bottom-pad { - padding-bottom: 30px !important; } } - -.affix { - position: fixed; } - -.img-landscape, -.img-portrait { - position: relative; } - -@media (orientation: landscape) { - .img-landscape { - display: block; } - .img-portrait { - display: none !important; } } - -@media (orientation: portrait) { - .img-landscape { - display: none !important; } - .img-portrait { - display: block; } } - -.dark-bg { - background-color: #222222; } - -/* ... JAVASCRIPT HOOKS ................. - ... used by javascript ............... */ -.autoSize, -.autoSize-this { - position: relative; } - -.truncate { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; } - -.placeholdersjs { - color: #5a5a5a !important; } - -.jshook-return-focus-here { - display: block; } - -.visible-print { - display: none !important; } - -.hidden-print { - display: inherit !important; } - -@media print { - .visible-print { - display: inherit !important; } - .hidden-print { - display: none !important; } - * { - color: #000 !important; - background: transparent !important; - box-shadow: none !important; } - a, - a:visited { - text-decoration: underline; } - pre, - blockquote { - border: 1px solid #000; - page-break-inside: avoid; } - thead { - display: table-header-group; } - tr, - img { - page-break-inside: avoid; } - img { - max-width: 100% !important; } - @page { - margin: 0.5cm; } - p, - h2, - h3 { - orphans: 3; - widows: 3; } - h2, - h3 { - page-break-after: avoid; } } - -.mar-top-0 { - margin-top: 0px; } - -.mar-top-30 { - margin-top: 30px; } - -a:focus { - outline: thin dotted #191919; } - -h1, -h2, -h3, -h4, -h5, -h6 { - font-weight: normal; - text-rendering: optimizeLegibility; - margin: 0; - line-height: 1; } - -.heading-page { - font-size: 3.8rem !important; - font-family: "Omnes-ECOMP-W02-Light", Arial; - margin-bottom: 40px; } - -h1.heading-page.ng-scope {} - -.heading-major-section { - font-size: 3rem !important; - font-family: "Omnes-ECOMP-W02-Light", Arial; - margin-bottom: 40px !important; } - -.heading-sub-section { - font-size: 2.4rem !important; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 40px; } - -.heading-group { - font-size: 2rem !important; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - color: #ea7400; - margin-bottom: 20px !important; } - -.heading-medium { - font-size: 2rem !important; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 20px; } - -.heading-medium-emphasis { - font-size: 2rem !important; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - margin-bottom: 20px; } - -.heading-small { - font-size: 1.8rem !important; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 20px; } - -.heading-small-emphasis { - font-size: 1.8rem !important; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - margin-bottom: 20px; } - -.heading-micro { - font-size: 1.3rem !important; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - text-transform: uppercase; - color: #da0081; - margin-bottom: 10px; } - -* + .heading-major-section { - margin-top: 60px; } - -* + .heading-sub-section { - margin-top: 60px; } - -* + .heading-group { - margin-top: 40px !important; } - -* + .heading-medium { - margin-top: 40px; } - -* + .heading-medium-emphasis { - margin-top: 40px; } - -* + .heading-small { - margin-top: 40px; } - -* + .heading-small-emphasis { - margin-top: 40px; } - -* + .heading-micro { - margin-top: 20px; } - -.lead { - color: #666; - font-family: "Omnes-ECOMP-W02-Light-Italic", Arial; - font-size: 2.4rem; - line-height: 2.8rem; - margin-top: 10px; - letter-spacing: -0.024rem; } - -.eyebrow { - text-transform: uppercase; - line-height: .65 !important; } - -.eyebrow, -.subheading { - font-size: 1.4rem !important; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - color: #666; } - -.eyebrow + .heading-major-section, -.eyebrow + .heading-sub-section { - margin-top: 4px; } - -.subheading { - margin-top: 10px; } - -@media (max-width: 767px) { - h1, - h2, - h3, - h4, - h5, - h6, - .heading-page { - font-size: 2rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 30px; } - .heading-major-section { - font-size: 2rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 30px; } - .heading-sub-section { - font-size: 2rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 20px; } - .heading-medium { - font-size: 2rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 20px; } - .heading-medium-emphasis { - font-size: 2rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 20px; } - .heading-small { - font-size: 1.6rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 10px; } - .heading-small-emphasis { - font-size: 1.6rem; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - margin-bottom: 5px; } - * + .heading-major-section { - margin-top: 30px; } - * + .heading-sub-section { - margin-top: 30px; } - * + .heading-group { - margin-top: 20px; } - * + .heading-medium { - margin-top: 20px; } - * + .heading-medium-emphasis { - margin-top: 20px; } - * + .heading-small { - margin-top: 20px; } - * + .heading-small-emphasis { - margin-top: 20px; } - * + .heading-micro { - margin-top: 10px; } } - -/* Standard Type styles */ -.zeromargin { - margin: 0 !important; } - -a { - color: #0568ae; - text-decoration: none; } - -a:hover, -a:focus { - text-decoration: underline; } - -a:active { - color: #0568ae; } - -.a-min { - font-size: 12px; } - -.a-small { - font-size: 14px; } - -.a-max { - font-size: 18px; } - -a.show-qualifier { - margin-right: 25px; - position: relative; } - -a.show-qualifier:after { - color: #333333; - display: inline-block; - white-space: pre !important; } - -a[href$="pdf"].show-qualifier:after, -a.show-qualifier.pdf:after { - content: " (PDF)"; } - -a[href$="psd"].show-qualifier:after, -a.show-qualifier.psd:after { - content: " (PSD)"; } - -.standalone-link { - display: flex; } - -/* 20px for the icon, 10px left of icon */ -.standalone-link.small { - font-size: 1.4rem; } - -.standalone-link.small i[class*="icon-primary-"] { - font-size: 16px; - top: 2px; } - -.standalone-link.large { - font-size: 1.8rem; } - -.standalone-link.large i[class*="icon-primary-"] { - font-size: 24px; - top: -1px; } - -p { - margin: 0 0 12px 0; - line-height: 2rem; } - -.p-small { - font-size: 1.4rem; - line-height: 1.8rem; } - -p + .p-small { - margin: 10px 0 0; } - -.p-micro { - font-size: 1.2rem; - line-height: 1.5rem; } - -p + .p-micro { - margin: 10px 0 0; } - -.p-max { - font-size: 1.8rem; } - -p + .p-max { - margin: 10px 0 0; } - -b, -strong { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-weight: normal; } - -i, -em { - font-family: "Omnes-ECOMP-W02-Italic", Arial; - font-style: normal; } - -.strike { - text-decoration: line-through; } - -sup { - display: inline-block; - font-style: normal; - height: 1em; - position: relative; - vertical-align: text-top; - width: auto; } - -.text-legal { - color: #5a5a5a; - font-size: 1.1rem; - line-height: 1.5rem; - margin: 0 0 10px; } - -.text-legal.legal-module { - line-height: 1.3rem; - margin: 0 0 12px; } - -.text-legal b, -.text-legal strong { - font-weight: bold; } - -.text-legal a { - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - -.text-left { - text-align: left !important; } - -.text-right { - text-align: right !important; } - -.text-center { - text-align: center !important; } - -.text-justified { - text-align: justify !important; } - -ul { - padding: 0; - margin: 0; - list-style: none; } - -ul.bullet, -ul.no-bullet, -ul.lower-alpha, -ul.lower-roman, -ol { - padding: 0; - margin: 12px 0 0 20px; } - -ul.bullet li, -ul.no-bullet li, -ul.lower-alpha li, -ul.lower-roman li, -ol li { - padding-left: 15px; - line-height: 20px; - position: relative; } - -ul.bullet li + li, -ul.no-bullet li + li, -ul.lower-alpha li + li, -ul.lower-roman li + li, -ol li + li { - margin-top: 12px; } - -ul.bullet > li:before, -ul.no-bullet > li:before, -ul.lower-alpha > li:before, -ul.lower-roman > li:before, -ol > li:before { - background-color: #333333; - border: 2px solid #333333; - border-radius: 100%; - content: " "; - display: block; - height: 1px; - left: 0; - position: absolute; - top: 8px; - width: 1px; } - -ul.bullet ul, -ul.no-bullet ul, -ul.lower-alpha ul, -ul.lower-roman ul, -ol ul, -ul.bullet ol, -ul.no-bullet ol, -ul.lower-alpha ol, -ul.lower-roman ol, -ol ol { - margin-top: 12px; } - -ul + *, -ol + * { - margin-top: 20px; } - -ul.no-bullet, -ul.lower-alpha, -ul.lower-roman { - margin: 0; } - -ul.no-bullet > li, -ul.lower-alpha > li, -ul.lower-roman > li { - padding-left: 0; } - -ul.no-bullet > li:before, -ul.lower-alpha > li:before, -ul.lower-roman > li:before { - display: none !important; } - -ol { - margin: 20px 0 0 32px; } - -ol li { - padding-left: 3px; } - -ol li:before { - display: none; } - -ol ol { - margin-left: 25px; } - -ol ul { - margin-left: -5px; } - -ul ul, -ul ol, -ol ol, -ol ul { - margin-top: 0; } - -ul.lower-roman { - list-style-type: lower-roman; - margin-top: 12px; - margin-left: 35px; - margin-bottom: 0; } - -ul.lower-alpha { - list-style-type: lower-alpha; - margin-top: 12px; - margin-left: 35px; - margin-bottom: 0; } - -dl { - display: table; - margin: 0 0 20px; - width: 100%; } - -dt, -dd { - display: table-cell; } - -.btn { - background-color: transparent; - background-clip: padding-box; - border: 1px solid transparent; - border-radius: 8px; - box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15); - cursor: pointer; - display: inline-block; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 0.5rem; - font-weight: normal; - line-height: 1; - margin: 0 7px 10px 0; - - - padding: 14px 19px 11px 18px; - position: relative; - text-align: center; - vertical-align: middle; - white-space: nowrap; - overflow: hidden; } - .btn:focus { - outline: 1px dotted #000; - outline-offset: -5px; } - .btn:last-child { - margin-right: 0; } - .btn::-moz-focus-inner { - padding: 0; - border: 0; } - .btn i[class*="icon-primary-"].icon-primary-small { - font-size: 24px; - top: -2px; } - .btn i[class*="icon-primary-"].icon-primary-medium { - font-size: 10px; - top: -2px; } - .btn i[class*="icon-primary-"].icon-primary-large { - font-size: 10px; - top: -2px; } - -a.btn { - vertical-align: middle; } - a.btn:hover { - text-decoration: none; } - -.field-group + .btn { - margin-left: 20px; } - -.btn-primary { - border-color: #ea7400 transparent #d16500; - background-color: #ea7400 transparent #d16500; - background: linear-gradient(to bottom, #ea7400 0%, #d16500 100%); - color: #ffffff; - font-family: "Omnes-ECOMP-W02", Arial; - font-weight: bold; } - .btn-primary:hover { - text-decoration: none; - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } - .btn-primary:focus { - text-decoration: none; - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } - .btn-primary:active { - text-decoration: none; - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } - -.btn-arrow { - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 1.6rem; - font-weight: normal; - background-color: transparent; - border: none; - padding: 5px 0 0; - top: -4px; - color: #333333; - position: relative; } - .btn-arrow:hover { - text-decoration: underline; } - .btn-arrow:hover .btn-primary { - text-decoration: none; - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } - .btn-arrow:hover .btn-secondary { - color: #0568ae; - outline-color: #000000 !important; - background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } - .btn-arrow:hover .btn-alt { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); } - .btn-arrow:hover .btn-specialty { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } - .btn-arrow:focus { - text-decoration: underline; - outline: 1px dotted #666; } - .btn-arrow:focus .btn-primary { - text-decoration: none; - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } - .btn-arrow:focus .btn-secondary { - color: #0568ae; - outline-color: #000000 !important; - background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } - .btn-arrow:focus .btn-alt { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); } - .btn-arrow:focus .btn-specialty { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } - .btn-arrow:active .btn-primary { - text-decoration: none; - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } - .btn-arrow:active .btn-secondary { - color: #0568ae; - outline-color: #000000 !important; - background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } - .btn-arrow:active .btn-alt { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); } - .btn-arrow:active .btn-specialty { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } - .btn-arrow .btn-alt { - border-color: #087ac2 transparent #0568ae; - background-color: #0568ae; - background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); - color: #ffffff; } - .btn-arrow .btn-alt:hover { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } - .btn-arrow .btn-alt:focus { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } - .btn-arrow .btn-alt:active { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } - .btn-arrow::-moz-focus-inner { - padding: 0; - border: 0; } - .btn-arrow .btn { - border: 1px solid transparent; - border-radius: 100%; - height: 20px; - margin-bottom: 0; - margin-right: 7px; - max-width: 20px; - min-width: 20px; - padding: 0; - margin-top: -4px; - vertical-align: middle; - width: 36px; } - .btn-arrow .btn .icon-primary-left { - bottom: 0; - display: block; - height: 100%; - left: 0; - line-height: 0; - position: absolute; - right: 0; - text-indent: 0; - top: 0; } - .btn-arrow .btn .icon-primary-left:before { - position: absolute; - font-size: 1.6rem; - left: 1px; - top: 9px; } - .btn-arrow .btn .icon-primary-right { - bottom: 0; - display: block; - height: 100%; - left: 0; - line-height: 0; - position: absolute; - right: 0; - text-indent: 0; - top: 0; - color: #ffffff; } - .btn-arrow .btn .icon-primary-right:before { - position: absolute; - font-size: 1.6rem; - left: 17px; - top: 9px; } - .btn-arrow .btn.btn-primary .icon-primary-left { - color: #fff; } - .btn-arrow .btn.btn-primary .icon-primary-right { - color: #fff; } - .btn-arrow .btn.btn-alt .icon-primary-left { - color: #fff; } - .btn-arrow .btn.btn-alt .icon-primary-right { - color: #fff; } - .btn-arrow .btn.btn-secondary { - border: 1px solid #d2d2d2; } - .btn-arrow .btn.btn-secondary .icon-primary-left { - color: #0568ae; } - .btn-arrow .btn.btn-secondary .icon-primary-right { - color: #0568ae; } - .btn-arrow .btn.btn-small { - height: 10px; - - - width: 10px; - top: -1px; } - .btn-arrow .btn.btn-small .icon-primary-left:before { - font-size: 5px; - top: 4px; - left: 0; } - .btn-arrow .btn.btn-small .icon-primary-right:before { - font-size: 5px; - top: 4px; - left: 10px; } - .btn-arrow .btn.btn-large .icon-primary-left:before { - font-size: 112%; - top: 12px; - left: 23px; } - .btn-arrow .btn.btn-large .icon-primary-right:before { - font-size: 112%; - top: 12px; - left: 23px; } - -.btn-secondary { - border: 1px solid #d2d2d2; - background-color: #f2f2f2; - background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); - color: #0568ae; - box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.15); - padding: 14px 18px 11px 17px; } - .btn-secondary:hover { - color: #0568ae; - outline-color: #000000 !important; - background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } - .btn-secondary:focus { - color: #0568ae; - outline-color: #000000 !important; - background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } - .btn-secondary:active { - color: #0568ae; - outline-color: #000000 !important; - background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } - -.btn-alt { - border-color: #087ac2 transparent #0568ae; - background-color: #0568ae; - background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); - color: #ffffff; } - .btn-alt:hover { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } - .btn-alt:focus { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } - .btn-alt:active { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } - -.btn-specialty { - border-color: #008744 transparent #007a3e; - background-color: #007a3e; - background: linear-gradient(to bottom, #008744 0%, #007a3e 100%); - color: #ffffff; } - .btn-specialty:hover { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } - .btn-specialty:focus { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } - .btn-specialty:active { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } - -.btn-clear { - background: transparent !important; - border-color: transparent !important; - font-weight: normal; - font-family: "Omnes-ECOMP-W02", Arial; - box-shadow: none; - text-decoration: none; - color: #0568ae; } - .btn-clear:focus { - text-decoration: underline; } - .btn-clear:hover { - text-decoration: underline; } - -.isIE .btn:focus { - outline: none !important; - text-decoration: none !important; } - .isIE .btn:focus:after { - display: block; - content: ""; - position: absolute; - top: 4px; - left: 4px; - right: 4px; - bottom: 4px; - border: 1px dotted #000; } - -.isIE .btn:active { - outline: none !important; - text-decoration: none !important; } - .isIE .btn:active:after { - display: block; - content: ""; - position: absolute; - top: 4px; - left: 4px; - right: 4px; - bottom: 4px; - border: 1px dotted #000; } - -.isIE .btn.active { - outline: none !important; - text-decoration: none !important; } - .isIE .btn.active:not(:focus):after { - border: 1px solid #000; } - .isIE .btn.active:after { - display: block; - content: ""; - position: absolute; - top: 4px; - left: 4px; - right: 4px; - bottom: 4px; - border: 1px dotted #000; } - -.isIE .btn.btn-primary:focus:after { - border: 2px dashed #fff; } - -.isIE .btn.btn-specialty:focus:after { - border: 2px dashed #fff; } - -.isIE .btn.btn-alt:focus:after { - border: 2px dashed #fff; } - -.btn.disabled { - background-image: none; - background-color: #767676; - box-shadow: none; - cursor: not-allowed; - color: #ffffff; - border-color: transparent; - outline: 0 !important; } - .btn.disabled:hover { - color: #f2f2f2; - outline: none !important; } - .btn.disabled:focus { - color: #f2f2f2; - outline: none !important; } - -.btn[disabled] { - background-image: none; - background-color: #767676; - box-shadow: none; - cursor: not-allowed; - color: #ffffff; - border-color: transparent; - outline: 0 !important; } - .btn[disabled]:hover { - color: #f2f2f2; - outline: none !important; } - .btn[disabled]:focus { - color: #f2f2f2; - outline: none !important; } - -.btn[disabled="disabled"] { - background-image: none; - background-color: #767676; - box-shadow: none; - cursor: not-allowed; - color: #ffffff; - border-color: transparent; - outline: 0 !important; } - .btn[disabled="disabled"]:hover { - color: #f2f2f2; - outline: none !important; } - .btn[disabled="disabled"]:focus { - color: #f2f2f2; - outline: none !important; } - -.btn-arrow[disabled] .btn { - background-image: none; - background-color: #767676; - box-shadow: none; - cursor: not-allowed; - color: #ffffff; - border-color: transparent; - outline: 0 !important; } - .btn-arrow[disabled] .btn:hover { - color: #f2f2f2; - outline: none !important; } - .btn-arrow[disabled] .btn:focus { - color: #f2f2f2; - outline: none !important; } - -.btn-arrow[disabled] .icon-primary-left { - color: #fff !important; } - -.btn-arrow[disabled] .icon-primary-right { - color: #fff !important; } - -.btn-arrow.disabled .btn { - background-image: none; - background-color: #767676; - box-shadow: none; - cursor: not-allowed; - color: #ffffff; - border-color: transparent; - outline: 0 !important; } - .btn-arrow.disabled .btn:hover { - color: #f2f2f2; - outline: none !important; } - .btn-arrow.disabled .btn:focus { - color: #f2f2f2; - outline: none !important; } - -.btn-arrow.disabled .icon-primary-left { - color: #fff !important; } - -.btn-arrow.disabled .icon-primary-right { - color: #fff !important; } - -.btn-medium { - padding: 12px 19px 11px 18px; - font-size: 1.7rem; } - -.btn-small { - /* padding: 10px 19px 9px 18px; */ - font-size: 1.5rem; - border-radius: 8px; } - -.btn-fullwidth { - width: 100%; } - -*:not(.btn-arrow) > .btn > i[class*="icon-primary-"] { - margin-top: -20px; - margin-bottom: -20px; } - -.enhanced-cta-group { - display: -ms-flexbox; - display: flex; - -ms-flex-direction: row-reverse; - flex-direction: row-reverse; - background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewport%3D%220%200%201%201%22%20style%3D%22width%3A100%25%3B%20height%3A1px%3B%22%3E%3Cstyle%3Eline%7Bstroke%3A%23959595%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cline%20y2%3D%221%22%20y1%3D%221%22%20x1%3D%221%22%20x2%3D%22100%25%22%20stroke-dasharray%3D%221%2C%203%22%2F%3E%3C%2Fsvg%3E") !important; - background-position: 0 -1px; - background-repeat: repeat-x; } - .enhanced-cta-group > .cta-button-group { - border-top: 0; - background-image: none !important; } - .enhanced-cta-group > .cta-button-group + .cta-button-group a { - font-size: 1.4rem; - line-height: 1em; } - .enhanced-cta-group > .cta-button-group + .cta-button-group a a { - margin-right: 0; } - .enhanced-cta-group > .cta-button-group hr { - min-height: 14px; } - .enhanced-cta-group > .cta-button-group + .cta-button-group { - -ms-flex-align: center; - -ms-grid-row-align: center; - align-items: center; - -ms-flex-direction: row; - flex-direction: row; - padding: 10px 0; } - -.cta-button-group { - text-align: right; - -ms-flex-align: baseline; - align-items: baseline; - padding: 20px 0 10px; - width: 100%; } - .cta-button-group.nodots { - background-image: none !important; } - .cta-button-group .hidden-phone { - margin-right: 14px; } - .cta-button-group .btn + .btn { - margin-right: 20px !important; } - .cta-button-group .btn:not(.hidden-phone):not(.visible-phone) { - margin-right: 0; } - -.isMobile .btn-arrow .btn.btn-small .icon-primary-left:before { - left: -1px; } - -.isMobile .btn-arrow .btn.btn-large .icon-primary-left:before { - left: 24px; } - -.isMobile .btn-arrow .btn.btn-large .icon-primary-right:before { - left: 24px; } - -@media (max-width: 1024px) { - .field-group + .btn { - margin-left: 15px; } } - -@media (max-width: 767px) { - .cta-button-group { - text-align: center; } - .cta-button-group > .btn { - display: block; - float: none; - width: 100%; - margin-left: auto !important; - margin-right: auto !important; } } - -.btn-group { - border-radius: 8px; - box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.15); - display: -ms-flexbox; - display: flex; - -ms-flex-pack: justify; - justify-content: space-between; - margin-bottom: 10px; - max-width: 470px; - min-width: 290px; - position: relative; - vertical-align: middle; - width: 100%; } - .btn-group > .btn { - box-shadow: none; - -ms-flex: 1; - flex: 1; - position: relative; - float: left; - margin-right: -1px; - margin-bottom: 0; - padding-left: 0; - padding-right: 0; - text-align: center; } - .btn-group:not([data-select-color]) .btn.active:not(:first-child) { - margin-right: -1px; - border-left: 1px solid #d2d2d2 !important; } - .btn-group:not([data-select-color]) .btn[disabled]:not(:first-child) { - border-left: 1px solid #d2d2d2 !important; } - .btn-group:not([data-select-color]) .btn[disabled] + .btn[disabled] { - border-left: 1px solid #ebebeb !important; } - .btn-group:not([data-select-color]) > .btn.active { - border-color: #087ac2 transparent #0568ae; - background-color: #0568ae; - background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); - color: #ffffff; } - .btn-group:not([data-select-color]) > .btn.active:hover { - color: #ffffff; - outline-color: #ffffff !important; - background: #0563a6; - border-color: #0563a6; } - .btn-group:not([data-select-color]) > .btn.active:focus { - color: #ffffff; - outline-color: #ffffff !important; - background: #0563a6; - border-color: #0563a6; } - .btn-group:not([data-select-color]) > .btn.active:active { - color: #ffffff; - outline-color: #ffffff !important; - background: #0563a6; - border-color: #0563a6; } - .btn-group:not([data-select-color]) > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { - border-radius: 0; } - .btn-group:not([data-select-color]) > .btn:first-child:not(:last-child):not(.dropdown-toggle) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .btn-group:not([data-select-color]) > .btn:last-child:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - .btn-group:not([data-select-color]) > .dropdown-toggle:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - .btn-group > .active { - text-decoration: none; - outline: 1px dotted transparent; } - .btn-group > .active:focus { - outline: 1px dotted #ffffff; } - -.btn-group.btn-fullwidth > .btn { - -ms-flex: 1; - flex: 1; } - -.btn-group[data-select-color] { - margin-top: 5px; - box-shadow: none; - -ms-flex-pack: start; - justify-content: flex-start; - -ms-flex-wrap: wrap; - flex-wrap: wrap; } - .btn-group[data-select-color] .btn { - border: 1px solid #959595; - border-radius: 4px; - box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.15); - margin-right: 10px; - margin-bottom: 10px; - height: 40px; - font-size: 16px; - color: #333333; - max-width: 60px; - min-width: 60px; - -ms-flex: 0; - flex: 0; } - .btn-group[data-select-color] > .btn.active:focus { - outline: 1px dotted #191919; - outline-offset: 4px; } - -button .btn-fill { - background-clip: padding-box; - border: 0; - border-radius: 4px; - bottom: 0; - display: block; - height: auto; - left: 0; - margin: 5px; - position: absolute; - right: 0; - top: 0; - width: auto; } - -button .btn-fill[style*="#fff"] { - border: 1px solid #d2d2d2; } - -[data-select-color] .btn.active { - background: none !important; - outline: 0; - margin-right: 10px; - border-width: 3px; - color: #333333; - line-height: 12px; } - [data-select-color] .btn.active > .btn-fill { - margin: 3px; } - [data-select-color] .btn.active:hover { - color: #333333; } - -[data-select-color] .btn:active { - background: none !important; - outline: 0; - margin-right: 10px; - border-width: 3px; - color: #333333; - line-height: 12px; } - [data-select-color] .btn:active > .btn-fill { - margin: 3px; } - [data-select-color] .btn:active:hover { - color: #333333; } - -.btn-group[data-select-color="orange"] > .btn.active { - border-color: #ea7400; } - -.btn-group[data-select-color="blue"] > .btn.active { - border-color: #0568ae; } - -.btn-group[data-select-color="green"] > .btn.active { - border-color: #007a3e; } - -.btn-spinbutton-toggle.btn-group { - display: block !important; - height: 40px !important; - margin-top: 5px; - max-width: 138px; - min-width: 138px; - white-space: nowrap; } - -.btn-spinbutton-toggle .btn { - border-radius: 6px; - font-weight: normal; - -ms-flex: unset; - flex: unset; - height: 40px; - letter-spacing: normal; - min-width: auto; - padding: 3px 0 0; - text-align: center; - min-width: 46px; - width: 46px; } - -.btn-spinbutton-toggle .btn[data-max-value] { - border-bottom: 1px solid #d2d2d2; - border-top: 1px solid #d2d2d2; - box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.08) inset; - background-color: #fff; - cursor: text; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 2rem; - font-weight: normal; - padding: 4px 0 0; - text-align: center; - min-width: 46px !important; - width: 46px; } - .btn-spinbutton-toggle .btn[data-max-value]:focus { - border-color: #0568ae; - outline: none; } - .btn-spinbutton-toggle .btn[data-max-value]:focus + .btn { - border-left: 1px solid #0568ae; - transition: border 0.3s linear 0s; } - -.btn-spinbutton-toggle .icon-primary-subtractminimize { - font-size: 30px !important; - color: #0568ae !important; } - -.btn-spinbutton-toggle .icon-primary-add-maximize { - font-size: 30px !important; - color: #0568ae !important; } - -.btn-spinbutton-toggle .btn[disabled].icon-primary-subtractminimize { - background-color: #d2d2d2; - color: #767676 !important; } - -.btn-spinbutton-toggle .btn[disabled].icon-primary-add-maximize { - background-color: #d2d2d2; - color: #767676 !important; } - -.btn-spinbutton-toggle input.btn[disabled] { - background-color: #d2d2d2; - color: #5a5a5a; - cursor: not-allowed; } - -.btn-group.btn-spinbutton-toggle .btn[disabled] + .btn[disabled] { - border-left: 1px solid #f0f0f0 !important; } - -.btn-group.btn-spinbutton-toggle .btn[data-max-value]:focus + .btn:not(:first-child) { - border-left: 1px solid #0568ae !important; } - -@media (max-width: 480px) { - .btn-group:not([data-select-color]) > .btn { - font-size: 1.3rem; - min-width: auto; } } - -.reset-field, -.close { - float: right; - background: none; - width: 34px; - height: 34px; - padding: 0; - overflow: hidden; - display: inline-block; } - -.reset-field { - display: none; } - -.reset-field:before { - font-size: 22px; - color: #5a5a5a; } - -.input-emphasized + .reset-field:before { - font-size: 29px; - color: #5a5a5a; } - -.reset-field:active, -.reset-field:hover, -.reset-field:focus { - display: block !important; } - -button.close { - border: 0; - appearance: none; } - -.corner-button { - box-shadow: 0 -50px 0 0 #f2f2f2 inset; - height: 69px; - /*overflow: hidden;*/ - position: absolute; - right: -35px; - top: -35px; - transform: rotate(45deg); - width: 69px; } - -.corner-button .close:before { - bottom: -7px; - color: #0568ae; - display: block; - font-size: 20px; - height: 50px; - left: -11px; - position: absolute; - width: 50px; } - -.corner-button .close { - float: none; - height: 45px; - margin: 0; - position: absolute; - right: 12px; - top: 45px; - transform: rotate(45deg); - width: 45px; } - -.corner-button .close:focus { - outline: 1px dotted black; } - -.ds2-no-colors .corner-button .close { - border: 1px solid black; } - -.field-group input + .reset-field { - background: none; - height: 36px; - width: 45px; - display: none; - padding: 0; - position: absolute; - right: 0; - top: 0; - box-shadow: none; - border: none; - content: " "; } - -.field-group input[type="search"] + .reset-field, -.field-group input[type="search"] + .btn-search + .reset-field, -.tooltip-onclick input + .reset-field, -.tooltip-onclick input + .icon-primary-tooltip + .reset-field, -.tooltip-onclick textarea + .reset-field, -.tooltip-onclick textarea + .icon-primary-tooltip + .reset-field { - right: 45px; } - -.field-group input[type="search"] + .reset-field:after, -.field-group input[type="search"] + .btn-search + .reset-field:after, -.tooltip-onclick input + .reset-field:after, -.tooltip-onclick input + .icon-primary-tooltip + .reset-field:after, -.tooltip-onclick textarea + .reset-field:after, -.tooltip-onclick textarea + .icon-primary-tooltip + .reset-field:after { - background-color: #d2d2d2; - content: ""; - display: block; - height: 20px; - position: absolute; - right: 0; - top: 8px; - width: 1px; } - -.tooltip-onclick input + .reset-field, -.tooltip-onclick input + .icon-primary-tooltip + .reset-field { - right: 50px !important; } - -.tooltip-onclick textarea + .reset-field, -.tooltip-onclick textarea + .icon-primary-tooltip + .reset-field { - right: 45px !important; - width: 40px; } - -.field-group input.input-emphasized + .reset-field { - width: 45px; - height: 46px; - right: 6px; } - -.field-group input.input-emphasized + .reset-field:after { - top: 14px; } - -.field-group [disabled] + .reset-field { - display: none; } - -.ds2_touchevents .field-group input + .reset-field:focus, -.ds2_touchevents .field-group input:focus + .reset-field, -.ds2_touchevents textarea:focus + .reset-field, -.ds2_touchevents textarea + .reset-field:focus { - display: block; - position: absolute; - right: 0px; - top: 0; - border: none; } - -.ds2_touchevents .field-group input { - padding: 8px 55px 8px 15px; - -webkit-appearance: none; } - -.ds2_touchevents textarea:focus { - padding: 15px 55px 15px 15px; } - -.ds2_touchevents textarea:focus + .reset-field { - border: none; - position: absolute; - right: 6px; - top: 5px; } - -.ds2_touchevents textarea.hasScrollbar:focus { - padding: 15px 35px 15px 15px; } - -.ds2_touchevents textarea.hasScrollbar:focus + .reset-field { - right: 22px; } - -.ds2-no-colors .b2b-tmpl-card-corner-button { - border: none !important; } - -.ds2-no-colors .b2b-tmpl-card-corner-button .close { - border: 1px solid black; - top: 0px !important; - right: 0px !important; } - -.form-row.error .error-msg { - display: block; - font-size: 14px; - line-height: 14px; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - position: relative; - padding-left: 18px; } - -.form-row.error .error-msg:before { - color: #cf2a2a; - font-size: 14px; - left: 0; - line-height: 14px; - position: absolute; - vertical-align: middle; } - -.form-row.error label, -.form-row.error .error-msg, -.form-row.error button.awd-select, -.form-row.error select.awd-select + span, -.form-row.error .checkbox, -.form-row.error .radio, -.form-row.error legend.error, -.form-row.error input { - color: #cf2a2a; } - -.form-row.error .btn-group > .btn, -.form-row.error button.awd-select, -.form-row.error .awd-select-list, -.form-row.error select.awd-select + span, -.form-row.error textarea, -.form-row.error input, -.form-row.error .checkbox .skin, -.form-row.error .radio .skin { - border-color: #cf2a2a !important; } - -.form-row.error .checkbox input:checked:not(:disabled) + .skin { - background-color: #cf2a2a; } - -.form-row.error .radio input:checked + .skin:after { - background-color: #cf2a2a; } - -.error .tooltip-onclick .icon-primary-tooltip.active + .error-msg { - margin-top: -11px; - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; } - -.error .tooltip-onclick .icon-primary-tooltip.active + .error-msg + .helpertext { - margin: 0 0 10px; } - -.error .tooltip-onclick .icon-primary-tooltip.active + .error-msg + .helpertext:before, -.error .tooltip-onclick .icon-primary-tooltip.active + .error-msg + .helpertext:after { - display: none; } - -.error .helpertext { - border-color: #cf2a2a; - /*border-radius:0;*/ } - -.error .helpertext:before { - border-top-color: #cf2a2a; } - -.error .tooltip-onfocus .helpertext { - margin: 14px 0 10px 0; } - -.error [class*="price"], -.error [class*="pricing-"] { - color: #cf2a2a; } - -input:-ms-clear { - display: none; } - -input[type]::-webkit-inner-spin-button, -input[type]::-webkit-outer-spin-button { - -webkit-appearance: none; } - -input[type] { - -moz-appearance: textfield; } - -form { - margin: 0; } - -fieldset { - padding: 0; - margin: 0; - border: 0; } - -label, -legend { - display: inline-block; - /* font-size: 1.4rem; */ - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - -legend { - display: block; } - -.error-msg { - display: none; } - -select, -textarea, -input { - border-radius: 6px; - color: #5a5a5a; - display: inline-block; - font-size: 1.6rem; - margin: 0px; - padding: 0 15px 0 15px; - vertical-align: middle; - line-height: normal; } - -select::-webkit-input-placeholder, -textarea::-webkit-input-placeholder, -input::-webkit-input-placeholder { - color: #5a5a5a; - font-family: "Omnes-ECOMP-W02-Italic", Arial; - font-style: normal; - opacity: 1; } - -select:-moz-placeholder, -textarea:-moz-placeholder, -input:-moz-placeholder { - color: #5a5a5a; - font-family: "Omnes-ECOMP-W02-Italic", Arial; - font-style: normal; - opacity: 1; } - -select::-moz-placeholder, -textarea::-moz-placeholder, -input::-moz-placeholder { - color: #5a5a5a; - font-family: "Omnes-ECOMP-W02-Italic", Arial; - font-style: normal; - opacity: 1; } - -select:-ms-input-placeholder, -textarea:-ms-input-placeholder, -input:-ms-input-placeholder { - color: #5a5a5a; - font-family: "Omnes-ECOMP-W02-Italic", Arial; - transition: none; - opacity: 1; } - -select:placeholder, -textarea:placeholder, -input:placeholder { - color: #5a5a5a; - font-family: "Omnes-ECOMP-W02-Italic", Arial; - font-style: normal; - opacity: 1; } - -select:last-child, -textarea:last-child, -input:last-child { - margin-right: 0; } - -input:not([type="button"]) { - height: 36px; } - -input.input-emphasized { - font-size: 1.8rem; - height: 48px; - padding: 13px 20px 13px; } - -input[type="search"]:focus { - padding-right: 88px; } - -input[type="search"] { - padding-right: 40px; - -webkit-appearance: none !important; } - -input[type="search"].input-emphasized { - padding-right: 45px; } - -.btn-search[class*="btn"] { - background-color: transparent; - background-position: 50% 50%; - background-size: 20px; - background-repeat: no-repeat; - border: none; - height: 100%; - margin-left: 0; - margin-top: 0; - min-width: 45px !important; - outline-offset: 0; - padding: 0 !important; - position: absolute; - right: 0; - top: 0; - border-radius: 0 5px 5px 0; - min-width: 44px; - width: 44px; } - -.input-emphasized + .btn-search[class*="btn"], -.input-emphasized + .reset-field + .btn-search[class*="btn"] { - background-size: 26px; - height: 46px; - top: 1px; - outline-offset: -3px; - margin-bottom: 0; - border-radius: 0 5px 5px 0; } - -input[type="search"].input-emphasized + .reset-field { - right: 45px !important; } - -.search-suggestion-wrapper { - position: relative; - margin-bottom: 15px; } - -/*styles from dropdown*/ -.search-suggestion-list { - box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); - border-radius: 0 0 6px 6px; - position: relative; - border: 1px solid #0568ae; - border-top: 0; - padding: 15px 0; - background-color: #f2f2f2; - z-index: 1000; - width: 100%; - max-height: 400px; - overflow-y: auto; } - -.search-suggestion-list:empty { - display: none; } - -.search-suggestion-item { - position: relative; - z-index: -1; - padding: 0 15px; - line-height: 4.0rem; - color: #5a5a5a; } - -.search-suggestion-item a { - text-decoration: none; - color: #5a5a5a; } - -.search-suggestion-item:hover, -.search-suggestion-item:focus { - cursor: pointer; - background-color: #d2d2d2; } - -input[data-provide="datepicker"], -[data-provide="datepicker"]:-moz-placeholder, -[data-provide="datepicker"]:-ms-input-placeholder, -[data-provide="datepicker"]:-webkit-input-placeholder { - color: #0568ae !important; - opacity: 1; - filter: alpha(opacity=100); } - -input[disabled], -input[readonly], -select[disabled], -select[readonly], -textarea[disabled], -textarea[readonly], -i.icon-primary-calendar.disabled, -span.icon-primary-calendar.readonly { - cursor: not-allowed; - background-color: #f2f2f2; - box-shadow: none; } - -i.icon-primary-calendar.disabled input, -span.icon-primary-calendar.readonly input { - color: #959595 !important; } - -textarea { - display: block; - width: 400px; - max-width: 400px; - padding: 15px; } - -textarea.small { - line-height: 20px; } - -textarea + .reset-field { - display: none; } - -textarea::-webkit-input-placeholder { - line-height: .99; } - -textarea:-moz-placeholder { - line-height: .99; } - -textarea::-moz-placeholder { - line-height: .99; } - -textarea:-ms-input-placeholder { - line-height: .99; } - -textarea:placeholder { - line-height: .99; } - -textarea, -input { - background-color: #ffffff; - border: 1px solid #d2d2d2; - -webkit-appearance: none; - box-shadow: 2px 3px 2px -2px rgba(0, 0, 0, 0.08) inset; - transition: border .3s linear 0s; - font-family: "Omnes-ECOMP-W02", Arial; } - -textarea:focus, -input:focus { - outline: 0; - border-color: #0568ae; } - -.input-append { - display: table; } - -.input-append > div { - display: table-cell; - width: 1%; } - -.input-append > .field-group { - width: 100%; } - -.row .field-group input[class*="span"] { - float: none; } - -.field-group { - position: relative; - display: inline-block; } - -label + .field-group, -label + .input-append, -label + .row, -label + .row-nowrap, -label + .form-row { - margin-top: 5px; } - -.field-group { - position: relative; - display: block; } - -.field-group input:not([type="button"])[disabled] { - padding-right: 15px; } - -input:invalid, -textarea:invalid, -select:invalid { - outline: none !important; } - -.form-row { - margin-top: 20px; } - -.form-row.nomar { - margin: 0; } - -.row-nowrap.no-flex.form-row > label + br { - margin-bottom: 5px; } - -span.form-row { - display: inline-block; } - -legend + .form-row { - margin-top: 20px; } - -.tooltip-onclick input { - padding-right: 45px; } - -.ds2_touchevents .tooltip-onclick input:focus { - padding-right: 95px; } - -.btn-calendar-icon { - position: absolute; - background-color: transparent !important; - top: 8px; - border: 0 !important; - width: 30px; - right: 15px; } - -.btn-calendar-icon .icon-primary-calendar:before { - position: absolute; - color: #0568ae; } - -.btn-calendar-icon .icon-primary-calendar.disabled { - background-color: #f2f2f2; } - -.btn-calendar-icon .icon-primary-calendar.disabled:before { - color: #959595; } - -span.icon-primary-calendar input { - padding-left: 35px; - color: #0568ae; - transition: border-color 0.3s linear 0s; - box-shadow: 2px 3px 2px -2px rgba(0, 0, 0, 0.08) inset; - position: absolute; - top: 0; - left: 0; } - -.faux-input + input.datepicker-input:not([disabled]) { - cursor: pointer; - margin-left: 0; - background-color: #fff; - position: absolute; - left: 0; - top: 0; - z-index: 0; } - -.faux-input { - background-color: transparent !important; - border: 1px solid transparent; - border-radius: 4px; - font-size: 1.6rem; - height: 35px; - left: 0; - line-height: 35px; - margin-bottom: 10px; - margin-right: 6px; - padding: 0 0 0 35px; - position: relative; - text-align: left; - top: 0; - vertical-align: middle; - width: 100%; - z-index: 1; } - -.faux-input:disabled { - cursor: not-allowed; } - -.faux-input:focus + .datepicker-input, -[data-calendar-state="opened"] + .datepicker-input { - border-color: #0568ae; - box-shadow: 2px 3px 2px -2px rgba(5, 116, 172, 0.35) inset; - outline: 0 none; } - -.form-row.error .error-msg { - display: block; - font-size: 14px; - line-height: 14px; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - position: relative; - padding-left: 18px; - margin-top: 10px; } - -.form-row.error .error-msg > .icon-primary-badgealert { - height: 14px; - width: 14px; - position: absolute; - left: 0; - margin-right: 0; } - -.form-row.error .error-msg > .icon-primary-badgealert:before { - color: #cf2a2a; - font-size: 14px; - left: 0; - line-height: 14px; - position: absolute; - vertical-align: middle; } - -.form-row.error label, -.form-row.error .error-msg, -.form-row.error button.awd-select, -.form-row.error select.awd-select + span, -.form-row.error .checkbox, -.form-row.error .radio, -.form-row.error legend.error, -.form-row.error input, -.form-row.error textarea { - color: #cf2a2a; } - -.form-row.error .btn-group > .btn, -.form-row.error button.awd-select, -.form-row.error .awd-select-list, -.form-row.error select.awd-select + span, -.form-row.error textarea, -.form-row.error input, -.form-row.error .checkbox .skin, -.form-row.error .radio .skin { - border-color: #cf2a2a !important; } - -.form-row.error .checkbox input:checked:not(:disabled) + .skin { - background-color: #cf2a2a; } - -.form-row.error .radio input:checked + .skin:after { - background-color: #cf2a2a; } - -.error [class*="price"], -.error [class*="pricing-"] { - color: #cf2a2a; } - -hr, -.hr-or { - display: block; - height: 1px; - margin: 15px 0; - border: none; - background-repeat: repeat-x; - background-color: #959595; - position: relative; } - -hr.dark { - background-color: #959595; } - -hr.lite { - background-color: #d2d2d2; } - -.hr-or:before { - background-color: #fff; - color: #666; - content: " OR "; - display: block; - font-size: 1.4rem; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - height: 16px; - left: 50%; - line-height: 1.6rem; - margin-left: -15px; - margin-top: -8px; - position: absolute; - text-align: center; - top: 50%; - width: 30px; - z-index: 1111; } - -hr.is-vertical.dark, -hr.hr-or.dark, -hr.is-vertical.lite, -hr.hr-or.lite { - display: inline-block; - height: auto; - margin: 0 15px; - min-height: 20px; - width: 1px; } - -hr.is-vertical.dark, -hr.hr-or.dark { - background-color: #959595; } - -hr.is-vertical.lite, -hr.hr-or.lite { - background-color: #d2d2d2; } - -.hr-dotted.is-vertical.dark, -.hr-dotted.is-vertical.lite { - background-color: transparent; - background-repeat: repeat-y; - background-size: 1px 4px; - height: auto; - min-height: 20px; - width: 1px; } - -.row-nowrap > .span + hr.is-vertical, -.row > .span + hr.is-vertical { - margin: 0 0 0 -20px; } - - - -hr.bottom-space-only { - margin-top: 0; } - -.hr-nomargin { - margin: 0; } - -.radio { - position: relative; - min-height: 24px; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 1.6rem; - margin-bottom: 5px; } - .radio input { - -webkit-tap-highlight-color: transparent; - height: 10px; - margin: 6px; - opacity: 0; - outline: none; - position: absolute; - left: 1px; - top: 1px; - width: 10px; } - .radio input:focus + .skin { - border-color: #0568ae; } - .radio input:focus + .skin:before { - content: ""; - height: 34px; - left: -6px; - top: -6px; - outline: 1px dotted #000000; - position: absolute; - width: 34px; } - .radio input + .skin { - border-radius: 100%; } - .radio input:checked + .skin:after { - background-color: #0568ae; - border-radius: 100%; - border: 3px solid #FFFFFF; - content: ""; - display: block; - height: 16px; - position: absolute; - width: 16px; } - .radio input:disabled + .skin { - cursor: not-allowed; - background-color: #d2d2d2; - border-color: #d2d2d2; - color: #666666; } - .radio input:disabled + .skin + span { - cursor: not-allowed; - color: #666666; } - .radio input:disabled:checked + .skin:after { - background-color: #666666; } - .radio input:invalid + .skin { - border: solid 1px #cf2a2a; } - .radio .skin { - background-color: #FFFFFF; - border: 1px solid #d2d2d2; - border-radius: 3px; - display: inline-block; - height: 24px; - left: 0; - position: absolute; - top: 0; - width: 24px; } - .radio span { - display: inline-block; - margin-left: 34px; - margin-top: 0; - position: relative; - top: 3px; } - .radio label { - font-size: 1.6rem; - font-family: "Omnes-ECOMP-W02", Arial; } - -.radio.inline { - display: inline-block; - margin-bottom: 10px; - vertical-align: middle; - margin-right: 10px; } - .radio.inline:last-child { - margin-right: 0; } - -.radio-box { - border: 1px solid #d2d2d2; - border-radius: 8px; } - .radio-box > [role="radio"] label { - padding: 15px 15px 20px 15px; - display: block; - width: 100%; } - .radio-box > [role="radio"] label .skin + span { - top: 2px; } - .radio-box > [role="radio"] + div { - padding: 0 15px 15px 47px; } - .radio-box > [aria-checked="false"] label > input { - top: 15px; - left: 15px; } - .radio-box > [aria-checked="false"] label .skin { - top: 15px; - left: 15px; } - .radio-box > [aria-checked="true"] label > input { - top: 13px; - left: 13px; } - .radio-box > [aria-checked="true"] label .skin { - top: 13px; - left: 13px; } - -.radio-box.active { - border: 3px solid #0568ae; } - .radio-box.active > [role="radio"] label { - padding: 13px 14px 19px 13px; } - -.checkbox { - position: relative; - min-height: 24px; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 1rem; - } - .checkbox input { - -webkit-tap-highlight-color: transparent; - height: 20px; - margin-left: 20px; - opacity: 0; - outline: none; - position: absolute; - left: 1px; - top: 1px; - width: 10px; } - .checkbox input:focus + .skin { - border-color: #0568ae; } - .checkbox input:focus + .skin:before { - content: ""; - height: 34px; - left: -6px; - top: -6px; - outline: 1px dotted #000000; - position: absolute; - width: 34px; } - .checkbox input:checked:not(:disabled) + .skin { - background-color: #0568ae; - border-color: #0568ae; } - .checkbox input:checked:disabled + .skin:after { - color: #5A5A5A; } - .checkbox input:checked + .skin:after { - height: 20px; - width: 10px; - background-color: transparent; - font-size: 23.4px; - color: #FFFFFF; - line-height: 21px; } - .checkbox input:disabled + .skin { - cursor: not-allowed; - background-color: #d2d2d2; - border-color: #d2d2d2; - color: #666666; } - .checkbox input:disabled + .skin + span { - cursor: not-allowed; - color: #666666; } - .checkbox input:invalid + .skin { - border: solid 1px #cf2a2a; } - .checkbox input:indeterminate + .skin:after { - background-color: transparent; - font-size: 25px; - color: #0574ac; - content: "\e920"; } - .checkbox .skin { - background-color: #fff; - border: 1px solid #d2d2d2; - border-radius: 3px; - display: inline-block; - height: 24px; - width: 24px; - position: absolute; - left: 0; - top: 0; } - .checkbox span { - display: inline-block; - margin-left: 34px; - margin-top: 0; - position: relative; - top: 3px; } - .checkbox label { - font-size: 1.6rem; - font-family: "Omnes-ECOMP-W02", Arial; } - .checkbox input { - z-index: 9999; } - .checkbox input.indeterminate + .skin:after { - font-size: 22px; - color: #0568ae; } - -/* .checkbox.inline { - display: inline-block; - margin-bottom: 10px; - vertical-align: middle; - margin-right: 10px; } - .checkbox.inline:last-child { - margin-right: 0; } - -.checkbox.checkbox-selectall { - margin: 20px 0 0 24px; } - -.terms-after-checkbox { - margin-top: 15px; } */ - -.indeterminate-margin { - padding-left: 24px; } - -.tiny-accordion { - border-bottom: 1px solid #d2d2d2; } - -.toggle-header, -.inactive-toggle-header { - border-color: #fff; - color: #0568ae; - cursor: pointer; - display: block; - font-size: 2.0rem; - line-height: 2.2rem; - min-height: 41px; - position: relative; - padding: 16px 55px 16px 15px; } - -.toggle-header.opened { - color: #333333; } - -.tiny-accordion .toggle-header, -.tiny-accordion .inactive-toggle-header { - padding: 16px 55px 16px 15px; - border-top: 1px solid #d2d2d2; } - -.tiny-accordion .toggle-header:focus { - text-decoration: underline; } - -.tiny-accordion.iconleft .toggle-header, -.tiny-accordion.iconleft .inactive-toggle-header { - padding: 15px 15px 15px 50px; } - -.accordion-content { - font-size: 1.4rem; } - -.accordion-content .toggle-header:first-child { - margin-top: 16px; } - -.tiny-accordion .toggle-header + .accordion-content { - padding: 0 50px 15px 15px; } - -.tiny-accordion.iconleft .toggle-header + .accordion-content { - padding: 0 15px 15px 50px; } - -.toggle-header .icon-primary-accordion-plus, -.toggle-header .icon-primary-accordion-minus { - display: inline-block; - font-size: 20px; - margin: 0; - padding: 0; - position: absolute; - right: 15px; - vertical-align: middle; - top: 16px; - font-weight: bold; } - -.tiny-accordion.iconleft .toggle-header .icon-primary-accordion-plus, -.tiny-accordion.iconleft .toggle-header .icon-primary-accordion-minus { - left: 15px; } - -.inactive-toggle-header:hover { - cursor: inherit; } - -.tiny-accordion-to-tabs, -.tiny-tabs { - position: relative; - width: 100%; - margin: 0px; - padding: 0px; } - -.tiny-tabs [class*="icon-primary-accordion-"] { - display: none !important; } - -.tiny-accordion-to-tabs:before, -.tiny-accordion-to-tabs:after, -.tiny-tabs:before, -.tiny-tabs:after { - display: table; - content: ""; - line-height: 0; } - -.tiny-accordion-to-tabs:after, -.tiny-tabs:after { - clear: both; } - -.tiny-accordion-to-tabs:before, -.tiny-accordion-to-tabs:after, -.tiny-tabs:before, -.tiny-tabs:after { - display: table; - content: ""; - line-height: 0; } - -.tiny-accordion-to-tabs:after, -.tiny-tabs:after { - clear: both; } - -.tiny-tabs > .toggle-header { - display: inline-block; - float: left; - border-top: none; - overflow: hidden; - height: 70px; - text-align: center; - background-color: #fff; - border-radius: 0px; - padding: 26px 20px 25px 20px !important; - border-top: 1px solid #fff; - -webkit-filter: none; - filter: none; - background-clip: padding-box; - border-bottom: 1px solid #d2d2d2; - font-weight: normal; - border-right: 1px solid #d2d2d2; - white-space: nowrap; } - -.tiny-tabs .toggle-header + div { - left: 0px; - position: absolute; - top: 69px; - border-top: 1px solid #d2d2d2; - padding: 0; - display: block; - border-bottom: none; - width: 100%; } - -.accordion-pad { - padding-top: 30px; - padding-bottom: 30px; } - -.tiny-tabs .opened { - color: #333333; - border-top: 5px solid #0568ae !important; - padding-top: 22px !important; - border-bottom: none; - background-color: #fff; - -webkit-filter: none; - filter: none; - cursor: default; - z-index: 999; } - -.tiny-tabs .toggle-header:focus { - text-decoration: underline; - outline: thin dotted #666; - outline-offset: 0; } - -.tiny-tabs .toggle-header:first-child { - border-left: none; - margin-left: 0; } - -.tiny-tabs .toggle-header:first-child { - border-left: 1px solid #fff; } - -.tiny-tabs .opened:first-child { - border-left: 1px solid #d2d2d2; } - -.tiny-tabs .toggle-header:nth-last-of-type(2) { - border-right-color: #fff; } - -.tiny-tabs .opened:nth-last-of-type(2) { - border-right: 1px solid #d2d2d2; } - -@media (max-width: 767px) { - .tiny-accordion, - .tiny-accordion-to-tabs { - margin-left: -15px; - margin-right: -15px; - width: auto; } - .tiny-accordion-to-tabs { - display: block; - border-bottom: 1px solid #d2d2d2; } - .tiny-accordion-to-tabs .toggle-header { - display: block; - min-height: 41px; - padding: 16px 50px 16px 15px; - border-top: 1px solid #d2d2d2; } - .tiny-accordion-to-tabs .toggle-header:focus { - text-decoration: underline; } - .tiny-accordion-to-tabs .toggle-header + .accordion-content { - padding: 0 50px 15px 15px; } } - -@media (min-width: 768px) { - .tiny-accordion-to-tabs [class*="icon-primary-accordion-"] { - display: none !important; } - .tiny-accordion-to-tabs > .toggle-header { - display: inline-block; - float: left; - border-top: none; - /*overflow: hidden;*/ - height: 70px; - text-align: center; - background-color: #fff; - border-radius: 0px; - padding: 26px 20px 25px 20px !important; - border-top: 1px solid #fff; - -webkit-filter: none; - filter: none; - background-clip: padding-box; - border-bottom: 1px solid #d2d2d2; - font-weight: normal; - border-right: 1px solid #d2d2d2; - white-space: nowrap; } - .tiny-accordion-to-tabs .toggle-header + div { - left: 0px; - position: absolute; - top: 69px; - border-top: 1px solid #d2d2d2; - padding-top: 30px; - padding-left: 20px; - display: block; - border-bottom: none; - width: 100%; } - .tiny-accordion-to-tabs .opened { - color: #333333; - border-top: 5px solid #0568ae !important; - padding-top: 22px !important; - border-bottom: none; - background-color: #fff; - -webkit-filter: none; - filter: none; - cursor: default; - text-decoration: none; - z-index: 999; } - .tiny-accordion-to-tabs .toggle-header:focus { - text-decoration: underline; - outline: thin dotted #666; - outline-offset: 0px; } - .tiny-accordion-to-tabs .toggle-header:nth-last-of-type(2) { - border-right: none; } - .tiny-accordion-to-tabs .toggle-header:first-child { - border-left: none; - margin-left: 0; } - .tiny-accordion-to-tabs .toggle-header:first-child { - border-left: 1px solid #fff; } - .tiny-accordion-to-tabs .opened:first-child { - border-left: 1px solid #d2d2d2; } - .tiny-accordion-to-tabs .opened:nth-last-of-type(2) { - border-right: 1px solid #d2d2d2; } } - -.toggle-header .tooltip .icon-primary-tooltip { - margin-top: -5px; } - -.accordion-content { - transition: all 0.8s linear; } - -.opaque-content { - opacity: 0; } - -.tiny-tabs .toggle-header { - display: inline-block; - float: left; - border-top: none; - overflow: hidden; - height: 70px; - text-align: center; - background-color: #fff; - border-radius: 0px; - padding: 22px 20px 25px 20px !important; - border-top: 5px solid #fff; - -webkit-filter: none; - filter: none; - background-clip: padding-box; - border-bottom: 1px solid #ccc; - font-weight: normal; - border-right: 1px solid #ccc; - white-space: nowrap; } - -.tiny-tabs .toggle-header:first-child { - margin-left: 0; } - -.tiny-tabs div:first-child .toggle-header { - margin-left: 30px; } - -.tiny-tabs > div .toggle-header.opened { - border-bottom: 0 !important; } - -.tiny-accordion-to-tabs > div > div.toggle-header { - background-clip: padding-box; - background-color: #fff; - border-bottom: 1px solid #ccc; - border-radius: 0; - border-top: 5px solid #fff; - display: inline-block; - filter: none; - float: left; - font-weight: normal; - overflow: hidden; - padding: 22px 20px 21px !important; - text-align: center; - white-space: nowrap; } - -.tiny-accordion-to-tabs .toggle-header:first-child { - margin-left: 0; } - -.tiny-accordion-to-tabs div:first-child .toggle-header { - margin-left: 30px; - border-bottom: 0 !important; } - -.tiny-accordion-to-tabs > div .toggle-header.opened { - border-bottom: 0 !important; } - -@media (max-width: 767px) { - .tiny-accordion-to-tabs { - display: block !important; - border-bottom: 1px solid #ccc !important; } - .tiny-accordion-to-tabs > div > div.toggle-header { - display: block !important; - float: none; - text-align: left; - min-height: 41px !important; - padding: 15px 50px 15px 15px !important; - border-top: 1px solid #ccc; } - .tiny-accordion-to-tabs > div > div.toggle-header:first-child { - margin-left: 0 !important; } - .tiny-accordion-to-tabs > div > div.toggle-header + .accordion-content { - padding: 0 50px 15px 15px; } - .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-plus { - background-position: 0 0; - background-size: 20px 40px; } - .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-minus { - background-position: 0 -20px; - background-size: 20px 40px; } - .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-plus, - .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-minus { - display: inline-block; - height: 20px; - margin: 0; - padding: 0; - position: absolute; - right: 15px; - vertical-align: middle; - width: 20px; } } - -.alert { - background-color: #5a5a5a; - border-radius: 8px; - color: #fff; - margin-top: 15px; - padding: 0; - position: relative; - border: 0; } - -.alert h3, -.alert h4 { - color: #fff; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 1.6rem; - margin: 0 20px 5px 0; } - -.alert div { - padding: 15px 20px; } - -.alert div:first-child { - border-radius: 8px 0 0 8px; - width: 1%; } - -.alert div:first-child + div { - border: 1px solid transparent; - border-left: none; - border-radius: 0 8px 8px 0; } - -.alert-error { - background-color: #cf2a2a; - border: 1px solid #cf2a2a; } - -.alert-info { - background-color: #44c8f5; - border: 1px solid #44c8f5; } - -.alert-success { - background-color: #c5d63d; - border: 1px solid #c5d63d; } - -.alert [class*="icon-primary-"] { - color: #fff; - font-size: 30px; - margin-right: 0; } - -.alert .close { - height: 30px; - position: absolute; - right: 1px; - top: 1px; - width: 30px; } - -.alert .close:before { - color: #fff; - margin-right: 0; - position: absolute; - right: 9px; - top: 9px; } - -.alert a { - color: #fff; - text-decoration: underline; } - -.alert .close:focus { - outline: 1px dotted #666; } - -.alert p { - font-size: 1.4rem; } - -.alert p:last-child { - margin-bottom: 0; } - -.alert .standalone-link i[class*="icon-primary-"] { - font-size: 20px; - margin-right: 5px; } - -@media (max-width: 767px) { - .alert { - border-radius: 0; - margin: 0 -15px; } - .alert + .alert { - margin-top: 4px; } - .alert div { - padding: 15px 10px; } - .alert div:first-child { - border-radius: 0; - padding: 15px; } - .alert h3, - .alert h4 { - font-size: 1.4rem; } - .alert p { - font-size: 1.2rem; } - .alert .close { - right: 5px; - top: 5px; } - .alert .standalone-link i[class*="icon-primary-"] { - font-size: 16px; } } - -.alert h3 { - margin: 0; - font-size: 16px; } - -.alert p { - font-size: 14px; } - -.alert p a { - color: #FFFFFF; - text-decoration: underline; } - -.alert div:first-child + div { - padding-right: 25px; } - -.alert div:last-child { - padding-right: 20px !important; } - -.alert p [class*="icon-primary-"] { - color: #fff; - font-size: 20px; - margin-right: 0; } - -@media (max-width: 767px) { - .alert h3 { - font-size: 14px; } - .alert div:first-child + div { - padding-right: 20px; } - .alert div:last-child { - padding-right: 15px !important; } - .alert div:first-child { - padding: 15px; } - .alert p { - font-size: 12px; } - .alert p [class*="icon-primary-"] { - font-size: 16px; } } - -.b2b-audio { - width: auto; - margin: 10px auto; - height: 35px; } - .b2b-audio .controls-wrapper { - display: inline-block; - font-size: 25px; - cursor: pointer; } - .b2b-audio .controls-wrapper i { - font-size: 25px; - margin-right: 0px; - color: #444; } - .b2b-audio .controls-wrapper i:hover { - color: #0574AC; } - .b2b-audio .seek-bar-container-wrapper { - display: inline-block; - outline: 0; - min-width: 180px; - margin-right: 10px; - margin-left: 10px; - height: 14px; - padding-top: 5px; } - .b2b-audio .seek-bar-container-wrapper .timing-container { - padding-top: 13px; - color: #333; - font-size: 12px; } - .b2b-audio .seek-bar-container-wrapper .timing-container .timing-container-left { - float: left; - line-height: 100%; } - .b2b-audio .seek-bar-container-wrapper .timing-container .timing-container-right { - float: right; - line-height: 100%; } - .b2b-audio .seek-bar-container-wrapper .timing-container .timing-container-spacer { - clear: both; } - .b2b-audio .seek-bar-tooltip { - text-align: center; - min-width: 76px; } - -.b2b-audio-popover { - width: 22px; } - .b2b-audio-popover .volume-popover { - height: 100px !important; - width: 6px !important; - margin: 7px auto; } - .b2b-audio-popover .min-label { - margin-top: 5px; } - -.b2b-audio-native { - width: auto; - height: auto; } - -.b2b-audio-recorder { - border: 1px solid #ccc; - box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.15); - height: 63px; - min-height: 63px; - min-width: 347px; } - .b2b-audio-recorder .b2b-elapsed-time { - margin: 23px 0 24px 15px; - font-size: 16px; - font-style: italic; - color: #767676; } - .b2b-audio-recorder .b2b-controls { - width: 68px; - cursor: pointer; } - .b2b-audio-recorder .b2b-controls i.icoControls-record { - font-size: 64px; - color: black; - float: right; - margin-right: 10px; } - .b2b-audio-recorder .b2b-controls i.icoControls-record:focus, .b2b-audio-recorder .b2b-controls i.icoControls-record:hover { - color: #0568ae; } - .b2b-audio-recorder .b2b-controls i.icoControls-stop { - font-size: 36px; - color: black; - float: right; - margin-right: 20px; - margin-top: 12px; } - .b2b-audio-recorder .b2b-controls i.icoControls-stop:focus, .b2b-audio-recorder .b2b-controls i.icoControls-stop:hover { - color: #0568ae; } - -.b2b-top-btn { - height: 36px; - width: 36px; - border-radius: 7px; } - -.b2b-top-btn > i { - position: absolute; - top: 13px; - left: 9px; - width: 11px; - height: 18px; } - -.b2b-badge { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - background-color: #5A5A5A; - border-radius: 12px; - color: #FFFFFF; - display: inline-block; - font-size: 1.5rem; - font-weight: normal; - height: 20px; - line-height: 0; - margin-top: 0; - min-width: 20px; - padding: 0 5px; - text-align: center; - vertical-align: baseline; } - .b2b-badge:empty { - display: none; } - -* + .b2b-heading-micro { - margin-top: 20px !important; } - -.b2b-heading-micro { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-weight: normal; - text-rendering: optimizeLegibility; - font-size: 1.2rem !important; - text-transform: uppercase !important; - margin-bottom: 20px !important; - line-height: 1.2 !important; } - -.b2b-no-colors .b2b-badge { - border: 1px solid transparent; } - -.btn > .b2b-badge { - margin-right: 5px; } - -a > .b2b-badge { - margin-right: 6px; - padding-top: 10px; } - -.b2b-badge-urgent { - background-color: #cf2a2a; } - -.bellyband-container { - margin: 0 -15px; } - -.bellyband-group { - width: auto; } - -.bellyband-link { - border-top: 1px solid #d2d2d2; } - -.bellyband-link a { - display: block; - height: 40px; - line-height: 40px; - padding: 0 15px; - position: relative; - text-decoration: none; } - -.bellyband-link a:hover > div span, -.bellyband-link a:focus > div span { - text-decoration: underline; } - -.bellyband-link a:after { - color: #666; - font-size: 2.3rem; - height: 20px; - position: absolute; - right: 5px; - top: 12px; - width: 18px; } - -.dark-bg .bellyband-link a:after { - color: white; } - -.bellyband-link img[src$="svg"].hidden-desktop, -.bellyband-link [class*="icon-primary-"].hidden-desktop { - display: inline-block !important; - float: left; - font-size: 24px; - height: 24px; - margin-right: 5px; - margin-top: 8px; - width: 24px; } - -.dark-bg .bellyband-link [class*="icon-primary-"].hidden-desktop, -.dark-bg .bellyband-link [class*="icon-primary-"].visible-desktop { - color: #fff; } - -.bellyband-link img[src$="svg"].visible-desktop { - display: none !important; } - -.bellyband-link p { - margin-top: -10px; - margin-left: 29px; - font-size: 1.4rem; - color: #666; } - -@media (min-width: 481px) and (max-width: 767px) { - .bellyband-container { - display: flex; - margin: 0; } - .bellyband-group { - align-content: flex-start; - align-items: stretch; - display: inline-flex; - flex-direction: column; - flex-wrap: wrap; - margin-top: 1px; - width: 100%; } - .bellyband-group .row { - display: flex !important; } - .bellyband-link { - padding-top: 0; - position: relative; - border-top: none; - margin-bottom: 20px; - width: 50%; } - .bellyband-link a { - height: inherit; - line-height: inherit; - display: flex; - padding: 0; } - .bellyband-link a:after { - display: none; } - .bellyband-link a span { - display: block; - padding-top: 10px; } - .bellyband-link p { - display: block; - padding: 0 15px 0 0; - margin-bottom: 0; - margin-left: 0; - margin-top: 0; } - .bellyband-link a:focus p { - text-decoration: none; } } - -@media (min-width: 768px) { - .bellyband-group { - margin: 0; - max-width: 100%; - display: flex; - flex-wrap: wrap; - justify-content: center; } - .bellyband-group .row { - display: block; } - .bellyband-group .row .span { - float: none; - margin-right: 0; - margin-bottom: 30px; - display: flex; - justify-content: space-between; } - .bellyband-link { - border-top: none; - flex: 0 0 auto; - margin-right: 0; - margin-bottom: 30px; } - .bellyband-link:last-child { - margin-right: 0; } - .bellyband-link a { - height: auto; - line-height: 1; - text-align: center; } - .bellyband-link a:after { - display: none; } - .bellyband-link img[src$="svg"].hidden-desktop, - .bellyband-link [class*="icon-primary-"].hidden-desktop { - display: none !important; } - .bellyband-link img[src$="svg"].visible-desktop, - .bellyband-link [class*="icon-primary-"].visible-desktop { - display: block !important; - font-size: 50px; - height: 50px; - margin-right: 0; - margin-top: 0; - margin-left: auto; - margin-right: auto; - width: auto; } - .bellyband-link a span { - display: block; - margin-top: 12px; - line-height: 2rem; } - .bellyband-link p { - display: block; - text-align: center; - margin-top: 6px; - margin-left: 0; - padding-left: 0 !important; - color: #666; - line-height: 1.8rem; } } - -@media (max-width: 480px) { - .bellyband-link-tall a { - height: auto; - padding: 0 40px 10px 15px; } - .bellyband-link-tall p { - line-height: 1.8rem; - margin-bottom: 0; } - .bellyband-link-tall > a:after { - margin-top: -8px; - top: 50%; } } - -.b2b-boardstrip { - display: inline-block; - width: 100%; - border-bottom: 1px solid #9d9d9d; - position: relative; - padding-top: 15px; } - .b2b-boardstrip .boardstrip-reel { - margin-bottom: 15px; } - .b2b-boardstrip .boardstrip-item--add { - border: 1px dashed #ccc; - background: #FFFFFF; - color: #0574ac; - width: 140px; - height: 80px; - font-size: 14px; - font-family: "Omnes-ECOMP-W02", Arial; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 3px; - position: absolute; - left: 29px; - top: 15px; } - .b2b-boardstrip .boardstrip-item--add:hover, .b2b-boardstrip .boardstrip-item--add:focus { - border: 2px solid #007A3E; - cursor: pointer; } - .b2b-boardstrip .boardstrip-item--add i { - font-size: 14px; - margin-left: auto; - margin-right: auto; - text-align: initial; } - .b2b-boardstrip .boardstrip-item--add .centered { - margin-left: auto; - margin-right: auto; - margin-top: 27px; - margin-bottom: 35px; - display: block; } - .b2b-boardstrip .board-viewport { - float: left; - margin-left: 210px; - max-height: 95px; - position: relative; - height: 95px; - overflow: hidden; - width: 0px; } - .b2b-boardstrip .board-viewport .boardstrip-container { - width: 0px; - margin-left: 0; - left: 0px; - position: absolute; - list-style: none; - -webkit-transition: left 1000ms; - transition: left 1000ms; } - .b2b-boardstrip .board-viewport .board-item { - width: 140px; - height: 80px; - border: 1px solid #ccc; - margin: 0 15px 15px 0; - background-color: #FFFFFF; - border-radius: 3px; - float: left; - overflow: hidden; } - .b2b-boardstrip .board-viewport .board-item:hover, .b2b-boardstrip .board-viewport .board-item:focus { - border: 2px solid #007A3E; - background-color: white; - cursor: pointer; } - .b2b-boardstrip .board-viewport .board-item .board-img { - width: 61px; - height: 40px; - margin: 0 auto; } - .b2b-boardstrip .board-viewport .board-item .board-img img { - max-width: 100%; } - .b2b-boardstrip .board-viewport .board-item .title { - text-align: center; - line-height: 16px; - color: #666; - font-size: 14px; - font-family: "Omnes-ECOMP-W02", Arial; - padding: 10px 0; } - .b2b-boardstrip .board-viewport .board-item.selected { - background-color: #FFFFFF; - border: 2px solid #0574ac; } - .b2b-boardstrip .board-viewport .board-item .board-caret { - cursor: default; - outline: 0; - position: absolute; - bottom: 7px; } - .b2b-boardstrip .board-viewport .board-item .board-caret .board-caret-indicator { - border-left: 8px solid transparent; - border-right: 8px solid transparent; - border-bottom: 8px solid #999; - width: 0px; - height: 0px; - position: absolute; - left: 61px; - bottom: -7px; } - .b2b-boardstrip .board-viewport .board-item .board-caret .board-caret-arrow-up { - width: 0px; - height: 0px; - border-style: solid; - border-width: 0 8px 8px 8px; - border-color: transparent transparent #FFFFFF transparent; - left: 61px; - position: absolute; } - .b2b-boardstrip .arrow { - font-size: 14px; - cursor: pointer; - color: #0574ac; } - .b2b-boardstrip .arrow:hover { - color: #0574ac; } - .b2b-boardstrip .arrow.disabled { - color: #767676 !important; - cursor: not-allowed; } - .b2b-boardstrip .prev-items { - display: inline-block; - margin-top: auto; - margin-bottom: auto; - margin-right: 15px; - position: absolute; - left: 0; - top: 45px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - -o-user-select: none; - user-select: none; } - .b2b-boardstrip .next-items { - display: inline-block; - margin-top: 30px; - margin-bottom: auto; - margin-left: 10px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - -o-user-select: none; - user-select: none; } - .b2b-boardstrip .centered { - display: table-cell; - text-align: center; - vertical-align: middle; } - -.breadcrumb { - padding: 10px 15px; - height: 40px; - list-style: none; - border-bottom: 1px solid #d2d2d2; - font-size: 1.2rem; - width: 100%; - z-index: 1000; } - -.breadcrumb > li { - position: relative; - display: inline-block; - margin-right: 15px; } - -.breadcrumb > li:after { - font-size: 8px; - margin-right: 0; - right: -8px; - color: #333333; } - -.breadcrumb > li:last-child { - color: #333333; } - -.breadcrumb > li:last-child:after { - content: ""; } - -.breadcrumb li > * { - float: none !important; - margin: 0; } - -.breadcrumb { - padding: 10px 15px !important; } - -/* ARROW */ -/* spanish */ -.datepicker { - background-color: #FFFFFF; - padding: 0; - border-radius: 5px; - direction: ltr; } - .datepicker > div { - display: none; } - .datepicker table { - -webkit-touch-callout: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - margin: 0 0 0 0; } - .datepicker td { - text-align: center; - display: block; - width: 30px; - height: 30px; - border: none; } - .datepicker td span { - display: block; - width: 23%; - height: 54px; - line-height: 54px; - float: left; - margin: 1%; - cursor: pointer; - border-radius: 4px; } - .datepicker td span:hover { - background: #eeeeee; } - .datepicker td span.disabled { - background: none; - color: #5A5A5A; - cursor: default; } - .datepicker td span.disabled:hover { - background: none; - color: #5A5A5A; - cursor: default; } - .datepicker td span.active { - color: #FFFFFF; - background-color: #0568ae; - border-color: #357ebd; } - .datepicker td span.active:hover { - color: #FFFFFF; - background-color: #0568ae; - border-color: #357ebd; } - .datepicker td span.active.disabled { - color: #FFFFFF; - background-color: #0568ae; - border-color: #357ebd; } - .datepicker th { - text-align: center; - display: block; - width: 30px; - height: 30px; - border: none; } - .datepicker tbody:focus { - outline: none; } - .datepicker td.day { - background-color: transparent; - color: #0568ae; - cursor: pointer; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 16px; - height: 34px; - line-height: 30rem; - margin: -2px -1px 0 0; - overflow: hidden; - text-align: center; - width: 42px; } - .datepicker:focus { - outline: 1px dotted #191919; - outline-offset: -2px; } - .datepicker th[tabindex]:focus { - outline-offset: -15px; } - .datepicker td.day.focused { - background: #ededed; - cursor: pointer; } - .datepicker td.day.focused.active { - background-color: #ededed; - color: #0568ae; } - .datepicker td.disabled { - font-family: "Omnes-ECOMP-W02", Arial; - color: #5A5A5A; - cursor: default; } - .datepicker td.disabled:hover { - font-family: "Omnes-ECOMP-W02", Arial; - color: #5A5A5A; - cursor: default; } - .datepicker td.disabled:hover .show-date { - font-family: "Omnes-ECOMP-W02", Arial; - color: #5A5A5A; } - .datepicker td.disabled .show-date { - font-family: "Omnes-ECOMP-W02", Arial; - color: #5A5A5A; } - .datepicker td.today { - color: #FFFFFF; - background-color: #0568ae; } - .datepicker td.today:hover { - color: #FFFFFF; - background-color: #0568ae; - color: #FFFFFF; - background-color: #0568ae; } - .datepicker td.today:active { - color: #FFFFFF; - background-color: #0568ae; } - .datepicker td.today:focus { - color: #FFFFFF; - background-color: #0568ae; } - .datepicker td.today.disabled { - color: #FFFFFF; - background-color: #0568ae; } - .datepicker td.today.active { - color: #FFFFFF; - background-color: #0568ae; } - .datepicker td.today.active:hover { - color: #FFFFFF; } - .datepicker td.selected { - color: #FFFFFF; - background-color: #95959500; } - .datepicker td.selected:hover { - color: #FFFFFF; - background-color: #95959500; } - .datepicker td.selected.disabled { - color: #FFFFFF; - background-color: #95959500; } - .datepicker td.active:not(.new) { - color: #FFFFFF; - border-color: #357ebd; } - .datepicker td.active:not(.new) .show-date { - color: #0568ae; - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - .datepicker td.active:hover:not(.new) { - color: #FFFFFF; - border-color: #357ebd; } - .datepicker td.active:hover:not(.new) .show-date { - color: #0568ae; - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - .datepicker .start-date .show-date { - background-color: #0568ae; - color: #FFFFFF !important; - border-radius: 5px 0 0 5px; - z-index: 1; } - .datepicker .start-date .show-date:before { - background-color: #0568ae; - content: ""; - display: block; - height: 26px; - left: 20px; - position: absolute; - width: 100%; - z-index: -1; } - .datepicker .between-date .show-date { - background-color: #0568ae; - color: #FFFFFF !important; } - .datepicker .between-date .show-date:before { - background-color: #0568ae; - content: ""; - display: block; - height: 26px; - left: 0; - position: absolute; - width: 100%; - z-index: -1; } - .datepicker .between-date:first-child .show-date:before { - background-color: #FFFFFF; - content: ""; - height: 26px; - position: absolute; - left: 0; - width: 8px; } - .datepicker .end-date .show-date { - background-color: #0568ae; - color: #FFFFFF !important; - border-radius: 0 5px 5px 0; } - .datepicker .end-date .show-date:before { - background-color: #0568ae; - content: ""; - display: block; - height: 26px; - left: -20px; - position: absolute; - width: 100%; - z-index: -1; } - .datepicker .end-date:first-child .show-date:after { - background-color: #FFFFFF; - content: ""; - height: 26px; - position: absolute; - left: 0; - width: 8px; } - .datepicker .end-date:first-child .show-date::before { - background-color: #FFFFFF; } - .datepicker tr td.start-date:last-child .show-date:after { - background-color: #FFFFFF; - content: ""; - height: 26px; - position: absolute; - right: 0; - width: 8px; } - .datepicker tr td.start-date:last-child:focus .show-date:after { - height: 30px; - width: 30px; - background-color: transparent; } - .datepicker tr td.start-date:first-child:focus .show-date:after { - height: 30px; - width: 30px; - background-color: transparent; } - .datepicker tr td.between-date:last-child .show-date:after { - background-color: #FFFFFF; - content: ""; - height: 26px; - position: absolute; - right: 0; - width: 8px; } - .datepicker tr td.between-date:last-child:focus .show-date:after { - height: 30px; - width: 30px; - background-color: transparent; } - .datepicker tr td.between-date:first-child:focus .show-date:after { - height: 30px; - width: 30px; - background-color: transparent; } - .datepicker tr td.end-date:last-child:focus .show-date:after { - height: 30px; - width: 30px; - background-color: transparent; } - .datepicker tr td.end-date:first-child:focus .show-date:after { - height: 30px; - width: 30px; - background-color: transparent; } - .datepicker th.datepicker-switch { - width: 198px; - font-size: 20px; - font-weight: normal; - cursor: default !important; } - .datepicker thead tr:first-child th { - cursor: pointer; - height: 60px; - line-height: 60px; } - .datepicker thead tr:first-child th.cw { - cursor: default; - background-color: transparent; } - .datepicker tfoot tr th { - cursor: pointer; - height: 60px; - line-height: 60px; - height: auto; - line-height: normal; } - .datepicker tfoot tr th li { - margin-bottom: 5px; } - .datepicker .prev { - color: transparent; - font-size: 0; - margin: 0 -1px -1px 0; - width: 46px; } - .datepicker .prev i { - color: #0568ae; - position: absolute; - font-size: 27px; - margin: 0; - top: 15px; - left: 8px; } - .datepicker .next { - color: transparent; - font-size: 0; - margin: 0 -1px -1px 0; - width: 46px; } - .datepicker .next i { - color: #0568ae; - position: absolute; - font-size: 27px; - margin: 0; - top: 15px; - right: 8px; } - .datepicker .cw { - font-size: 5px; - width: 12px; - padding: 0 2px 0 5px; - vertical-align: middle; } - .datepicker .due-date .show-date { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - background-color: #cf2a2a; - border-radius: 5px; - color: #FFFFFF !important; } - .datepicker .day.active .show-date:after { - border: 2px solid #0568ae; - border-radius: 7px; - content: ""; - display: block; - height: 30px; - left: 4px; - position: absolute; - top: 0; - width: 30px; } - .datepicker .day:focus .show-date:after { - border: 2px solid #0568ae; - border-radius: 7px; - content: ""; - display: block; - height: 30px; - left: 4px; - position: absolute; - top: 0; - width: 30px; - height: 30px; - left: 4px; - top: 0; - width: 30px; } - .datepicker .due-date.disabled .show-date:after { - border: 2px solid #0568ae; - border-radius: 7px; - content: ""; - display: block; - height: 30px; - left: 4px; - position: absolute; - top: 0; - width: 30px; } - .datepicker .day.due-date:focus .show-date:after { - height: 30px; - left: 4px; - top: 0; - width: 30px; } - .datepicker .due-date.old:after { - visibility: hidden; } - .datepicker .due-date.new:after { - visibility: hidden; } - .datepicker .due-date.active:after { - border-color: #FFFFFF; } - .datepicker .due-date.active.focused { - color: #0568ae !important; } - .datepicker .due-date.active.focused:after { - border-color: #cf2a2a !important; } - .datepicker .dow { - height: 24px; - width: 42px; - font-weight: normal; - position: relative; - overflow: hidden; - color: transparent; - letter-spacing: -6px; - margin: 0 -1px -1px 0; } - .datepicker .dow span[aria-hidden="true"] { - bottom: 0; - color: #5A5A5A; - display: block; - left: 1px; - letter-spacing: 0; - line-height: .9; - margin: 0 auto; - padding: 0; - position: relative; - width: 22px; } - .datepicker .calendar-legend { - margin-top: 3px; - margin-bottom: 20px; } - .datepicker .calendar-legend li { - font-size: 1.4rem; - font-weight: normal; - margin-bottom: 5px; - padding-left: 10px; - padding-top: 5px; - position: relative; } - .datepicker i.legend-due-date { - background-color: #cf2a2a; - border-radius: 5px; - height: 18px; - width: 18px; - margin-right: 8px; - vertical-align: middle; - display: inline-block; } - .datepicker i.legend-selected-date { - background-color: #FFFFFF; - border: 2px solid #0568ae; - border-radius: 5px; - height: 18px; - width: 18px; - margin-right: 8px; - vertical-align: middle; - display: inline-block; } - .datepicker i.legend-selectedisdue { - background-color: #FFFFFF; - border: 2px solid #0568ae; - border-radius: 5px; - display: inline-block; - height: 18px; - margin-right: 8px; - position: relative; - vertical-align: middle; - width: 18px; } - .datepicker i.legend-selectedisdue:after { - background-color: #cf2a2a; - border-radius: 3px; - content: ""; - display: block; - height: 10px; - left: 2px; - position: absolute; - top: 2px; - width: 10px; } - .datepicker .text-left { - width: 100%; } - .datepicker .active.old { - background-color: #ededed !important; - color: #ededed !important; } - -.datepicker-inline { - width: 220px; } - -.datepicker.datepicker-rtl { - direction: rtl; } - .datepicker.datepicker-rtl td span { - float: right; } - -.datepicker-dropdown { - top: 0; - left: 0; } - .datepicker-dropdown:before { - content: " "; - display: inline-block; - border-left: 10px solid transparent; - border-right: 10px solid transparent; - border-bottom: 10px solid #d2d2d2; - border-top: 0; - border-bottom-color: rgba(0, 0, 0, 0.2); - position: absolute; } - .datepicker-dropdown:after { - content: " "; - display: inline-block; - border-left: 10px solid transparent; - border-right: 10px solid transparent; - border-bottom: 10px solid #fff; - border-top: 0; - position: absolute; } - -.datepicker-dropdown.datepicker-orient-left:before { - left: 16px; } - -.datepicker-dropdown.datepicker-orient-left:after { - left: 16px; } - -.datepicker-dropdown.datepicker-orient-right:before { - right: 16px; } - -.datepicker-dropdown.datepicker-orient-right:after { - right: 16px; } - -.datepicker-dropdown.datepicker-orient-top:before { - top: -10px; } - -.datepicker-dropdown.datepicker-orient-top:after { - top: -9px; } - -.datepicker-dropdown.datepicker-orient-bottom:before { - bottom: -7px; - border-bottom: 0; - border-top: 7px solid #959595; } - -.datepicker-dropdown.datepicker-orient-bottom:after { - bottom: -6px; - border-bottom: 0; - border-top: 6px solid #fff; } - -.datepicker.days div.datepicker-days { - display: block; } - -.datepicker.months div.datepicker-months { - display: block; } - -.datepicker.years div.datepicker-years { - display: block; } - -.show-date { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - color: #0568ae; - height: 26px; - line-height: 26px; - margin: 4px auto 0; - width: 26px; } - -.input-group.date .input-group-addon i { - cursor: pointer; - width: 16px; - height: 16px; } - -.datepicker.dropdown-menu { - box-shadow: 0 10px 15px -10px rgba(0, 0, 0, 0.7); - position: absolute; - top: 100%; - left: 0; - float: left; - display: none; - margin-top: 13px; - width: 290px; - list-style: none; - background-color: #FFFFFF; - border: 1px solid #d2d2d2; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 5px; - color: #333333; - font-size: 13px; - line-height: 1.428571429; - z-index: 1050; } - .datepicker.dropdown-menu th { - display: block; - float: left; - padding: 0; - position: relative; } - .datepicker.dropdown-menu td { - display: block; - float: left; - padding: 0; - position: relative; } - -.s { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: #FFFFFF; - background-repeat: no-repeat; - background-position: -62px 0; } - -.m { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: #FFFFFF; - background-repeat: no-repeat; - background-position: -5px 0; } - -.t { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: #FFFFFF; - background-repeat: no-repeat; - background-position: -19px 0; } - -.w { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: #FFFFFF; - background-repeat: no-repeat; - background-position: -34px 0; } - -.f { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: #FFFFFF; - background-repeat: no-repeat; - background-position: -49px 0; } - -.d { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: #FFFFFF; - background-repeat: no-repeat; - background-position: 0 0; } - -.l { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: #FFFFFF; - background-repeat: no-repeat; - background-position: 0 0; } - -.v { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: #FFFFFF; - background-repeat: no-repeat; - background-position: 0 0; } - -.j { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: #FFFFFF; - background-repeat: no-repeat; - background-position: 0 0; } - -.b2b-coachmark-label { - z-index: 1060; - opacity: 1; - cursor: not-allowed; - position: relative; } - -.b2b-coachmark-highlight { - border: 1px solid #d3d3d3; - cursor: default; - z-index: 1045; - opacity: 1; - background-color: #ffffff; - border-radius: 10px; - position: relative; - box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.25); - padding: 10px; - position: absolute; } - -.b2b-coachmark-highlight-mask { - z-index: 1100; - opacity: .1; } - -.b2b-coachmark-container { - border: 1px solid #cccccc; - width: 316px; - pointer-events: auto; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - font-size: 16px; - -webkit-transition: opacity .2s ease-out; - -moz-transition: opacity .2s ease-out; - transition: opacity .2s ease-out; - background: #fff; - border-radius: 20px; - box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.15); - color: #333; - line-height: 20px; - position: absolute; - top: 50px; - left: -97px; - display: block; - background-color: #ffffff; - z-index: 1050; - opacity: 1; } - .b2b-coachmark-container i.b2b-coachmark-caret { - position: absolute; - top: -12px; - left: 47%; - opacity: 1; - z-index: 1050; } - .b2b-coachmark-container i.b2b-coachmark-caret:before { - content: ""; - border-left: 12px solid transparent; - border-right: 12px solid transparent; - border-bottom: 12px solid #d3d3d3; - position: absolute; - top: -1px; } - .b2b-coachmark-container i.b2b-coachmark-caret:after { - content: ""; - border-left: 12px solid transparent; - border-right: 12px solid transparent; - border-bottom: 12px solid #fff; - position: absolute; } - .b2b-coachmark-container .b2b-coachmark-header { - position: relative; - height: 47px; - overflow: hidden; } - .b2b-coachmark-container .b2b-coachmark-header .corner-button { - box-shadow: 0 -24px 0 0 #f2f2f2 inset; - height: 69px; - position: absolute; - right: -33px; - top: -38px; - transform: rotate(45deg); - width: 69px; } - .b2b-coachmark-container .b2b-coachmark-countlabel { - font-size: 12px; - font-family: "Omnes-ECOMP-W02", Arial; - color: #333333; - margin-left: 20px; - margin-top: 20px; } - .b2b-coachmark-container .b2b-coachmark-content { - padding: 0px 20px 20px 20px; - float: left; } - .b2b-coachmark-container .b2b-coachmark-content .icon-misc-dimmer { - font-size: 32px; - float: left; - margin-right: 10px; - width: 32px; } - .b2b-coachmark-container .b2b-coachmark-content .offscreen-text { - position: absolute; - left: -10000px; - top: auto; - width: 1px; - height: 1px; - overflow: hidden; } - .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-content-header { - font-size: 16px; - color: #333333; - line-height: 18px; - float: left; - width: 220px; } - .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-description { - font-size: 14px; - line-height: 18px; - color: #333333; - width: 100%; - float: left; - margin-top: 15px; } - .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-btn-group { - margin-top: 20px; - float: left; - text-align: right; - width: 100%; } - .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-btn-group .b2b-coachmark-link { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 15px; - color: #0574ac; - line-height: 18px; - margin-right: 20px; } - .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-btn-group button { - font-size: 15px; - margin: 0px; } - -.datepicker { - background-color: #fff; - padding: 0; - border-radius: 5px; - direction: ltr; } - -.datepicker-inline { - width: 220px; } - -.datepicker.datepicker-rtl { - direction: rtl; } - -.datepicker.datepicker-rtl td span { - float: right; } - -.datepicker-dropdown { - top: 0; - left: 0; } - -/* ARROW */ -.datepicker-dropdown:before { - content: " "; - display: inline-block; - border-left: 10px solid transparent; - border-right: 10px solid transparent; - border-bottom: 10px solid #d2d2d2; - border-top: 0; - border-bottom-color: rgba(0, 0, 0, 0.2); - position: absolute; } - -.datepicker-dropdown:after { - content: " "; - display: inline-block; - border-left: 10px solid transparent; - border-right: 10px solid transparent; - border-bottom: 10px solid #fff; - border-top: 0; - position: absolute; } - -.datepicker-dropdown.datepicker-orient-left:before, -.datepicker-dropdown.datepicker-orient-left:after { - left: 255px; } - -.datepicker-dropdown.datepicker-orient-right:before, -.datepicker-dropdown.datepicker-orient-right:after { - right: 16px; } - -.datepicker-dropdown.datepicker-orient-top:before { - top: -10px; } - -.datepicker-dropdown.datepicker-orient-top:after { - top: -9px; } - -.datepicker-dropdown.datepicker-orient-bottom:before { - bottom: -7px; - border-bottom: 0; - border-top: 7px solid #959595; } - -.datepicker-dropdown.datepicker-orient-bottom:after { - bottom: -6px; - border-bottom: 0; - border-top: 6px solid #fff; } - -.datepicker > div { - display: none; } - -.datepicker.days div.datepicker-days { - display: block; } - -.datepicker.months div.datepicker-months { - display: block; } - -.datepicker.years div.datepicker-years { - display: block; } - -.datepicker table { - -webkit-touch-callout: none; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - margin: 0 0 0 0; } - -.datepicker td, -.datepicker th { - text-align: center; - display: block; - width: 30px; - height: 30px; - border: none; } - -.datepicker tbody :focus { - outline: none; } - -.datepicker td.day { - background-color: transparent; - color: #0568ae; - cursor: pointer; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 16px; - height: 34px; - line-height: 30rem; - margin: -2px -1px 0 0; - overflow: hidden; - text-align: center; - width: 42px; } - -.datepicker :focus { - outline: 1px dotted #000; - outline-offset: -2px; } - -.datepicker td.day.focused { - background: #ededed; - cursor: pointer; } - -.datepicker td.day.focused.active { - background-color: #ededed; - color: #0568ae; } - -.datepicker td.disabled, -.datepicker td.disabled:hover { - font-family: "Omnes-ECOMP-W02", Arial; - color: #5a5a5a; - cursor: default; } - -.datepicker td.today, -.datepicker td.today:hover, -.datepicker td.today.disabled { - color: #fff; - background-color: #0568ae; } - -.datepicker td.today.active, -.datepicker td.today:active, -.datepicker td.today:hover, -.datepicker td.today:focus { - color: #fff; - background-color: #0568ae; } - -.datepicker td.today.active:hover { - color: #fff; } - -.datepicker td.selected, -.datepicker td.selected:hover, -.datepicker td.selected.disabled { - color: #ffffff; - background-color: #959595; } - -.datepicker td.active:not(.new), -.datepicker td.active:hover:not(.new) { - color: #ffffff; - border-color: #357ebd; } - -.show-date { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - color: #0568ae; - height: 26px; - line-height: 26px; - margin: 4px auto 0; - width: 26px; } - -.datepicker .start-date .show-date, -.datepicker .between-date .show-date, -.datepicker .end-date .show-date { - background-color: #0568ae; - color: #fff !important; } - -.datepicker .start-date .show-date { - border-radius: 5px 0 0 5px; - z-index: 1; } - -.datepicker .start-date .show-date:before { - background-color: #0568ae; - content: ""; - display: block; - height: 26px; - left: 20px; - position: absolute; - width: 100%; - z-index: -1; } - -.datepicker .between-date .show-date:before { - background-color: #0568ae; - content: ""; - display: block; - height: 26px; - left: 0; - position: absolute; - width: 100%; - z-index: -1; } - -.datepicker .end-date .show-date { - border-radius: 0 5px 5px 0; } - -.datepicker .end-date .show-date:before { - background-color: #0568ae; - content: ""; - display: block; - height: 26px; - left: -20px; - position: absolute; - width: 100%; - z-index: -1; } - -.datepicker .between-date:first-child .show-date:before { - background-color: #fff; - content: ""; - height: 26px; - position: absolute; - left: 0; - width: 8px; } - -.datepicker .end-date:first-child .show-date:after { - background-color: #fff; - content: ""; - height: 26px; - position: absolute; - left: 0; - width: 8px; } - -.datepicker .end-date:first-child .show-date::before { - background-color: #fff; } - -.datepicker tr td.start-date:last-child .show-date:after, -.datepicker tr td.between-date:last-child .show-date:after { - background-color: #fff; - content: ""; - height: 26px; - position: absolute; - right: 0; - width: 8px; } - -.datepicker tr td.start-date:last-child:focus .show-date:after, -.datepicker tr td.end-date:last-child:focus .show-date:after, -.datepicker tr td.between-date:last-child:focus .show-date:after, -.datepicker tr td.start-date:first-child:focus .show-date:after, -.datepicker tr td.end-date:first-child:focus .show-date:after, -.datepicker tr td.between-date:first-child:focus .show-date:after { - height: 30px; - width: 30px; - background-color: transparent; } - -.datepicker td.active:not(.new) .show-date, -.datepicker td.active:hover:not(.new) .show-date { - color: #0568ae; - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - -.datepicker td.disabled .show-date, -.datepicker td.disabled:hover .show-date { - font-family: "Omnes-ECOMP-W02", Arial; - color: #5a5a5a; } - -.datepicker td span { - display: block; - width: 23%; - height: 54px; - line-height: 54px; - float: left; - margin: 1%; - cursor: pointer; - border-radius: 4px; } - -.datepicker td span:hover { - background: #eeeeee; } - -.datepicker td span.disabled, -.datepicker td span.disabled:hover { - background: none; - color: #5a5a5a; - cursor: default; } - -.datepicker td span.active, -.datepicker td span.active:hover, -.datepicker td span.active.disabled { - color: #ffffff; - background-color: #0568ae; - border-color: #357ebd; } - -.datepicker th.datepicker-switch { - width: 198px; - font-size: 20px; - font-weight: normal; - cursor: default !important; } - -.datepicker thead tr:first-child th, -.datepicker tfoot tr th { - cursor: pointer; - height: 60px; - line-height: 60px; } - -.datepicker tfoot tr th { - height: auto; - line-height: normal; } - -.datepicker tfoot tr th li { - margin-bottom: 5px; } - -.datepicker .prev, -.datepicker .next { - color: transparent; - font-size: 0; - margin: 0 -1px -1px 0; - width: 46px; } - -.datepicker .prev i, -.datepicker .next i { - color: #0568ae; - position: absolute; - font-size: 27px; - margin: 0; - top: 15px; } - -.datepicker .prev i { - left: 8px; } - -.datepicker .next i { - right: 8px; } - -.datepicker .cw { - font-size: 5px; - width: 12px; - padding: 0 2px 0 5px; - vertical-align: middle; } - -.datepicker thead tr:first-child th.cw { - cursor: default; - background-color: transparent; } - -.input-group.date .input-group-addon i { - cursor: pointer; - width: 16px; - height: 16px; } - -.datepicker.dropdown-menu { - box-shadow: 0 10px 15px -10px rgba(0, 0, 0, 0.7); - position: absolute; - top: 100%; - left: 0; - float: left; - display: none; - margin-top: 13px; - width: 290px; - list-style: none; - background-color: #ffffff; - border: 1px solid #d2d2d2; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 5px; - color: #333333; - font-size: 13px; - line-height: 1.428571429; - z-index: 1050; } - -.datepicker.dropdown-menu th, -.datepicker.dropdown-menu td { - display: block; - float: left; - padding: 0; - position: relative; } - -.datepicker .due-date .show-date { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - background-color: #cf2a2a; - border-radius: 5px; - color: #fff !important; } - -.datepicker .day.active .show-date:after, -.datepicker .day:focus .show-date:after, -.datepicker .due-date.disabled .show-date:after { - border: 2px solid #0568ae; - border-radius: 7px; - content: ""; - display: block; - height: 30px; - left: 4px; - position: absolute; - top: 0; - width: 30px; } - -.datepicker .day:focus .show-date:after { - height: 30px; - left: 4px; - top: 0; - width: 30px; } - -.datepicker .day.due-date:focus .show-date:after { - height: 30px; - left: 4px; - top: 0; - width: 30px; } - -.datepicker .due-date.old:after, -.datepicker .due-date.new:after { - visibility: hidden; } - -.datepicker .due-date.active:after { - border-color: #fff; } - -.datepicker .due-date.active.focused { - color: #0568ae !important; } - -.datepicker .due-date.active.focused:after { - border-color: #cf2a2a !important; } - -.datepicker .dow { - height: 24px; - width: 42px; - font-weight: normal; - position: relative; - overflow: hidden; - color: transparent; - letter-spacing: -6px; - margin: 0 -1px -1px 0; } - -.datepicker .dow span[aria-hidden="true"] { - bottom: 0; - color: #5a5a5a; - display: block; - left: 1px; - letter-spacing: 0; - line-height: .9; - margin: 0 auto; - padding: 0; - position: relative; - width: 22px; } - -.datepicker .calendar-legend { - margin-top: 3px; - margin-bottom: 20px; } - -.datepicker .calendar-legend li { - font-size: 1.4rem; - font-weight: normal; - margin-bottom: 5px; - padding-left: 10px; - padding-top: 5px; - position: relative; } - -.datepicker i.legend-due-date { - background-color: #cf2a2a; - border-radius: 5px; - height: 18px; - width: 18px; - margin-right: 8px; - vertical-align: middle; - display: inline-block; } - -.datepicker i.legend-selected-date { - background-color: #fff; - border: 2px solid #0568ae; - border-radius: 5px; - height: 18px; - width: 18px; - margin-right: 8px; - vertical-align: middle; - display: inline-block; } - -.datepicker i.legend-selectedisdue { - background-color: #fff; - border: 2px solid #0568ae; - border-radius: 5px; - display: inline-block; - height: 18px; - margin-right: 8px; - position: relative; - vertical-align: middle; - width: 18px; } - -.datepicker i.legend-selectedisdue:after { - background-color: #cf2a2a; - border-radius: 3px; - content: ""; - display: block; - height: 10px; - left: 2px; - position: absolute; - top: 2px; - width: 10px; } - -.datepicker .text-left { - width: 100%; } - -.datepicker .active.old { - background-color: #ededed !important; - color: #ededed !important; } - -.s, -.m, -.t, -.w, -.f, -.d, -.l, -.v, -.j { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: white; - background-repeat: no-repeat; } - -.s { - background-position: -62px 0; } - -.m { - background-position: -5px 0; } - -.t { - background-position: -19px 0; } - -.w { - background-position: -34px 0; } - -.f { - background-position: -49px 0; } - -/* spanish */ -.d { - background-position: 0 0; } - -.l { - background-position: 0 0; } - -.v { - background-position: 0 0; } - -.j { - background-position: 0 0; } - -.datepicker-container { - position: relative; } - -.btn-calendar-icon:focus .icon-primary-calendar { - outline: 1px dotted #191919; } - -.btn-calendar-icon:focus { - outline: none; } - -/* remove focus outline when dropdown is opened */ -/*resolve blue focus outline over dropdown with error*/ -select { - margin-right: -1; - max-width: 400px; - height: 36px; - line-height: 25px; - width: 400px; - background-color: #95959521; } - -.selectWrap.disabled .icon-primary-down { - color: #d6d6d6; } - -.selectWrap.disabled input.awd-select { - z-index: 0; - padding: 10px 45px 10px 15px; - text-indent: 0; } - -.selectWrap.disabled button.awd-select { - z-index: 0; - text-indent: 15px; } - -.selectWrap.disabled:after { - color: #5A5A5A; - cursor: not-allowed; } - -input.awd-select { - background-color: transparent; - border: 1px solid #d2d2d2; - border-radius: 6px; - box-shadow: 1px 5px 2px -5px rgba(0, 0, 0, 0.15); - color: #333333; - display: block; - font-family: "Omnes-ECOMP-W02", Arial; - /*font-size: 1.6rem;*/ - height: 36px; - line-height: 0; - margin-bottom: 0; - position: relative; - text-align: left; - top: 0; - width: 100%; - z-index: 10; - padding: 12px 45px 8px 15px; - user-select: none; } - input.awd-select:focus { - border-color: #0568ae !important; - text-overflow: ellipsis; - padding-right: 45px; } - -button.awd-select { - background-color: transparent; - border: 1px solid #d2d2d2; - border-radius: 6px; - box-shadow: 1px 5px 2px -5px rgba(0, 0, 0, 0.15); - color: #333333; - display: block; - font-family: "Omnes-ECOMP-W02", Arial; - /*font-size: 1.6rem;*/ - height: 36px; - line-height: 36px; - margin-bottom: 0; - position: relative; - text-align: left; - top: 0; - width: 100%; - z-index: 10; } - button.awd-select:not(.large) { - text-indent: 15px; - white-space: nowrap; - overflow: hidden; - text-overflow: clip; - text-overflow: ellipsis; } - button.awd-select img { - height: 26px; - margin-right: 7px; - margin-top: -10px; - position: relative; - top: 2px; - vertical-align: text-bottom; } - button.awd-select:focus { - border-color: #0568ae !important; } - button.awd-select i { - font-size: 23px; - position: absolute; - right: 33px; - top: 5px; - z-index: 1000; } - -button.awd-select.large { - align-items: center; - display: flex; - height: 60px; - line-height: 20px; - overflow: hidden; - padding-left: 70px; - vertical-align: middle; } - button.awd-select.large img { - height: 40px; - left: 20px; - position: absolute; - top: 20px; - width: 40px; } - -.selectWrap.large { - height: 60px; } - .selectWrap.large .awd-select-list-item { - align-items: center; - display: flex; - height: 60px; - line-height: 20px; - overflow: hidden; - padding-left: 70px; - vertical-align: middle; } - .selectWrap.large .awd-select-list-item img { - height: 40px; - left: 20px; - position: absolute; - top: 20px; - width: 40px; - top: 10px; } - - .inputWrap { - border-radius: 6px; - position: relative; - height: 36px; - line-height: 44px; - display: block; - margin: 0; - } - -button.awd-select.active { - border-radius: 6px 6px 0 0; } - button.awd-select.active:focus { - border-color: #d2d2d2 !important; } - -input.awd-select.active { - border-radius: 6px 6px 0 0; } - input.awd-select.active:focus { - border-color: #d2d2d2 !important; } - -.selectWrapper { - position: relative; } - -span.selectWrap input[readonly]:focus { - color: transparent; - text-shadow: 0 0 0 #000; } - -.isIE.ds2-no-colors .awd-select:focus { - outline: 1px dashed transparent; } - -.awd-select-list { - box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); - border-radius: 0 0 6px 6px; - position: absolute; - border: 1px solid #d2d2d2; - border-top: 0; - padding: 0; - background-color: #f2f2f2; - z-index: 1000; - width: 100%; - max-height: 320px; - overflow-y: auto; } - -.awd-select-list-item { - cursor: pointer; - height: 100%; - min-height: 36px; - line-height: 20px; - overflow: hidden; - padding: 8px 15px; - position: relative; - z-index: 1000; } - .awd-select-list-item:hover { - cursor: pointer; - background-color: #d2d2d2; - outline: 1px dashed transparent; } - .awd-select-list-item:focus { - cursor: pointer; - background-color: #d2d2d2; - outline: 1px dashed transparent; } - .awd-select-list-item img { - margin-top: 0; - margin-right: 7px; - height: 26px; - width: 26px; } - -.selectWrap { - border-radius: 6px; - position: relative; - height: 36px; - line-height: 28px; - display: block; - margin: 0; - background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); - background: -webkit-linear-gradient(top, #fcfcfc 0%, #f2f2f2 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="@att-gray-highlight", endColorstr="@att-functional-bg-gray", GradientType=0); } - .selectWrap:not(.large) .awd-select-list-item:first-child { - margin-top: 15px; } - .selectWrap:not(.large) .awd-select-list-item:last-child { - margin-bottom: 15px; } - .selectWrap .icon-primary-down { - font-size: 23px; - margin-top: -11px; - position: absolute; - right: 4px; - top: 50%; } - .selectWrap + [aria-expanded="true"] { - padding-bottom: 9px; - padding-top: 20px; } - -.awd-select-list-item[data-hover="true"] { - background-color: #d2d2d2; } - -span input.awd-select { - width: 100%; - cursor: pointer; - text-overflow: ellipsis; - padding-right: 45px; } - -li.optgroup-wrapper { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - cursor: default !important; - padding: 0px 15px; } - li.optgroup-wrapper:first-child { - padding-top: 10px; } - li.optgroup-wrapper:hover { - background-color: #f2f2f2; } - -ul.optgroup { - font-family: "Omnes-ECOMP-W02", Arial; - cursor: pointer !important; - margin: 0 -15px; } - ul.optgroup li { - padding: 0 0 0 33px; } - -label + .selectWrap { - margin-top: 4px; } - -.selectorModule { - border-radius: 6px; - position: relative; - height: 36px; - line-height: 28px; - display: block; - margin: 0; - background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); - background: -webkit-linear-gradient(top, #fcfcfc 0%, #f2f2f2 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="@att-gray-highlight", endColorstr="@att-functional-bg-gray", GradientType=0); } - -.group .selectWrap { - margin: 0 0 10px 0; } - -select.awd-select { - position: relative; - top: 0; - left: 0; - font-size: 16px; - z-index: 1010; - height: 33px; - min-width: 100%; - opacity: 0.01; } - select.awd-select > optgroup { - padding-left: 8px; - font-style: normal; - margin-top: 10px; } - select.awd-select > optgroup:first-child { - margin-top: 0; } - select.awd-select > optgroup > option { - padding-left: 8px; } - select.awd-select > option { - padding-left: 8px; } - select.awd-select + span { - background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); - background: -webkit-linear-gradient(top, #fcfcfc 0%, #f2f2f2 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="@att-gray-highlight", endColorstr="@att-functional-bg-gray", GradientType=0); - position: absolute; - top: 0; - left: 0; - z-index: 0; - display: block; - border: 1px solid #d2d2d2; - border-radius: 6px; - height: 35px; - line-height: 0; - padding: 18px 45px 15px 15px; - width: 100%; - font-size: 1.6rem; - padding-right: 45px; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; } - select.awd-select + span > i { - font-size: 23px; - position: absolute; - right: 33px; - top: 5px; - z-index: 1000; } - select.awd-select + span > i:before { - left: 1px; - position: absolute; - top: -1px; } - select.awd-select:focus + span { - border-color: #0568ae; } - -.isIE select.awd-select + span { - line-height: 1; } - -[data-default-option="true"] { - color: #767676 !important; - font-family: "Omnes-ECOMP-W02-Italic", Arial; } - -.placeholdercolor { - color: #767676 !important; - font-family: "Omnes-ECOMP-W02-Italic", Arial; } - -.filterTank button.awd-select { - border-color: #d2d2d2; - background-color: #333333; - color: #FFFFFF; - color: #333333; } - .filterTank button.awd-select:after { - background-color: #FFFFFF !important; - border-color: #d2d2d2; } - -.utility-bg button.awd-select { - border-color: #d2d2d2; - background-color: #333333; - color: #FFFFFF; - color: #333333; } - .utility-bg button.awd-select:after { - background-color: #FFFFFF !important; - border-color: #d2d2d2; } - -.utility-bg select.awd-select + span { - border-color: #d2d2d2; - border-color: #d2d2d2; - background-color: #333333; - background-color: #333333; - color: #FFFFFF; - color: #FFFFFF; } - .utility-bg select.awd-select + span:after { - background-color: #FFFFFF !important; - background-color: #FFFFFF !important; - border-color: #d2d2d2; - border-color: #d2d2d2; } - -.utility-bg select.awd-select:focus + span { - border-color: #d2d2d2; - border-color: #d2d2d2; - background-color: #333333; - background-color: #333333; - color: #FFFFFF; - color: #FFFFFF; } - .utility-bg select.awd-select:focus + span:after { - background-color: #FFFFFF !important; - background-color: #FFFFFF !important; - border-color: #d2d2d2; - border-color: #d2d2d2; } - -.utility-bg select.awd-select:hover + span { - border-color: #d2d2d2; - border-color: #d2d2d2; - background-color: #333333; - background-color: #333333; - color: #FFFFFF; - color: #FFFFFF; } - .utility-bg select.awd-select:hover + span:after { - background-color: #FFFFFF !important; - background-color: #FFFFFF !important; - border-color: #d2d2d2; - border-color: #d2d2d2; } - -input.awd-select[disabled] { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - input.awd-select[disabled] + span { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - -button.awd-select[disabled] { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - button.awd-select[disabled]:after { - background-color: #d2d2d2 !important; - border-color: #d2d2d2; } - -select.awd-select[disabled] + span { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - select.awd-select[disabled] + span:after { - background-color: #d2d2d2 !important; - border-color: #d2d2d2; } - -select.awd-select[disabled]:focus + span { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - -select.awd-select[disabled]:hover + span { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - -input.awd-select[disabled="disabled"] { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - input.awd-select[disabled="disabled"] + span { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - -select.awd-select[disabled="disabled"] + span { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - select.awd-select[disabled="disabled"] + span:after { - background-color: #d2d2d2 !important; - border-color: #d2d2d2; } - -select.awd-select[disabled="disabled"]:focus + span { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - select.awd-select[disabled="disabled"]:focus + span:after { - background-color: #d2d2d2 !important; - border-color: #d2d2d2; } - -select.awd-select[disabled="disabled"]:hover + span { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - select.awd-select[disabled="disabled"]:hover + span:after { - background-color: #d2d2d2 !important; - border-color: #d2d2d2; } - -.ddexpand-wrapper > h2 { - margin-bottom: 11px; } - .ddexpand-wrapper > h2 + p { - margin-bottom: 4px; } - -.ddexpand-wrapper .selectWrap + [aria-expanded="true"] .form-row { - margin-top: 11px; } - -.ddexpand-wrapper .selectWrap + [aria-expanded="true"] .row + .row .form-row { - margin-top: 14px; } - -.modal .awd-select-list { - z-index: 1060 !important; } - -.form-row.error button.awd-select.active:focus { - border-color: #cf2a2a !important; } - -.form-row.error input.awd-select.active:focus { - border-color: #cf2a2a !important; } - -.awd-module-list .module-list-item[aria-selected="true"] { - background-color: #f2f2f2; } - -li.module-list-item[aria-selected="true"]:before { - color: #0568ae; - display: inline-block; - font-family: "icoControls" !important; - font-style: normal; - font-size: 20px; - font-weight: normal; - font-variant: normal; - height: 1em; - margin-right: 7px; - text-transform: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - position: relative; - speak: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - vertical-align: middle; - width: 1em; - content: "\e907"; - box-sizing: border-box; - display: inline-block; - font-size: 2em; - height: 1em; - position: absolute; - top: 20px; - right: 0px; - vertical-align: middle; - width: 1em; - color: #007a3e; } - -@media (min-width: 768px) { - span[class*="large"] { - max-width: 370px; } - .large { - max-width: 370px; } } - -@media (max-width: 767px) { - .selectWrap.large:after { - right: 5px; } - .selectWrap.large .awd-select-list-item { - padding-right: 41px; } - .selectWrap + div > h4 { - margin-bottom: 0; - font-size: 16px; } } - -/**********************Dropdown Chrome scrolling fix start ********************/ -input.awd-select { - -webkit-user-select: text; - -moz-user-select: text; - -ms-user-select: text; - user-select: text; } - -/**********************Dropdown Chrome scrolling fix end ********************/ -.mpc-expanders { - border-bottom: 1px solid #e4e4e4; - border-top: 1px solid #e4e4e4; } - -.mpc-expanders + .mpc-expanders { - border-top: 0px; } - -.mpc-expanders .heading-medium { - margin-bottom: 10px; } - -.mpc-expanders .p-small { - margin-top: 5px; } - -.mpc-expander-body { - border-top: 1px solid #e4e4e4; } - -.mpc-expander-body .mpc-expanders { - border-bottom: 1px solid #e4e4e4; - border-top: 0; } - -.mpc-expander-body .mpc-expanders:last-child { - border-bottom: 0px; } - -.ddh-blue { - color: #0574ac; } - -.b2b-dragdrop { - border: 1px dashed #bbb; - border-radius: 5px; - padding: 0; - text-align: center; - color: #bbb; - position: relative; } - -.b2b-dragdrop-over { - background: #0091d9; - color: #006496; } - .b2b-dragdrop-over:after { - content: "Drop the file"; - color: #fff; - width: 80px; - height: 20px; - overflow: hidden; - margin: auto; - position: absolute; - top: 0; - left: 0; - bottom: 0; - right: 0; } - -.b2b-file-container { - position: relative; - overflow: hidden; - display: inline-table; - font-weight: 400; } - .b2b-file-container [type=file] { - position: absolute; - cursor: inherit; - display: block; - font-size: 0; - opacity: 0; - height: 0; - width: 0; - left: 0; - top: 0; - -ms-filter: "alpha(Opacity=0)"; } - -.b2b-upload-link { - color: #0568ae; } - -.b2b-flyout { - position: relative; - display: inline-block; - cursor: default; } - -.b2b-flyout-icon { - cursor: pointer; } - .b2b-flyout-icon:focus { - outline: thin dotted #666; - outline-offset: -1px; } - -.b2b-flyout .b2b-flyout-container { - border: 1px solid #d3d3d3; - width: 300px; - padding: 20px; - pointer-events: auto; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - font-size: 16px; - -webkit-transition: opacity .2s ease-out; - -moz-transition: opacity .2s ease-out; - transition: opacity .2s ease-out; - background: #fff; - border-radius: 6px; - box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.25); - color: #333; - line-height: 20px; - position: absolute; - top: 35px; - opacity: 0; - z-index: 1010; - display: none; } - .b2b-flyout .b2b-flyout-container.open-flyout { - opacity: 1; - display: block; } - -.b2b-flyout i.b2b-flyout-caret { - position: absolute; - top: -8px; - left: 50%; - opacity: 0; - z-index: 1011; - display: none; } - .b2b-flyout i.b2b-flyout-caret.open-flyout { - opacity: 1; - display: block; } - .b2b-flyout i.b2b-flyout-caret:before { - content: ""; - border-left: 8px solid transparent; - border-right: 8px solid transparent; - border-bottom: 8px solid #d3d3d3; - position: absolute; - top: -1px; } - .b2b-flyout i.b2b-flyout-caret:after { - content: ""; - border-left: 8px solid transparent; - border-right: 8px solid transparent; - border-bottom: 8px solid #fff; - position: absolute; } - -.b2b-flyout .b2b-flyout-container.b2b-flyout-left i.b2b-flyout-caret { - left: 16px !important; } - -.b2b-flyout .b2b-flyout-container.b2b-flyout-right i.b2b-flyout-caret { - left: inherit !important; - right: 30px !important; } - -.b2b-flyout .b2b-flyout-container.b2b-flyout-above { - box-shadow: 0 -5px 6px 0 rgba(0, 0, 0, 0.25); } - .b2b-flyout .b2b-flyout-container.b2b-flyout-above i.b2b-flyout-caret { - top: auto; - bottom: 0px; } - .b2b-flyout .b2b-flyout-container.b2b-flyout-above i.b2b-flyout-caret:before { - top: auto; - bottom: -9px; - border-top: 8px solid #d3d3d3; - border-bottom: none; } - .b2b-flyout .b2b-flyout-container.b2b-flyout-above i.b2b-flyout-caret:after { - border-top: 8px solid #fff; - border-bottom: none; } - -.b2b-flyout .b2b-flyout-container.b2b-flyout-centerLeft i.b2b-flyout-caret { - left: inherit !important; - right: -7px !important; - top: 8px; - transform: rotate(90deg); } - -.b2b-flyout .b2b-flyout-container.b2b-flyout-centerRight i.b2b-flyout-caret { - left: -8px !important; - top: 296px; - transform: rotate(-90deg); } - -.b2b-flyout .buttons-group { - margin-top: 20px; } - .b2b-flyout .buttons-group .cta-button-group { - width: 100%; - border-top: 1px solid #ccc; - padding: 20px 0 0; } - .b2b-flyout .buttons-group .cta-button-group button { - margin-bottom: 0; } - -.b2b-flyout .heading { - font-size: 20px; - margin-bottom: 10px; } - -.b2b-flyout .body-text { - font-size: 14px; - margin-bottom: 30px; } - -.b2b-footer-wrapper { - width: 100%; - background-color: #222; } - -.b2b-footer-container { - width: 980px; - margin: 0 auto; - padding-top: 15px; } - .b2b-footer-container .footer-columns { - display: inline-block; - text-align: left; - vertical-align: top; } - .b2b-footer-container .footer-columns.three-column, .b2b-footer-container .footer-columns.four-column, .b2b-footer-container .footer-columns.five-column { - padding-top: 30px; } - .b2b-footer-container .footer-columns.three-column { - width: 33.3%; - padding-left: 75px; } - .b2b-footer-container .footer-columns.four-column { - width: 25%; - padding-left: 75px; } - .b2b-footer-container .footer-columns.five-column { - width: 20%; } - .b2b-footer-container .footer-columns .b2b-footer-header { - color: #009fdb; - font-size: 18px; - font-style: normal; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - line-height: 23.9px; - margin: 0; } - .b2b-footer-container .footer-columns li { - padding: 7.5px 0; } - .b2b-footer-container .footer-columns ul li:first-child { - padding-top: 15px; } - .b2b-footer-container .footer-columns li a { - color: #fff; - font-size: 16px; - font-family: "Omnes-ECOMP-W02", Arial; } - .b2b-footer-container .footer-nav-content { - padding-bottom: 10px; } - .b2b-footer-container .footer-nav-content li { - display: inline; - font-size: 14px; - color: #fff; - vertical-align: middle; } - .b2b-footer-container .footer-nav-content li a { - color: #fff; - font-size: 14px; - vertical-align: middle; - margin-right: 5px; - font-family: "Omnes-ECOMP-W02", Arial; } - -.b2b-footer-wrapper .b2b-footer-container hr { - background: #d2d2d2; - margin-top: 50px; } - -.b2b-footer-wrapper .divider-bottom-footer { - padding: 45px 0 50px 0; } - -.b2b-footer-wrapper .footerLogo { - margin: 10px 0 0 0px; - vertical-align: top; } - .b2b-footer-wrapper .footerLogo div { - display: inline-block; } - .b2b-footer-wrapper .footerLogo .icon-primary-att-globe { - font-size: 40px; } - .b2b-footer-wrapper .footerLogo .logo-title { - color: #fff; - margin-left: 10px; - display: inline-block; - font-size: 26px; - margin-top: 0px; } - -.b2b-footer-wrapper .copyright-text { - color: #fff; - font-size: 11px; - text-align: left; - font-family: "Omnes-ECOMP-W02", Arial; } - .b2b-footer-wrapper .copyright-text a { - color: #fff; - text-decoration: underline; - display: inline-block; } - .b2b-footer-wrapper .copyright-text a:hover { - text-decoration: none; } - -@media (max-width: 768px) { - .b2b-footer-wrapper { - padding: 0 15px; } - .b2b-footer-container { - width: 100%; } - .b2b-footer-container .footer-columns.three-column, .b2b-footer-container .footer-columns.four-column, .b2b-footer-container .footer-columns.five-column { - width: 50%; } - .b2b-footer-wrapper .divider-bottom-footer { - padding-top: 15px; } - .b2b-footer-wrapper .divider-bottom-footer .footer-links { - width: 100%; } - .b2b-footer-wrapper .footerLogo { - margin: 30px 0 0 0; } - .b2b-footer-wrapper .footerLogo .footer-logo { - margin: 0; - padding-left: 10px; } } - -.b2b-header-tabs { - background-color: #222; - width: 100%; - position: relative; - height: 45px; } - .b2b-header-tabs .icon-primary-att-globe { - color: #0568ae; } - .b2b-header-tabs a:focus { - border: 1px solid white; } - .b2b-header-tabs .header__items { - width: 980px; - margin: 0 auto; - display: block; - list-style: none; - padding: 6px 0px 0px 0px; - border-spacing: 30px 0; } - .b2b-header-tabs .header__item { - display: inline-block; - text-align: left; - width: auto; - font-size: 16px; - font-family: "Omnes-ECOMP-W02", Arial; - cursor: pointer; - padding: 5px 15px; - color: #fff; } - .b2b-header-tabs .header__item.b2b-headermenu { - padding: 0; } - .b2b-header-tabs .header__item.b2b-headermenu:last-child { - background: none; } - .b2b-header-tabs .header__item.b2b-headermenu a.menu__item { - color: #fff; - text-decoration: none; - display: inline-block; - padding: 5px 15px; } - .b2b-header-tabs .header__item.active { - background-color: #fff; - border-radius: 2px; - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; } - .b2b-header-tabs .header__item.active a.menu__item { - color: #0578ae; } - .b2b-header-tabs li:focus { - outline: 2px solid #0578ae; } - .b2b-header-tabs .header__item .header-secondary-wrapper, .b2b-header-tabs .header__item .header-tertiary-wrapper { - background-color: #fff; - position: absolute; - width: 100%; - left: 0; - top: 42px; - border-bottom: solid 1px #ccc; - -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); - -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); - box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); - display: none; - z-index: 111; } - .b2b-header-tabs .header-secondary, .b2b-header-tabs .header-tertiary { - background-color: #fff; - width: 980px; - margin: 0 auto; } - .b2b-header-tabs .header__item.active .header-secondary-wrapper { - display: block; } - .b2b-header-tabs .header-secondary .header-subitem { - display: inline-block; - width: auto; - margin: 0 15px; } - .b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary-wrapper { - display: block; } - .b2b-header-tabs .header-secondary .header-subitem a.menu__item { - display: inline-block; - padding: 15px 0; - color: #333; } - .b2b-header-tabs .header-secondary .header-subitem a.menu__item:hover, .b2b-header-tabs .header-secondary .header-subitem a.menu__item:focus { - color: #0578ae; } - -/** Secondary Menu **/ -.b2b-labelhide { - position: absolute; - clip: rect(1px, 1px, 1px, 1px); } - -/** Tertiary Level Menu **/ -.b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { - position: absolute; - z-index: 111; - top: 25px; } - .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after, .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { - content: ''; - border-left: 8px solid transparent; - border-right: 8px solid transparent; - position: absolute; - -webkit-transition: left .2s ease-out; - -moz-transition: left .2s ease-out; - transition: left .2s ease-out; } - .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after { - border-bottom: 8px solid #fff; - top: 10px; } - .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { - border-bottom: 8px solid #ccc; - top: 9px; } - -.b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary { - border-top: solid 1px #ccc; } - -.b2b-header-tabs .header-tertiary:after { - content: ''; - clear: both; - display: block; } - -.b2b-header-tabs .header-tertiary li { - display: inline-block; - padding: 0; - float: left; } - .b2b-header-tabs .header-tertiary li a { - color: #333; - display: block; - padding: 10px 15px; } - .b2b-header-tabs .header-tertiary li label { - text-align: left; - display: block; - font-size: 16px; - font-weight: bold; - color: #857B7B; - padding: 15px 0 0 15px; } - -.b2b-header-tabs .header__item.skip { - padding: 0; - display: inline-block; - cursor: default !important; } - .b2b-header-tabs .header__item.skip a { - color: transparent; - font-size: 12px; - line-height: 15px; - text-decoration: none; } - .b2b-header-tabs .header__item.skip a:focus { - color: #fff; - outline: 2px solid #0578ae; } - -.b2b-header-tabs .selectWrap { - min-width: 150px; } - .b2b-header-tabs .selectWrap button.awd-select { - height: 30px; - line-height: 31px; - font-size: 1rem; - display: inline-block; } - .b2b-header-tabs .selectWrap .awd-select-list { - background-color: #fff; - color: #333; - -webkit-transition: opacity .2s ease-out; - -moz-transition: opacity .2s ease-out; - transition: opacity .2s ease-out; - box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176); } - -@media (max-width: 768px) { - .b2b-header-tabs { - padding: 0 15px; } - .b2b-header-tabs .header__items, .b2b-header-tabs .header-secondary, .b2b-header-tabs .header-tertiary { - width: 100%; } - .b2b-header-tabs .header__item { - padding: 5px 0; } - .b2b-header-tabs .globe-text { - display: none; } - .b2b-header-tabs .header__item.b2b-headermenu a.menu__item { - padding: 5px 7px 9px 7px; } - .b2b-header-tabs .header__item .header-tertiary-wrapper { - top: 30px; } - .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { - top: 14px; } - .b2b-header-tabs .header__item .header-secondary-wrapper { - top: 45px; } - .b2b-header-tabs .header__item.profile { - padding-left: 15px; - float: none; } } - -/************* Header - Start *************/ -.b2b-header-tabs { - background-color: #222; - width: 100%; - position: relative; - height: 45px; } - -.b2b-header-tabs .icon-primary-primary-att-globe { - color: #0568ae; - font-size: 34px; - bottom: 1px; } - -/* - *TODO: delete below .icon-primary-att-globel will not be used - *instead the one above, icon-primary-primary-att-globe not available here - */ -.b2b-header-tabs .icon-primary-att-globe { - color: #0568ae; - font-size: 34px; } - -.b2b-header-tabs .globe-text { - margin-left: 20px; - font-size: 2rem; } - -.b2b-header-tabs .header__items { - width: 980px; - margin: 0 auto; - display: block; - list-style: none; - border-spacing: 30px 0; - padding: 3px 0px 0px 0px; } - -.b2b-header-tabs .header__item { - display: inline-block; - text-align: left; - width: auto; - font-size: 14px; - font-family: "Omnes-ECOMP-W02", Arial; - cursor: pointer; - padding: 0 15px 4px 15px; - /*margin-top:-3px;*/ - color: #fff; } - -.b2b-header-tabs .header__item.b2b-headermenu { - padding: 0; } - -.b2b-header-tabs .header__item.b2b-headermenu a.menu__item { - color: #fff; - text-decoration: none; - display: inline-block; - padding: 8px 15px 12px 15px; - font-size: 16px; } - -.b2b-header-tabs .header__item.active { - background-color: #fff; - border-radius: 2px; - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; } - -.b2b-header-tabs .header__item.active a.menu__item { - color: #0578ae; } - -.b2b-header-tabs li:focus { - outline: 2px solid #0578ae; } - -/** profile pop Over **/ -.b2b-header-tabs .header__item.profile { - position: relative; - float: right; } - -/** Secondary Menu **/ -.b2b-header-tabs .header__item .header-secondary-wrapper, .b2b-header-tabs .header__item .header-tertiary-wrapper { - background-color: #fff; - position: absolute; - width: 100%; - left: 0; - top: 42px; - border-bottom: solid 1px #ccc; - -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); - -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); - box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); - display: none; - z-index: 111; } - -.b2b-header-tabs .header-secondary, .b2b-header-tabs .header-tertiary { - background-color: #fff; - width: 980px; - margin: 0 auto; } - -.b2b-header-tabs .header__item.active .header-secondary-wrapper, -.b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary-wrapper { - display: block; } - -.b2b-header-tabs .header-secondary .header-subitem { - display: inline-block; - width: auto; - margin: 0 15px; } - -.b2b-header-tabs .header-secondary .header-subitem a.menu__item { - display: inline-block; - padding: 15px 0; - color: #333; - font-size: 14px; } - -.b2b-header-tabs .header-secondary .header-subitem a.menu__item:hover, .b2b-header-tabs .header-secondary .header-subitem a.menu__item:focus { - color: #0578ae; } - -.b2b-label-hide { - position: absolute; - clip: rect(1px, 1px, 1px, 1px); } - -/** Tertiary Level Menu **/ -.b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after, -.b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { - content: ''; - border-left: 8px solid transparent; - border-right: 8px solid transparent; - position: absolute; - -webkit-transition: left .2s ease-out; - -moz-transition: left .2s ease-out; - transition: left .2s ease-out; } - -.b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { - position: absolute; - z-index: 111; - top: 25px; } - -.b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after { - border-bottom: 8px solid #fff; - top: 10px; } - -.b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { - border-bottom: 8px solid #ccc; - top: 9px; } - -/** Tertiary Level Menu **/ -.b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary { - border-top: solid 1px #ccc; } - -.b2b-header-tabs .header-tertiary:after { - content: ''; - clear: both; - display: block; } - -.b2b-header-tabs .header-tertiary li { - display: inline-block; - padding: 0; - float: left; } - -.b2b-header-tabs .header-tertiary li a { - color: #333; - display: block; - padding: 7px 15px; - max-width: 228px; } - -.b2b-header-tabs .header-tertiary li label { - text-align: left; - display: block; - font-size: 14px !important; - font-weight: bold; - color: #857B7B; - padding: 15px 0 0 15px; } - -/** Quarternary Level Menu **/ -.b2b-header-tabs .header-quarternary { - width: 100%; - float: left; } - -.b2b-header-tabs .header-quarternary li { - padding-left: 15px; - font-family: "Omnes-ECOMP-W02", Arial; - display: none; } - -.b2b-header-tabs .header-quarternary li.active { - display: block; } - -.b2b-header-tabs .header-quarternary li a { - color: #666666; - font-size: 14px; - padding: 0px 10px 10px 10px; } - -/** Skip Navigation**/ -.b2b-header-tabs .header__item.skip { - padding: 0; - display: inline-block; - cursor: default !important; } - -.b2b-header-tabs .header__item.skip a { - color: transparent; - font-size: 12px; - line-height: 15px; - text-decoration: none; } - -.b2b-header-tabs .header__item.skip a:focus { - color: #fff; - outline: 2px solid #0578ae; } - -/** Dropdown css inside Header ****/ -.b2b-header-tabs .selectWrap { - min-width: 150px; } - -.b2b-header-tabs .selectWrap button.awd-select, .b2b-header-tabs .selectWrap input.awd-select { - height: 36px; - line-height: 31px; - font-size: 1rem; - display: inline-block; } - -.b2b-header-tabs .selectWrap .awd-select-list { - background-color: #fff; - color: #333; - -webkit-transition: opacity .2s ease-out; - -moz-transition: opacity .2s ease-out; - transition: opacity .2s ease-out; - box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176); } - -/* - * responsive header media queries - */ -@media screen and (max-width: 1100px) { - .b2b-header-tabs .globe-text { - display: none; } - .b2b-header-tabs .header__item.profile { - padding-left: 15px; - float: none; } - .b2b-header-tabs .header__items { - padding-top: 0px; } } - -@media screen and (max-width: 950px) { - .header__item.profile { - top: 20px; } - .b2b-header-tabs { - height: 90px; } - .header__item .selectWrap { - bottom: 15px; } - .b2b-header-tabs .header__items { - padding-top: 25px; } - .b2b-header-tabs .header__item .header-secondary-wrapper, .b2b-header-tabs .header__item .header-tertiary-wrapper { - top: 80px; } - .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { - top: 35px; } - .b2b-header-tabs .header__item.b2b-headermenu a.menu__item { - padding-bottom: 30px; } - .b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary { - margin-top: -28px; } } - -/*************** Header - END ******************/ -.hp-container { - display: block; - max-width: 408px; } - .hp-container i:focus { - outline: thin dotted #666; } - .hp-container .icon-misc-pen { - cursor: pointer; } - .hp-container .icon-misc-trash { - cursor: pointer; } - -.hp-selected { - border-bottom: 1px solid #ccc; - border-bottom: 1px solid #ccc; - margin-bottom: 16px; - padding-bottom: 16px; } - .hp-selected .selected-days { - padding-bottom: 16px; } - .hp-selected .selected-days .day { - padding-top: 10px; - float: left; } - -/* .hp-checkbox { - padding-top: 20px; - margin: 16px auto 0 auto; } - .hp-checkbox label { - position: relative; - width: 20px; - margin-right: 34px; } - .hp-checkbox label span { - position: absolute; - top: -20px; - left: 0px; - margin-left: 0px; } */ - -.hp-dropdowns { - margin-top: 15px; - display: flex; - display: -webkit-flex; - display: -ms-flexbox; } - -.hp-buttons { - margin-top: 20px; - display: flex; - display: -webkit-flex; - display: -ms-flexbox; } - -.hp-dropdowns .radio-buttons { - margin-top: 30px; } - .hp-dropdowns .radio-buttons .radio { - margin-right: 15px; } - - - -/* TODO: Build a reference page for these classes */ -.font-regular { - font-family: "Omnes-ECOMP-W02", Arial !important; } - -.font-light { - font-family: "Omnes-ECOMP-W02-Light", Arial !important; } - -.font-italic { - font-family: "Omnes-ECOMP-W02-Italic", Arial !important; } - -.font-light-italic { - font-family: "Omnes-ECOMP-W02-Light-Italic", Arial !important; } - -.font-medium { - font-family: "Omnes-ECOMP-W02-Medium", Arial !important; } - -.font-medium-italic { - font-family: "Omnes-ECOMP-W02-Medium-Italic",Arial !important; } - -.font-reset { - font-style: normal; - font-variant: normal; - font-weight: normal; - text-transform: none; } - -.b2b-nav-menu { - background-color: #efefef; - border: 1px solid #efefef; - width: 230px; - font-size: 1.4rem; } - -.b2b-subnav-container > ul { - padding: 0px; } - -.b2b-subnav-content { - margin: 0; - margin-bottom: 10px; } - -.b2b-subnav-content > li { - border-bottom: 1px solid #999999; - position: relative; - cursor: pointer; } - -.b2b-subnav-content > li > a { - text-decoration: none; - line-height: 18px; - display: block; - padding: 10px; } - -.b2b-subnav-content > li > a.expand { - color: #333; } - -.b2b-subnav-content > li ul { - overflow: hidden; - max-height: 0; - transition-duration: 0.5s; - transition-timing-function: cubic-bezier(0, 1, 0.5, 1); } - -.b2b-subnav-content > li ul.expand { - transition-duration: 0.7s; - transition-timing-function: ease-in-out; - max-height: 1000px; - overflow: hidden; } - -.b2b-subnav-content > li > a:focus, .b2b-subnav-content > li ul > li > a:focus { - outline: thin dotted #666; } - -.b2b-subnav-content > li ul > li > a { - line-height: 18px; - padding: 8px 0; - display: block; - outline-offset: -4px; - padding-left: 10px; } - -.b2b-icon-primary-plus-minus { - display: inline-block; - height: 20px; - margin-right: 10px; - padding: 0; - position: absolute; - right: 0px; - top: 10px; - vertical-align: middle; - width: 20px; } - -@media (min-width: 320px) and (max-width: 767px) { - .b2b-nav-menu { - background-color: #fff; - border: 1px solid white; - width: 100%; } - .b2b-subnav-content > li { - padding-left: 10px; } - .b2b-subnav-container > ul:first-child { - border-top: 1px solid #999; } - .b2b-icon-primary-plus-minus { - right: 10px; } - .b2b-subnav-content > li li > a.active { - color: #0574ac; - text-decoration: none; - font-family: "Omnes-ECOMP-W02", Arial; } } - -.b2b-list-box-item { - white-space: nowrap; - margin: 1px; - border: 1px solid transparent; - outline: none; - visibility: inherit; - display: inherit; - text-align: left; - overflow: hidden; - cursor: pointer; - padding: 5px 0 5px; - padding-left: 15px; - -moz-user-select: none; - -webkit-user-select: none; - -ms-user-select: none; } - .b2b-list-box-item:focus { - border: 2px solid #5e8cb3; } - -.b2b-list-box-item--selected { - background-color: #cfdde9; } - -.btn.disabled[ddh-load-button] { - line-height: 46px; - padding: 0 19px 0 18px; } - -.btn.disabled[ddh-load-button] { - color: #666666; } - -.icon-primary-spinner-ddh.large { - height: 50px; - width: 50px; } - -.icon-primary-spinner-ddh.small { - height: 30px; - width: 30px; } - -.icon-primary-spinner-ddh { - -webkit-animation: 1s linear infinite spinner; - animation: 1s linear infinite spinner; - background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzNiAzNiIgaWQ9InN2Zy1zcGlubmVyIiB4PSIwcHgiIHk9IjBweCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CiAgIDxwYXRoIGZpbGw9IiNGNUY1RjUiIGQ9Ik0xOCAzNkM4LjEgMzYgMCAyNy45IDAgMThTOC4xIDAgMTggMHMxOCA4LjEgMTggMTgtOC4xIDE4LTE4IDE4em0wLTMxLjVjLTcuNSAwLTEzLjUgNi0xMy41IDEzLjVTMTAuNiAzMS41IDE4IDMxLjVjNy41IDAgMTMuNS02LjEgMTMuNS0xMy41IDAtNy41LTYtMTMuNS0xMy41LTEzLjV6Ii8+CiAgIDxwYXRoIGZpbGw9IiMwNTY4QUUiIGlkPSJzcGlubmVyIiBkPSJNMzAuNyA1LjNsLTMuMSAzLjJjMi40IDIuNCAzLjkgNS44IDMuOSA5LjUgMCA3LjQtNi4xIDEzLjUtMTMuNSAxMy41UzQuNSAyNS40IDQuNSAxOCAxMC42IDQuNSAxOCA0LjVWMEM4LjEgMCAwIDguMSAwIDE4czguMSAxOCAxOCAxOCAxOC04LjEgMTgtMThjMC01LTItOS41LTUuMy0xMi43eiIgdHJhbnNmb3JtPSIiPiAgICAgIAogICA8L3BhdGg+Cjwvc3ZnPg==); } - -.btn-small .icon-primary-spinner-ddh { - height: 30px !important; - width: 30px !important; } - -.btn-small .icon-primary-spinner { - height: 30px; - width: 30px; } - -.load-backdrop { - position: absolute; - top: 50%; - left: 50%; } - -.small-modal-loader { - width: 420px !important; - height: 212px !important; - text-align: center; } - -.small-modal-loader .icon-primary-spinner { - margin-bottom: 5px; } - -.body.styled-by-modal { - position: fixed; } - -.b2b-modal-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: -1; } - -.b2b-modal-backdrop.fade { - background-color: #000; - opacity: 0; - filter: alpha(opacity=0); - transition: all 0.3s linear 0s; } - -.b2b-modal-backdrop.fade.in { - z-index: 1040; - opacity: 0.7; - filter: alpha(opacity=70); - background-color: #000; - transition: opacity 0.3s linear 0s; } - -.modalwrapper { - height: 100%; - width: 100%; - left: 0; - overflow-y: hidden; - position: absolute; - right: 0; - padding: 20px; - top: 0; - z-index: -1; } - -.modalwrapper.active { - z-index: 1050; - overflow-y: auto; } - -.modal { - background-clip: padding-box; - background-color: #ffffff; - border: 1px solid rgba(0, 0, 0, 0.1); - border-radius: 8px; - box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.4); - margin: 0 auto; - /*margin-bottom:10%;*/ - outline: medium none; - /*position: absolute;*/ - height: 0; - min-height: 150px; - overflow: hidden; - /*top: 10%;*/ - width: 100%; - z-index: -1; } - -.modalwrapper.modal-docked .modal { - max-height: 80%; - height: 80%; - overflow: hidden; - top: 0; } - -.modal.fade.in { - position: relative; - height: auto; - overflow: auto; - top: 10%; - z-index: 1060; - transition: opacity .5s linear 0s; } - -.modal.fade.in.modal-landscape { - overflow-y: auto; } - -.modal.fade { - transition: opacity .5s linear 0s; } - -.fade.in { - opacity: 1; } - -.fade { - opacity: 0; } - -.b2b-modal-header { - align-items: center; - border-radius: 8px 8px 0 0; - display: flex; - min-height: 60px; - overflow: hidden; - padding: 30px 46px 30px 30px; - position: relative; } - -.b2b-modal-header > h2 { - line-height: 1; - margin: 0; - padding: 0; } - -.modal-header-portrait { - -webkit-overflow-scrolling: auto; } - -.modal-header-landscape { - -webkit-overflow-scrolling: auto; } - -.b2b-modal-body { - -webkit-overflow-scrolling: touch; - padding: 0 30px 20px; - position: relative; - width: auto; } - -.b2b-modal-body:focus { - outline: 1px dotted #333333; } - -.modal-form { - margin-bottom: 0; } - -.b2b-modal-footer { - background-color: #fff; - width: 100%; - padding: 0 30px; - border-radius: 0; - position: absolute; - bottom: 0; } - -:not(.modal-docked) .b2b-modal-footer { - position: relative; } - -.modal-landscape .b2b-modal-footer { - position: relative; } - -.b2b-modal-footer .cta-button-group { - display: flex; - justify-content: flex-end; - padding: 20px 0 5px; - width: 100%; - border-top: 1px solid #d2d2d2; } - -.b2b-modal-footer .cta-button-group .btn { - margin-left: auto; - margin-right: auto; - float: right; - margin-left: 10px; } - -.b2b-modal-footer .cta-button-group .marginLeft0 { - margin-left: 0px; } - -.b2b-modal-footer .cta-button-group .btn-footer-left { - margin-right: auto; } - -.b2b-modal-footer .cta-button-group .btn + .btn { - margin-right: 0 !important; } - -[class*="modal-"] { - width: 100%; } - -.modal-small { - max-width: 420px; } - -.modal-medium { - max-width: 620px; } - -.modal-large { - max-width: 720px; } - -.modal-xlarge { - max-width: 860px; } - -.modal-jumbo { - max-width: 1000px; } - -.modalwrapper.modal-docked { - height: 100%; - display: flex; - align-items: center; } - -.modalwrapper.modal-docked .b2b-modal-body { - height: 80%; - overflow-y: scroll; - padding-bottom: 60px; } - -.modalwrapper.modal-docked .modal { - max-height: 80%; - height: 80%; - overflow: hidden; - top: 0; } - -.modalwrapper.modal-docked .b2b-modal-body > *:last-child { - margin-bottom: 60px; } - -@media (max-width: 767px) { - .modalwrapper { - padding: 15px; - overflow-x: hidden; } - .modal.fade.in { - top: 0; - right: 0; - left: 0; - margin-bottom: 15px; - border: none; } - .b2b-modal-header { - padding: 20px 46px 20px 15px; } - .b2b-modal-body { - width: 100%; - padding: 0 15px 15px; } - .modalwrapper.modal-docked { - position: absolute; - height: 100%; - padding: 0; } - .modalwrapper.modal-docked .modal.fade.in { - margin-bottom: 0; - width: 100% !important; - max-height: 100%; - height: 100%; - border-radius: 0; } - .modalwrapper.modal-docked .b2b-modal-body { - overflow-y: scroll; - height: 100%; } - .modalwrapper.modal-docked.modal-landscape { - overflow-y: hidden; - position: fixed; } - .modalwrapper.modal-docked.modal-landscape .modal { - overflow-y: scroll; - max-width: 100%; } - .modalwrapper.modal-docked.modal-landscape .b2b-modal-body { - height: auto; - overflow-y: hidden; } - .b2b-modal-footer { - padding: 0 15px; } - .b2b-modal-footer .cta-button-group { - display: block; - padding: 15px 0; } - .b2b-modal-footer .cta-button-group .btn { - float: none; } - .b2b-modal-footer .cta-button-group .btn + .btn { - margin-bottom: 0; } - .b2b-modal-footer .cta-button-group a.visible-phone { - align-items: center; - display: flex !important; - height: 42px; - justify-content: center; } } - -.b2b-modal-footer > .cta-button-group { - line-height: 40px; } - -.ajaxed, -.modal.fade.in .b2b-modal-header, -.modal.fade.in .b2b-modal-body, -.modal.fade.in .b2b-modal-footer { - animation-duration: 0.01s; - -o-animation-duration: 0.01s; - -ms-animation-duration: 0.01s; - -moz-animation-duration: 0.01s; - -webkit-animation-duration: 0.01s; - animation-name: DOMinsertion; - -o-animation-name: DOMinsertion; - -ms-animation-name: DOMinsertion; - -moz-animation-name: DOMinsertion; - -webkit-animation-name: DOMinsertion; } - -.monthselector thead tr th { - min-width: 46px; } - -.monthselector thead tr:after { - content: ""; - position: absolute; - left: 20px; - top: 52px; - height: 1px; - width: 85%; - border-bottom: 1px solid #ccc; } - -.monthselector tbody tr:last-child { - height: 50px; } - -.monthselector td.day { - margin: 1px 4px !important; - width: 64px !important; } - -.monthselector .datepicker-switch { - width: 195px !important; } - -.monthselector .show-date { - width: 30px !important; } - -.monthselector button.faux-input { - width: 100%; } - .monthselector button.faux-input:focus { - border: 1px solid #0574ac; } - .monthselector button.faux-input:disabled { - cursor: not-allowed; } - -.monthselector .cta-button-group { - padding: 0 20px; } - .monthselector .cta-button-group a { - margin-right: 20px; } - -.monthselector .day.active .show-date:after, .monthselector .day:focus .show-date:after, .monthselector .due-date.disabled .show-date:after { - height: 30px; - left: 9px !important; - top: 0; - width: 42px !important; } - -.monthselector .disabled.day:focus .show-date:after { - border: none; } - -.monthselector .icon-primary-calendar { - display: block; } - -.b2b-ml-nav { - padding: 0 10px 0 10px; - width: 320px; } - -.b2b-ml-nav ul { - list-style: none; - list-style-type: none; } - -.b2b-ml-nav a { - display: block; - padding: 0 0 5px 30px; - line-height: 22px; - margin-left: -10px; - color: #0568ae; - font-size: 1.4rem; } - -.b2b-ml-nav a:focus { - outline-offset: 1px; } - -.b2b-ml-nav li:focus { - outline: none; } - -.b2b-ml-nav li:focus > a { - outline: thin dotted #666; - outline-offset: 1px; } - -.b2b-ml-nav ul li { - border-left: 1px solid #ccc; } - -.b2b-ml-nav ul ul { - padding: 0 0 0 20px; } - -.b2b-ml-nav ul > li { - position: relative; - line-height: 18px; } - -.b2b-ml-nav a > span { - background-color: #FFF; - display: inline; - margin: 0; - padding: 0; - position: absolute; - left: -11px; - top: 0; } - -.b2b-ml-nav a > span > i { - font-size: 20px; } - -.b2b-ml-nav a:only-child > span { - left: -6px; - border-radius: 50%; - line-height: 7px; - top: 5px; } - -.b2b-ml-nav a:only-child > span > i { - background-color: inherit; - background: #fff; - font-size: 5px; } - -.b2b-ml-nav ul li:first-child > a:only-child > span { - left: -6px; - border-radius: 50%; - line-height: 12px; - top: 0px; } - -.b2b-ml-nav li a + ul { - display: none; } - -.b2b-ml-nav li a.active + ul { - display: block; } - -.b2b-ml-nav .selected { - color: #333; } - -/*to overide ng-doc inline property for library demo - TODO: Move to docs.css*/ -.b2b-ml-nav a [class^="icon-primary-"], a [class*=" icon-primary-"], a [class^="icon-primary-"]:before, a [class*=" icon-primary-"]:before { - display: inline-block; } - -.b2b-alerts-messages { - background-color: #fff; - border-radius: 8px; - height: auto; } - .b2b-alerts-messages h3 { - color: #333 !important; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - margin-bottom: 0 !important; - margin: 1em 0 5px; - line-height: 27px; - font-size: 18px; } - .b2b-alerts-messages h4 { - color: #333 !important; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - margin-bottom: 0 !important; } - .b2b-alerts-messages .alert-info { - background-color: #0574ac; - border: 0; } - .b2b-alerts-messages .alert-error { - background-color: #cf2a2a; - border: 0; } - .b2b-alerts-messages .alert-success { - background-color: #1b7e28; - border: 0; } - .b2b-alerts-messages div:nth-child(2) { - padding: 0 0 15px 10px; - vertical-align: baseline; } - .b2b-alerts-messages .close:before { - color: #767676; } - .b2b-alerts-messages p { - font-size: 14px; - color: #333; - font-family: "Omnes-ECOMP-W02", Arial; } - .b2b-alerts-messages p a { - color: #333; } - .b2b-alerts-messages .btn-small { - margin-bottom: 0px; } - -.b2b-alerts-success { - border: 1px solid #1b7e28; } - -.b2b-alerts-error { - border: 1px solid #cf2a2a; } - -.b2b-alerts-info { - border: 1px solid #0574ac; } - -/* TODO: Rearange this and move to patches if needed */ -.b2b-breadcrumb-css-override > li { - margin-right: 24px; } - -.b2b-breadcrumb-css-override li > * { - float: left !important; } - -.b2b-css-override ul.nav-tabs { - margin-bottom: 0; } - - -.b2b-top-nav-buttons-css-override { - margin-bottom: 0; - margin-top: 2px; } - -.b2b-auto-width { - width: auto !important; } - -.b2b-toggle-header-active { - color: #0568ae; } - -.b2b-toggle-header-inactive { - color: #333333; } - -.b2b-toggle-header-icon { - cursor: pointer; } - - -.icon-primary-circle:before { - background-image: url("data:image/svg+xml,%3Csvg%20baseProfile%3D%22tiny%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%3E%3Ccircle%20fill%3D%22transparent%22%20stroke%3D%22%23666%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2218%22%20cy%3D%2218%22%20r%3D%2216%22%2F%3E%3C%2Fsvg%3E"); - content: ""; - position: absolute; - top: 0; - z-index: 1; } - -.ds2-no-colors .icon-primary-circle:before { - background-image: none; - content: "\e902"; } - -i:focus { - outline: thin dotted #666; } - -.p-col-md-12 { - width: 50%; } - -.pager__item { - border-radius: 0; - cursor: default; - display: inline-block; - margin: 5px; - width: 22px; - height: 23px; - vertical-align: baseline; } - -.pager { - padding-top: 10px; - padding-bottom: 20px; - text-align: center; - margin: 0 auto; } - -.pager__item--input { - color: #067ab4; - max-height: 32px; - max-width: 40px; - padding-left: 0; - padding-right: 0; - text-align: center; - margin-left: 10px; } - -.row.section-row { - margin-bottom: 20px; } - -.pager__item--active { - border-bottom: 2px solid #0574ac; - border-radius: 0; - color: #333333; } - -.pager a.pager__item--active:hover { - cursor: default; } - -.pager a:hover, .pager a:focus { - text-decoration: none; - color: #333333; - cursor: pointer; } - -.pager a.disabled:hover, .pager a.disabled:focus { - cursor: not-allowed; } - -.row.section-row.b2b-page { - display: block; } - -a.pager__item--next:focus, a.pager__item--prev:focus { - text-decoration: none; - border: 0; } - -.pager__item--next, .pager__item--prev { - margin: 5px; - padding: 1.5px 6px 1.5px 6px; } - -.pager .disabled i { - pointer-events: none; - cursor: default; - color: #c4c4c4; } - -.fieldLabel { - color: #666666; } - -.fieldLabel input { - color: #666666; } - -.pSelect { - float: right; - width: 150px; } - -.numericResult { - margin-bottom: 20px; - font-size: 1.6rem; - margin-top: 20px; - display: inline-block; - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - -.mobile-view > .pager__item { - margin: 5px 10px; - width: 24px; - height: 34px; - vertical-align: middle; - line-height: 34px; } - -.fade1, .fadel { - opacity: 0.4; } - -.fade2, .fadesl { - opacity: 0.6; } - -h4#pagination-truncated { - margin-top: 50px; } - -h4#pagination-large-count { - margin-top: 50px; } - -.p-col-md-12 input { - margin-left: 20px; } - -.pager a .icon-primary-right:before { - display: inline-block; } - -.pager a .icon-primary-left:before { - display: inline-block; } - -.page-heading { - background: white none repeat scroll 0 0; - margin-bottom: -12px; - padding-left: 10px; - padding-right: 10px; - position: relative; } - -.numericResult:focus { - outline: 1px dotted #0574ac; } - -.page-heading-group { - color: #ef6f00; - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - -.pager > div > span.fieldLabel { - margin-left: 18px; } - -.pager .fieldLabel .btn-arrow { - top: 0; - left: 10px; - margin-left: -5px; } - -.b2b-p-col-md-12 { - width: 50%; } - .b2b-p-col-md-12 input { - margin-left: 20px; } - -.b2b-pager__item { - border-radius: 0; - cursor: default; - display: inline-block; - margin: 0px 5px 0 5px; - height: 23px; - vertical-align: baseline; } - -.b2b-pager__item--noclick { - pointer-events: none !important; - cursor: default !important; } - -.b2b-pager__item--droppable { - pointer-events: all !important; } - -.b2b-pager { - padding-top: 10px; - padding-bottom: 20px; - text-align: center; - margin: 0 auto; } - .b2b-pager a:hover { - text-decoration: none; - color: #333333; - cursor: pointer; } - .b2b-pager a:focus { - text-decoration: none; - color: #333333; - cursor: pointer; } - .b2b-pager a .icon-primary-right:before { - display: inline-block; } - .b2b-pager a .icon-primary-left:before { - display: inline-block; } - .b2b-pager .disabled i { - pointer-events: none; - cursor: default; - color: #c4c4c4; } - -.b2b-pager__item--input { - color: #067ab4; - max-height: 32px; - max-width: 60px; - padding-left: 0; - padding-right: 0; - text-align: center; - margin-left: 5px; } - -.row.section-row { - margin-bottom: 20px; } - -.b2b-pager__item--active { - border-bottom: 2px solid #0574ac; - border-radius: 0; - color: #333333; } - -.row.section-row.b2b-page { - display: block; } - -a.b2b-pager__item--next:focus { - text-decoration: none; - border: 0; } - -a.b2b-pager__item--next-disabled { - outline: 0; } - -a.b2b-pager__item--next-disabled > [class^="icon-primary-"] { - color: #cccccc; - cursor: not-allowed; - outline: 0; } - -a.b2b-pager__item--prev:focus { - text-decoration: none; - border: 0; } - -a.b2b-pager__item--prev-disabled { - outline: 0; } - -a.b2b-pager__item--prev-disabled > [class^="icon-primary-"] { - color: #cccccc; - cursor: not-allowed; } - -.b2b-pager__item--next { - padding: 1.5px 0px 1.5px 0px; } - -.b2b-pager__item--prev { - padding: 1.5px 0px 1.5px 0px; } - -.fieldLabel { - color: #666666; } - .fieldLabel input { - color: #666666; } - .fieldLabel .btn-arrow { - top: 0; - left: 10px; } - -.b2b-pSelect { - float: right; - width: 150px; } - -.b2b-numericResult { - margin-bottom: 20px; - font-size: 1.6rem; - margin-top: 20px; } - -.b2b-mobile-view > .b2b-pager__item { - margin: 5px 10px; - min-width: 23px; - height: 34px; - vertical-align: middle; - line-height: 34px; } - -.b2b-fade1 { - opacity: 0.4; } - -.b2b-fade2 { - opacity: 0.6; } - -.b2b-fadesl { - opacity: 0.6; } - -h4#b2b-pagination-truncated { - margin-top: 50px; } - -h4#b2b-pagination-large-count { - margin-top: 50px; } - -.b2b-page-heading { - background: white none repeat scroll 0 0; - margin-bottom: -12px; - padding-left: 10px; - padding-right: 10px; - position: relative; } - -.b2b-numericResult:focus { - outline: 1px dotted #0574ac; } - -.b2b-page-heading-group { - color: #ef6f00; - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - -.b2b-pager > div > span.fieldLabel { - margin-left: 18px; } - -.b2b-go-to-page { - margin-top: 14px; } - -.b2b-go-to-page-inline { - display: inline-block; } - -input.b2b-phone-mask-input { - padding-right: 15px; } - input.b2b-phone-mask-input:hover, input.b2b-phone-mask-input:focus { - padding-right: 15px; } - -/************************** Start - Should be removed after the styling in global is fixed *******************/ -input::-ms-clear { - display: none; } - -/************************** End - Should be removed after the styling in global is fixed *******************/ -@media (max-width: 767px) { - input::-ms-clear { - display: block; } } - -.pivot-link-group { - background-color: #5a5a5a; - border-top: 1px solid #959595; } - -.pivot-links > li { - border-bottom: 1px solid #959595; } - -.pivot-links > li > a { - color: #fff; - display: block; - padding: 12px 15px 10px; - line-height: normal; } - -.b2b-profile-block-container { - min-height: 200px; - height: auto; - background-color: #fff; - border-radius: 8px; - border: 1px solid #ccc; - box-shadow: 0px 1px 1px 1px #ccc; - display: inline-table; - margin: 15px 15px; } - -.b2b-profile-block-details p, .b2b-profile-block-details div { - padding: 2px 7px; - font-size: 1.4rem; } - -.b2b-profile-block-details .radio-label, .b2b-profile-block-details a { - font-size: 1.4rem; } - -.b2b-profile-block-details p label, .b2b-profile-block-details p span { - padding-left: 10px; } - -.b2b-profile-block-footer { - margin-bottom: 12px; - margin-top: 5px; - height: 35px; } - -.b2b-profile-block-details p { - word-wrap: break-word; - height: 61px; } - .b2b-profile-block-details p:first-child { - margin-top: 10px; } - .b2b-profile-block-details p:after { - content: ' '; - display: block; - border: 0.2px solid #ccc; - margin-top: 12px; } - -.b2b-profile-block-details .radio { - margin-left: 15px; - height: 30px; } - -.b2b-approval-icon { - color: #1b7e28; - float: right; - position: relative; - left: 10px; } - .b2b-approval-icon i { - color: #1b7e28; - float: right; } - -.b2b-profile-link { - float: right; - position: relative; - left: -4px; } - -a.link-profile { - position: relative; - left: -5px; - float: right; - margin-bottom: 16px; } - -.b2b-profile-block-radio { - position: relative; - top: -5px; } - -.b2b-profile-card { - min-width: 229px; - min-height: 354px; - margin: 10px; - border: solid 1px #CCC; - font-family: "Omnes-ECOMP-W02", Arial; - display: inline-block; - vertical-align: top; } - .b2b-profile-card .top-block { - padding: 15px 20px; - background-color: #e4e4e4; - max-height: 153px; } - .b2b-profile-card .bottom-block { - padding: 15px 20px 15px 20px; - background-color: #fff; } - .b2b-profile-card .profile-image { - background: #e4e4e4; - margin-bottom: 15px; - text-align: center; } - .b2b-profile-card .profile-image .default-img { - display: inline-block; - width: 60px; - height: 60px; - margin-bottom: 10px; - border: 6px solid #fff; - border-radius: 99em; - -webkit-border-radius: 99em; - -moz-border-radius: 99em; - /* background-color: #eee; */ } - -.profile-image img { - display: inline-block; - width: 60px; - height: 60px; - margin-bottom: 10px; - border: 6px solid #fff; - border-radius: 99em; - -webkit-border-radius: 99em; - -moz-border-radius: 99em; - /* background-color: #eee; */ } - -.b2b-profile-card .profile-image .default-img { - font-family: "Omnes-ECOMP-W02", Arial; - color: #333; - background-color: #fff; - font-size: 32px; - line-height: 22px; - padding: 5px; - padding-top: 13px; - width: 60px; - height: 60px; - text-transform: uppercase; } - -.b2b-profile-card .profile-image .name { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 16px; - color: #333; - text-align: center; - margin-bottom: 5px; - margin-top: 5px; - overflow: hidden; - word-break: break-word; - white-space: normal; - text-transform: capitalize; } - -.b2b-profile-card .profile-image .status-icon { - border-radius: 10px; - border: 1px solid #fff; - margin: 0 3px 0 0; - width: 10px; - height: 10px; - display: inline-block; - vertical-align: middle; } - -.b2b-profile-card .profile-image .status { - font-size: 12px; - line-height: 15px; - text-align: center; - margin: 0 15px 0 0; - color: #444; } - -.b2b-profile-card .status .circle { - width: 10px; - height: 10px; - border-radius: 50%; - margin: 30px 6px 0px 20px; - text-align: center; - background-color: #444; } - -.b2b-profile-card .profile-image .status-green { - background-color: #0c0; } - -.b2b-profile-card .profile-image .status-red { - background-color: red; } - -.b2b-profile-card .profile-image .status-blue { - background-color: #00f; } - -.b2b-profile-card .profile-image .status-yellow { - background-color: #ff0; } - -.b2b-profile-card .profile-image .status .status-badge { - margin-left: 5px; - border: dotted 1px #444; - background-color: transparent; - font-weight: 400; - color: #444; - height: 17px; - padding: 0 5px; - font-size: 11px; - padding-left: 5px; - padding-right: 5px; } - -.b2b-profile-card .profile-details { - background: #fff; } - .b2b-profile-card .profile-details label { - display: block; - cursor: text; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-weight: bolder; - font-size: 14px; - color: #333; - padding: 0; - margin: 0; } - .b2b-profile-card .profile-details div { - margin: 0; - font-size: 14px; - color: #333; - padding-bottom: 6.5px; } - -.b2b-profile-card .b2b-add-user { - background: white; - border-style: dotted; - font-size: 16px; - color: #333; - position: relative; } - .b2b-profile-card .b2b-add-user i { - font-size: 30px; - padding-bottom: 15px; } - -.b2b-profile-card .atcenter { - cursor: pointer; - margin-top: 60%; - vertical-align: middle; - text-align: center; } - -.b2b-profile-card .tooltip { - cursor: pointer; } - .b2b-profile-card .tooltip .helpertext { - position: relative; - color: white; } - -.b2b-profile-card .tooltip-wrapper { - position: relative; } - -/* Overrides for tooltip absolute positioning */ -@media (min-width: 1025px) { - .b2b-profile-card .tooltip-size-control { - width: 100% !important; } } - -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 0 0; } - to { - background-position: 80px 0; } } - -@keyframes progress-bar-stripes { - from { - background-position: 0 0; } - to { - background-position: 80px 0; } } - -.progress { - background-color: #e4e4e4; - border-radius: 4px; - height: 14px; - margin-bottom: 20px; - min-width: 250px; - overflow: hidden; - padding: 0; - position: relative; } - -a .progress { - margin-bottom: 0; } - -.progress .bar { - background-color: #666; - border-radius: 4px; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - height: 100%; - width: 0; } - -.progress-arrow { - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-align-items: center; - -ms-flex-align: center; - align-items: center; - -webkit-justify-content: flex-end; - -ms-flex-pack: end; - justify-content: flex-end; } - -.progress-link + .usage-bar { - margin-top: 5px; } - -.progress-success .bar, .progress .bar-success { - background-color: #1b7e28; } - -.progress-warning .bar, .progress .bar-warning { - background-color: #ef6f00; } - -.progress-danger .bar, .progress .bar-danger { - background-color: #cf2a2a; } - -.progress.increment { - display: -webkit-flex; - display: -ms-flexbox; - display: flex; } - -.progress.increment .bar:first-child:not(:last-child) { - border-right: none; - border-radius: 4px 0 0 4px; } - -.progress.increment .bar:last-child:not(:first-child) { - border-left: none; - border-radius: 0 4px 4px 0; } - -.progress.increment .bar + .bar:not(:last-child) { - border-left: none; - border-right: none; - border-radius: 0; } - -.progress.increment .bar:not(:first-child) { - border-left: 1px solid white !important; } - -.usage-bar { - display: table; - float: none; - width: 100%; - margin-bottom: 1px; } - -.usage-bar > .usage-text { - display: table-cell; - width: 1%; } - -.progress + .usage-bar { - margin-top: -15px; } - -.usage-bar .usage-text { - font-size: 1.4rem; } - -.usage-bar .usage-text:first-child { - white-space: nowrap; } - -.usage-bar .usage-text.text-right { - vertical-align: top; - font-size: 1.4rem; - width: auto !important; } - -.usage-bar .usage-text.text-right:before { - content: ""; - display: table; - height: .1em; } - -.usage-bar.billing-cycle .usage-text { - font-size: 1.4rem; } - -.usage-bar.billing-cycle .usage-text.text-right { - vertical-align: bottom; } - -.progress.autocolor [data-percentage="1"], .progress.autocolor [data-percentage="2"], .progress.autocolor [data-percentage="3"], .progress.autocolor [data-percentage="4"], .progress.autocolor [data-percentage="5"], .progress.autocolor [data-percentage="6"], .progress.autocolor [data-percentage="7"], .progress.autocolor [data-percentage="8"], .progress.autocolor [data-percentage="9"], .progress.autocolor [data-percentage="10"] .progress.autocolor [data-percentage^="2"], .progress.autocolor [data-percentage^="3"], .progress.autocolor [data-percentage^="4"], .progress.autocolor [data-percentage^="5"], .progress.autocolor [data-percentage="60"], .progress.autocolor [data-percentage="61"], .progress.autocolor [data-percentage="62"], .progress.autocolor [data-percentage="63"], .progress.autocolor [data-percentage="64"] { - background-color: #1b7e28; } - -.progress.autocolor [data-percentage="65"], .progress.autocolor [data-percentage="66"], .progress.autocolor [data-percentage="67"], .progress.autocolor [data-percentage="68"], .progress.autocolor [data-percentage="69"], .progress.autocolor [data-percentage^="7"], .progress.autocolor [data-percentage^="8"] { - background-color: #ef6f00; } - -.progress.autocolor [data-percentage^="9"], .progress.autocolor [data-percentage="100"] { - background-color: #cf2a2a; } - -.b2b-seek-bar-container { - position: relative; } - .b2b-seek-bar-container div { - position: absolute; } - .b2b-seek-bar-container .b2b-seek-bar-track-container { - width: 100%; } - .b2b-seek-bar-container .b2b-seek-bar-track { - width: 100%; - height: 6px; - background-color: #cccccc; - border-radius: 10px; } - .b2b-seek-bar-container .b2b-seek-bar-track-fill { - width: 100%; - height: 6px; - background-color: #cccccc; - border-radius: 10px; - width: 0; - background-color: #157BB2; - transition: width 0s linear; } - -.seek-bar-container .seek-bar-knob-container { - transition: left 0s linear; } - -.b2b-seek-bar-container .b2b-seek-bar-knob { - width: 14px; - height: 14px; - border-radius: 10px; - top: -4px; - left: -8px; - border: 1px solid #cccccc; - background: white; - cursor: pointer; } - -.b2b-seek-bar-container .b2b-seek-bar-knob:focus { - outline: thin dotted #666; } - -.b2b-seek-bar-container.vertical { - width: 100%; - height: 100%; - margin: 0 auto; - position: relative; - border-radius: 10px; } - .b2b-seek-bar-container.vertical .b2b-seek-bar-track-container { - position: relative; - height: 100%; } - .b2b-seek-bar-container.vertical .b2b-seek-bar-track { - position: absolute; - height: 100%; } - .b2b-seek-bar-container.vertical .b2b-seek-bar-track-fill { - position: absolute; - bottom: 0; - height: 0; - width: 100%; } - .b2b-seek-bar-container.vertical .b2b-seek-bar-knob-container { - transition: bottom .01s linear; - position: relative; - bottom: 0; } - .b2b-seek-bar-container.vertical .b2b-seek-bar-knob { - position: absolute; - border-radius: 10px; - top: -7px; - left: -4px; } - -.form-search .search-query { - width: 100% !important; } - -.form-search .well { - margin-top: 0; } - -.form-search > ul.nav > li.section { - min-height: 20px !important; } - -input.b2b-search-input-field { - margin-bottom: 0px; } - -.search-suggestion-list { - background-color: #FFFFFF; - border: 1px solid #ccc; - border-radius: 0 0 6px 6px; - box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); - margin-top: -5px; - max-height: 400px; - overflow-x: hidden; - overflow-y: auto; - padding: 15px 0; - position: absolute; - width: 100%; - z-index: 1000; } - .search-suggestion-list > li.active { - background-color: #cccccc; } - .search-suggestion-list:empty { - display: none; } - -.b2b-search-hightlight { - font-weight: bold; } - -input[type="text"]::-moz-placeholder { - color: #767676; - font-family: "Omnes-ECOMP-W02-Italic", Arial; } - -input[type="text"]:focus { - z-index: 1000; } - -input[type="text"] + .reset-field { - background-color: #FFFFFF; - height: 90%; - top: 5%; } - -.btn-search:focus { - outline: 1px dotted #0574ac; } - -.field-group input:not([type="button"])[disabled] ~ .btn-search { - background-color: #eee; } - -.btn-search[class*="btn"] { - background-color: #FFFFFF; - background-size: 20px 20px; - border-radius: 0 1.5rem 1.5rem 0; - height: 3rem; - min-width: 4.4rem !important; - right: 0.15rem; - top: 0.15rem; - width: 4.4rem; } - -.search-suggestion-wrapper { - margin-bottom: 15px; - position: relative; } - .search-suggestion-wrapper .no-result { - padding: 0px 15px; } - -.search-suggestion-item { - color: #333333; - line-height: 4rem; - padding: 0 15px; - position: relative; - z-index: 1000; } - .search-suggestion-item:hover { - background-color: #e4e4e4; - cursor: pointer; } - .search-suggestion-item:focus { - background-color: #e4e4e4; - cursor: pointer; } - .search-suggestion-item a { - color: #333333; - text-decoration: none; } - -.btn-search i { - color: #767676; } - -input.b2b-search-input-field:focus ~ .btn-search > i, .btn-search:focus > i { - color: #0568ae; } - -button.btn-search[disabled] { - cursor: not-allowed; } - button.btn-search[disabled] i { - color: #767676; } - -.innershadow { - -webkit-background-blend-mode: mutilply; - box-shadow: 0 3px 0 2px rgba(0, 0, 0, 0.08); } - -.linkSelectorModule { - position: relative; - height: 32px; - line-height: 20px; - border: 0px; - width: auto; - display: block; } - .linkSelectorModule .icon-primary-down { - font-size: 23px; - margin-top: -10px; - position: absolute; - top: 50%; - margin-left: -30px; } - .linkSelectorModule .selectModule { - background-color: transparent; - border: none; - color: #0568ae; - cursor: pointer; - border: 1px solid transparent; - box-shadow: none; - padding-right: 35px; - position: relative; - user-select: none; - font-size: 1.6rem; } - .linkSelectorModule .selectModule:focus { - border: 1px dotted #ccc; - box-shadow: none; - -moz-user-select: none; } - .linkSelectorModule .selectModule:hover { - text-decoration: underline; } - .linkSelectorModule .active + .moduleWrapper:before { - background-color: #FFFFFF; - border-color: #d2d2d2; - border-style: solid; - border-width: 1px 1px 0 0; - content: ""; - display: block; - height: 15px; - right: 122px; - margin: 0; - position: absolute; - top: -8px; - -webkit-transform: rotate(-45deg); - transform: rotate(-45deg); - width: 15px; } - .linkSelectorModule .moduleWrapper { - top: 40px; } - .linkSelectorModule ul.awd-module-list { - border-radius: 6px 6px 0px 0px; } - -.selectorModule .icon-primary-down { - font-size: 23px; - margin-top: -11px; - position: absolute; - right: 4px; - top: 50%; } - -.selectorModule .selectModule { - border: 1px solid #d2d2d2; - border-radius: 6px; - box-shadow: 1px 5px 2px -5px rgba(0, 0, 0, 0.15); - display: block; - width: 100%; - padding-left: 15px; - background-color: transparent; - cursor: pointer; } - .selectorModule .selectModule:focus { - border: 1px solid #0568ae; - -moz-user-select: none; } - .selectorModule .selectModule span.module-data { - position: absolute; - bottom: 6px; - line-height: 20px; } - .selectorModule .selectModule img + span.module-data { - padding-left: 45px; } - -.selectorModule .selectModule.active { - border-bottom-right-radius: 0px; - border-bottom-left-radius: 0px; } - -.selectorModule .moduleWrapper { - position: absolute; - width: 100% !important; - border-top: none; } - -.selectorModule ul.awd-module-list { - border-radius: 0px 0px 6px 6px; } - -.selectorModule .large > img { - height: 30px; - position: absolute; - width: 30px; - top: 20px; - left: 15px; } - -.selectModule { - background-color: transparent; - font-family: "Omnes-ECOMP-W02", Arial; - color: #333333; - font-size: 1.6rem; - height: 36px; - line-height: 35px; - margin-bottom: 0; - position: relative; - text-align: left; - top: 0; - z-index: 10; - padding: 0px; - margin: 0px; - cursor: pointer; } - -.moduleWrapper { - background-color: #FFFFFF; - position: absolute; - color: #191919; - z-index: 9999; - box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15); - border-radius: 0px 0px 6px 6px; } - .moduleWrapper .module-list-item img { - height: 30px; - position: absolute; - width: 30px; - top: 30px; - left: 15px; - align-self: center; } - .moduleWrapper span { - display: block; - white-space: nowrap; - font-size: 1.5rem; } - -.awd-module-list { - overflow-y: auto; - z-index: 9999; - max-height: 360px; - border: 1px solid #d2d2d2; } - .awd-module-list .module-list-item > .module-data { - overflow: ellipsis; - white-space: nowrap; - line-height: 20px; - font-size: 1.6rem; - border-bottom: 1px dotted #959595; - margin: 0px 15px 0px 15px; - padding-right: 50px; - padding-bottom: 14px; - padding-top: 14px; - align-self: center; - width: 100%; } - .awd-module-list .module-list-item:hover { - background-color: #f2f2f2; } - .awd-module-list .module-list-item:active { - background-color: #f2f2f2; } - .awd-module-list .module-list-item[aria-selected="true"] { - background-color: #f2f2f2; } - -.module-list-item { - cursor: pointer; - overflow: hidden; - position: relative; - overflow: ellipsis; - white-space: nowrap; - z-index: 1000; - color: #191919; - display: flex; } - .module-list-item:last-of-type .module-data { - border-bottom: none; } - .module-list-item img + span.module-data { - padding-left: 45px; } - -.module-groups:first-of-type .module-list-item:last-of-type .module-data { - border-bottom: 1px solid #959595; } - -.module-groupitem { - padding-bottom: 4px; } - -.selectorModule.large { - height: 72px; - vertical-align: middle; - text-align: left; } - .selectorModule.large .moduleWrapper { - top: 71px; } - .selectorModule.large input { - height: 72px; - vertical-align: middle; - text-align: left; } - .selectorModule.large button { - height: 72px; - vertical-align: middle; - text-align: left; } - .selectorModule.large .selectModule img { - left: 15px; - top: 21px; } - -ul.module-groupitem li { - margin: 0 -15px 0 -15px; } - -span.module-data span { - display: block; - line-height: 20px; - font-size: 1.5rem; } - -li.module-groups { - cursor: default !important; - padding: 18px 15px 0px 15px; } - -li.module-list-item[selected]:before { - box-sizing: border-box; - display: inline-block; - font-size: 2em; - height: 1em; - position: absolute; - top: 20px; - right: 0px; - vertical-align: middle; - width: 1em; - color: #007a3e; } - -ul.module-optinalcta { - position: relative; - height: 44px; - margin-top: 0px; - border-bottom: 1px solid #d2d2d2; - border-left: 1px solid #d2d2d2; - border-right: 1px solid #d2d2d2; - border-radius: 0px 0px 6px 6px; } - ul.module-optinalcta li { - position: absolute; - bottom: 10px; } - ul.module-optinalcta a { - text-indent: 15px; - padding: 15px; } - -.b2b-slider-container { - position: relative; } - .b2b-slider-container.slider-disabled { - cursor: not-allowed !important; } - .b2b-slider-container div { - position: absolute; } - .b2b-slider-container .slider-track-container { - width: 100%; - cursor: pointer; } - .b2b-slider-container .slider-track { - width: 100%; - height: 6px; - background-color: #cccccc; - border-radius: 10px; - border: 1px solid #cccccc; } - .b2b-slider-container .slider-track-fill { - width: 100%; - height: 6px; - background-color: #cccccc; - border-radius: 10px; - width: 0; - background-color: #157BB2; - transition: width 0s linear; - border: 1px solid #cccccc; } - .b2b-slider-container .slider-knob-container { - transition: left 0s linear; } - .b2b-slider-container .slider-knob-container.slider-knob-hidden { - display: none !important; } - .b2b-slider-container .slider-knob { - width: 14px; - height: 14px; - border-radius: 10px; - top: -4px; - left: -8px; - border: 1px solid #cccccc; - background: white; - cursor: pointer; } - .b2b-slider-container .slider-knob:focus { - outline: thin dotted #666; } - -.b2b-slider-endpoints-container { - margin-top: 13px; - color: #333; - font-size: 12px; } - .b2b-slider-endpoints-container .b2b-slider-endpoints-left { - float: left; - line-height: 100%; } - .b2b-slider-endpoints-container .b2b-slider-endpoints-right { - float: right; - line-height: 100%; } - .b2b-slider-endpoints-container::after { - clear: both; - content: ""; - display: block; } - -.b2b-slider-container.vertical { - width: 100%; - height: 100%; - margin: 0 auto; - position: relative; - border-radius: 10px; } - .b2b-slider-container.vertical .slider-track-container { - position: relative; - height: 100%; } - .b2b-slider-container.vertical .slider-track { - position: absolute; - height: 100%; } - .b2b-slider-container.vertical .slider-track-fill { - position: absolute; - bottom: 0; - height: 0; - width: 100%; } - .b2b-slider-container.vertical .slider-knob-container { - transition: bottom 0s linear; - position: relative; - bottom: 0; } - .b2b-slider-container.vertical .slider-knob-container.slider-knob-hidden { - display: none !important; } - .b2b-slider-container.vertical .slider-knob { - position: absolute; - border-radius: 10px; - top: -7px; - left: -4px; } - -.icon-primary-spinner { - background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%20id%3D%22svg-spinner%22%20x%3D%220px%22%20y%3D%220px%22%20xml%3Aspace%3D%22preserve%22%3E%0A%20%20%20%3Cpath%20fill%3D%22%23F5F5F5%22%20d%3D%22M18%2036C8.1%2036%200%2027.9%200%2018S8.1%200%2018%200s18%208.1%2018%2018-8.1%2018-18%2018zm0-31.5c-7.5%200-13.5%206-13.5%2013.5S10.6%2031.5%2018%2031.5c7.5%200%2013.5-6.1%2013.5-13.5%200-7.5-6-13.5-13.5-13.5z%22%2F%3E%0A%20%20%20%3Cpath%20fill%3D%22%230568AE%22%20id%3D%22spinner%22%20d%3D%22M30.7%205.3l-3.1%203.2c2.4%202.4%203.9%205.8%203.9%209.5%200%207.4-6.1%2013.5-13.5%2013.5S4.5%2025.4%204.5%2018%2010.6%204.5%2018%204.5V0C8.1%200%200%208.1%200%2018s8.1%2018%2018%2018%2018-8.1%2018-18c0-5-2-9.5-5.3-12.7z%22%3E%0A%20%20%20%20%20%20%3CanimateTransform%20%0A%20%20%20%20%20%20%20%20%20attributeType%3D%22xml%22%0A%20%20%20%20%20%20%20%20%20attributeName%3D%22transform%22%0A%20%20%20%20%20%20%20%20%20type%3D%22rotate%22%0A%20%20%20%20%20%20%20%20%20from%3D%220%2018%2018%22%0A%20%20%20%20%20%20%20%20%20to%3D%22360%2018%2018%22%0A%20%20%20%20%20%20%20%20%20dur%3D%221.0s%22%0A%20%20%20%20%20%20%20%20%20repeatCount%3D%22indefinite%22%0A%20%20%20%20%20%20%2F%3E%0A%20%20%20%3C%2Fpath%3E%0A%3C%2Fsvg%3E"); - height: 50px; - width: 50px; } - -.icon-primary-spinner.small { - margin-right: 5px; - height: 30px !important; - width: 30px !important; } - -.isIE .icon-primary-spinner, -.isIE .icon-primary-spinner.small { - animation: spinner 1s linear infinite; } - -.ds2-no-colors .icon-primary-spinner { - animation: spinner 1s linear infinite; - border: 5px dotted transparent; - border-radius: 50%; } - -@keyframes spinner { - 0% { - transform: rotate(0deg); } - 100% { - transform: rotate(359deg); } } - -.b2b-status-tracker > .btn-arrow:nth-of-type(1) { - margin-right: 10px; } - -.b2b-status-tracker > .btn-arrow:nth-of-type(2) { - margin-left: 20px; } - -.b2b-status-tracker > .btn-arrow { - height: 20px; - margin-top: 25px; - overflow: visible; } - .b2b-status-tracker > .btn-arrow > .btn-secondary > .icon-primary-left { - margin-right: 5px; - color: #0574ac; } - .b2b-status-tracker > .btn-arrow > .btn-secondary > .icon-primary-right { - color: #0574ac; } - -.b2b-status-tracker > .b2b-status-tracker-step { - padding: 0; - position: relative; } - -.b2b-status-tracker-step { - margin-left: 5px; } - -.b2b-status-tracker > .b2b-status-tracker-step .b2b-status-tracker-heading { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 14px; - color: #191919; - margin-bottom: 10px; } - -.b2b-status-tracker > .b2b-status-tracker-step.complete > .progress > .progress-bar { - width: 100%; - background-color: #1b7e28; } - -.b2b-status-tracker > .b2b-status-tracker-step.complete .icoControls-approval { - color: #1b7e28; } - -.b2b-status-tracker > .b2b-status-tracker-step.current > .progress > .progress-bar { - width: 100%; - background-color: #333333; } - -.b2b-status-tracker > .b2b-status-tracker-step.current .icon-misc-time { - color: #333333; } - -.b2b-status-tracker > .b2b-status-tracker-step.pending > .progress > .progress-bar { - width: 100%; - background-color: #ffb81c; } - -.b2b-status-tracker > .b2b-status-tracker-step.pending .icoControls-statusokay { - color: #ffb81c; } - -.b2b-status-tracker > .b2b-status-tracker-step.actionRequired > .progress > .progress-bar { - width: 100%; - background-color: #cf2a2a; } - -.b2b-status-tracker > .b2b-status-tracker-step.actionRequired .icoSecurityalerts-alert { - color: #cf2a2a; } - -.b2b-status-tracker > .b2b-status-tracker-step.notAvailable > .progress > .progress-bar { - width: 100%; - background-color: #767676; } - -.b2b-status-tracker > .b2b-status-tracker-step.notAvailable .icoControls-restricted { - color: #767676; } - -.b2b-status-tracker > .b2b-status-tracker-step > .progress { - position: relative; - border-radius: 1.5px; - height: 3px; - margin-bottom: 10px; - background-color: #c5c5c5; } - .b2b-status-tracker > .b2b-status-tracker-step > .progress > .progress-bar { - width: 0; - height: 3px; } - -.b2b-status-tracker > .b2b-status-tracker-step > .b2b-status-tracker-estimate { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 14px; - color: #191919; - margin-bottom: 10px; } - -.b2b-status-tracker > .b2b-status-tracker-step > .b2b-status-tracker-description { - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 12px; - color: #767676; - padding-right: 15px; } - .b2b-status-tracker > .b2b-status-tracker-step > .b2b-status-tracker-description a { - cursor: pointer; } - -.step-indicator { - height: auto; - padding: 40px 0; } - -.step-heading { - color: #333333; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 3.8rem; - line-height: 0.8; } - -.steps { - display: flex; - height: 5px; - margin-top: 60px; - position: relative; } - -.steps li { - color: #5a5a5a; - flex: 1; - margin-right: 5px; - background-color: #c4c4c4; - outline: 1px solid transparent; } - -.steps li:first-child { - border-radius: 4px 0 0 4px; } - -.steps li:last-child { - margin-right: 0; - border-radius: 0 4px 4px 0; } - -.steps li.step-on, -.steps li.step-done { - background-color: #007a3e; - color: #007a3e; - border: 1px solid transparent; } - -.step-text { - bottom: 29px; - display: inline-block; - font-size: 1.8rem; - margin-top: 0; - position: relative; - white-space: nowrap; } - -.step-on .step-text { - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - -.steps li .step-text[data-large-text]:before { - content: attr(data-large-text) " "; } - -.step-confirmation { - color: #007a3e; - margin-bottom: 30px; } - -.step-confirmation > div { - display: flex; } - -.step-confirmation > div i { - color: #007a3e; - font-size: 50px; - margin-right: 10px; } - -.step-confirmation.centered > div i { - margin-left: -60px; } - -.step-confirmation > div h3 { - font-size: 2.4rem; - margin: 26px 0 20px; } - -.step-confirmation > p { - margin: 0; } - -@media (max-width: 1024px) { - .step-indicator { - padding: 25px 0; } - .steps { - margin-top: 0; } - .step-heading { - font-size: 2.4rem; - margin-bottom: 11px; } - .step-text { - display: none; } - .step-on .step-text { - bottom: 6px; - display: block; - font-size: 1.2rem; - left: 0; - line-height: 1; - margin-top: 10px; - position: absolute; - top: 4px; } - .steps li .step-text[data-sm-text]:before { - content: attr(data-sm-text) " "; - color: #333333; } - .step-confirmation { - margin-top: 30px !important; } } - -@media (max-width: 767px) { - .step-confirmation.centered > div i { - margin-left: 0; } - .step-confirmation.centered > p { - margin-left: 40px; } - .step-confirmation > div h3 { - font-size: 1.8rem; - margin: 13px 0 10px; } - .step-confirmation > div i { - font-size: 30px; - margin-right: 10px; } } - -.step-indicator.vertical { - height: auto; } - -.vertical .step-heading { - font-size: 24px; } - -.vertical .steps { - display: block; - height: inherit; - width: 100%; } - -.vertical .steps li { - align-items: center; - background-color: transparent; - display: flex; - height: 60px; - margin: 0 0 4px; - padding: 0 0 0 20px; - position: relative; } - -.vertical .steps li .step-text { - align-self: center; - color: #0568ae; - display: block; - margin: 0; - position: relative; - font-size: 14px; - top: 0; } - -.vertical .steps li .step-text[data-large-text]:before { - content: attr(data-large-text) " "; } - -.vertical .steps li:after { - background-color: transparent; - border-left: 4px solid #d2d2d2; - content: ""; - height: 60px; - left: 0; - margin: 0; - padding: 0; - position: absolute; - top: 0; - width: 4px; } - -.vertical .steps li.step-on:after, -.vertical .steps li.step-done:after { - border-color: #0568ae; } - -.b2b-step-tracker { - height: auto; - padding: 0px 0px 0px 0px; } - .b2b-step-tracker .btn.btn-left { - margin-right: 10px; } - .b2b-step-tracker .btn.btn-right { - margin-left: 5px; } - .b2b-step-tracker .b2b-left-arrow { - float: left; - margin-top: -5px; } - .b2b-step-tracker .b2b-right-arrow { - float: right; - margin-top: -5px; } - .b2b-step-tracker .b2b-steps { - display: flex; - height: 5px; - margin-top: 30px; - position: relative; } - .b2b-step-tracker .b2b-steps li { - color: #767676; - flex: 1; - margin-right: 5px; - background-color: #767676; - outline: 1px solid transparent; - height: 3px; } - .b2b-step-tracker .b2b-steps li.b2b-step-done { - background-color: #1b7e28; - color: #007a3e; - height: 3px; } - .b2b-step-tracker .b2b-steps li.b2b-step-on { - background-color: #333333; - color: #333333; - height: 3px; - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - .b2b-step-tracker .b2b-steps li .b2b-step-text { - bottom: 29px; - display: inline-block; - font-size: 14px; - margin-top: 0; - position: relative; - white-space: nowrap; } - .b2b-step-tracker .b2b-steps li .b2b-step-text[data-large-text]:before { - content: attr(data-large-text) " "; } - .b2b-step-tracker .b2b-steps li:first-child { - border-radius: 2px 0 0 2px; } - .b2b-step-tracker .b2b-steps li:last-child { - margin-right: 0; - border-radius: 0 2px 2px 0; } - -@media (max-width: 1024px) { - .b2b-step-tracker { - padding: 25px 0; } - .b2b-step-tracker .b2b-steps { - margin-top: 0; } - .b2b-step-tracker .b2b-steps li .b2b-step-text { - display: none; } - .b2b-step-tracker .b2b-steps li .b2b-step-text[data-sm-text]:before { - content: attr(data-sm-text) " "; - color: #333333; } - .b2b-step-tracker .b2b-steps li.b2b-step-on .b2b-step-text { - bottom: 6px; - display: block; - font-size: 5px; - left: 0; - line-height: 1; - margin-top: 10px; - position: absolute; - top: 4px; } } - -.strength-meter-container { - height: 26px; - max-width: 450px; } - -.strength-meter-gauge { - border-radius: 2px; - background-color: #d2d2d2; - height: 5px; - display: block; - position: relative; - outline: 1px solid transparent; } - -.strength-meter-gauge-fill { - height: 100%; - display: block; - border-radius: 2px; - text-indent: -9999px; - width: 0%; - border: 2px solid transparent; } - -.strength-meter-gauge-fill.strength-meter-animate { - transition: width 0.5s linear, background-color 0.5s linear; } - -.strength-meter-animate[style*="20"] { - background-color: #cf2a2a; } - -.strength-meter-animate[style*="20"] + .strength-meter-divider + .strength-meter-content:after { - content: "Unacceptable"; } - -.strength-meter-animate[style*="40"] { - background-color: #ea7400; } - -.strength-meter-animate[style*="40"] + .strength-meter-divider + .strength-meter-content:after { - content: "Weak"; } - -.strength-meter-animate[style*="60"] { - background-color: #ea7400; } - -.strength-meter-animate[style*="60"] + .strength-meter-divider + .strength-meter-content:after { - content: "Fair"; } - -.strength-meter-animate[style*="80"] { - background-color: #007a3e; } - -.strength-meter-animate[style*="80"] + .strength-meter-divider + .strength-meter-content:after { - content: "Good"; } - -.strength-meter-animate[style*="100"] { - background-color: #007a3e; } - -.strength-meter-animate[style*="100"] + .strength-meter-divider + .strength-meter-content:after { - content: "Excellent"; } - -.strength-meter-divider { - position: absolute; - top: 0; - bottom: 0; - left: 0; - right: 0; - display: flex; - overflow: hidden; } - -.strength-meter-divider span { - background: transparent; - display: block; - flex-grow: 1; - border-right: solid 1px #fff; } - -.strength-meter-divider span:first-child { - border-radius: 2px 0 0 2px; } - -.strength-meter-divider span + .strength-meter-divider span { - border-radius: 0; } - -.strength-meter-divider span:last-child { - border-radius: 0 2px 2px 0; - border-right: 0; } - -.strength-meter-content { - font-size: 14px; - line-height: 1; - padding-top: 7px; - position: absolute; } - -.strength-meter-content:before { - font-family: "Omnes-ECOMP-W02", Arial; - content: "Password strength: "; } - -.strength-meter-content:after { - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - -.strength-meter-container { - height: 26px; - min-width: 290px; - max-width: 450px; } - -.strength-meter-container .strength-meter-gauge { - border-radius: 2px; - background-color: #cccccc; - box-shadow: 0 1px 1px -1px #333 inset; - height: 5px; - display: block; - overflow: hidden; - position: relative; } - -.strength-meter-container > .strength-meter-gauge > .strength-meter-gauge-fill { - height: 100%; - box-shadow: 0 1px 1px -1px #999 inset; - display: block; - text-indent: -9999px; - width: 0%; } - -.strength-meter-container > .strength-meter-gauge > .strength-meter-gauge-fill.strength-meter-animate { - transition: width 0ms ease-out, background-color 0ms ease-in; } - -.strength-meter-container > .strength-meter-gauge > .strength-meter-divider { - position: absolute; - top: 0; - bottom: 0; - left: 0; - right: 0; - display: flex; } - -.strength-meter-container > .strength-meter-gauge > .strength-meter-divider span { - background: transparent; - display: block; - flex-grow: 1; - border-right: solid 1px #fff; } - -.strength-meter-container > .strength-meter-gauge > .strength-meter-divider span:last-child { - border-right: 0; } - -.strength-meter-container > .strength-meter-content { - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 14px; - line-height: 1; - padding-top: 7px; } - -.strength-meter-container > .strength-meter-content:before { - content: none; } - -.strength-meter-container > .strength-meter-content > .strength-meter-content-state { - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - -.btn-switch-label { - display: flex; - align-items: center; } - .btn-switch-label:focus .btn-switch { - outline: 1px dotted #666; - outline-offset: 5px; } - .btn-switch-label input:focus .btn-switch { - outline: 1px dotted #666; - outline-offset: 5px; } - .btn-switch-label > span { - flex: 1; } - -.btn-switch { - background-color: #fff; - border: 1px solid #d2d2d2; - border-radius: 16px; - box-shadow: 0 4px 5px -5px rgba(0, 0, 0, 0.15) inset, 0 5px 5px -5px rgba(0, 0, 0, 0.15); - height: 32px; - overflow: hidden; - position: relative; - width: 80px; - user-select: none; } - /* .btn-switch input[type="checkbox"] { - left: 0; - margin: 0; - opacity: 0; - position: absolute; - top: 0; - transition: none; } - .btn-switch input[type="checkbox"] + .switch-overlay .btn-slider-on .activo { - font: 0px/0 "Omnes-ECOMP-W02", Arial; } - .btn-switch input[type="checkbox"] + .switch-overlay .btn-slider-on + .btn + .btn-slider-off .inactivo { - font: 0px/0 "Omnes-ECOMP-W02", Arial; } */ - .btn-switch input:checked + .switch-overlay { - left: 0; - transition: all .3s linear .0s; } - .btn-switch input:checked + .switch-overlay .switch-handle { - background-color: #007a3e; - background: linear-gradient(to bottom, #008744 0%, #007a3e 100%); - transition: background-color 0.3s linear 0s; - border: 1px solid transparent; } - .btn-switch input + .switch-overlay { - left: -48px; - transition: all .3s linear .0s; } - .btn-switch input + .switch-overlay .switch-handle { - background-color: #f2f2f2; - background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); - transition: background-color 0.3s linear 0s; - border: 1px solid #d2d2d2; } - .btn-switch input[disabled] + .switch-overlay { - left: 0; - width: 100% !important; - background-color: #d2d2d2; - color: #959595; - cursor: not-allowed !important; } - .btn-switch input[disabled] + .switch-overlay .btn-slider-on { - display: none; } - .btn-switch input[disabled] + .switch-overlay .activo { - display: none; } - .btn-switch input[disabled] + .switch-overlay .switch-handle { - display: none; } - .btn-switch input[disabled] + .switch-overlay .btn-slider-off { - left: 0; - text-align: center; - padding: 0; } - .btn-switch input[disabled]:checked + .switch-overlay { - left: 0; - width: 100% !important; - background-color: #fff; } - .btn-switch input[disabled]:checked + .switch-overlay .btn-slider-off { - display: none; } - .btn-switch input[disabled]:checked + .switch-overlay .btn-slider-off + .inactivo { - display: none; } - .btn-switch input[disabled]:checked + .switch-overlay .switch-handle { - display: none; } - .btn-switch input[disabled]:checked + .switch-overlay .btn-slider-on { - display: block; - text-align: center; - padding: 0; - color: #007a3e !important; - font-weight: bold; } - .btn-switch input[disabled]:checked + .switch-overlay .activo { - display: block; - text-align: center; - padding: 0; - color: #007a3e !important; - font-weight: bold; } - .btn-switch input[disabled]:checked + .btn-slider-on { - display: block; } - .btn-switch input[disabled] + .btn-slider-on + .switch-handle { - width: 100%; - margin: 0; } - .btn-switch input[disabled] + .btn-slider-on + .switch-handle + .btn-slider-off { - display: block; } - /* .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on { - display: none; } - .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on .activo { - border: medium none; - color: #666; - font: 16px/32px "Omnes-ECOMP-W02", Arial; - height: auto; - margin: 0 auto; - width: auto; } - .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on .activo:before { - display: none; } - .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off { - display: block; - padding: 0; - text-align: center; - color: #333333; } - .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off .inactivo { - border: medium none; - color: #666; - font: 16px/32px "Omnes-ECOMP-W02", Arial; - height: auto; - margin: 0 auto; - width: auto; } - .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off .inactivo:before { - display: none; } - .btn-switch input[type="checkbox"][disabled]:checked + .switch-overlay .btn-slider-on { - display: block; - padding: 0; - text-align: center; - color: #007a3e; } - .btn-switch input[type="checkbox"][disabled]:checked + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off { - display: none; } - .btn-switch input[type="checkbox"][disabled]:checked + .switch-overlay .activo { - color: #007a3e; - font-weight: bold; } */ - -.switch-overlay { - border-radius: 16px; - color: black !important; - font-size: 1.6rem; - height: 32px; - left: 0; - position: absolute; - top: -1px; - width: 126px; - overflow: hidden; } - -.btn-slider-on { - left: -1px; - text-align: left; - padding-left: 12px; - display: inline-block; - font-family: "Omnes-ECOMP-W02", Arial; - height: 32px; - line-height: 32px; - position: absolute; - top: 1px; - width: 80px; } - -.btn-slider-off { - display: inline-block; - font-family: "Omnes-ECOMP-W02", Arial; - height: 32px; - line-height: 32px; - position: absolute; - top: 1px; - width: 80px; - right: 1px; - text-align: right; - padding-right: 11px; } - -.switch-handle { - border-radius: 50%; - display: inline-block; - height: 26px; - left: 50px; - position: absolute; - top: 3px; - width: 26px; } - -.activo { - display: block; - font-size: 0.1px; - line-height: 40px; - overflow: hidden; } - .activo:before { - background-image: none; - border-left: 3px solid #007a3e; - content: " "; - height: 18px; - left: 22px; - margin: 2px auto; - position: absolute; - top: 5px; - width: 0; } - -.inactivo { - font-size: 0.1px; - line-height: 40px; } - .inactivo:before { - background-image: none; - border: 3px solid #959595; - border-radius: 100%; - content: " "; - display: block; - position: absolute; - top: 4px; - right: 3px; - height: 16px; - width: 16px; } - -.btn-switch.focused { - outline: 1px dotted #000; - outline-offset: 5px; } - -table { - max-width: 100%; - background-color: transparent; - border-collapse: collapse; - border-spacing: 0; - width: 100%; - margin-bottom: 20px; } - -table caption { - text-align: left; } - -table thead th { - vertical-align: bottom; } - -table th, -table td { - padding: 19px 20px; - line-height: 1; - font-size: 1.4rem; - text-align: left; - vertical-align: top; - word-wrap: break-word; } - -table th { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 1.6rem; - font-weight: normal; - color: #333333; - padding: 13px 20px; } - -table tbody td { - border-left: 1px solid #d2d2d2; - border-top: 1px solid #d2d2d2; } - -table tbody td:first-child { - border-left: none; } - -.tiny-accordion.iconleft.accordion-table-layout .toggle-header, -.tiny-accordion.iconleft.accordion-table-layout .toggle-header + .accordion-content, -.tiny-accordion.iconleft.accordion-table-layout .inactive-toggle-header { - padding: 0 0 0 50px; } - -.faux-table-cell, -.inactive-toggle-header .faux-table-cell { - display: table-cell; - width: 100%; - padding: 13px 0 10px 0; - font-size: 16px; - color: #333333; } - -.accordion-content .faux-table-cell { - display: table-cell; - width: 100%; - padding: 0 0 10px 0; } - -.faux-table-cell:last-child { - text-align: right; - min-width: 100px; - max-width: 150px; - width: 1%; - background-color: #f2f2f2; - color: #333333; - font-size: 14px; - border-left: 1px solid #d2d2d2; - padding: 0 20px 0 10px; } - -.tiny-accordion.iconleft.accordion-table-layout .toggle-header.opened .hide-when-expanded { - opacity: 1; } - -.tiny-accordion.iconleft.accordion-table-layout .toggle-header.opened .hide-when-expanded { - opacity: 0; - transition: opacity .3s linear .2s; } - -@media (max-width: 767px) { - table th, - table td { - padding: 19px 10px; } - table th:first-child, - table td:first-child { - padding: 19px 15px; } } - -.data-row-list ul > li { - background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewport%3D%220%200%201%201%22%20style%3D%22width%3A100%25%3B%20height%3A1px%3B%22%3E%3Cstyle%3Eline%7Bstroke%3Argba(153%2C153%2C153%2C1)%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cline%20y2%3D%221%22%20y1%3D%221%22%20x1%3D%221%22%20x2%3D%22100%25%22%20stroke-dasharray%3D%221%2C%203%22%2F%3E%3C%2Fsvg%3E") !important; } - -table { - border-bottom: 1px solid #d2d2d2; } - -table th, -table td { - padding: 15px 15px 10px; } - -.data-row .col-1 { - white-space: nowrap; - padding: 15px 15px 0 15px; - position: relative; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 1.4rem; - border-top: 1px solid #d2d2d2; } - -.data-row.has-button .col-1 { - padding: 0; } - -.complex-table .data-row .col-1 { - color: #0568ae; - cursor: pointer; } - -.data-row.opened { - box-shadow: 0 -2px 0 0 #d2d2d2; } - -.data-row.opened td, -.data-row.opened th { - border-left: 1px solid transparent; - border-bottom: 1px solid transparent; } - -.data-row.opened + .data-row-list { - box-shadow: 0 1px 0 0 #d2d2d2; } - -.data-row.opened + .data-row-list > td { - padding-top: 0; } - -.data-row.opened + .data-row-list + .data-row.opened { - box-shadow: 0 -1px 0 0 #d2d2d2; } - -.data-row button { - background-color: transparent; - border: medium none; - border-radius: 0; - color: #0568ae; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 1.4rem; - left: 0; - margin: 0; - padding: 12px 15px 7px; - position: relative; - text-align: left; - top: 0; - vertical-align: middle; } - -.data-row button:focus { - outline: 1px dotted black; } - -.data-row .col-1 i { - top: -1px; - margin-right: 10px; - display: inline-block !important; } - -.data-row-list th:first-child { - background-color: inherit !important; - border-top: none; - padding: 0 15px 15px; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 1.4rem; } - -.data-row-list ul { - margin: 0 0 0 30px; } - -.data-row-list ul > li:before { - display: none; } - -.data-row-list ul > li { - /* background-image in tables.less */ - background-position: left 13px; - background-repeat: repeat-x; - background-size: 4px 1px; - display: table; - padding-left: 0; - width: 100%; } - -.data-row-list li div { - display: table-cell; - background-color: white; - float: left; - text-align: left; - padding-left: 0; - padding-right: 7px; } - -.data-row-list li div + div { - float: right; - text-align: right; - padding-right: 0; - padding-left: 7px; } - -.complex-table td:nth-child(1), -.complex-table td:nth-child(2), -.complex-table td:nth-child(3), -.complex-table td:nth-child(4), -.complex-table td:nth-child(5), -.complex-table td:nth-child(6), -.complex-table td:nth-child(7), -.complex-table td:nth-child(8), -.complex-table td:nth-child(9) { - white-space: nowrap; } - -th:nth-child(8) { - word-wrap: break-word; - word-spacing: 0; } - -.align-col-right { - text-align: right; } - -.complex-table th:not(:first-child), -.complex-table td:not(:first-child) { - text-align: right; } - -.striped tbody > tr td { - background-color: transparent !important; } - -.striped tbody > tr.data-row.odd, -.striped tbody > tr.data-row.odd + .data-row-list, -.striped tbody > tr.data-row.odd + .data-row-list li div { - background-color: #f2f2f2 !important; } - -.striped tbody > tr:not('.data-row'):nth-child(even) { - background-color: #f2f2f2; } - -.b2b-table-div .selectWrap { - width: 290px; - position: relative; - display: inline-table; - margin-bottom: 0px; } - -.b2b-external-sort-div { - float: right; - padding-bottom: 25px; } - -.b2b-external-sort-div .sortButton { - font-size: 36px; - border: 1px solid #ccc; - background: #FFF; - border-radius: 6px; - text-align: center; - background: linear-gradient(#fcfcfc, #f2f2f2); - background-blend-mode: multiply; - width: 1em; } - -.b2b-external-sort-label { - padding-bottom: 10px; } - -.b2b-external-sort-div a:hover { - cursor: pointer; } - -.b2b-external-sort-div a:hover, .b2b-external-sort-div a:focus { - text-decoration: none; } - -.b2b-external-sort-label label { - position: relative; } - -.b2b-external-sort-margin { - margin-right: 13px !important; } - -.b2b-table-sorter-icon [class*="icoArrows-"]:before { - font-size: 20px; } - -@media screen and (max-width: 950px) { - .b2b-external-sort-margin .selectWrap { - bottom: 0px !important; } } - -.tablesorter-default .tablesorter-header.sorter-false .tablesorter-header-inner { - background: 0 0; - cursor: default; } - -.tablesorter-default .tablesorter-header .tablesorter-header-inner { - /* background-image: url(images/tables/upanddown.png);*/ - background-position: center right; - background-repeat: no-repeat; - cursor: pointer; - white-space: normal; - display: inline-block; - vertical-align: baseline; - zoom: 1; - *display: inline; - *vertical-align: auto; - /* padding: 0 24px 0 0;*/ } - -.tablesorter-default .tablesorter-header.sorter-false .tablesorter-header-inner { - padding: 0; } - -.tablesorter-default .tablesorter-header.tablesort-sortable .tablesorter-header-inner span { - margin-right: 24px; - display: inline-block; } - -/* -.tablesorter-default thead .headerSortUp .tablesorter-header-inner,.tablesorter-default thead .tablesorter-headerAsc .tablesorter-header-inner,.tablesorter-default thead .tablesorter-headerSortUp .tablesorter-header-inner { - background-image: url(images/tables/up.png); -} - -.tablesorter-default thead .headerSortDown .tablesorter-header-inner,.tablesorter-default thead .tablesorter-headerDesc .tablesorter-header-inner,.tablesorter-default thead .tablesorter-headerSortDown .tablesorter-header-inner { - background-image: url(images/tables/down.png); -} -*/ -.tablesorter-default thead .headerSortUp .tablesorter-header-inner, -.tablesorter-default thead .tablesorter-headerAsc .tablesorter-header-inner, -.tablesorter-default thead .tablesorter-headerSortUp .tablesorter-header-inner, -.tablesorter-default thead .headerSortDown .tablesorter-header-inner, -.tablesorter-default thead .tablesorter-headerDesc .tablesorter-header-inner, -.tablesorter-default thead .tablesorter-headerSortDown .tablesorter-header-inner { - padding-right: 0; - line-height: 16px; } - -.tablesorter-default thead .headerSortUp .tablesorter-header-inner:after, -.tablesorter-default thead .tablesorter-headerAsc .tablesorter-header-inner:after, -.tablesorter-default thead .tablesorter-headerSortUp .tablesorter-header-inner:after { - font-family: 'icoPrimary' !important; - speak: none; - font-style: normal; - font-size: 24px; - font-weight: normal; - font-variant: normal; - text-transform: none; - line-height: 14px; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - -moz-user-select: none; - -ms-user-select: none; - -webkit-user-select: none; - user-select: none; - content: "\ea3c"; - /* position: relative;*/ - position: absolute; - text-decoration: inherit; - display: inline-block; - transform: rotate(180deg); - margin-left: -22px; - margin-top: 2px; } - -.tablesorter-default thead .headerSortDown .tablesorter-header-inner:after, -.tablesorter-default thead .tablesorter-headerDesc .tablesorter-header-inner:after, -.tablesorter-default thead .tablesorter-headerSortDown .tablesorter-header-inner:after { - font-family: 'icoPrimary' !important; - speak: none; - font-style: normal; - font-size: 24px; - font-weight: normal; - font-variant: normal; - text-transform: none; - line-height: 14px; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - -moz-user-select: none; - -ms-user-select: none; - -webkit-user-select: none; - user-select: none; - content: "\ea3c"; - /* position: relative;*/ - position: absolute; - text-decoration: inherit; - display: inline-block; - margin-left: -22px; - margin-top: 2px; } - -.tablesorter-search-highlight { - font-weight: 700; } - -.tablesorter-headerRow th:focus { - outline: thin dotted #666; - outline-offset: -1px; } - -.b2b-table-message { - font-family: "Omnes-ECOMP-W02", Arial; } - .b2b-table-message .b2b-magnify-glass { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%20enable-background%3D%22new%200%200%2036%2036%22%3E%3Cpath%20d%3D%22M27.847%208.26c-1.805-1.803-4.202-2.795-6.751-2.795-2.548%200-4.945.993-6.749%202.796-1.803%201.803-2.796%204.2-2.796%206.75%200%201.879.543%203.681%201.576%205.242l-7.059%207.059c-.357.356-.554.831-.554%201.336-.001.505.196.98.554%201.337.357.356.832.552%201.336.552.503%200%20.977-.196%201.336-.553l7.047-7.048c1.576%201.062%203.402%201.622%205.309%201.622%202.55%200%204.948-.993%206.751-2.796%201.803-1.804%202.796-4.201%202.796-6.751%200-2.549-.993-4.947-2.796-6.751zm-6.761.96c3.186%200%205.778%202.592%205.778%205.778%200%203.186-2.592%205.778-5.778%205.778-3.186%200-5.778-2.592-5.778-5.778%200-3.185%202.592-5.778%205.778-5.778z%22%20fill%3D%22%23767676%22%2F%3E%3C%2Fsvg%3E"); - background-repeat: no-repeat; - background-position: center; - height: 50px; } - .b2b-table-message .b2b-alert { - font-size: 50px; } - .b2b-table-message .b2b-loading-dots { - font-size: 50px; - margin-bottom: 20px; } - .b2b-table-message .b2b-message { - text-align: center; - padding-bottom: 45px; - padding-top: 40px; - border-style: solid; - border-width: 1px; - border-top: none; - padding-bottom: 45px; - border-color: #d2d2d2; - width: 100%; - min-height: 220px; } - .b2b-table-message .b2b-error-title { - font-family: "Omnes-ECOMP-W02", Arial; - color: #444444; - line-height: 26px; - margin-top: 10px; } - .b2b-table-message .b2b-message-title { - color: #444; - font-family: "Omnes-ECOMP-W02", Arial; } - -.b2b-table-scrollbar { - border: 1px solid; - width: 651px; - position: relative; } - .b2b-table-scrollbar .b2b-table-inner-container { - width: 650px; - padding-left: 150px; - overflow-x: scroll; } - .b2b-table-scrollbar th:first-child { - background-color: #FFFFFF; } - .b2b-table-scrollbar td:first-child { - background-color: #FFFFFF; - border-top: 1px solid #cccccc; - border-right: 1px solid #cccccc; - margin-top: -0.5px; } - .b2b-table-scrollbar tr { - th: nth-child(2), td; } - .b2b-table-scrollbar tr :nth-child(2) { - border-left: none; } - .b2b-table-scrollbar tr:last-child > td:first-child { - border-bottom: 1px solid #cccccc; } - -.b2b-scrollbar-arrow-left { - float: left; - margin: 10px; } - -.b2b-scrollbar-arrow-right { - float: right; - clear: right; - margin: 10px; } - .b2b-scrollbar-arrow-right.btn-arrow .btn { - margin-right: 0; } - -.b2b-table-scrollbar ::-webkit-scrollbar { - height: 10px; } - -.b2b-table-scrollbar ::-webkit-scrollbar-thumb { - background: #666666; - border-radius: 5px; } - -.tabs { - margin-left: 0; - margin-bottom: 20px; - list-style: none; } - -.tabs > li > a { - display: block; } - -.tabs > li > a:hover, -.tabs > li > a:focus { - text-decoration: none; - background-color: #d2d2d2; } - -.tabs > .pull-right { - float: right; } - -.tabs:before, -.tabs:after { - display: table; - content: ""; - line-height: 0; } - -.tabs:after { - clear: both; } - -.tabs > li { - float: left; } - -.tabs > li > a { - padding-right: 20px; - padding-left: 20px; - margin-right: 3px; - line-height: 16px; } - -.tabs { - margin: 0; } - -.tabs > li { - margin-bottom: -1px; } - -.tabs > li:first-child { - margin-left: 20px; } - -.tabs > li > a { - padding: 12px 20px; - border: 1px solid #d2d2d2; - border-radius: 6px 6px 0 0; - background-color: #f2f2f2; - color: #5a5a5a; - border-color: #d2d2d2; } - -.tabs > li > a { - margin-right: 6px; } - -.tabs > li > a, -.tabs > li > a:hover, -.tabs > li > a:focus { - background-image: none; - background-color: #ffffff; - color: #5a5a5a; - border-color: #d2d2d2; - border-bottom: 1px solid transparent; - cursor: pointer; } - -.tabs.tabs-justified, -.tabs.promo-tabs { - width: 100%; - border-bottom: 0; - margin-bottom: -1px; } - -.tabs.tabs-justified > li, -.tabs.promo-tabs > li { - display: table-cell; - float: none; - width: 1%; - border-left: 1px solid #d2d2d2; } - -.tabs.tabs-justified > li.active, -.tabs.promo-tabs > li.active { - position: relative; - z-index: 1000; } - -.tabs.tabs-justified > li > a { - padding-right: 5px; - padding-left: 5px; } - -.tabs.tabs-justified > li > a, -.tabs.promo-tabs > li > a { - text-align: center; } - -.tabs.promo-tabs > li > a { - padding: 0; - margin: 0; - border-radius: 0; - border: none; - color: #0568ae; - font-size: 1.2rem; - text-align: center; - padding: 6px 10px 10px; - border-top: 4px solid #e6e6e6; - filter: none; - border-bottom: 1px solid #d2d2d2; - background-color: #f9f9f9; } - -.tabs > li:last-child > a { - margin-right: 0; } - -.tabs.promo-tabs > li.active > a { - color: #333333; - border-top: 4px solid #ea7400; - border-bottom-color: white; - background-color: #fff !important; - filter: none; - cursor: default; } - -.tabs.promo-tabs > li:first-child { - border-left: none; } - -.tabs.promo-tabs > li > a img { - max-width: inherit; - max-height: 39px; - margin: 0 auto 5px auto; - display: block; } - -.tabbable:before, -.tabbable:after { - display: table; - content: ""; - line-height: 0; } - -.tabbable:after { - clear: both; } - - - -.tabs.promo-tabs > li > a { - font-size: 2.0rem; - height: 70px; - padding: 20px 20px 24px; - background-color: #FFFFFF; - border-top: 5px solid #FFFFFF; - white-space: nowrap; } - -.tabs.promo-tabs > li.active > a { - border-top: 5px solid #0574ac; } - -.tabs.promo-tabs > li > a:hover { - color: #333333; } - -.tabs.promo-tabs > li { - width: auto; } - -.tabs > li[disabled="disabled"] > a:hover { - cursor: not-allowed; } - -.b2b-tags { - background-color: #f2f2f2; - -webkit-transition: all .3s ease-out; - -moz-transition: all .3s ease-out; - transition: all .3s ease-out; - margin: 3px 5px 3px 0; - padding: 2px 15px; - border-radius: 6px; - border: 1px solid #c9c9c9; - display: inline-block; } - .b2b-tags .tags__item { - font-size: 14px; - vertical-align: baseline; - zoom: 1; - color: #333; } - .b2b-tags .tags__item i { - color: #0574ac; - font-size: 14px; - font-weight: bold; - margin-left: 10px; } - .b2b-tags .tags__item i:hover { - cursor: pointer; } - .b2b-tags .tags__item i:focus { - outline: thin dotted #666; } - .b2b-tags .tags__item:last-child { - margin-right: 0; } - .b2b-tags .tags__item:hover { - text-decoration: none; } - .b2b-tags .tags__item:focus { - outline: 1px dotted #666; } - -.tooltip-size-control { - display: block; } - -.tooltip { - display: inline-block; - height: 20px; - vertical-align: middle; - margin: 1px 0 0 7px; } - -p .tooltip { - margin: -3px 7px 0 0; } - -label .tooltip { - margin: 1px 0 0 7px; } - -.tooltip .icon-primary-tooltip { - background: none; - border: none; - display: inline-block; - font-size: 20px; - height: 20px; - margin: 0; - position: relative; - width: 20px; } - -.tooltip .icon-primary-tooltip:before { - top: 0; } - -.tooltip .icon-primary-tooltip:focus { - text-decoration: none; - outline: 1px dotted black; } - -.tooltip.active .icon-primary-tooltip:focus { - outline: none; } - -.tooltip .arrow { - display: none; - border-color: transparent; - border-style: solid; - background-color: #0568ae; - height: 20px; - width: 20px; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - opacity: 0; - transform: rotate(45deg); - z-index: 20; } - -.tooltip.active .icon-primary-tooltip[data-placement="top"] .arrow { - display: block; - bottom: 32px; - top: auto; - border-width: 0 1px 1px 0; } - -.tooltip.active .icon-primary-tooltip[data-placement="bottom"] .arrow { - border-width: 1px 0 0 1px; - display: block; - bottom: -33px; - top: auto; } - -.tooltip.active .arrow { - opacity: 1; } - -.tooltip .closingtooltip { - display: block; } - -.tooltip.active .closingtooltip { - display: none; } - -.tooltip-wrapper { - position: absolute; - margin-top: 20px; - left: 15px; - right: 15px; - display: none; - opacity: 0; - z-index: 1010; - text-align: left; } - -.helpertext { - background-color: #0568ae; - border: 1px solid transparent; - border-radius: 6px; - color: #fff; - display: none; - margin: 0; - padding: 25px; - position: relative; - text-align: left; - width: 100%; - top: 0; - z-index: 1009; } - -.tooltip .helpertext { - position: absolute; } - -.tooltip.active .icon-primary-tooltip[data-placement="bottom"] + .tooltip-wrapper .helpertext { - bottom: inherit; - top: 19px; } - -.tooltip.active .icon-primary-tooltip[data-placement="top"] + .tooltip-wrapper .helpertext { - top: inherit; - bottom: 38px; } - -.tooltip.active .tooltip-wrapper { - opacity: 1; - display: block; - margin-top: 0; } - -.tooltip.active .tooltip-wrapper .helpertext { - display: block; } - -.tooltip-onclick .btn.icon-primary-tooltip { - border: medium none; - box-shadow: none; - color: #0568ae; - font-size: 20px; - height: 34px; - line-height: 36px; - margin: 0; - min-width: 50px; - padding: 0; - position: absolute; - right: 0; - top: 0; } - -.tooltip-onclick .icon-primary-tooltip:before { - display: inline; - position: relative; } - -.tooltip-onclick textarea + .reset-field + .icon-primary-tooltip { - top: 4px; - right: 5px; - min-width: 40px; } - -.tooltip-onclick.active .helpertext:before, -.tooltip-onfocus.active .helpertext:before { - background-color: #0568ae; - border-color: transparent; - border-style: solid; - border-width: 1px 1px 0 0; - content: ""; - display: block; - height: 15px; - left: 17px; - margin: 0; - position: absolute; - top: -7px; - transform: rotate(-45deg); - width: 15px; } - -.tooltip-onclick.active .helpertext { - display: block; - opacity: 1; - margin: 14px 0 0; } - -.tooltip-onclick.active .helpertext:before { - left: inherit; - right: 18px; } - -.tooltip-onclick .reset-field { - right: 37px; } - -.tooltip-onclick .reset-field:before { - position: relative; - top: -1px; } - -.tooltip-onfocus.active .helpertext { - display: block; - margin: 14px 0 10px 0; } - -.popover-title { - display: block; - font-size: 14px; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-weight: bold; - margin-bottom: 8px; - white-space: normal; } - -.popover-content { - display: block; - font-size: 12px; - font-family: "Omnes-ECOMP-W02", Arial; - line-height: 1.5rem; - white-space: normal; } - -.popover-content span, -.popover-content p { - line-height: 1.5rem; } - -.popover-content p:last-child { - margin-bottom: 0; } - -.tooltip .tooltip-element { - position: relative; } - -.tooltip .icon-primary-tooltip:hover { - text-decoration: none; } - -.tooltip.active .tooltip-element[data-placement="top"] .arrow { - display: block; - bottom: 32px; - top: auto; } - -.tooltip.active .tooltip-element[data-placement="bottom"] .arrow { - display: block; - border-color: transparent transparent #0574ac; - bottom: -33px; - top: auto; } - -.tooltip.active .tooltip-element[data-placement="bottom"] + .tooltip-wrapper .helpertext { - bottom: inherit; - top: 19px; } - -.tooltip.active .tooltip-element[data-placement="top"] + .tooltip-wrapper .helpertext { - top: inherit; - bottom: 38px; } - -.b2b-tree { - padding: 0 10px 0 10px; - width: 320px; } - .b2b-tree ul { - list-style: none; - list-style-type: none; } - .b2b-tree a { - display: block; - padding: 0 0 5px 30px; - line-height: 22px; - margin-left: -10px; - font-size: 1.4rem; - outline-offset: -1px; } - .b2b-tree li:focus { - outline: none; } - .b2b-tree li:focus > a { - outline: thin dotted #666; - outline-offset: -1px; } - .b2b-tree ul li { - border-left: 1px solid #ccc; } - .b2b-tree ul li .b2b-tree-tooltip { - display: none; - position: absolute; - top: -25px; - left: 100%; - white-space: nowrap; - margin-left: 10px; - z-index: 1010; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 12px; } - .b2b-tree ul li .b2b-tree-tooltip-content { - background-color: #0568ae; - margin-left: 9px; - border-radius: 6px; - color: #fff; - padding: 25px; } - .b2b-tree ul li .b2b-tree-arrow-left { - width: 0; - height: 0; - border-top: 10px solid transparent; - border-bottom: 10px solid transparent; - border-right: 10px solid #0568ae; - position: absolute; - top: 25px; } - .b2b-tree ul li.activeTooltip > a .b2b-tree-tooltip { - display: block; } - .b2b-tree ul ul { - padding: 0 0 0 20px; } - .b2b-tree ul > li { - position: relative; - line-height: 18px; } - .b2b-tree a > span.b2b-tree-node-icon { - background-color: #FFF; - display: inline; - margin: 0; - padding: 0; - position: absolute; - left: -11px; - top: 0; - line-height: 14px; - width: 11px; } - .b2b-tree a > span.b2b-tree-node-icon > i { - font-size: 20px; } - .b2b-tree a:only-child { - color: #0574ac; } - .b2b-tree a:only-child > span.b2b-tree-node-icon { - left: -11px; - border-radius: 50%; - line-height: 7px; - top: 0; } - .b2b-tree a:only-child > span.b2b-tree-node-icon > i { - background-color: inherit; - background: #fff; } - .b2b-tree a > span.b2b-tree-node-icon > i.icon-primary-circle { - background-color: inherit; - background: #fff; - font-size: 5px; } - .b2b-tree a.b2b-locked-node:after { - content: "\ec58"; - float: right; - font-family: 'icoSecurityalerts' !important; } - .b2b-tree a:hover .b2b-locked-node:after { - text-decoration: none; } - .b2b-tree ul li:first-child > a:only-child > span.b2b-tree-node-icon { - left: -11px; - border-radius: 50%; - line-height: 12px; } - .b2b-tree ul li:last-child > a:only-child > span.b2b-tree-node-icon { - height: 27px; - background-color: #fff; } - .b2b-tree li a + ul { - height: 0; - overflow: hidden; } - .b2b-tree li a.active + ul { - height: auto; - overflow: visible; } - .b2b-tree li a.grp { - font-family: "Omnes-ECOMP-W02-Italic", Arial; } - .b2b-tree li a.grp.active { - color: #333; } - .b2b-tree span.end { - left: -6px !important; - top: 5px !important; } - .b2b-tree span.first-link { - width: 3px !important; - height: 15px !important; - top: 0px !important; - left: -2px !important; - background: #fff; } - -/* .b2b-tree-checkbox { - padding: 0 10px 0 10px; - width: 320px; } - .b2b-tree-checkbox ul { - list-style: none; - list-style-type: none; } - .b2b-tree-checkbox a { - display: block; - padding: 0 0 5px 30px; - line-height: 22px; - margin-left: -10px; - font-size: 14px; - outline-offset: -1px; } - .b2b-tree-checkbox li:focus { - outline: none; } - .b2b-tree-checkbox li:focus > a { - outline: thin dotted #666; - outline-offset: -1px; } - .b2b-tree-checkbox ul li { - border-left: 1px solid #ccc; } - .b2b-tree-checkbox ul ul { - padding: 0 0 0 20px; } - .b2b-tree-checkbox ul > li { - position: relative; - line-height: 18px; } */ - /* .b2b-tree-checkbox a > span.nodeIcon { - background-color: #FFF; - display: inline; - margin: 0; - padding: 0; - position: absolute; - left: -11px; - top: 0; - line-height: 14px; - width: 11px; } */ - /* .b2b-tree-checkbox a > span.nodeIcon > i { - font-size: 20px; } */ - .b2b-tree-checkbox a > span.nodeIcon.end { - margin-top: 10px; } - .b2b-tree-checkbox a:only-child { - color: #0574ac; } - .b2b-tree-checkbox a:only-child > span.nodeIcon { - left: -11px; - border-radius: 50%; - line-height: 7px; - top: 0; } - .b2b-tree-checkbox a:only-child > span.nodeIcon > i { - background-color: inherit; - background: #fff; } - .b2b-tree-checkbox a > span.nodeIcon > i.icon-primary-circle { - background-color: inherit; - background: #fff; - font-size: 5px; } - .b2b-tree-checkbox ul li:first-child > a:only-child > span { - left: -11px; - border-radius: 50%; - line-height: 12px; - top: 0px; } - .b2b-tree-checkbox ul li:first-child > a:only-child > span.end { - margin-top: 0px; } - .b2b-tree-checkbox ul li:first-child > a:only-child > span i.icon-primary-circle { - top: 8px; } - .b2b-tree-checkbox ul li:last-child > a:only-child > span { - height: 34px; - background-color: #fff; } - .b2b-tree-checkbox li a + ul { - height: 0; - overflow: hidden; } - .b2b-tree-checkbox li a.active + ul { - height: auto; } - .b2b-tree-checkbox li a.grp { - font-family: "Omnes-ECOMP-W02-Italic", Arial; } - .b2b-tree-checkbox span.end { - left: -6px !important; } - .b2b-tree-checkbox .checkbox { - margin-bottom: 0px; - margin-top: 2px; - font-size: 14px; } - .b2b-tree-checkbox .checkbox input:indeterminate + .skin:after { - content: "\2014"; - padding-left: 2px; - font-family: inherit !important; - line-height: inherit !important; } - /* .b2b-tree-checkbox span.first-link { - width: 3px !important; - height: 15px !important; - top: 0px !important; - left: -2px !important; - background: #fff; } */ - -.b2b-widget-window { - width: 147px; - right: 5px; - top: 60px; - position: absolute; - border: 1px solid #ccc; - background-color: #fff; - border-radius: 8px; - z-index: 1000; } - .b2b-widget-window li { - margin: 15px; } - -.b2b-widget-container { - background-color: #fff; - border-radius: 8px; - border: 1px solid #ccc; - position: relative; } - .b2b-widget-container .b2b-widget-header { - font-family: "Omnes-ECOMP-W02", Arial; - color: #333; - height: 55px; - padding-left: 15px; - padding-top: 19px; } - .b2b-widget-container .b2b-widget-header .header { - font-size: 18px; } - .b2b-widget-container .b2b-widget-header-icons { - font-size: 16px; - color: #0574ac; } - -.b2b-widget-header-icons button { - border: none; - background: transparent; - color: #0574ac; } - .b2b-widget-header-icons button:focus { - outline-style: solid; - outline-width: 1px; - outline-color: #0574ac; } - .b2b-widget-header-icons button:first-child { - margin-right: 0px; } - -.b2b-widget-container .b2b-widget-content { - height: 325px; - margin: 0; - padding: 20px; - position: relative; - border-top: 1px solid #ccc; } - -.b2b-widget-content .form-row:first-child { - margin-top: 0; } - -.b2b-widget-header-icons button.icoControls-gear:focus, .b2b-widget-header-icons button.icon-primary-close:focus { - outline: thin dotted #666; } - -.b2b-widget-header .icon-primary-close:before { - content: '-'; - display: inline-block; - margin: 0; - padding: 0; - outline: none; } - -.b2b-widget-window .arrow_box { - background: #fff; - border: 1px solid #ccc; } - -.b2b-widget-window.arrow_box:after, .b2b-widget-window.arrow_box:before { - bottom: 100%; - left: 75%; - border: solid transparent; - content: " "; - height: 0; - width: 0; - position: absolute; - pointer-events: none; } - -.b2b-widget-window.arrow_box:after { - border-color: rgba(255, 255, 255, 0); - border-bottom-color: #fff; - border-width: 10px; - margin-left: 1px; } - -.b2b-widget-window.arrow_box:before { - border-color: rgba(204, 204, 204, 0); - border-bottom-color: #ccc; - border-width: 11px; - margin-left: 0px; } - -/************************** Overrides for Filters ***************************/ -.filter-container .filter-header h2 { - line-height: 1 !important; - margin: 0 !important; } - -.filter-container .icon-primary-spinner:before { - content: none; } - -.filter-container .fixed-230-subnav { - margin: 10px !important; - width: inherit !important; } - -.filter-container .unlinked:focus { - outline: thin dotted #666 !important; } - -.filter-container .unlinked.active { - color: inherit !important; } - -.filter-container .fixed-230-subnav a > i { - background: none; } - -.filter-container .fixed-230-subnav ul { - margin: 0 0 10px 10px; } - -/************************** Overrides for Filters ***************************/ -.row .filter-container { - background-color: #fff; } - -.filter-header { - overflow: hidden; - padding: 20px 0; - position: relative; } - -.filter-header h2 { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 2.4rem; - margin-bottom: 0; } - -.filter-selected { - border-top: 1px solid #ccc; - padding-top: 20px; } - -.filter-selected > span { - font-size: 1.3rem; - text-transform: uppercase; } - -.filter-selected > a.clear-all-filters { - float: right; - font-size: 1.4rem; } - -.filter-selected > span, -.filter-selected > a.clear-all-filters { - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - -.filter-selected-group { - padding-top: 15px; } - -.filter-selected-badge { - background-color: #f2f2f2; - border-radius: 15px; - display: inline-block; - font-size: 1.4rem; - margin-bottom: 10px; - padding: 0 0 0 12px; } - -.filter-selected-badge .icoControls-optionsoff { - background: transparent none repeat scroll 0 0; - border: medium none; - font-size: 2.5em; - margin: 0; - padding: 0; } - -.filters .fixed-230-subnav > ng-transclude > div:first-child { - border-top: 1px solid #ccc; } - -.filters .fixed-230-subnav > ng-transclude > div { - border-bottom: 1px solid #ccc; } - -.filter-results { - align-items: center; - border-bottom: 1px solid #ccc; - display: flex; - flex-wrap: wrap; - height: 50px; - -webkit-justify-content: space-between; - -ms-flex-pack: justify; - justify-content: space-between; } - -.filter-results-sortby > span { - text-transform: uppercase; } - -.filter-results-view .icon-primary-content-gridguide { - font-size: 2em; - margin-right: 0; } - -.filter-container .fixed-230-subnav > ng-transclude > div > a { - font-size: 1.8rem; - margin: 0; - padding: 15px 20px 15px 0; - color: #0574ac !important; - cursor: pointer !important; - font-family: "Omnes-ECOMP-W02", Arial !important; - outline-offset: inherit !important; - position: relative; - height: auto; - width: auto; } - -.filter-container .fixed-230-subnav a > i { - right: 0; - top: 15px; } - -.filter-container .fixed-230-subnav .icon-primary-collapsed:before, .filter-container .fixed-230-subnav .icon-primary-expanded:before { - float: right; } - -.filter-container .fixed-230-subnav ul.collapse { - position: inherit; - transition: height 0.5s ease; - height: 0; - overflow: hidden; } - -.filter-container .checkbox .icon-primary-spinner { - height: 24px; - position: absolute; - width: 24px; } - -.fixed-230-subnav.affix { - margin: -28px 0 0; } - -#nav-menu .b2b-menu, -#nav-menu .fixed-230-subnav { - margin: 0; } - -.b2b-menu > li, -.fixed-230-subnav > div { - border-bottom: 1px solid #ccc; - line-height: 4.0rem; } - -.b2b-menu > li:first-child, -.fixed-230-subnav > li:first-child { - border-top: 1px solid #ccc; } - -.b2b-menu div > a, -.fixed-230-subnav div > a { - color: #0574ac; - cursor: pointer; - display: block; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 1.4rem; - margin: 0; - outline-offset: -1px; - padding: 0 10px; - position: relative; } - -.fixed-230-subnav div > a.live { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - color: #666; } - -.fixed-230-subnav > ng-transclude > div li > a { - display: block; - font-size: 1.4rem; - line-height: 20px; } - -.fixed-230-subnav > ng-transclude > div li > a.active { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - text-decoration: none; - color: #666; } - -#nav-menu .fixed-230-subnav a > i { - top: 10px; } - -.fixed-230-subnav > li > a.active > i:after { - display: none; } - -.b2b-menu ul, -.fixed-230-subnav ul { - margin: 0 0 10px 0; } - -.b2b-menu ul div a, -.fixed-230-subnav ul div a { - padding: 0 10px; } - -.unlinked { - outline: medium none !important; - text-decoration: none !important; } - -@media (max-width: 1024px) { - .filter-container .fixed-230-subnav { - margin: 0 20px; - width: auto; } - .filter-container .fixed-230-subnav > li { - margin: 0; } - .row .filter-container { - display: none; - height: 100%; - left: 0; - position: fixed; - overflow: auto; - top: 0; - transition: all 0.5s ease 0s; - width: 285px; - z-index: 9999; } - .filter-header { - padding-left: 20px; } - .filter-selected { - margin: 0 20px 10px; } } - -.b2b-pane-selector-wrapper { - width: 100%; - display: block; - border-top: solid 1px #ccc; - border-bottom: solid 1px #ccc; } - .b2b-pane-selector-wrapper .side-nav { - width: 20% !important; - display: inline-block; - float: left; } - .b2b-pane-selector-wrapper .pane-container { - width: 80%; - vertical-align: top; - margin: 0; - padding-top: 30px; - border-left: solid 1px #ccc; - font-family: "Omnes-ECOMP-W02", Arial; - display: none; } - .b2b-pane-selector-wrapper .pane-container.active { - display: inline-block; } - .b2b-pane-selector-wrapper .pane-container .pane-container-top { - padding-left: 15px; } - .b2b-pane-selector-wrapper .pane-container .panes { - display: -webkit-flex; - display: flex; - border-top: solid 1px #ccc; - margin-top: 30px; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block { - height: inherit; - overflow-y: auto; - border-right: solid 1px #ccc; - position: relative; - flex: 1; - -webkit-flex: 1; - /* Safari 6.1+ */ - -ms-flex: 1; - /* IE 10 */ } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block:focus { - outline: dotted 1px #333333; } - .b2b-pane-selector-wrapper .pane-container .search-block { - position: relative; - float: right; } - .b2b-pane-selector-wrapper .pane-container .search-block input[type="search"]:focus { - padding-right: 40px; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row p { - margin-top: 15px; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block div { - border-bottom: solid 1px #ccc; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row { - display: block; - padding: 19px 14px 19px 14px; - margin-top: 0px; - border: dotted 1px transparent; - border-bottom: solid 1px #ccc; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row:focus { - border: dotted 1px #333333 !important; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row:last-child { - border-bottom: none; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block > .no-content { - text-align: center; - border-bottom: none; - display: block; - position: absolute; - top: 45%; - left: 0; - right: 0; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block div:last-child { - border-bottom: none; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row span.margin-chk { - margin: 15px 15px 0px 15px; - float: left; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row .checkbox-selectall { - margin: 0px 0 0 24px !important; } - .b2b-pane-selector-wrapper .side-nav li { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - border: none; - border-top: solid 1px #ccc; - display: block !important; - width: auto !important; - margin-left: 0px !important; } - .b2b-pane-selector-wrapper .side-nav li.active { - background-color: #f6f6f6; - position: inherit !important; } - .b2b-pane-selector-wrapper .side-nav li.active > a { - font-size: 16px; - color: #333; - text-decoration: none; - border: none; - background-color: transparent; - padding: 20px 15px; - display: block; - height: auto; - border-left: 4px solid #0574ac; } - .b2b-pane-selector-wrapper .side-nav li > a { - font-size: 16px; - color: #333; - text-decoration: none; - border: none; - background-color: transparent; - padding: 20px 15px; - display: block; - height: auto; - text-align: left; } - .b2b-pane-selector-wrapper .side-nav li > a:focus { - border-right: dotted 1px #333333; } - .b2b-pane-selector-wrapper .side-nav li:first-child { - border-top: none; - margin-left: none !important; } -/********************* Utility CSS Starts **********************/ -.offscreen-text { - position: absolute; - left: -10000px; - top: auto; - width: 1px; - height: 1px; - overflow: hidden; } - -/********************* Utility CSS Ends **********************/ -/* Fix for alignment issue on Cancel link inside modal */ -.modal-footer > .cta-button-group { - line-height: 40px; } - -/* .att-dark-green { // Not used - color: #007a3e; -} */ -.colors-off-msg { - display: none; } - -button .colors-off-msg { - position: relative; } - -.ds2-no-colors .colors-off-msg { - display: block; } - -.ds2-no-colors [data-colordatatext] button .colors-off-msg { - font-size: 1.1rem; - line-height: normal; - padding: 5px 0; - position: absolute; - top: 0; - white-space: normal; - width: 60px; } - -/* Not used -.make-all-white * { - color: #fff; -} -.make-all-white a { - text-decoration: underline; -} */ -.loader > span { - display: block; - padding-top: 20px; } - -.modal > .loader { - left: 50%; - margin-left: -25px; - margin-top: -25px; - position: absolute; - top: 50%; } - -#pageLevelLoader.modal { - background-color: transparent; - border: none; - box-shadow: none; - top: 40%; } - -.modal.fade .loader { - display: none; } - -.modal.fade.in .loader { - display: block; } - -.btn.disabled[data-loading-text] { - padding: 0 19px 0 18px; - line-height: 46px; } - -.btn.disabled[data-loading-text] img { - position: relative; - top: 2px; } - -/* Seems to already be in docs.css -.fixed-230.leftnav { - position: relative; -} -.fixed-230-subnav { - margin: 10px; -} -.fixed-230-subnav > li:first-child { - border-top: none; -} -.fixed-230-subnav > li { - border-bottom: 1px solid #d2d2d2; -} -.fixed-230-subnav > li > a { - display: block; - font-size: 1.4rem; - line-height: normal; - margin: 0 -9px; - padding: 11px 35px 12px 9px; - outline-offset: 0; - position: relative; -} -.fixed-230-subnav > li > a.live { - color: #333333; - font-family: "Omnes-ECOMP-W02-Medium", Arial; -} -.fixed-230-subnav a > i { - right: 10px; - margin: 0; - position: absolute; - top: 10px; -} -.fixed-230-subnav a > i:after { - display: none; -} -.fixed-230-subnav > li li > a { - display: block; - font-size: 1.4rem; - line-height: 18px; -} -.fixed-230-subnav > li li > a.active { - color: #333333; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - text-decoration: none; -} -.fixed-230-subnav ul { - margin: 0 0 10px; -} */ -.unlinked { - color: #0568ae !important; - font-family: "Omnes-ECOMP-W02", Arial !important; } - -.unlinked.active { - color: inherit !important; } - -/* @media (max-width: 767px) { - .row.has-leftnav { - flex-wrap: wrap; - } - .row.has-leftnav .fluid-space { - padding-right: 0; - } - .row .fixed-230 { - background-color: #fff; - width: auto; - } - .row .leftnav { - background-color: #fff !important; - display: block !important; - } - .fixed-230-subnav { - margin: 10px 0 0; - width: 100%; - } - .fixed-230-subnav > li { - margin-left: -15px; - margin-right: -15px; - } - .fixed-230-subnav > li:first-child { - border-top: 1px solid #d2d2d2; - } - .fixed-230-subnav > li > a { - margin: 0; - } - .fixed-230-subnav a:hover, - .fixed-230-subnav a:focus { - text-decoration: none !important; - } - .fixed-230-subnav > li li > a { - padding: 5px 10px; - } - .fixed-230-subnav > li li > a.active { - color: inherit; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - } -} */ -@keyframes DOMinsertion { - from { - outline-color: transparent; } - to { - outline-color: transparent; } } - -@-moz-keyframes DOMinsertion { - from { - outline-color: transparent; } - to { - outline-color: transparent; } } - -@-webkit-keyframes DOMinsertion { - from { - outline-color: transparent; } - to { - outline-color: transparent; } } - -@-ms-keyframes DOMinsertion { - from { - outline-color: transparent; } - to { - outline-color: transparent; } } - -@-o-keyframes DOMinsertion { - from { - outline-color: transparent; } - to { - outline-color: transparent; } } - -.ajaxed, -.modal.fade.in .modal-header, -.modal.fade.in .modal-body, -.modal.fade.in .modal-footer { - animation-duration: 0.01s; - -o-animation-duration: 0.01s; - -ms-animation-duration: 0.01s; - -moz-animation-duration: 0.01s; - -webkit-animation-duration: 0.01s; - animation-name: DOMinsertion; - -o-animation-name: DOMinsertion; - -ms-animation-name: DOMinsertion; - -moz-animation-name: DOMinsertion; - -webkit-animation-name: DOMinsertion; } - -.dda-css-override ul.nav-tabs { - margin-bottom: 0; } - - -.formsWithinProcessButton { - margin-right: 0px; } - -.heading-sub-section-form { - font-size: 2.4rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 20px; - margin-top: 10px; } - -.heading-small-form { - font-size: 1.6rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-top: 0px; } - -.icon-primary-form-sizeL { - font-size: 50px; } - -.icon-primary-form-size { - font-size: 30px; } - -.spanformfix { - margin-right: 15px !important; } - -@media (max-width: 767px) { - .heading-sub-section-form { - font-size: 1.8rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 20px; - padding-top: 10px; - margin-top: 30px; } - .heading-small-form { - font-size: 1.4rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-top: 0px; } } - -@media (max-width: 479px) { - .icon-primary-form-resizeL { - display: none; } - .icon-primary-form-resize { - display: none; } - .heading-center-form { - margin-left: 20px; } } - -@media (min-width: 480px) { - .icon-primary-form-resizeL { - display: none; } - .icon-primary-form-resize { - display: inherit; } - .icon-primary-center-min { - margin-top: 30px; } } - -@media (min-width: 768px) { - .icon-primary-form-resizeL { - display: inherit; - margin-top: 30px; } - .icon-primary-form-resize { - display: none; } - .center-form-align { - margin-top: 35px; } } - -@media (min-width: 1024px) { - .icon-primary-form-resizeL { - display: inherit; - margin-top: 0px; } - .icon-primary-form-resize { - display: none; } - .center-form-align { - margin-top: 5px; } } - -.data-row.has-button td.col-1 { - padding: 0; } - - -.icon-primary-circle:before { - background-image: url("data:image/svg+xml,%3Csvg%20baseProfile%3D%22tiny%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%3E%3Ccircle%20fill%3D%22transparent%22%20stroke%3D%22%23666%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2218%22%20cy%3D%2218%22%20r%3D%2216%22%2F%3E%3C%2Fsvg%3E"); - content: ""; - position: absolute; - top: 0; - z-index: 1; } - -.b2b-drag-handle { - cursor: move; - -ms-interpolation-mode: bicubic; - margin-bottom: 40px; - height: 23px; - padding-right: 10px; - float: left; } - -.b2b-drag-over { - background-color: #d1d1d1; } - -.b2-drag-element { - background-color: #e8e8e8; } - -[draggable] { - -moz-user-select: none; - -khtml-user-select: none; - -webkit-user-select: none; - user-select: none; } -/* Flyout inputs color is not aligned */ -textarea, input { - color: #333; } - -.isIE .btn-primary.btn:focus::after, -.isIE .btn-specialty.btn:focus::after, -.isIE .btn-alt.btn:focus::after { - border: 1px dashed #fff !important; } -.b2b-config-section-container { - height: auto; - min-height: 330px; - width: 815px; - background-color: #fff; - border: 1px solid #ccc; - display: inline-table; - border-radius: 6px; } - -.b2b-config-section-first-div { - border-right: 1px solid #ccc; - height: auto; - min-height: 330px; } - -.b2b-config-section-icon-primary-font { - font-size: 50px; - height: 31px; - line-height: 31px; } - -.b2b-config-section-padding { - padding: 20px 20px 15px 15px; - height: auto; } - -.b2b-config-sec-flyout { - position: relative; - left: 10px; - float: right; - color: #0574ac; - font-size: 16px; - font-family: "Omnes-ECOMP-W02", Arial; } - -.b2b-config-sec-divider { - border-bottom: 1px solid #ccc; } - -.b2b-confi-sec-span-border { - border-right: 1px solid; - height: auto; } - -.b2b-config-sec-speed-div { - text-align: center; - margin-top: 20px; } - -.b2b-config-sec-label-font { - font-size: 16px; } - -.b2b-config-sec-expander-main { - padding: 0 5px 0px 15px; } - -.b2b-config-sec-expander-body .b2b-config-vlan-padding { - padding: 5px 15px 10px 0px; } - -.b2b-conif-sec-row-height { - height: 110px; } - -.b2b-config-sec-expander-body { - font-size: 14px; } - .b2b-config-sec-expander-body .b2b-config-vlan-data { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - padding-left: 15px; } - -.b2b-config-sec-expander-body-first-div { - border-top: 1px solid #ccc; } - -.b2b-config-sec-expander-body .tooltip { - position: static; - opacity: 1; } - -.b2b-config-section-container .row > [class*="span"] { - margin-right: 0px; } - -.b2b-config-vlan-icons { - font-size: 16px; - float: right; - margin-right: 0px; } - -.b2b-config-section-container .span6 { - width: 50%; } - -.b2b-config-sec-data-link-style { - position: relative; - left: 95%; - top: 30px; - border-radius: 50%; - width: 23px; - height: 23px; - background: #fff; - border: 1px solid #ccc; - color: #666666; } - -.b2b-config-sec-text-align { - text-align: center; - margin-top: 15px; - margin-bottom: 35px; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 14px; - color: #333333; } - -.b2b-config-port-text-align { - text-align: center; - margin-top: 15px; - margin-bottom: 8px; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 14px; - color: #333333; } - -.b2b-config-port-text-label { - margin-top: 6px; - margin-bottom: 8px; - font-size: 14px; - text-align: center; } - -.b2b-confi-sec-last-div p { - font-size: 14px; - padding: 10px 15px 0 15px; } - -.b2b-confi-sec-router-label { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 16px; - color: #333333; - float: left; - width: 100%; - margin-bottom: 7px; } - -.b2b-config-vlan-label { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 14px; - color: #333333; - margin-top: 1px; - margin-bottom: 9px; } - -.b2b-config-vlan-info { - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 14px; - color: #333333; - margin-bottom: 1px; } - .b2b-config-vlan-info .icon-misc-pen { - padding-left: 7px; } - -.b2b-confi-sec-model-label { - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 14px; - color: #333333; } - -.b2b-confi-sec-router-info { - float: left; - width: 62%; } - -.b2b-config-sec-speed-sec { - border-right: 1px solid #ccc; } - -.b2b-config-sec-speed-label { - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 20px; - color: #333333; - text-align: center; } - .b2b-config-sec-speed-label i { - margin-left: 15px; - font-size: 16px; } - -.b2b-config-sec-yellow-flag-div { - width: 1.6%; - background-color: #ffb18c; } - -.b2b-config-sec-expander-icons { - margin-top: 6px; } - .b2b-config-sec-expander-icons .icon-misc-trash { - margin-right: 10px; } - -.b2b-config-sec-yellow-flag .b2b-config-sec-expander-icons { - left: 40px; } - -.b2b-config-sec-expander-body-icons .icon-misc-pen { - position: relative; - left: 18px; } -.b2b-directory-listing .center { - display: block; - margin: 2em auto; } - -.b2b-directory-listing .listBox { - height: 310px; - width: 450px; - padding-left: 1px; - padding-right: 1px; - font-family: "Omnes-ECOMP-W02", Arial; } - -.b2b-directory-listing .listBox:focus { - outline: thin dotted #666; } - -.b2b-directory-listing .b2b-directory-listing-no-results { - font-weight: bold; } - -.b2b-directory-listing .b2b-directory-listing-list { - font-family: "Omnes-ECOMP-W02", Arial; - color: #5a5a5a; - overflow-x: hidden; - position: relative; - height: 300px; - border: 1px solid #333; - border-radius: 6px; - margin-bottom: 10px; } - -.b2b-directory-listing .b2b-directory-listing-item { - margin: 1px; - border: 1px solid transparent; - outline: none; - text-align: left; - overflow: hidden; - cursor: pointer; - padding-top: 13px; - padding-bottom: 7px; - padding-left: 15px; - -moz-user-select: none; - -webkit-user-select: none; - -ms-user-select: none; - word-wrap: break-word; } - .b2b-directory-listing .b2b-directory-listing-item:focus { - border: 1px #3399FF solid; } - -.b2b-directory-listing .b2b-directory-listing-item-selected { - color: #fff; - background-color: #3399FF; } - -.b2b-directory-listing input[type="text"] { - padding-right: 30px; } - .b2b-directory-listing input[type="text"]:focus, .b2b-directory-listing input[type="text"]:hover { - padding-right: 30px; } - -.b2b-directory-listing .row .btns { - margin-right: 90px; - margin-left: -115px; - margin-top: 100px; } - -.b2b-directory-listing .btn-remove { - margin-right: auto !important; - margin-bottom: 15px; } - .b2b-directory-listing .btn-remove i { - margin-right: 0; - color: #fff; - top: -1px; } - -.b2b-directory-listing .btn-remove-all { - margin-top: 0; - margin-bottom: 61px !important; - /* need to be removed */ - margin-right: auto !important; } - .b2b-directory-listing .btn-remove-all i { - margin-right: 0; - color: #fff; - top: -1px; } - -.b2b-directory-listing .btn-add { - margin-bottom: 15px !important; } - .b2b-directory-listing .btn-add i { - margin-right: 0; - color: #fff; - top: -1px; } - -.b2b-directory-listing .btn-add-all { - margin-top: 0; - margin-bottom: 61px !important; } - .b2b-directory-listing .btn-add-all i { - margin-right: 0; - color: #fff; - top: -1px; } - -.b2b-directory-listing .btn-search[class*="btn"] { - right: 0.09rem; } - -.b2b-directory-listing .btn { - width: 130px; } - -.b2b-directory-listing-disabled { - cursor: not-allowed; } - -.b2b-directory-listing-label-heading { - margin-top: 24px; - padding-bottom: 5px; } - -.b2b-dl-list-box option { - padding-top: 13px; - padding-bottom: 7px; - padding-left: 15px; } - -.b2b-dl-modal-button-div { - padding-top: 110px; - text-align: center; } -.b2b-tmpl-notification-card { - border-radius: 6px; - height: auto; - width: 420px; - background-color: #ffffff; - border: 1px solid rgba(0, 0, 0, 0.1); - border-radius: 8px; - overflow: hidden; } - .b2b-tmpl-notification-card .b2b-tmpl-card-header { - padding-left: 30px; - font-family: "Omnes-ECOMP-W02", Arial; - color: #333333; - font-size: 24px; - margin-top: 2px; - display: inline-block; - min-height: 60px; - position: relative; } - .b2b-tmpl-notification-card .b2b-tmpl-card-body { - padding: 0 30px 20px; - position: relative; } - .b2b-tmpl-notification-card .b2b-tmpl-card-header-title { - margin-top: 10px; } - .b2b-tmpl-notification-card .b2b-tmpl-card-corner-button { - box-shadow: 0 -50px 0 0 #f2f2f2 inset; - height: 69px; - position: absolute; - border-color: #f2f2f2 #f2f2f2 transparent transparent; - border-style: solid; - border-width: 35px; - height: 0; - right: -295px; - top: -4px; - width: 69px; - /*Old properties */ - box-shadow: none; - transform: none; } - .b2b-tmpl-notification-card .b2b-tmpl-card-corner-button .close { - height: 48px; - right: -40px; - top: -40px; - width: 48px; - position: relative; - /*Old properties */ - transform: none; } - .b2b-tmpl-notification-card .b2b-tmpl-card-corner-button .close:before { - color: #0568ae; - display: block; - font-size: 20px; - height: auto; - right: -4px; - top: 4px; - width: auto; - /*Old properties */ - left: auto; - height: auto; - bottom: auto; } - .b2b-tmpl-notification-card .b2b-tmpl-card-corner-button .close:focus { - outline: 1px dotted black; } - .b2b-tmpl-notification-card button.close { - -webkit-appearance: none; - moz-appearance: none; - appearance: none; } - .b2b-tmpl-notification-card .b2b-tmpl-card-icon-primary-cirlce { - width: 30px; - height: 30px; - border-radius: 50%; } - .b2b-tmpl-notification-card .b2b-tmpl-card-outer-cirlce { - background: #f0f5f5; - border-radius: 50%; - height: 16px; - width: 16px; - vertical-align: middle; } - .b2b-tmpl-notification-card .b2b-tmpl-card-inner-cirlce { - background: #fff; - width: 22px; - height: 22px; - position: relative; - border-radius: 50%; - display: block; - left: 4px; - top: 4px; - border: 1px solid #767676; } - .b2b-tmpl-notification-card .b2b-tmpl-card-row { - padding-top: 10px; } - .b2b-tmpl-notification-card .b2b-tmpl-card-sub-header { - margin-top: 0px; } - .b2b-tmpl-notification-card .b2b-tmpl-favourite-view-item { - background-color: #fff; - margin-top: 25px; - border-top: 1px solid #ccc; } - .b2b-tmpl-notification-card .b2b-tmpl-favourite-view-item .cta-button-group { - line-height: 40px; - padding-top: 20px; } - .b2b-tmpl-notification-card .b2b-tmpl-card-edit-section .cta-button-group { - line-height: 40px; - padding-top: 15px; } - .b2b-tmpl-notification-card .b2b-tmpl-card-add-item-container { - padding-top: 30px; } - .b2b-tmpl-notification-card .b2b-tmpl-card-link-active { - pointer-events: none; - cursor: default; - color: #ccc; } - .b2b-tmpl-notification-card .b2b-tmpl-card-cursor:hover { - cursor: pointer; } -.b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-icon { - text-align: center; - margin-top: 91px; } - .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-icon i { - font-size: 99px; - color: #1b7e28; } - -.b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-heading { - color: #333333; - text-align: center; - margin-top: 20px; } - .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-heading h1 { - font-size: 38px; } - -.b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-sub-heading { - color: #333333; - text-align: center; } - .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-sub-heading h5 { - font-size: 18px; } - -.b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-info { - padding-left: 18%; - font-size: 16px; - margin-top: 20px; } - .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-info ul { - list-style-type: disc; - list-style-position: inside; } - .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-info li { - padding-top: 5px; } - -.b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-link-section { - font-size: 15px; - color: #0574ac; - margin-top: 20px; - text-align: center; - margin-bottom: 55px; } - .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-link-section .b2b-tmpl-order-confirmation-link { - margin-right: 8%; } - .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-link-section a { - cursor: pointer; } -.b2b-tmpl-profile-block-container { - min-height: 200px; - height: auto; - background-color: #fff; - border-radius: 8px; - border: 1px solid #ccc; - box-shadow: 0px 1px 1px 1px #ccc; - display: inline-table; - margin: 15px 15px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-title { - font-weight: bold; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-footer { - margin-bottom: 12px; - margin-top: 5px; - height: 35px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p { - word-wrap: break-word; - height: 61px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p:first-child { - margin-top: 10px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p:after { - content: ' '; - display: block; - border: 0.2px solid #ccc; - margin-top: 12px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details .radio { - margin-left: 15px; - height: 30px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p, .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details div { - padding: 2px 7px; - font-size: 14px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details .radio-label, .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details a { - font-size: 14px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p label, .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p span { - padding-left: 10px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-approval-icon { - color: #1b7e28; - float: right; - position: relative; - left: 10px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-approval-icon i { - color: #1b7e28; - float: right; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-link { - float: right; - position: relative; - left: -4px; } - .b2b-tmpl-profile-block-container a.link-profile { - position: relative; - left: -5px; - float: right; - margin-bottom: 16px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-radio { - position: relative; - top: -5px; } -.b2b-static-route-container { - padding-left: 32px; - display: inline-block; } - -.b2b-static-route-label-heading { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 5px !important; - color: #333333; - font-style: normal; - text-align: left; } - -label.b2b-static-route-label-heading { - margin-bottom: 12px; - margin-top: 15px; - display: block; } - -#b2b-static-route-input { - margin: 5px 0 5px; } - -.b2b-static-route-list { - margin-bottom: 30px; - width: 216px; - float: left; - margin-right: 20px; - max-height: 540px; - overflow-y: auto; } - .b2b-static-route-list .status-text { - flex: 1; - display: flex; - align-items: center; - outline: 0; } - -.b2b-static-route-list-item { - border: 1px #cccccc solid; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 5px; - display: flex; - cursor: pointer; } - .b2b-static-route-list-item > .status-bar { - padding: 20px 0 20px; - background-color: #ea7400; - border-radius: 0; - width: 10px; - display: inline-block; - margin-right: 20px; - height: 100%; - float: left; } - .b2b-static-route-list-item > .status-bar:after { - content: '.'; - visibility: hidden; } - .b2b-static-route-list-item > .status-bar-unedited { - padding: 20px 0 20px; - background-color: #ffb81c; - border-radius: 0; - width: 10px; - display: inline-block; - margin-right: 20px; - height: 100%; - float: left; - background-color: transparent; } - .b2b-static-route-list-item > .status-bar-unedited:after { - content: '.'; - visibility: hidden; } - -.b2b-static-route-list-item:focus { - outline: 1px dashed #00f; } - -.b2b-static-route-list-item--selected { - background: #f2f2f2; } - -.b2b-static-route-content { - display: inline-block; } - - .selectWrap::after { - align-items: center; - background-position: 7px 7px; - background-repeat: no-repeat; - background-size: auto 23px; - border-left: 1px solid transparent; - color: #0568ae; - display: flex; - font-size: 23px; - height: 36px; - margin-right: 0; - overflow: hidden; - position: absolute; - right: 0; - text-indent: 7px; - top: 0; - user-select: none; - width: 41px; - z-index: 0; - position: absolute !important; - display: flex !important; -} - -.card{ - border-radius: 5px; -} - -.card-header{ - height: 50px; -} - -.card-body{ - height: 150px; -} - -.card-footer{ - height: 50px; -} - -.dialog__close-btn { - border: 0; - background: #087ac2; - color: #ffffff; - position: absolute; - top: 8px; - right: 8px; - font-size: 1.2em; - display: block; - border: #087ac2 2px solid; -} - -.modalTitle{ - font-size: 35px; -} - -.defaultFontSize{ - font-size: 15px; -} - - -.tab-content{ - margin-right: 20px; - /* background-color: #006496; */ - color: rgb(0, 0, 0); -} - -.btn-sm{ - width: 30px; - height: 15px; - font-size: 10px; -} diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-page.component.html b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-page.component.html deleted file mode 100644 index e7d2f5c0..00000000 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-page.component.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - -
-
-
{{status}}
- -
-

{{message}}

-
- -
-
- -
-
-
-

Step 1 - Report Definition

-
-
-
-
-
-
-
-
-
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
-
- - - -
-
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
- -
- - HOME - CUSTOMER - REPORTS - -
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
-
- -
-
- -
-
- -
-
-
-
- -
-
-
- -
-
-
- -
-
-
- -
- -
- -
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
-
-
- -
-
-
-
-
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-page.component.spec.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-page.component.spec.ts deleted file mode 100644 index 330dfa95..00000000 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-page.component.spec.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { PilotPageComponent } from './pilot-page.component'; - -describe('PilotPageComponent', () => { - let component: PilotPageComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ PilotPageComponent ] - }) - .compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(PilotPageComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-page.component.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-page.component.ts deleted file mode 100644 index 1fa2a6c2..00000000 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-page.component.ts +++ /dev/null @@ -1,573 +0,0 @@ -import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core'; -import { HttpClient, HttpHeaders } from '@angular/common/http'; -import { NgbModal } from '@ng-bootstrap/ng-bootstrap'; -import { PilotWindowModalComponentComponent } from './pilot-window-modal-component/pilot-window-modal-component.component'; -import {ActivatedRoute} from "@angular/router"; -import { environment } from '../../../../../../environments/environment'; -import { DefinitionService } from './definition.service'; - -@Component({ - selector: 'app-pilot-page', - templateUrl: './pilot-page.component.html', - styleUrls: ['./pilot-page.component.css'], - providers: [ NgbModal] -}) -export class PilotPageComponent implements OnInit { - - showSpinner : boolean; - - @Input() closable = true; - - @Input("reportId") reportId1 : string; - @Input ("reportMode") reportMode : string; - - - finalPostObj = {}; - finalGetObj = {}; - - isEdit : boolean; - reportId : number; - reportName : string; - reportDescription : string; - reportType : string; - dataSrc : string; - helpText : string; - reportDefinition : string; - pageSize : number; - HideFormFields : boolean; - maxRows : number; - colsFrozen : number; - gridAlign : string; - emptyMessage : string; - heightContainer : number; - widthContainer : number; - allowScheduler : boolean; - sizedByContent : boolean; - hideFormFields1 : boolean; - HideChart : boolean; - HideReportData : boolean; - HideExcel : boolean; - HidePDF : boolean; - disableColumnSort : boolean; - runTimeFormNum : number; - reportTitle : string; - reportSubTitle : string; - oneTime : boolean; - hourly : boolean; - daily : boolean; - MonFri : boolean; - Weekly : boolean; - Monthly : boolean; - - oneTime1 : boolean; - hourly1 : boolean; - daily1 : boolean; - MonFri1 : boolean; - Weekly1 : boolean; - Monthly1 : boolean; - - displayArea : string; - definitionPostResponse1 : any; - - definitionPostResponse : any; - - showDialog : boolean; - status : string; - message : string; - - pilotModalComponent : PilotWindowModalComponentComponent; - - IncomingReportId : number; - - constructor(private _http : HttpClient, private _route : ActivatedRoute, private _definitionService : DefinitionService) { - this.showSpinner = true; - this.IncomingReportId = -1; - } - - - ngOnInit() { - this.isEdit = true; - this.showDialog = false; - this.showSpinner = true; - this._route.params.subscribe(params => { - - if(params["reportId"] !== undefined) - { - this.IncomingReportId = params["reportId"]; - this.reportId1 = params["reportId"]; - } - }); - - console.log(this.IncomingReportId, this.reportMode); - - if(this.IncomingReportId == -1 && this.reportMode == "Create") - { - this._definitionService.getDefinitionPageDetails(this.IncomingReportId, this.reportMode) - .subscribe((response) => { - this.finalGetObj = response; - - console.log(this.finalGetObj); - this.reportId = response["reportId"]; - this.reportName = response["reportName"]; - this.reportDescription = response["reportDescr"]; - this.reportType = response["reportType"]; - this.dataSrc = response["dbInfo"]; - this.helpText = response["formHelpText"]; - this.reportDefinition = response["repDefType"]; - this.pageSize = response["pageSize"]; - this.hideFormFields1 = response["hideFormFieldsAfterRun"]; - this.maxRows = response["maxRowsInExcelCSVDownload"]; - this.colsFrozen = response["frozenColumns"]; - this.gridAlign = response["dataGridAlign"]; - this.emptyMessage = response["emptyMessage"]; - - for(let i=0; i { - this.finalGetObj = response; - - console.log(this.finalGetObj); - this.reportId = response["reportId"]; - this.reportName = response["reportName"]; - this.reportDescription = response["reportDescr"]; - this.reportType = response["reportType"]; - this.dataSrc = response["dbInfo"]; - this.helpText = response["formHelpText"]; - this.reportDefinition = response["repDefType"]; - this.pageSize = response["pageSize"]; - this.hideFormFields1 = response["hideFormFieldsAfterRun"]; - this.maxRows = response["maxRowsInExcelCSVDownload"]; - this.colsFrozen = response["frozenColumns"]; - this.gridAlign = response["dataGridAlign"]; - this.emptyMessage = response["emptyMessage"]; - - for(let i=0; i { - - if(params["reportId"] !== undefined) - { - this.IncomingReportId = params["reportId"]; - this.reportId1 = params["reportId"]; - } - }); - - console.log(this.IncomingReportId, this.reportMode); - - if(this.IncomingReportId == -1 && this.reportMode == "Create") - { - this._definitionService.getDefinitionPageDetails(this.IncomingReportId, this.reportMode) - .subscribe((response) => { - this.finalGetObj = response; - - console.log(this.finalGetObj); - this.reportId = response["reportId"]; - this.reportName = response["reportName"]; - this.reportDescription = response["reportDescr"]; - this.reportType = response["reportType"]; - this.dataSrc = response["dbInfo"]; - this.helpText = response["formHelpText"]; - this.reportDefinition = response["repDefType"]; - this.pageSize = response["pageSize"]; - this.hideFormFields1 = response["hideFormFieldsAfterRun"]; - this.maxRows = response["maxRowsInExcelCSVDownload"]; - this.colsFrozen = response["frozenColumns"]; - this.gridAlign = response["dataGridAlign"]; - this.emptyMessage = response["emptyMessage"]; - - for(let i=0; i { - this.finalGetObj = response; - - console.log(this.finalGetObj); - this.reportId = response["reportId"]; - this.reportName = response["reportName"]; - this.reportDescription = response["reportDescr"]; - this.reportType = response["reportType"]; - this.dataSrc = response["dbInfo"]; - this.helpText = response["formHelpText"]; - this.reportDefinition = response["repDefType"]; - this.pageSize = response["pageSize"]; - this.hideFormFields1 = response["hideFormFieldsAfterRun"]; - this.maxRows = response["maxRowsInExcelCSVDownload"]; - this.colsFrozen = response["frozenColumns"]; - this.gridAlign = response["dataGridAlign"]; - this.emptyMessage = response["emptyMessage"]; - - for(let i=0; i { - - //console.log(response); - - if(response["message"] === "Success Definition of given report is saved in session.") - { - this.status = "Success!"; - this.message = "Your change has been saved! Definition is updated."; - this.showDialog = !this.showDialog; - this.closable = true; - } - else - { - this.status = "Failure!"; - this.message = "Definition could not be updated."; - this.showDialog = !this.showDialog; - this.closable = true; - } - }); - - } - if(this.IncomingReportId !== -1 && this.reportMode == "Edit") - { - - console.log("Reached Here!!!"); - this.finalPostObj["tabName"] = "Definition"; - this.finalPostObj["tabId"] = "Def"; - this.finalPostObj["reportId"] = this.reportId; - this.finalPostObj["reportName"] = this.reportName; - this.finalPostObj["reportDescr"] = this.reportDescription; - this.finalPostObj["reportType"] = this.reportType; - this.finalPostObj["reportTypeList"] = null; - this.finalPostObj["dbInfo"] = this.dataSrc; - this.finalPostObj["formHelpText"] = this.helpText; - this.finalPostObj["pageSize"] = this.pageSize; - - this.finalPostObj["dbInfoList"] = [ - { - "id": "local", - "name": "local", - "selected": false - } - ]; - this.finalPostObj["displayArea"] = [ - { - "id": "HOME", - "name": "HOME", - "selected": (this.displayArea == "HOME" ? true : false) - }, - { - "id": "CUSTOMER", - "name": "CUSTOMER", - "selected": (this.displayArea == "CUSTOMER" ? true : false) - }, - { - "id": "REPORTS", - "name": "REPORTS", - "selected": (this.displayArea == "REPORTS" ? true : false) - } - ]; - this.finalPostObj["hideFormFieldsAfterRun"] = this.hideFormFields1; - this.finalPostObj["maxRowsInExcelCSVDownload"] = this.maxRows; - this.finalPostObj["frozenColumns"] = this.colsFrozen; - this.finalPostObj["dataGridAlign"] = this.gridAlign; - this.finalPostObj["emptyMessage"] = this.emptyMessage; - this.finalPostObj["dataContainerHeight"] = this.heightContainer; - this.finalPostObj["dataContainerWidth"] = this.widthContainer; - this.finalPostObj["displayOptions"] = [ - { - "name": "HideFormFields", - "selected": (this.HideFormFields == undefined ? false : this.HideFormFields ) - }, - { - "name": "HideChart", - "selected": (this.HideChart == undefined ? false : this.HideChart ) - }, - { - "name": "HideReportData", - "selected": (this.HideReportData == undefined ? false : this.HideReportData ) - }, - { - "name": "HideExcel", - "selected": (this.HideExcel == undefined ? false : this.HideExcel ) - }, - { - "name": "HidePdf", - "selected": (this.HidePDF == undefined ? false : this.HidePDF ) - } - ]; - this.finalPostObj["runtimeColSortDisabled"] = this.disableColumnSort; - this.finalPostObj["numFormCols"] = this.runTimeFormNum; - this.finalPostObj["reportTitle"] = this.reportTitle; - this.finalPostObj["reportSubTitle"] = this.reportSubTitle; - this.finalPostObj["oneTimeRec"] = this.oneTime; - this.finalPostObj["hourlyRec"] = this.hourly; - this.finalPostObj["dailyRec"] = this.daily; - this.finalPostObj["dailyMFRec"] = this.MonFri; - this.finalPostObj["weeklyRec"] = this.Weekly; - this.finalPostObj["monthlyRec"] = this.Monthly; - this.finalPostObj["allowScheduler"] = (this.allowScheduler == true ? "Y" : "N" ); - this.finalPostObj["sizedByContent"] = (this.sizedByContent == true ? "Y" : "N" ); - this.finalPostObj["repDefType"] = this.reportDefinition; - - this._definitionService.portDefinitionPageDetails(this.IncomingReportId, this.finalPostObj) - .subscribe((response) => { - - //console.log(response); - - if(response["message"] === "Success Definition of given report is saved in session.") - { - this.status = "Success!"; - this.message = "Your change has been saved! Definition is updated."; - this.showDialog = !this.showDialog; - this.closable = true; - } - else - { - this.status = "Failure!"; - this.message = "Definition could not be updated."; - this.showDialog = !this.showDialog; - this.closable = true; - } - }); - - } - - } - - close() { - this.showDialog = !this.showDialog; - this.closable = false; - } - - - - -} diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-window-modal-component/pilot-window-modal-component.component.css b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-window-modal-component/pilot-window-modal-component.component.css deleted file mode 100644 index 918e534f..00000000 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-window-modal-component/pilot-window-modal-component.component.css +++ /dev/null @@ -1,44 +0,0 @@ -.overlay { - position: fixed; - top: 0; - bottom: 0; - left: 0; - right: 0; - background-color: rgba(0, 0, 0, 0.5); - z-index: 999; - } - - .dialog { - z-index: 1000; - position: fixed; - right: 0; - left: 0; - top: 20px; - margin-right: auto; - margin-left: auto; - min-height: 200px; - width: 90%; - max-width: 520px; - background-color: #fff; - padding: 12px; - box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.349), 0 13px 19px 2px rgba(0, 0, 0, 0.349), 0 5px 24px 4px rgba(0, 0, 0, 0.349); - } - - @media (min-width: 768px) { - .dialog { - top: 40px; - } - } - - .dialog__close-btn { - border: 0; - background: none; - color: #2d2d2d; - position: absolute; - top: 8px; - right: 8px; - font-size: 1.2em; - display: block; - border: #2d2d2d 1px solid; - } - diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-window-modal-component/pilot-window-modal-component.component.html b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-window-modal-component/pilot-window-modal-component.component.html deleted file mode 100644 index 20dc814a..00000000 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-window-modal-component/pilot-window-modal-component.component.html +++ /dev/null @@ -1,5 +0,0 @@ -
- - -
-
\ No newline at end of file diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-window-modal-component/pilot-window-modal-component.component.spec.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-window-modal-component/pilot-window-modal-component.component.spec.ts deleted file mode 100644 index 86779e68..00000000 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-window-modal-component/pilot-window-modal-component.component.spec.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { PilotWindowModalComponentComponent } from './pilot-window-modal-component.component'; - -describe('PilotWindowModalComponentComponent', () => { - let component: PilotWindowModalComponentComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ PilotWindowModalComponentComponent ] - }) - .compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(PilotWindowModalComponentComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-window-modal-component/pilot-window-modal-component.component.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-window-modal-component/pilot-window-modal-component.component.ts deleted file mode 100644 index 28056b8a..00000000 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/pilot-page/pilot-window-modal-component/pilot-window-modal-component.component.ts +++ /dev/null @@ -1,31 +0,0 @@ -import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core'; -import { trigger, transition, animate, style } from '@angular/animations'; - -@Component({ - selector: 'app-pilot-window-modal-component', - templateUrl: './pilot-window-modal-component.component.html', - styleUrls: ['./pilot-window-modal-component.component.css'], - animations: [ - trigger('dialog', [ - transition('void => *', [ - style({ transform: 'scale3d(.3, .3, .3)' }), - animate(100) - ]), - transition('* => void', [ - animate(100, style({ transform: 'scale3d(.0, .0, .0)' })) - ]) - ]) - ] -}) -export class PilotWindowModalComponentComponent implements OnInit { - - @Input() closable = true; - @Input() visible: boolean; - - constructor() { } - - ngOnInit() { - } - - -} diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report-form-fields/run-report-form-fields.component.css b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report-form-fields/run-report-form-fields.component.css new file mode 100644 index 00000000..ade854da --- /dev/null +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report-form-fields/run-report-form-fields.component.css @@ -0,0 +1,11868 @@ +mat-button-toggle-group{ + width: 800px; + } + + + .lds-ring { + display: inline-block; + position: relative; + width: 64px; + height: 64px; + } + .lds-ring div { + box-sizing: border-box; + display: block; + position: absolute; + width: 80px; + height: 80px; + margin: 6px; + margin-top: -10px; + border: 10px solid #006496; + border-radius: 80%; + animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite; + border-color: #006496 transparent transparent transparent; + } + .lds-ring div:nth-child(1) { + animation-delay: -0.45s; + } + .lds-ring div:nth-child(2) { + animation-delay: -0.3s; + } + .lds-ring div:nth-child(3) { + animation-delay: -0.15s; + } + @keyframes lds-ring { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } + } + + + mat-button-toggle{ + display: block; + width: 800px; + border-radius: 5px; + } + + label{ + size: 70px; + } + + input { + width: 800px; + height: 20px; + } + + .Heading{ + font-size: 45px; + } + + .stdForm{ + margin-left: 20px; + } + + .field-group { + position: relative; + display: block; + } + + label + .field-group, label + .input-append, label + .row, label + .row-nowrap, label + .form-row { + margin-top: 5px; + } + + + select{ + display: block; + width: 800px; + + padding: 15px; + background-color: #e6e6e61a + } + + .webform-component-my-select select { + height: 200px; + } + + .checkbox .skin { + background-color: #fff; + border: 1px solid #d2d2d2; + border-radius: 3px; + display: inline-block; + height: 24px; + width: 24px; + position: absolute; + left: 0; + top: 0; + } + + i, em { + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; + } + + + .b2b-horizontal-table ::-webkit-scrollbar { + height: 10px; } + + .b2b-horizontal-table ::-webkit-scrollbar-thumb { + background: #666666; + border-radius: 5px; } + + .b2b-horizontal-table .b2b-frozen-col { + font-size: 5px; + font-weight: normal; + font-style: italic; } + /* + .b2b-horizontal-table .b2b-horizontal-table-inner-container { + overflow-x: scroll; } */ + + .b2b-horizontal-table .b2b-horizontal-table-column-info { + text-align: center; } + + .b2b-horizontal-table .b2b-horizontal-table-legend div[b2b-flyout-toggler] { + color: #0568ae; + cursor: pointer; } + + .b2b-horizontal-table .b2b-horizontal-table-legend .b2b-frozen-cell { + width: 16px; + height: 16px; + background-color: #F2F2F2; + display: inline-block; + margin-right: 10px; } + + .b2b-horizontal-table .b2b-horizontal-table-arrows { + margin-bottom: 20px; } + .b2b-horizontal-table .b2b-horizontal-table-arrows .b2b-disabled-text { + color: #767676; } + .b2b-horizontal-table .b2b-horizontal-table-arrows .b2b-next-link { + padding-right: 15px; } + .b2b-horizontal-table .b2b-horizontal-table-arrows .b2b-prev-link { + padding-left: 15px; } + + @-moz-document url-prefix() { + .b2b-horizontal-table td:first-child { + border-top: none; } } + * { + box-sizing: border-box; } + + :root { + -ms-overflow-style: -ms-autohiding-scrollbar; + overflow-y: scroll; + -ms-text-size-adjust: 100%; + -webkit-text-size-adjust: 100%; + box-sizing: border-box; + font: 0.625pc/1.5 sans-serif; + text-rendering: optimizeLegibility; } + + html { + overflow-y: scroll; + -webkit-overflow-scrolling: touch; + height: 100%; + position: relative; } + + h1, + h2, + h3, + h4, + h5, + p, + blockquote, + figure, + ol, + ul { + margin: 0; + padding: 0; } + + /* a:focus { + outline: thin dotted #191919; + } */ + sub, + sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: top; } + + sup { + top: .75em; + display: inline-block; } + + sub { + bottom: -0.25em; } + + img { + max-width: 100%; + height: auto; + vertical-align: middle; + border: 0; + -ms-interpolation-mode: bicubic; } + + .img-no-rwd { + max-width: inherit !important; } + + svg { + display: inline-block; } + + .responsive-img { + width: 100%; + height: auto; } + + button, + input, + select, + textarea { + margin: 0; + font-size: 100%; + vertical-align: middle; } + + ::-moz-focus-inner { + padding: 0; + border: 0; } + + button, + html input[type="button"], + input[type="reset"], + input[type="submit"] { + appearance: button; + cursor: pointer; } + + label, + select, + button, + input[type="button"], + input[type="reset"], + input[type="submit"], + input[type="radio"], + input[type="checkbox"] { + cursor: pointer; } + + input[type=search] { + -webkit-appearance: textfield; } + + input[type=search]:-webkit-search-cancel-button, + input[type=search]:-webkit-search-decoration { + -webkit-appearance: none; } + + + + select { + -moz-appearance: none; + -webkit-appearance: none; } + + [aria-busy=true] { + cursor: progress; } + + [aria-controls] { + cursor: pointer; } + + body { + background-color: #ffffff; + color: #191919; + font-family: "Omnes-ECOMP-W02", Arial; + /* font-size: 1.6rem; + line-height: 2rem;*/ + margin: 0; + position: relative; + width: 100%; + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; } + + small { + font-size: 1.6rem; } + + .container { + margin: 0 auto; + padding: 0; } + + .tooltip { + display: inline-block; + height: 20px; + margin: 1px 0 0 7px; + vertical-align: middle; } + + .tooltip-wrapper { + display: none; } + + + + /* TODO: Build a reference page for these classes */ + .font-regular { + font-family: "Omnes-ECOMP-W02", Arial !important; } + + .font-light { + font-family: "Omnes-ECOMP-W02-Light", Arial !important; } + + .font-italic { + font-family: "Omnes-ECOMP-W02-Italic", Arial !important; } + + .font-light-italic { + font-family: "Omnes-ECOMP-W02-Light-Italic", Arial !important; } + + .font-medium { + font-family: "Omnes-ECOMP-W02-Medium", Arial !important; } + + .font-medium-italic { + font-family: "Omnes-ECOMP-W02-Medium-Italic",Arial !important; } + + .font-reset { + font-style: normal; + font-variant: normal; + font-weight: normal; + text-transform: none; } + + .visible-phone { + display: none !important; } + + .visible-tablet { + display: none !important; } + + .hidden-desktop { + display: none !important; } + + .visible-desktop { + display: inherit !important; } + + .row, + .row-nowrap { + margin-left: 0; } + + .row:before, + .row-nowrap:before, + .row:after, + .row-nowrap:after { + display: table; + content: ""; + line-height: 0; } + + .row:after, + .row-nowrap:after { + clear: both; } + + .row:before, + .row-nowrap:before, + .row:after, + .row-nowrap:after { + display: table; + content: ""; + line-height: 0; } + + .row:after, + .row-nowrap:after { + clear: both; } + + .row, + .row-nowrap { + display: flex; } + + .row > [class*="span"], + .row-nowrap > [class*="span"] { + float: left; + margin-right: 14px; + margin-right: 1.40845%\9; } + + .row > [class*="span"]:last-child, + .row-nowrap > [class*="span"]:last-child { + margin-right: 0; } + + .row > [class*="span"].centered, + .row-nowrap > [class*="span"].centered { + margin-left: auto !important; + margin-right: auto !important; } + + .row.no-flex, + .row-nowrap.no-flex { + display: block; } + + .row.no-flex > [class*="span"], + .row-nowrap.no-flex > [class*="span"] { + margin-right: 1.408450704225352%; } + + .row.no-flex > [class*="span"]:last-child, + .row-nowrap.no-flex > [class*="span"]:last-child { + margin-right: 0; } + + .row.flex-justify, + .row-nowrap.flex-justify { + justify-content: space-between; } + + .row.flex-justify > [class*="span"], + .row-nowrap.flex-justify > [class*="span"] { + flex: 1 1 0; } + + .row.flex-justify > .flex-col, + .row-nowrap.flex-justify > .flex-col { + margin-right: 14px; + margin-right: 1.40845%\9; } + + .row.flex-wrap, + .row-nowrap.flex-wrap { + flex-wrap: wrap; } + + .align-items-top { + align-items: flex-start; } + + .align-items-center { + align-items: center; } + + .align-items-bottom { + align-items: flex-end; } + + .align-self-top { + align-self: flex-start; } + + .align-self-center { + align-self: center; } + + .align-self-bottom { + align-self: flex-end; } + + .row .fixed-230 { + flex: 0; + display: block; + width: 230px; + vertical-align: top; + min-width: 230px; + background-color: #efefef; } + + .row .fluid-space { + flex: 1 1 0; + display: block; + vertical-align: top; + padding-left: 0; + padding-right: 20px; + width: 100%; } + + .row .fixed-230 + .fluid-space { + padding-left: 20px; + padding-right: 20px; } + + .row .fluid-space:last-child { + padding-right: 0; } + + .span1 { + width: 7.042253521126761%; } + + .span2 { + width: 15.49295774647887%; } + + .span3 { + width: 23.94366197183099%; } + + .span4 { + width: 32.3943661971831%; } + + .span5 { + width: 40.84507042253521%; } + + .span6 { + width: 49.29577464788733%; } + + .span7 { + width: 57.74647887323944%; } + + .span8 { + width: 66.19718309859155%; } + + .span9 { + width: 74.64788732394367%; } + + .span10 { + width: 83.09859154929578%; } + + .span11 { + width: 91.54929577464789%; } + + .span12 { + width: 100%; } + + .offset1 { + margin-left: 8.450704225352113%; } + + .offset2 { + margin-left: 16.90140845070423%; } + + .offset3 { + margin-left: 25.35211267605634%; } + + .offset4 { + margin-left: 33.8028169%; } + + .offset5 { + margin-left: 42.25352113%; } + + .offset6 { + margin-left: 50.70422535%; } + + .offset7 { + margin-left: 59.15492958%; } + + .offset8 { + margin-left: 67.6056338%; } + + .offset9 { + margin-left: 76.05633803%; } + + .offset10 { + margin-left: 84.50704225%; } + + .offset11 { + margin-left: 92.95774648%; } + + .align-center { + margin: 0 auto; + text-align: center; } + + [class*="span"].align-center { + margin: 0 auto !important; + float: none; } + + .align-left .container { + padding-left: 0 !important; + margin: 0 !important; } + + /* BEGIN RESPONSIVE-4.LESS ************** */ + @media (min-width: 1025px) { + .row > [class*="span"], + .row-nowrap > [class*="span"] { + margin-right: 20px; + margin-right: 1.487301587301587%\9; } + .container { + padding-left: 20px; + padding-right: 20px; + max-width: 1260px; } + /* 1col = 6.878306878306879 */ + /* 1colgutter = 1.587301587301587 */ + .span0 { + display: none; } + .span1 { + width: 6.878306878306879%; } + .span2 { + width: 15.34391534391534%; } + .span3 { + width: 23.80952380952381%; } + .span4 { + width: 32.27513227513228%; } + .span5 { + width: 40.74074074074074%; } + .span6 { + width: 49.20634920634921%; } + .span7 { + width: 57.67195767195767%; } + .span8 { + width: 66.13756613756614%; } + .span9 { + width: 74.60317460317461%; } + .span10 { + width: 83.06878306878308%; } + .span11 { + width: 91.53439153439154%; } + .span12 { + width: 100%; } + .offset1 { + margin-left: 8.465608465608466%; } + .offset2 { + margin-left: 16.93121693121693%; } + .offset3 { + margin-left: 25.3968253968254%; } + .offset4 { + margin-left: 33.86243386%; } + .offset5 { + margin-left: 42.32804233%; } + .offset6 { + margin-left: 50.79365079%; } + .offset7 { + margin-left: 59.25925926%; } + .offset8 { + margin-left: 67.72486772%; } + .offset9 { + margin-left: 76.19047619%; } + .offset10 { + margin-left: 84.65608466%; } + .offset11 { + margin-left: 93.12169312%; } + .tooltip-size-control { + position: relative; + width: 400px; } + .thumbnails > li { + margin-left: 1.40845070422535%; } + .row .thumbnails { + margin-left: 0; } } + + /* END RESPONSIVE-4.LESS ****************** */ + /* BEGIN RESPONSIVE-3.LESS ******************* */ + @media (min-width: 768px) and (max-width: 1024px) { + .hidden-desktop { + display: inherit !important; } + .visible-desktop { + display: none !important; } + .visible-tablet { + display: inherit !important; } + .hidden-tablet { + display: none !important; } + .container { + width: 100%; + margin: 0 auto; + padding-left: 20px; + padding-right: 20px; } + .span0-md { + display: none; } + .span1-md { + width: 7.042253521126761%; } + .span2-md { + width: 15.49295774647887%; } + .span3-md { + width: 23.94366197183099%; } + .span4-md { + width: 32.3943661971831%; } + .span5-md { + width: 40.84507042253521%; } + .span6-md { + width: 49.29577464788733%; } + .span7-md { + width: 57.74647887323944%; } + .span8-md { + width: 66.19718309859155%; } + .span9-md { + width: 74.64788732394367%; } + .span10-md { + width: 83.09859154929578%; } + .span11-md { + width: 91.54929577464789%; } + .span12-md { + width: 100%; } + .offset1-md { + margin-left: 8.450704225352113%; } + .offset2-md { + margin-left: 16.90140845070423%; } + .offset3-md { + margin-left: 25.35211267605634%; } + .offset4-md { + margin-left: 33.8028169%; } + .offset5-md { + margin-left: 42.25352113%; } + .offset6-md { + margin-left: 50.70422535%; } + .offset7-md { + margin-left: 59.15492958%; } + .offset8-md { + margin-left: 67.6056338%; } + .offset9-md { + margin-left: 76.05633803%; } + .offset10-md { + margin-left: 84.50704225%; } + .offset11-md { + margin-left: 92.95774648%; } + .tooltip-size-control { + position: relative; + width: 300px; } } + + /* END RESPONSIVE-3.LESS ******************* */ + /* BEGIN RESPONSIVE-2.LESS *************** */ + @media (max-width: 767px) { + .hidden-desktop { + display: inherit !important; } + .visible-desktop { + display: none !important; } + .visible-phone { + display: inherit !important; } + .visible-tablet { + display: inherit !important; } + .hidden-phone { + display: none !important; } + .hidden-tablet { + display: none !important; } + .container { + width: auto; + padding-left: 15px; + padding-right: 15px; } + /*.row{ display:block; }*/ + .row > [class*="span"] { + float: none; + margin-left: 0; + margin-right: 0; + width: 100%; } + .row { + display: block; } + .row.flex > .flex-col, + .row-nowrap.flex > .flex-col { + margin-right: 0; } + .row .fixed-230 { + display: block; + width: 100%; } + .row .fluid-space { + display: block; + padding-left: 0; + padding-right: 0; + width: auto; } + .row .fluid-space + .fixed-230 { + padding-left: 0; } + .row .fluid-space:last-child { + padding-right: 0; } + .span0-sm { + display: none; } + .span1-sm { + width: 7.042253521126761%; } + .span2-sm { + width: 15.49295774647887%; } + .span3-sm { + width: 23.94366197183099%; } + .span4-sm { + width: 32.3943661971831%; } + .span5-sm { + width: 40.84507042253521%; } + .span6-sm { + width: 49.29577464788733%; } + .span7-sm { + width: 57.74647887323944%; } + .span8-sm { + width: 66.19718309859155%; } + .span9-sm { + width: 74.64788732394367%; } + .span10-sm { + width: 83.09859154929578%; } + .span11-sm { + width: 91.54929577464789%; } + .span12-sm { + width: 100%; } + .offset1-sm { + margin-left: 8.450704225352113%; } + .offset2-sm { + margin-left: 16.90140845070423%; } + .offset3-sm { + margin-left: 25.35211267605634%; } + .offset4-sm { + margin-left: 33.8028169%; } + .offset5-sm { + margin-left: 42.25352113%; } + .offset6-sm { + margin-left: 50.70422535%; } + .offset7-sm { + margin-left: 59.15492958%; } + .offset8-sm { + margin-left: 67.6056338%; } + .offset9-sm { + margin-left: 76.05633803%; } + .offset10-sm { + margin-left: 84.50704225%; } + .offset11-sm { + margin-left: 92.95774648%; } + input { + padding: 8px 15px 8px 15px; } + .field-group input.input-emphasized[type="search"] + .reset-field:after { + top: 14px; } + .field-group input.input-emphasized[type="search"] + .reset-field { + height: 46px; + top: 1px; } + .marquee { + margin-bottom: 30px; } + .marquee .blur-overlay { + border-radius: 0; + position: absolute; + bottom: 0; + left: 0; + width: 100%; + margin: 0; + padding: 34px 15px 30px; } + .marquee + div { + margin-top: 30px; } + .marquee h1 { + font-size: 1.8rem; + letter-spacing: -0.035px; } + .marquee .lead { + font-size: 3.0rem; + line-height: 3.6rem; + margin-bottom: 0; } + .marquee p:not(.lead) { + font-family: "Omnes-ECOMP-W02-Light", Arial; + font-size: 1.8rem; + margin-bottom: 0; } + .marquee .btn-fullwidth { + margin-top: 10px; + width: 100%; + float: none; } + .tooltip-size-control { + width: 100%; } + .table-wrapper, + .accordion-table-layout { + margin-left: -15px; + margin-right: -15px; } + .table-wrapper caption { + padding-left: 15px; } } + + @media (max-width: 480px) { + .span1-xsm { + width: 7.042253521126761%; } + .span2-xsm { + width: 15.49295774647887%; } + .span3-xsm { + width: 23.94366197183099%; } + .span4-xsm { + width: 32.3943661971831%; } + .span5-xsm { + width: 40.84507042253521%; } + .span6-xsm { + width: 49.29577464788733%; } + .span7-xsm { + width: 57.74647887323944%; } + .span8-xsm { + width: 66.19718309859155%; } + .span9-xsm { + width: 74.64788732394367%; } + .span10-xsm { + width: 83.09859154929578%; } + .span11-xsm { + width: 91.54929577464789%; } + .span12-xsm { + width: 100%; } + .offset1-xsm { + margin-left: 8.450704225352113%; } + .offset2-xsm { + margin-left: 16.90140845070423%; } + .offset3-xsm { + margin-left: 25.35211267605634%; } + .offset4-xsm { + margin-left: 33.8028169%; } + .offset5-xsm { + margin-left: 42.25352113%; } + .offset6-xsm { + margin-left: 50.70422535%; } + .offset7-xsm { + margin-left: 59.15492958%; } + .offset8-xsm { + margin-left: 67.6056338%; } + .offset9-xsm { + margin-left: 76.05633803%; } + .offset10-xsm { + margin-left: 84.50704225%; } + .offset11-xsm { + margin-left: 92.95774648%; } } + + /* END RESPONSIVE-2.LESS ******************* */ + /* BEGIN RESPONSIVE-1.LESS ************** */ + .xxxxxxxx-begin-responsive-480px.less { + /* placeholder */ } + + @media (max-width: 480px) { + .hidden-desktop { + display: inherit !important; } + .hidden-tablet { + display: inherit !important; } + .hidden-phone { + display: none !important; } + .visible-desktop { + display: none !important; } + .visible-tablet { + display: none !important; } + .visible-phone { + display: inherit !important; } + .container { + width: auto; + padding-left: 15px; + padding-right: 15px; } } + + [class*="icon-primary-"], + .nav-links a:after, + .bellyband-link a:after, + .breadcrumb > li:after, + .checkbox input:checked + .skin:after, + .checkbox input.indeterminate + .skin:after, + .checkbox input:indeterminate + .skin:after, + .selectWrap.large:before, + .form-row.error .error-msg:before, + .close:before, + .reset-field:before, + .cssIcon-globe:before, + .selectWrap:after { + color: #0568ae; + left: 6px; + top: -3px; + width: 2px; + height: 3px; + border: solid white; + border-width: 0 3px 3px 0; + -webkit-transform: rotate(45deg); + -ms-transform: rotate(45deg); + transform: rotate(45deg);} + + [class*="icoWeather-"], [class*="icoTrans-"], [class*="icoBubble-"], [class*="icoRetail-"], [class*="icoPeople-"], [class*="icoNumslets-"], [class*="icoLocation-"], [class*="icoHealthcare-"], [class*="icoDocuments-"], [class*="icoDevices-"], [class*="icoDatanetwork-"], [class*="icoControls-"], [class*="icoBuilding-"], [class*="icoArrows-"] { + color: #0568ae; + display: inline-block; + font-style: normal; + font-size: 20px; + font-weight: normal; + font-variant: normal; + font-style: normal; + width: 20px; + text-transform: none; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + position: relative; + speak: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + vertical-align: middle; } + + [class*="icon-primary-"]:before, + [class*="icon-primary-"]:after { + box-sizing: border-box; + display: inline-block; + font-size: 1em; + height: 1em; + position: relative; + top: 0; + left: 0; + vertical-align: middle; + width: 1em; } + + .icon-primary-att-globe:before, + .cssIcon-globe:before { + content: "\e900"; + color: #44c7f5; } + + .icon-primary-hamburger:before { + content: "\e903"; } + + .icon-primary-secure:before { + content: "\e918"; } + + .icon-primary-secureL:before { + content: "\e919"; } + + .icon-primary-padlockopen:before { + content: "\e916"; } + + .icon-primary-padlockopenL:before { + content: "\e917"; } + + .icon-primary-shoppingcart:before { + content: "\e914"; } + + .icon-primary-shoppingcartL:before { + content: "\e915"; } + + .icon-primary-print:before { + content: "\e921"; } + + .icon-primary-printL:before { + content: "\e922"; } + + .icon-primary-mobilesmartphone:before { + content: "\e908"; } + + .icon-primary-mobilesmartphoneL:before { + content: "\e90c"; } + + .icon-primary-tablet:before { + content: "\e904"; } + + .icon-primary-tabletL:before { + content: "\e905"; } + + .icon-primary-tv:before { + content: "\e906"; } + + .icon-primary-tvL:before { + content: "\e907"; } + + .icon-primary-calendar { + width: 100% !important; } + + .icon-primary-calendar:before { + content: "\e91a"; + z-index: 1; } + + .icon-primary-calendarL:before { + content: "\e91b"; } + + .icon-primary-star:before { + content: "\e96c"; } + + .icon-primary-close:before, + .close:before, + .reset-field:before { + content: "\e910"; } + + .icon-primary-down:before { + content: "\ea3c"; } + + + + .icon-primary-add-maximize:before { + content: "\e91f"; } + + + + .icon-primary-questionmark:before { + content: "\e90f"; } + + .icon-primary-badgealert:before, + .form-row.error .error-msg:before { + content: "\e90e"; } + + .icon-primary-approval:before { + content: "\e925"; } + + .icon-primary-flat-info:before { + content: "\e927"; } + + .icon-primary-alert:before { + content: "\e913"; } + + .icon-primary-tooltip:before, + .icon-primary-flat-faq:before { + content: "\e90d"; } + + .icon-primary-tooltip { + font-size: 20px; } + + .nav-links a:after, + .bellyband-link a:after, + .breadcrumb > li:after, + .icon-primary-right:before { + content: "\ea3c"; + transform: rotate(-90deg); } + + .icon-primary-left:before { + content: "\ea3c"; + transform: rotate(90deg); } + + .icon-primary-accordion-plus:after, + .icon-primary-collapsed:after, + .icon-primary-accordion-minus:after, + .icon-primary-expanded:after { + content: ""; + position: absolute; + top: 0; + z-index: 1; } + + .icon-primary-accordion-minus, + .icon-primary-expanded, + .icon-primary-accordion-plus, + .icon-primary-collapsed { + font-size: 20px !important; } + + :not(.ds2-no-colors) .icon-primary-accordion-minus:before, + :not(.ds2-no-colors) .icon-primary-expanded:before { + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2021%2021%22%3E%3Cpath%20fill%3D%22%230568ae%22%20d%3D%22M15.1%2011.3H5.9c-.4%200-.8-.3-.8-.8s.3-.8.8-.8h9.3c.4%200%20.8.3.8.8s-.4.8-.9.8z%22%2F%3E%3Cpath%20fill%3D%22%23d2d2d2%22%20d%3D%22M10.5%2021C4.7%2021%200%2016.3%200%2010.5S4.7%200%2010.5%200%2021%204.7%2021%2010.5%2016.3%2021%2010.5%2021zm0-20C5.3%201%201%205.3%201%2010.5S5.3%2020%2010.5%2020s9.5-4.3%209.5-9.5S15.7%201%2010.5%201z%22%2F%3E%3C%2Fsvg%3E"); + content: ""; } + + :not(.ds2-no-colors) .icon-primary-accordion-plus:before, + :not(.ds2-no-colors) .icon-primary-collapsed:before { + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2021%2021%22%3E%3Cpath%20fill%3D%22%230568ae%22%20d%3D%22M10.5%2015.9c-.4%200-.8-.3-.8-.8V5.9c0-.4.3-.8.8-.8s.8.3.8.8v9.3c0%20.4-.4.7-.8.7z%22%2F%3E%3Cpath%20fill%3D%22%230568ae%22%20d%3D%22M15.1%2011.3H5.9c-.4%200-.8-.3-.8-.8s.3-.8.8-.8h9.3c.4%200%20.8.3.8.8s-.4.8-.9.8z%22%2F%3E%3Cpath%20fill%3D%22%23d2d2d2%22%20d%3D%22M10.5%2021C4.7%2021%200%2016.3%200%2010.5S4.7%200%2010.5%200%2021%204.7%2021%2010.5%2016.3%2021%2010.5%2021zm0-20C5.3%201%201%205.3%201%2010.5S5.3%2020%2010.5%2020s9.5-4.3%209.5-9.5S15.7%201%2010.5%201z%22%2F%3E%3C%2Fsvg%3E"); + content: ""; } + + .ds2-no-colors .icon-primary-accordion-minus:before, + .ds2-no-colors .icon-primary-expanded:before { + background-image: none; + content: "\e901"; } + + .ds2-no-colors .icon-primary-accordion-minus:after, + .ds2-no-colors .icon-primary-expanded:after { + content: "\e902"; } + + .ds2-no-colors .icon-primary-accordion-plus:before, + .ds2-no-colors .icon-primary-collapsed:before { + background-image: none; + content: "\e90b"; } + + .ds2-no-colors .icon-primary-accordion-plus:after, + .ds2-no-colors .icon-primary-collapsed:after { + content: "\e911"; } + + .icon-primary-circle-arrow { + outline: 1px solid transparent; + border-radius: 50%; + font-size: 20px !important; + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08); + margin-right: 7px; } + + .icon-primary-circle-arrow:after { + background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2036%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20baseProfile%3D%22tiny%22%3E%3Ccircle%20r%3D%2217%22%20cy%3D%2218%22%20cx%3D%2218%22%20stroke-width%3D%221%22%20fill%3D%22transparent%22%20stroke%3D%22%23ccc%22%2F%3E%3C%2Fsvg%3E"); + content: ""; + position: absolute; + top: 0; + z-index: 2; } + + .icon-primary-circle-arrow:before { + border-radius: 50%; + content: "\ea3c"; + font-size: 12px; + top: 0; + position: absolute; + transform: rotate(-90deg); + width: 20px; + z-index: 1; } + + [class*="icon-primary-"] [class*="icon-primary-"] { + display: inline-block; + float: left; + font-size: 1em; + margin-left: -1em; + position: absolute; } + + [class*="icon-primary-"].white, [class^="ico"][class*="-"].white { + color: #fff; } + + [class*="icon-primary-"].black, [class^="ico"][class*="-"].black { + color: #000; } + + [class*="icon-primary-"].blue, [class^="ico"][class*="-"].blue { + color: #0568ae; } + + [class*="icon-primary-"].green, [class^="ico"][class*="-"].green { + color: #007a3e; } + + @-webkit-viewport { + width: device-width; } + + @-moz-viewport { + width: device-width; } + + @-ms-viewport { + width: device-width; } + + @-o-viewport { + width: device-width; } + + @viewport { + width: device-width; } + + .clearfix:before, + .clearfix:after { + display: table; + content: ""; + line-height: 0; } + + .clearfix:after { + clear: both; } + + .pull-right { + float: right !important; } + + .pull-left { + float: left !important; } + + .float-children-left:before, + .float-children-left:after { + display: table; + content: ""; + line-height: 0; } + + .float-children-left:after { + clear: both; } + + .float-children-left > div { + float: left; + white-space: nowrap; } + + .block { + display: block !important; } + + .inline { + display: inline !important; } + + .inline-block { + display: inline-block !important; } + + .table-cell { + display: table-cell !important; + width: 1%; + vertical-align: middle; } + + @media (max-width: 767px) { + .full-bleed { + width: auto; + margin-left: -15px; + margin-right: -15px; + padding: 15px; } } + + @media (min-width: 768px) { + .full-bleed { + width: auto; + margin-left: -20px; + margin-right: -20px; + padding: 20px; } } + + @media (max-width: 480px) { + .full-bleed { + width: auto; + margin-left: -15px; + margin-right: -15px; + padding: 0 15px; } } + + .fade { + opacity: 0; + filter: alpha(opacity=0); + transition: opacity .15s linear; } + + .fade.in { + opacity: 1; + filter: alpha(opacity=100); } + + .b2bCollapse { + display: none; } + + .collapse.in { + height: auto; } + + .nowrap { + white-space: nowrap; } + + .pre { + white-space: pre; } + + .hidden-spoken { + border: 0 none !important; + clip: rect(0px, 0px, 0px, 0px) !important; + height: 1px !important; + letter-spacing: 0; + line-height: 0; + overflow: hidden !important; + margin-top: -1px; + padding: 0 !important; + position: absolute !important; + width: 1px !important; } + + [data-sr-text].hidden-spoken:before { + border: 0 none !important; + content: attr(data-sr-text); + clip: rect(0px, 0px, 0px, 0px) !important; + height: 1px !important; + letter-spacing: 0; + line-height: 0; + overflow: hidden !important; + padding: 0 !important; + position: absolute !important; + width: 100% !important; + z-index: -1; } + + [data-sr-text].hidden-spoken { + position: relative !important; + width: auto !important; } + + [data-show-between] { + display: none; + visibility: hidden; } + + .noscroll-y { + overflow-y: hidden !important; } + + .invisible { + visibility: hidden !important; + opacity: 0 !important; } + + .transparent { + background-color: rgba(255, 255, 255, 0) !important; } + + .hide { + display: none !important; } + + .show { + display: block !important; } + + .rel { + position: relative !important; } + + .legend-pad { + padding: 0 15px; } + + .border-top { + border-top-width: 1px !important; } + + .border-left { + border-left-width: 1px !important; } + + .border-right { + border-right-width: 1px !important; } + + .border-bottom { + border-bottom-width: 1px !important; } + + .border-dark { + border-color: #000; } + + .border-light { + border-color: #fff; } + + .no-border-top { + border-top-width: 0 !important; } + + .no-border-left { + border-left-width: 0 !important; } + + .no-border-right { + border-right-width: 0 !important; } + + .no-border-bottom { + border-bottom-width: 0 !important; } + + .align-middle { + margin: 0 auto !important; } + + .align-top { + position: absolute; + top: 0; } + + .align-bottom { + position: absolute; + bottom: 0; } + + .valign-top { + vertical-align: top !important; } + + .valign-middle { + vertical-align: middle !important; } + + .valign-bottom { + vertical-align: bottom !important; } + + .align-children-middle > * { + margin: 0 auto; } + + [class*="valign-children-"] { + display: table; } + + [class*="valign-children-"] > * { + display: table-cell; } + + .valign-children-top > * { + vertical-align: top; } + + .valign-children-middle > * { + vertical-align: middle; } + + .valign-children-bottom > * { + vertical-align: bottom; } + + .no-pad { + padding: 0 !important; } + + .top-space { + margin-top: 60px !important; } + + .bottom-space { + margin-bottom: 60px !important; } + + .top-pad { + padding-top: 60px !important; } + + .bottom-pad { + padding-bottom: 60px !important; } + + @media (max-width: 767px) { + .top-space { + margin-top: 30px !important; } + .bottom-space { + margin-bottom: 30px !important; } + .top-pad { + padding-top: 30px !important; } + .bottom-pad { + padding-bottom: 30px !important; } } + + .affix { + position: fixed; } + + .img-landscape, + .img-portrait { + position: relative; } + + @media (orientation: landscape) { + .img-landscape { + display: block; } + .img-portrait { + display: none !important; } } + + @media (orientation: portrait) { + .img-landscape { + display: none !important; } + .img-portrait { + display: block; } } + + .dark-bg { + background-color: #222222; } + + /* ... JAVASCRIPT HOOKS ................. + ... used by javascript ............... */ + .autoSize, + .autoSize-this { + position: relative; } + + .truncate { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } + + .placeholdersjs { + color: #5a5a5a !important; } + + .jshook-return-focus-here { + display: block; } + + .visible-print { + display: none !important; } + + .hidden-print { + display: inherit !important; } + + @media print { + .visible-print { + display: inherit !important; } + .hidden-print { + display: none !important; } + * { + color: #000 !important; + background: transparent !important; + box-shadow: none !important; } + a, + a:visited { + text-decoration: underline; } + pre, + blockquote { + border: 1px solid #000; + page-break-inside: avoid; } + thead { + display: table-header-group; } + tr, + img { + page-break-inside: avoid; } + img { + max-width: 100% !important; } + @page { + margin: 0.5cm; } + p, + h2, + h3 { + orphans: 3; + widows: 3; } + h2, + h3 { + page-break-after: avoid; } } + + .mar-top-0 { + margin-top: 0px; } + + .mar-top-30 { + margin-top: 30px; } + + a:focus { + outline: thin dotted #191919; } + + h1, + h2, + h3, + h4, + h5, + h6 { + font-weight: normal; + text-rendering: optimizeLegibility; + margin: 0; + line-height: 1; } + + .heading-page { + font-size: 3.8rem !important; + font-family: "Omnes-ECOMP-W02-Light", Arial; + margin-bottom: 40px; } + + h1.heading-page.ng-scope {} + + .heading-major-section { + font-size: 3rem !important; + font-family: "Omnes-ECOMP-W02-Light", Arial; + margin-bottom: 40px !important; } + + .heading-sub-section { + font-size: 2.4rem !important; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 40px; } + + .heading-group { + font-size: 2rem !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + color: #ea7400; + margin-bottom: 20px !important; } + + .heading-medium { + font-size: 2rem !important; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; } + + .heading-medium-emphasis { + font-size: 2rem !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + margin-bottom: 20px; } + + .heading-small { + font-size: 1.8rem !important; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; } + + .heading-small-emphasis { + font-size: 1.8rem !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + margin-bottom: 20px; } + + .heading-micro { + font-size: 1.3rem !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + text-transform: uppercase; + color: #da0081; + margin-bottom: 10px; } + + * + .heading-major-section { + margin-top: 60px; } + + * + .heading-sub-section { + margin-top: 60px; } + + * + .heading-group { + margin-top: 40px !important; } + + * + .heading-medium { + margin-top: 40px; } + + * + .heading-medium-emphasis { + margin-top: 40px; } + + * + .heading-small { + margin-top: 40px; } + + * + .heading-small-emphasis { + margin-top: 40px; } + + * + .heading-micro { + margin-top: 20px; } + + .lead { + color: #666; + font-family: "Omnes-ECOMP-W02-Light-Italic", Arial; + font-size: 2.4rem; + line-height: 2.8rem; + margin-top: 10px; + letter-spacing: -0.024rem; } + + .eyebrow { + text-transform: uppercase; + line-height: .65 !important; } + + .eyebrow, + .subheading { + font-size: 1.4rem !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + color: #666; } + + .eyebrow + .heading-major-section, + .eyebrow + .heading-sub-section { + margin-top: 4px; } + + .subheading { + margin-top: 10px; } + + @media (max-width: 767px) { + h1, + h2, + h3, + h4, + h5, + h6, + .heading-page { + font-size: 2rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 30px; } + .heading-major-section { + font-size: 2rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 30px; } + .heading-sub-section { + font-size: 2rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; } + .heading-medium { + font-size: 2rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; } + .heading-medium-emphasis { + font-size: 2rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; } + .heading-small { + font-size: 1.6rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 10px; } + .heading-small-emphasis { + font-size: 1.6rem; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + margin-bottom: 5px; } + * + .heading-major-section { + margin-top: 30px; } + * + .heading-sub-section { + margin-top: 30px; } + * + .heading-group { + margin-top: 20px; } + * + .heading-medium { + margin-top: 20px; } + * + .heading-medium-emphasis { + margin-top: 20px; } + * + .heading-small { + margin-top: 20px; } + * + .heading-small-emphasis { + margin-top: 20px; } + * + .heading-micro { + margin-top: 10px; } } + + /* Standard Type styles */ + .zeromargin { + margin: 0 !important; } + + a { + color: #0568ae; + text-decoration: none; } + + a:hover, + a:focus { + text-decoration: underline; } + + a:active { + color: #0568ae; } + + .a-min { + font-size: 12px; } + + .a-small { + font-size: 14px; } + + .a-max { + font-size: 18px; } + + a.show-qualifier { + margin-right: 25px; + position: relative; } + + a.show-qualifier:after { + color: #333333; + display: inline-block; + white-space: pre !important; } + + a[href$="pdf"].show-qualifier:after, + a.show-qualifier.pdf:after { + content: " (PDF)"; } + + a[href$="psd"].show-qualifier:after, + a.show-qualifier.psd:after { + content: " (PSD)"; } + + .standalone-link { + display: flex; } + + /* 20px for the icon, 10px left of icon */ + .standalone-link.small { + font-size: 1.4rem; } + + .standalone-link.small i[class*="icon-primary-"] { + font-size: 16px; + top: 2px; } + + .standalone-link.large { + font-size: 1.8rem; } + + .standalone-link.large i[class*="icon-primary-"] { + font-size: 24px; + top: -1px; } + + p { + margin: 0 0 12px 0; + line-height: 2rem; } + + .p-small { + font-size: 1.4rem; + line-height: 1.8rem; } + + p + .p-small { + margin: 10px 0 0; } + + .p-micro { + font-size: 1.2rem; + line-height: 1.5rem; } + + p + .p-micro { + margin: 10px 0 0; } + + .p-max { + font-size: 1.8rem; } + + p + .p-max { + margin: 10px 0 0; } + + b, + strong { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-weight: normal; } + + i, + em { + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; } + + .strike { + text-decoration: line-through; } + + sup { + display: inline-block; + font-style: normal; + height: 1em; + position: relative; + vertical-align: text-top; + width: auto; } + + .text-legal { + color: #5a5a5a; + font-size: 1.1rem; + line-height: 1.5rem; + margin: 0 0 10px; } + + .text-legal.legal-module { + line-height: 1.3rem; + margin: 0 0 12px; } + + .text-legal b, + .text-legal strong { + font-weight: bold; } + + .text-legal a { + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + .text-left { + text-align: left !important; } + + .text-right { + text-align: right !important; } + + .text-center { + text-align: center !important; } + + .text-justified { + text-align: justify !important; } + + ul { + padding: 0; + margin: 0; + list-style: none; } + + ul.bullet, + ul.no-bullet, + ul.lower-alpha, + ul.lower-roman, + ol { + padding: 0; + margin: 12px 0 0 20px; } + + ul.bullet li, + ul.no-bullet li, + ul.lower-alpha li, + ul.lower-roman li, + ol li { + padding-left: 15px; + line-height: 20px; + position: relative; } + + ul.bullet li + li, + ul.no-bullet li + li, + ul.lower-alpha li + li, + ul.lower-roman li + li, + ol li + li { + margin-top: 12px; } + + ul.bullet > li:before, + ul.no-bullet > li:before, + ul.lower-alpha > li:before, + ul.lower-roman > li:before, + ol > li:before { + background-color: #333333; + border: 2px solid #333333; + border-radius: 100%; + content: " "; + display: block; + height: 1px; + left: 0; + position: absolute; + top: 8px; + width: 1px; } + + ul.bullet ul, + ul.no-bullet ul, + ul.lower-alpha ul, + ul.lower-roman ul, + ol ul, + ul.bullet ol, + ul.no-bullet ol, + ul.lower-alpha ol, + ul.lower-roman ol, + ol ol { + margin-top: 12px; } + + ul + *, + ol + * { + margin-top: 20px; } + + ul.no-bullet, + ul.lower-alpha, + ul.lower-roman { + margin: 0; } + + ul.no-bullet > li, + ul.lower-alpha > li, + ul.lower-roman > li { + padding-left: 0; } + + ul.no-bullet > li:before, + ul.lower-alpha > li:before, + ul.lower-roman > li:before { + display: none !important; } + + ol { + margin: 20px 0 0 32px; } + + ol li { + padding-left: 3px; } + + ol li:before { + display: none; } + + ol ol { + margin-left: 25px; } + + ol ul { + margin-left: -5px; } + + ul ul, + ul ol, + ol ol, + ol ul { + margin-top: 0; } + + ul.lower-roman { + list-style-type: lower-roman; + margin-top: 12px; + margin-left: 35px; + margin-bottom: 0; } + + ul.lower-alpha { + list-style-type: lower-alpha; + margin-top: 12px; + margin-left: 35px; + margin-bottom: 0; } + + dl { + display: table; + margin: 0 0 20px; + width: 100%; } + + dt, + dd { + display: table-cell; } + + .btn { + background-color: transparent; + background-clip: padding-box; + border: 1px solid transparent; + border-radius: 8px; + box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15); + cursor: pointer; + display: inline-block; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 0.5rem; + font-weight: normal; + line-height: 1; + margin: 0 7px 10px 0; + + + padding: 14px 19px 11px 18px; + position: relative; + text-align: center; + vertical-align: middle; + white-space: nowrap; + overflow: hidden; } + .btn:focus { + outline: 1px dotted #000; + outline-offset: -5px; } + .btn:last-child { + margin-right: 0; } + .btn::-moz-focus-inner { + padding: 0; + border: 0; } + .btn i[class*="icon-primary-"].icon-primary-small { + font-size: 24px; + top: -2px; } + .btn i[class*="icon-primary-"].icon-primary-medium { + font-size: 10px; + top: -2px; } + .btn i[class*="icon-primary-"].icon-primary-large { + font-size: 10px; + top: -2px; } + + a.btn { + vertical-align: middle; } + a.btn:hover { + text-decoration: none; } + + .field-group + .btn { + margin-left: 20px; } + + .btn-primary { + border-color: #ea7400 transparent #d16500; + background-color: #ea7400 transparent #d16500; + background: linear-gradient(to bottom, #ea7400 0%, #d16500 100%); + color: #ffffff; + font-family: "Omnes-ECOMP-W02", Arial; + font-weight: bold; } + .btn-primary:hover { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + .btn-primary:focus { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + .btn-primary:active { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + + .btn-arrow { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 1.6rem; + font-weight: normal; + background-color: transparent; + border: none; + padding: 5px 0 0; + top: -4px; + color: #333333; + position: relative; } + .btn-arrow:hover { + text-decoration: underline; } + .btn-arrow:hover .btn-primary { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + .btn-arrow:hover .btn-secondary { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + .btn-arrow:hover .btn-alt { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); } + .btn-arrow:hover .btn-specialty { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + .btn-arrow:focus { + text-decoration: underline; + outline: 1px dotted #666; } + .btn-arrow:focus .btn-primary { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + .btn-arrow:focus .btn-secondary { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + .btn-arrow:focus .btn-alt { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); } + .btn-arrow:focus .btn-specialty { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + .btn-arrow:active .btn-primary { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + .btn-arrow:active .btn-secondary { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + .btn-arrow:active .btn-alt { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); } + .btn-arrow:active .btn-specialty { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + .btn-arrow .btn-alt { + border-color: #087ac2 transparent #0568ae; + background-color: #0568ae; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); + color: #ffffff; } + .btn-arrow .btn-alt:hover { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + .btn-arrow .btn-alt:focus { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + .btn-arrow .btn-alt:active { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + .btn-arrow::-moz-focus-inner { + padding: 0; + border: 0; } + .btn-arrow .btn { + border: 1px solid transparent; + border-radius: 100%; + height: 20px; + margin-bottom: 0; + margin-right: 7px; + max-width: 20px; + min-width: 20px; + padding: 0; + margin-top: -4px; + vertical-align: middle; + width: 36px; } + .btn-arrow .btn .icon-primary-left { + bottom: 0; + display: block; + height: 100%; + left: 0; + line-height: 0; + position: absolute; + right: 0; + text-indent: 0; + top: 0; } + .btn-arrow .btn .icon-primary-left:before { + position: absolute; + font-size: 1.6rem; + left: 1px; + top: 9px; } + .btn-arrow .btn .icon-primary-right { + bottom: 0; + display: block; + height: 100%; + left: 0; + line-height: 0; + position: absolute; + right: 0; + text-indent: 0; + top: 0; + color: #ffffff; } + .btn-arrow .btn .icon-primary-right:before { + position: absolute; + font-size: 1.6rem; + left: 17px; + top: 9px; } + .btn-arrow .btn.btn-primary .icon-primary-left { + color: #fff; } + .btn-arrow .btn.btn-primary .icon-primary-right { + color: #fff; } + .btn-arrow .btn.btn-alt .icon-primary-left { + color: #fff; } + .btn-arrow .btn.btn-alt .icon-primary-right { + color: #fff; } + .btn-arrow .btn.btn-secondary { + border: 1px solid #d2d2d2; } + .btn-arrow .btn.btn-secondary .icon-primary-left { + color: #0568ae; } + .btn-arrow .btn.btn-secondary .icon-primary-right { + color: #0568ae; } + .btn-arrow .btn.btn-small { + height: 10px; + + + width: 10px; + top: -1px; } + .btn-arrow .btn.btn-small .icon-primary-left:before { + font-size: 5px; + top: 4px; + left: 0; } + .btn-arrow .btn.btn-small .icon-primary-right:before { + font-size: 5px; + top: 4px; + left: 10px; } + .btn-arrow .btn.btn-large .icon-primary-left:before { + font-size: 112%; + top: 12px; + left: 23px; } + .btn-arrow .btn.btn-large .icon-primary-right:before { + font-size: 112%; + top: 12px; + left: 23px; } + + .btn-secondary { + border: 1px solid #d2d2d2; + background-color: #f2f2f2; + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + color: #0568ae; + box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.15); + padding: 14px 18px 11px 17px; } + .btn-secondary:hover { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + .btn-secondary:focus { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + .btn-secondary:active { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + + .btn-alt { + border-color: #087ac2 transparent #0568ae; + background-color: #0568ae; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); + color: #ffffff; } + .btn-alt:hover { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + .btn-alt:focus { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + .btn-alt:active { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + + .btn-specialty { + border-color: #008744 transparent #007a3e; + background-color: #007a3e; + background: linear-gradient(to bottom, #008744 0%, #007a3e 100%); + color: #ffffff; } + .btn-specialty:hover { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + .btn-specialty:focus { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + .btn-specialty:active { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + + .btn-clear { + background: transparent !important; + border-color: transparent !important; + font-weight: normal; + font-family: "Omnes-ECOMP-W02", Arial; + box-shadow: none; + text-decoration: none; + color: #0568ae; } + .btn-clear:focus { + text-decoration: underline; } + .btn-clear:hover { + text-decoration: underline; } + + .isIE .btn:focus { + outline: none !important; + text-decoration: none !important; } + .isIE .btn:focus:after { + display: block; + content: ""; + position: absolute; + top: 4px; + left: 4px; + right: 4px; + bottom: 4px; + border: 1px dotted #000; } + + .isIE .btn:active { + outline: none !important; + text-decoration: none !important; } + .isIE .btn:active:after { + display: block; + content: ""; + position: absolute; + top: 4px; + left: 4px; + right: 4px; + bottom: 4px; + border: 1px dotted #000; } + + .isIE .btn.active { + outline: none !important; + text-decoration: none !important; } + .isIE .btn.active:not(:focus):after { + border: 1px solid #000; } + .isIE .btn.active:after { + display: block; + content: ""; + position: absolute; + top: 4px; + left: 4px; + right: 4px; + bottom: 4px; + border: 1px dotted #000; } + + .isIE .btn.btn-primary:focus:after { + border: 2px dashed #fff; } + + .isIE .btn.btn-specialty:focus:after { + border: 2px dashed #fff; } + + .isIE .btn.btn-alt:focus:after { + border: 2px dashed #fff; } + + .btn.disabled { + background-image: none; + background-color: #767676; + box-shadow: none; + cursor: not-allowed; + color: #ffffff; + border-color: transparent; + outline: 0 !important; } + .btn.disabled:hover { + color: #f2f2f2; + outline: none !important; } + .btn.disabled:focus { + color: #f2f2f2; + outline: none !important; } + + .btn[disabled] { + background-image: none; + background-color: #767676; + box-shadow: none; + cursor: not-allowed; + color: #ffffff; + border-color: transparent; + outline: 0 !important; } + .btn[disabled]:hover { + color: #f2f2f2; + outline: none !important; } + .btn[disabled]:focus { + color: #f2f2f2; + outline: none !important; } + + .btn[disabled="disabled"] { + background-image: none; + background-color: #767676; + box-shadow: none; + cursor: not-allowed; + color: #ffffff; + border-color: transparent; + outline: 0 !important; } + .btn[disabled="disabled"]:hover { + color: #f2f2f2; + outline: none !important; } + .btn[disabled="disabled"]:focus { + color: #f2f2f2; + outline: none !important; } + + .btn-arrow[disabled] .btn { + background-image: none; + background-color: #767676; + box-shadow: none; + cursor: not-allowed; + color: #ffffff; + border-color: transparent; + outline: 0 !important; } + .btn-arrow[disabled] .btn:hover { + color: #f2f2f2; + outline: none !important; } + .btn-arrow[disabled] .btn:focus { + color: #f2f2f2; + outline: none !important; } + + .btn-arrow[disabled] .icon-primary-left { + color: #fff !important; } + + .btn-arrow[disabled] .icon-primary-right { + color: #fff !important; } + + .btn-arrow.disabled .btn { + background-image: none; + background-color: #767676; + box-shadow: none; + cursor: not-allowed; + color: #ffffff; + border-color: transparent; + outline: 0 !important; } + .btn-arrow.disabled .btn:hover { + color: #f2f2f2; + outline: none !important; } + .btn-arrow.disabled .btn:focus { + color: #f2f2f2; + outline: none !important; } + + .btn-arrow.disabled .icon-primary-left { + color: #fff !important; } + + .btn-arrow.disabled .icon-primary-right { + color: #fff !important; } + + .btn-medium { + padding: 12px 19px 11px 18px; + font-size: 1.7rem; } + + .btn-small { + /* padding: 10px 19px 9px 18px; */ + font-size: 1.5rem; + border-radius: 8px; } + + .btn-fullwidth { + width: 100%; } + + *:not(.btn-arrow) > .btn > i[class*="icon-primary-"] { + margin-top: -20px; + margin-bottom: -20px; } + + .enhanced-cta-group { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: row-reverse; + flex-direction: row-reverse; + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewport%3D%220%200%201%201%22%20style%3D%22width%3A100%25%3B%20height%3A1px%3B%22%3E%3Cstyle%3Eline%7Bstroke%3A%23959595%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cline%20y2%3D%221%22%20y1%3D%221%22%20x1%3D%221%22%20x2%3D%22100%25%22%20stroke-dasharray%3D%221%2C%203%22%2F%3E%3C%2Fsvg%3E") !important; + background-position: 0 -1px; + background-repeat: repeat-x; } + .enhanced-cta-group > .cta-button-group { + border-top: 0; + background-image: none !important; } + .enhanced-cta-group > .cta-button-group + .cta-button-group a { + font-size: 1.4rem; + line-height: 1em; } + .enhanced-cta-group > .cta-button-group + .cta-button-group a a { + margin-right: 0; } + .enhanced-cta-group > .cta-button-group hr { + min-height: 14px; } + .enhanced-cta-group > .cta-button-group + .cta-button-group { + -ms-flex-align: center; + -ms-grid-row-align: center; + align-items: center; + -ms-flex-direction: row; + flex-direction: row; + padding: 10px 0; } + + .cta-button-group { + text-align: right; + -ms-flex-align: baseline; + align-items: baseline; + padding: 20px 0 10px; + width: 100%; } + .cta-button-group.nodots { + background-image: none !important; } + .cta-button-group .hidden-phone { + margin-right: 14px; } + .cta-button-group .btn + .btn { + margin-right: 20px !important; } + .cta-button-group .btn:not(.hidden-phone):not(.visible-phone) { + margin-right: 0; } + + .isMobile .btn-arrow .btn.btn-small .icon-primary-left:before { + left: -1px; } + + .isMobile .btn-arrow .btn.btn-large .icon-primary-left:before { + left: 24px; } + + .isMobile .btn-arrow .btn.btn-large .icon-primary-right:before { + left: 24px; } + + @media (max-width: 1024px) { + .field-group + .btn { + margin-left: 15px; } } + + @media (max-width: 767px) { + .cta-button-group { + text-align: center; } + .cta-button-group > .btn { + display: block; + float: none; + width: 100%; + margin-left: auto !important; + margin-right: auto !important; } } + + .btn-group { + border-radius: 8px; + box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.15); + display: -ms-flexbox; + display: flex; + -ms-flex-pack: justify; + justify-content: space-between; + margin-bottom: 10px; + max-width: 470px; + min-width: 290px; + position: relative; + vertical-align: middle; + width: 100%; } + .btn-group > .btn { + box-shadow: none; + -ms-flex: 1; + flex: 1; + position: relative; + float: left; + margin-right: -1px; + margin-bottom: 0; + padding-left: 0; + padding-right: 0; + text-align: center; } + .btn-group:not([data-select-color]) .btn.active:not(:first-child) { + margin-right: -1px; + border-left: 1px solid #d2d2d2 !important; } + .btn-group:not([data-select-color]) .btn[disabled]:not(:first-child) { + border-left: 1px solid #d2d2d2 !important; } + .btn-group:not([data-select-color]) .btn[disabled] + .btn[disabled] { + border-left: 1px solid #ebebeb !important; } + .btn-group:not([data-select-color]) > .btn.active { + border-color: #087ac2 transparent #0568ae; + background-color: #0568ae; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); + color: #ffffff; } + .btn-group:not([data-select-color]) > .btn.active:hover { + color: #ffffff; + outline-color: #ffffff !important; + background: #0563a6; + border-color: #0563a6; } + .btn-group:not([data-select-color]) > .btn.active:focus { + color: #ffffff; + outline-color: #ffffff !important; + background: #0563a6; + border-color: #0563a6; } + .btn-group:not([data-select-color]) > .btn.active:active { + color: #ffffff; + outline-color: #ffffff !important; + background: #0563a6; + border-color: #0563a6; } + .btn-group:not([data-select-color]) > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { + border-radius: 0; } + .btn-group:not([data-select-color]) > .btn:first-child:not(:last-child):not(.dropdown-toggle) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + .btn-group:not([data-select-color]) > .btn:last-child:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + .btn-group:not([data-select-color]) > .dropdown-toggle:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + .btn-group > .active { + text-decoration: none; + outline: 1px dotted transparent; } + .btn-group > .active:focus { + outline: 1px dotted #ffffff; } + + .btn-group.btn-fullwidth > .btn { + -ms-flex: 1; + flex: 1; } + + .btn-group[data-select-color] { + margin-top: 5px; + box-shadow: none; + -ms-flex-pack: start; + justify-content: flex-start; + -ms-flex-wrap: wrap; + flex-wrap: wrap; } + .btn-group[data-select-color] .btn { + border: 1px solid #959595; + border-radius: 4px; + box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.15); + margin-right: 10px; + margin-bottom: 10px; + height: 40px; + font-size: 16px; + color: #333333; + max-width: 60px; + min-width: 60px; + -ms-flex: 0; + flex: 0; } + .btn-group[data-select-color] > .btn.active:focus { + outline: 1px dotted #191919; + outline-offset: 4px; } + + button .btn-fill { + background-clip: padding-box; + border: 0; + border-radius: 4px; + bottom: 0; + display: block; + height: auto; + left: 0; + margin: 5px; + position: absolute; + right: 0; + top: 0; + width: auto; } + + button .btn-fill[style*="#fff"] { + border: 1px solid #d2d2d2; } + + [data-select-color] .btn.active { + background: none !important; + outline: 0; + margin-right: 10px; + border-width: 3px; + color: #333333; + line-height: 12px; } + [data-select-color] .btn.active > .btn-fill { + margin: 3px; } + [data-select-color] .btn.active:hover { + color: #333333; } + + [data-select-color] .btn:active { + background: none !important; + outline: 0; + margin-right: 10px; + border-width: 3px; + color: #333333; + line-height: 12px; } + [data-select-color] .btn:active > .btn-fill { + margin: 3px; } + [data-select-color] .btn:active:hover { + color: #333333; } + + .btn-group[data-select-color="orange"] > .btn.active { + border-color: #ea7400; } + + .btn-group[data-select-color="blue"] > .btn.active { + border-color: #0568ae; } + + .btn-group[data-select-color="green"] > .btn.active { + border-color: #007a3e; } + + .btn-spinbutton-toggle.btn-group { + display: block !important; + height: 40px !important; + margin-top: 5px; + max-width: 138px; + min-width: 138px; + white-space: nowrap; } + + .btn-spinbutton-toggle .btn { + border-radius: 6px; + font-weight: normal; + -ms-flex: unset; + flex: unset; + height: 40px; + letter-spacing: normal; + min-width: auto; + padding: 3px 0 0; + text-align: center; + min-width: 46px; + width: 46px; } + + .btn-spinbutton-toggle .btn[data-max-value] { + border-bottom: 1px solid #d2d2d2; + border-top: 1px solid #d2d2d2; + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.08) inset; + background-color: #fff; + cursor: text; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 2rem; + font-weight: normal; + padding: 4px 0 0; + text-align: center; + min-width: 46px !important; + width: 46px; } + .btn-spinbutton-toggle .btn[data-max-value]:focus { + border-color: #0568ae; + outline: none; } + .btn-spinbutton-toggle .btn[data-max-value]:focus + .btn { + border-left: 1px solid #0568ae; + transition: border 0.3s linear 0s; } + + .btn-spinbutton-toggle .icon-primary-subtractminimize { + font-size: 30px !important; + color: #0568ae !important; } + + .btn-spinbutton-toggle .icon-primary-add-maximize { + font-size: 30px !important; + color: #0568ae !important; } + + .btn-spinbutton-toggle .btn[disabled].icon-primary-subtractminimize { + background-color: #d2d2d2; + color: #767676 !important; } + + .btn-spinbutton-toggle .btn[disabled].icon-primary-add-maximize { + background-color: #d2d2d2; + color: #767676 !important; } + + .btn-spinbutton-toggle input.btn[disabled] { + background-color: #d2d2d2; + color: #5a5a5a; + cursor: not-allowed; } + + .btn-group.btn-spinbutton-toggle .btn[disabled] + .btn[disabled] { + border-left: 1px solid #f0f0f0 !important; } + + .btn-group.btn-spinbutton-toggle .btn[data-max-value]:focus + .btn:not(:first-child) { + border-left: 1px solid #0568ae !important; } + + @media (max-width: 480px) { + .btn-group:not([data-select-color]) > .btn { + font-size: 1.3rem; + min-width: auto; } } + + .reset-field, + .close { + float: right; + background: none; + width: 34px; + height: 34px; + padding: 0; + overflow: hidden; + display: inline-block; } + + .reset-field { + display: none; } + + .reset-field:before { + font-size: 22px; + color: #5a5a5a; } + + .input-emphasized + .reset-field:before { + font-size: 29px; + color: #5a5a5a; } + + .reset-field:active, + .reset-field:hover, + .reset-field:focus { + display: block !important; } + + button.close { + border: 0; + appearance: none; } + + .corner-button { + box-shadow: 0 -50px 0 0 #f2f2f2 inset; + height: 69px; + /*overflow: hidden;*/ + position: absolute; + right: -35px; + top: -35px; + transform: rotate(45deg); + width: 69px; } + + .corner-button .close:before { + bottom: -7px; + color: #0568ae; + display: block; + font-size: 20px; + height: 50px; + left: -11px; + position: absolute; + width: 50px; } + + .corner-button .close { + float: none; + height: 45px; + margin: 0; + position: absolute; + right: 12px; + top: 45px; + transform: rotate(45deg); + width: 45px; } + + .corner-button .close:focus { + outline: 1px dotted black; } + + .ds2-no-colors .corner-button .close { + border: 1px solid black; } + + .field-group input + .reset-field { + background: none; + height: 36px; + width: 45px; + display: none; + padding: 0; + position: absolute; + right: 0; + top: 0; + box-shadow: none; + border: none; + content: " "; } + + .field-group input[type="search"] + .reset-field, + .field-group input[type="search"] + .btn-search + .reset-field, + .tooltip-onclick input + .reset-field, + .tooltip-onclick input + .icon-primary-tooltip + .reset-field, + .tooltip-onclick textarea + .reset-field, + .tooltip-onclick textarea + .icon-primary-tooltip + .reset-field { + right: 45px; } + + .field-group input[type="search"] + .reset-field:after, + .field-group input[type="search"] + .btn-search + .reset-field:after, + .tooltip-onclick input + .reset-field:after, + .tooltip-onclick input + .icon-primary-tooltip + .reset-field:after, + .tooltip-onclick textarea + .reset-field:after, + .tooltip-onclick textarea + .icon-primary-tooltip + .reset-field:after { + background-color: #d2d2d2; + content: ""; + display: block; + height: 20px; + position: absolute; + right: 0; + top: 8px; + width: 1px; } + + .tooltip-onclick input + .reset-field, + .tooltip-onclick input + .icon-primary-tooltip + .reset-field { + right: 50px !important; } + + .tooltip-onclick textarea + .reset-field, + .tooltip-onclick textarea + .icon-primary-tooltip + .reset-field { + right: 45px !important; + width: 40px; } + + .field-group input.input-emphasized + .reset-field { + width: 45px; + height: 46px; + right: 6px; } + + .field-group input.input-emphasized + .reset-field:after { + top: 14px; } + + .field-group [disabled] + .reset-field { + display: none; } + + .ds2_touchevents .field-group input + .reset-field:focus, + .ds2_touchevents .field-group input:focus + .reset-field, + .ds2_touchevents textarea:focus + .reset-field, + .ds2_touchevents textarea + .reset-field:focus { + display: block; + position: absolute; + right: 0px; + top: 0; + border: none; } + + .ds2_touchevents .field-group input { + padding: 8px 55px 8px 15px; + -webkit-appearance: none; } + + .ds2_touchevents textarea:focus { + padding: 15px 55px 15px 15px; } + + .ds2_touchevents textarea:focus + .reset-field { + border: none; + position: absolute; + right: 6px; + top: 5px; } + + .ds2_touchevents textarea.hasScrollbar:focus { + padding: 15px 35px 15px 15px; } + + .ds2_touchevents textarea.hasScrollbar:focus + .reset-field { + right: 22px; } + + .ds2-no-colors .b2b-tmpl-card-corner-button { + border: none !important; } + + .ds2-no-colors .b2b-tmpl-card-corner-button .close { + border: 1px solid black; + top: 0px !important; + right: 0px !important; } + + .form-row.error .error-msg { + display: block; + font-size: 14px; + line-height: 14px; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + position: relative; + padding-left: 18px; } + + .form-row.error .error-msg:before { + color: #cf2a2a; + font-size: 14px; + left: 0; + line-height: 14px; + position: absolute; + vertical-align: middle; } + + .form-row.error label, + .form-row.error .error-msg, + .form-row.error button.awd-select, + .form-row.error select.awd-select + span, + .form-row.error .checkbox, + .form-row.error .radio, + .form-row.error legend.error, + .form-row.error input { + color: #cf2a2a; } + + .form-row.error .btn-group > .btn, + .form-row.error button.awd-select, + .form-row.error .awd-select-list, + .form-row.error select.awd-select + span, + .form-row.error textarea, + .form-row.error input, + .form-row.error .checkbox .skin, + .form-row.error .radio .skin { + border-color: #cf2a2a !important; } + + .form-row.error .checkbox input:checked:not(:disabled) + .skin { + background-color: #cf2a2a; } + + .form-row.error .radio input:checked + .skin:after { + background-color: #cf2a2a; } + + .error .tooltip-onclick .icon-primary-tooltip.active + .error-msg { + margin-top: -11px; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } + + .error .tooltip-onclick .icon-primary-tooltip.active + .error-msg + .helpertext { + margin: 0 0 10px; } + + .error .tooltip-onclick .icon-primary-tooltip.active + .error-msg + .helpertext:before, + .error .tooltip-onclick .icon-primary-tooltip.active + .error-msg + .helpertext:after { + display: none; } + + .error .helpertext { + border-color: #cf2a2a; + /*border-radius:0;*/ } + + .error .helpertext:before { + border-top-color: #cf2a2a; } + + .error .tooltip-onfocus .helpertext { + margin: 14px 0 10px 0; } + + .error [class*="price"], + .error [class*="pricing-"] { + color: #cf2a2a; } + + input:-ms-clear { + display: none; } + + input[type]::-webkit-inner-spin-button, + input[type]::-webkit-outer-spin-button { + -webkit-appearance: none; } + + input[type] { + -moz-appearance: textfield; } + + form { + margin: 0; } + + fieldset { + padding: 0; + margin: 0; + border: 0; } + + label, + legend { + display: inline-block; + /* font-size: 1.4rem; */ + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + legend { + display: block; } + + .error-msg { + display: none; } + + select, + textarea, + input { + border-radius: 6px; + color: #5a5a5a; + display: inline-block; + font-size: 1.6rem; + margin: 0px; + padding: 0 15px 0 15px; + vertical-align: middle; + line-height: normal; } + + select::-webkit-input-placeholder, + textarea::-webkit-input-placeholder, + input::-webkit-input-placeholder { + color: #5a5a5a; + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; + opacity: 1; } + + select:-moz-placeholder, + textarea:-moz-placeholder, + input:-moz-placeholder { + color: #5a5a5a; + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; + opacity: 1; } + + select::-moz-placeholder, + textarea::-moz-placeholder, + input::-moz-placeholder { + color: #5a5a5a; + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; + opacity: 1; } + + select:-ms-input-placeholder, + textarea:-ms-input-placeholder, + input:-ms-input-placeholder { + color: #5a5a5a; + font-family: "Omnes-ECOMP-W02-Italic", Arial; + transition: none; + opacity: 1; } + + select:placeholder, + textarea:placeholder, + input:placeholder { + color: #5a5a5a; + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; + opacity: 1; } + + select:last-child, + textarea:last-child, + input:last-child { + margin-right: 0; } + + input:not([type="button"]) { + height: 36px; } + + input.input-emphasized { + font-size: 1.8rem; + height: 48px; + padding: 13px 20px 13px; } + + input[type="search"]:focus { + padding-right: 88px; } + + input[type="search"] { + padding-right: 40px; + -webkit-appearance: none !important; } + + input[type="search"].input-emphasized { + padding-right: 45px; } + + .btn-search[class*="btn"] { + background-color: transparent; + background-position: 50% 50%; + background-size: 20px; + background-repeat: no-repeat; + border: none; + height: 100%; + margin-left: 0; + margin-top: 0; + min-width: 45px !important; + outline-offset: 0; + padding: 0 !important; + position: absolute; + right: 0; + top: 0; + border-radius: 0 5px 5px 0; + min-width: 44px; + width: 44px; } + + .input-emphasized + .btn-search[class*="btn"], + .input-emphasized + .reset-field + .btn-search[class*="btn"] { + background-size: 26px; + height: 46px; + top: 1px; + outline-offset: -3px; + margin-bottom: 0; + border-radius: 0 5px 5px 0; } + + input[type="search"].input-emphasized + .reset-field { + right: 45px !important; } + + .search-suggestion-wrapper { + position: relative; + margin-bottom: 15px; } + + /*styles from dropdown*/ + .search-suggestion-list { + box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); + border-radius: 0 0 6px 6px; + position: relative; + border: 1px solid #0568ae; + border-top: 0; + padding: 15px 0; + background-color: #f2f2f2; + z-index: 1000; + width: 100%; + max-height: 400px; + overflow-y: auto; } + + .search-suggestion-list:empty { + display: none; } + + .search-suggestion-item { + position: relative; + z-index: -1; + padding: 0 15px; + line-height: 4.0rem; + color: #5a5a5a; } + + .search-suggestion-item a { + text-decoration: none; + color: #5a5a5a; } + + .search-suggestion-item:hover, + .search-suggestion-item:focus { + cursor: pointer; + background-color: #d2d2d2; } + + input[data-provide="datepicker"], + [data-provide="datepicker"]:-moz-placeholder, + [data-provide="datepicker"]:-ms-input-placeholder, + [data-provide="datepicker"]:-webkit-input-placeholder { + color: #0568ae !important; + opacity: 1; + filter: alpha(opacity=100); } + + input[disabled], + input[readonly], + select[disabled], + select[readonly], + textarea[disabled], + textarea[readonly], + i.icon-primary-calendar.disabled, + span.icon-primary-calendar.readonly { + cursor: not-allowed; + background-color: #f2f2f2; + box-shadow: none; } + + i.icon-primary-calendar.disabled input, + span.icon-primary-calendar.readonly input { + color: #959595 !important; } + + textarea { + display: block; + width: 800px; + + padding: 15px; } + + textarea.small { + line-height: 20px; } + + textarea + .reset-field { + display: none; } + + textarea::-webkit-input-placeholder { + line-height: .99; } + + textarea:-moz-placeholder { + line-height: .99; } + + textarea::-moz-placeholder { + line-height: .99; } + + textarea:-ms-input-placeholder { + line-height: .99; } + + textarea:placeholder { + line-height: .99; } + + textarea, + input { + background-color: #ffffff; + border: 1px solid #d2d2d2; + -webkit-appearance: none; + box-shadow: 2px 3px 2px -2px rgba(0, 0, 0, 0.08) inset; + transition: border .3s linear 0s; + font-family: "Omnes-ECOMP-W02", Arial; } + + textarea:focus, + input:focus { + outline: 0; + border-color: #0568ae; } + + .input-append { + display: table; } + + .input-append > div { + display: table-cell; + width: 1%; } + + .input-append > .field-group { + width: 100%; } + + .row .field-group input[class*="span"] { + float: none; } + + .field-group { + position: relative; + display: inline-block; } + + label + .field-group, + label + .input-append, + label + .row, + label + .row-nowrap, + label + .form-row { + margin-top: 5px; } + + .field-group { + position: relative; + display: block; } + + .field-group input:not([type="button"])[disabled] { + padding-right: 15px; } + + input:invalid, + textarea:invalid, + select:invalid { + outline: none !important; } + + .form-row { + margin-top: 20px; } + + .form-row.nomar { + margin: 0; } + + .row-nowrap.no-flex.form-row > label + br { + margin-bottom: 5px; } + + span.form-row { + display: inline-block; } + + legend + .form-row { + margin-top: 20px; } + + .tooltip-onclick input { + padding-right: 45px; } + + .ds2_touchevents .tooltip-onclick input:focus { + padding-right: 95px; } + + .btn-calendar-icon { + position: absolute; + background-color: transparent !important; + top: 8px; + border: 0 !important; + width: 30px; + right: 15px; } + + .btn-calendar-icon .icon-primary-calendar:before { + position: absolute; + color: #0568ae; } + + .btn-calendar-icon .icon-primary-calendar.disabled { + background-color: #f2f2f2; } + + .btn-calendar-icon .icon-primary-calendar.disabled:before { + color: #959595; } + + span.icon-primary-calendar input { + padding-left: 35px; + color: #0568ae; + transition: border-color 0.3s linear 0s; + box-shadow: 2px 3px 2px -2px rgba(0, 0, 0, 0.08) inset; + position: absolute; + top: 0; + left: 0; } + + .faux-input + input.datepicker-input:not([disabled]) { + cursor: pointer; + margin-left: 0; + background-color: #fff; + position: absolute; + left: 0; + top: 0; + z-index: 0; } + + .faux-input { + background-color: transparent !important; + border: 1px solid transparent; + border-radius: 4px; + font-size: 1.6rem; + height: 35px; + left: 0; + line-height: 35px; + margin-bottom: 10px; + margin-right: 6px; + padding: 0 0 0 35px; + position: relative; + text-align: left; + top: 0; + vertical-align: middle; + width: 100%; + z-index: 1; } + + .faux-input:disabled { + cursor: not-allowed; } + + .faux-input:focus + .datepicker-input, + [data-calendar-state="opened"] + .datepicker-input { + border-color: #0568ae; + box-shadow: 2px 3px 2px -2px rgba(5, 116, 172, 0.35) inset; + outline: 0 none; } + + .form-row.error .error-msg { + display: block; + font-size: 14px; + line-height: 14px; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + position: relative; + padding-left: 18px; + margin-top: 10px; } + + .form-row.error .error-msg > .icon-primary-badgealert { + height: 14px; + width: 14px; + position: absolute; + left: 0; + margin-right: 0; } + + .form-row.error .error-msg > .icon-primary-badgealert:before { + color: #cf2a2a; + font-size: 14px; + left: 0; + line-height: 14px; + position: absolute; + vertical-align: middle; } + + .form-row.error label, + .form-row.error .error-msg, + .form-row.error button.awd-select, + .form-row.error select.awd-select + span, + .form-row.error .checkbox, + .form-row.error .radio, + .form-row.error legend.error, + .form-row.error input, + .form-row.error textarea { + color: #cf2a2a; } + + .form-row.error .btn-group > .btn, + .form-row.error button.awd-select, + .form-row.error .awd-select-list, + .form-row.error select.awd-select + span, + .form-row.error textarea, + .form-row.error input, + .form-row.error .checkbox .skin, + .form-row.error .radio .skin { + border-color: #cf2a2a !important; } + + .form-row.error .checkbox input:checked:not(:disabled) + .skin { + background-color: #cf2a2a; } + + .form-row.error .radio input:checked + .skin:after { + background-color: #cf2a2a; } + + .error [class*="price"], + .error [class*="pricing-"] { + color: #cf2a2a; } + + hr, + .hr-or { + display: block; + height: 1px; + margin: 15px 0; + border: none; + background-repeat: repeat-x; + background-color: #959595; + position: relative; } + + hr.dark { + background-color: #959595; } + + hr.lite { + background-color: #d2d2d2; } + + .hr-or:before { + background-color: #fff; + color: #666; + content: " OR "; + display: block; + font-size: 1.4rem; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + height: 16px; + left: 50%; + line-height: 1.6rem; + margin-left: -15px; + margin-top: -8px; + position: absolute; + text-align: center; + top: 50%; + width: 30px; + z-index: 1111; } + + hr.is-vertical.dark, + hr.hr-or.dark, + hr.is-vertical.lite, + hr.hr-or.lite { + display: inline-block; + height: auto; + margin: 0 15px; + min-height: 20px; + width: 1px; } + + hr.is-vertical.dark, + hr.hr-or.dark { + background-color: #959595; } + + hr.is-vertical.lite, + hr.hr-or.lite { + background-color: #d2d2d2; } + + .hr-dotted.is-vertical.dark, + .hr-dotted.is-vertical.lite { + background-color: transparent; + background-repeat: repeat-y; + background-size: 1px 4px; + height: auto; + min-height: 20px; + width: 1px; } + + .row-nowrap > .span + hr.is-vertical, + .row > .span + hr.is-vertical { + margin: 0 0 0 -20px; } + + + + hr.bottom-space-only { + margin-top: 0; } + + .hr-nomargin { + margin: 0; } + + .radio { + position: relative; + min-height: 24px; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 1.6rem; + margin-bottom: 5px; } + .radio input { + -webkit-tap-highlight-color: transparent; + height: 10px; + margin: 6px; + opacity: 0; + outline: none; + position: absolute; + left: 1px; + top: 1px; + width: 10px; } + .radio input:focus + .skin { + border-color: #0568ae; } + .radio input:focus + .skin:before { + content: ""; + height: 34px; + left: -6px; + top: -6px; + outline: 1px dotted #000000; + position: absolute; + width: 34px; } + .radio input + .skin { + border-radius: 100%; } + .radio input:checked + .skin:after { + background-color: #0568ae; + border-radius: 100%; + border: 3px solid #FFFFFF; + content: ""; + display: block; + height: 16px; + position: absolute; + width: 16px; } + .radio input:disabled + .skin { + cursor: not-allowed; + background-color: #d2d2d2; + border-color: #d2d2d2; + color: #666666; } + .radio input:disabled + .skin + span { + cursor: not-allowed; + color: #666666; } + .radio input:disabled:checked + .skin:after { + background-color: #666666; } + .radio input:invalid + .skin { + border: solid 1px #cf2a2a; } + .radio .skin { + background-color: #FFFFFF; + border: 1px solid #d2d2d2; + border-radius: 3px; + display: inline-block; + height: 24px; + left: 0; + position: absolute; + top: 0; + width: 24px; } + .radio span { + display: inline-block; + margin-left: 34px; + margin-top: 0; + position: relative; + top: 3px; } + .radio label { + font-size: 1.6rem; + font-family: "Omnes-ECOMP-W02", Arial; } + + .radio.inline { + display: inline-block; + margin-bottom: 10px; + vertical-align: middle; + margin-right: 10px; } + .radio.inline:last-child { + margin-right: 0; } + + .radio-box { + border: 1px solid #d2d2d2; + border-radius: 8px; } + .radio-box > [role="radio"] label { + padding: 15px 15px 20px 15px; + display: block; + width: 100%; } + .radio-box > [role="radio"] label .skin + span { + top: 2px; } + .radio-box > [role="radio"] + div { + padding: 0 15px 15px 47px; } + .radio-box > [aria-checked="false"] label > input { + top: 15px; + left: 15px; } + .radio-box > [aria-checked="false"] label .skin { + top: 15px; + left: 15px; } + .radio-box > [aria-checked="true"] label > input { + top: 13px; + left: 13px; } + .radio-box > [aria-checked="true"] label .skin { + top: 13px; + left: 13px; } + + .radio-box.active { + border: 3px solid #0568ae; } + .radio-box.active > [role="radio"] label { + padding: 13px 14px 19px 13px; } + + .checkbox { + position: relative; + min-height: 24px; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 1rem; + } + .checkbox input { + -webkit-tap-highlight-color: transparent; + height: 20px; + margin-left: 20px; + opacity: 0; + outline: none; + position: absolute; + left: 1px; + top: 1px; + width: 10px; } + .checkbox input:focus + .skin { + border-color: #0568ae; } + .checkbox input:focus + .skin:before { + content: ""; + height: 34px; + left: -6px; + top: -6px; + outline: 1px dotted #000000; + position: absolute; + width: 34px; } + .checkbox input:checked:not(:disabled) + .skin { + background-color: #0568ae; + border-color: #0568ae; } + .checkbox input:checked:disabled + .skin:after { + color: #5A5A5A; } + .checkbox input:checked + .skin:after { + height: 20px; + width: 10px; + background-color: transparent; + font-size: 23.4px; + color: #FFFFFF; + line-height: 21px; } + .checkbox input:disabled + .skin { + cursor: not-allowed; + background-color: #d2d2d2; + border-color: #d2d2d2; + color: #666666; } + .checkbox input:disabled + .skin + span { + cursor: not-allowed; + color: #666666; } + .checkbox input:invalid + .skin { + border: solid 1px #cf2a2a; } + .checkbox input:indeterminate + .skin:after { + background-color: transparent; + font-size: 25px; + color: #0574ac; + content: "\e920"; } + .checkbox .skin { + background-color: #fff; + border: 1px solid #d2d2d2; + border-radius: 3px; + display: inline-block; + height: 24px; + width: 24px; + position: absolute; + left: 0; + top: 0; } + .checkbox span { + display: inline-block; + margin-left: 34px; + margin-top: 0; + position: relative; + top: 3px; } + .checkbox label { + font-size: 1.6rem; + font-family: "Omnes-ECOMP-W02", Arial; } + .checkbox input { + z-index: 9999; } + .checkbox input.indeterminate + .skin:after { + font-size: 22px; + color: #0568ae; } + + /* .checkbox.inline { + display: inline-block; + margin-bottom: 10px; + vertical-align: middle; + margin-right: 10px; } + .checkbox.inline:last-child { + margin-right: 0; } + + .checkbox.checkbox-selectall { + margin: 20px 0 0 24px; } + + .terms-after-checkbox { + margin-top: 15px; } */ + + .indeterminate-margin { + padding-left: 24px; } + + .tiny-accordion { + border-bottom: 1px solid #d2d2d2; } + + .toggle-header, + .inactive-toggle-header { + border-color: #fff; + color: #0568ae; + cursor: pointer; + display: block; + font-size: 2.0rem; + line-height: 2.2rem; + min-height: 41px; + position: relative; + padding: 16px 55px 16px 15px; } + + .toggle-header.opened { + color: #333333; } + + .tiny-accordion .toggle-header, + .tiny-accordion .inactive-toggle-header { + padding: 16px 55px 16px 15px; + border-top: 1px solid #d2d2d2; } + + .tiny-accordion .toggle-header:focus { + text-decoration: underline; } + + .tiny-accordion.iconleft .toggle-header, + .tiny-accordion.iconleft .inactive-toggle-header { + padding: 15px 15px 15px 50px; } + + .accordion-content { + font-size: 1.4rem; } + + .accordion-content .toggle-header:first-child { + margin-top: 16px; } + + .tiny-accordion .toggle-header + .accordion-content { + padding: 0 50px 15px 15px; } + + .tiny-accordion.iconleft .toggle-header + .accordion-content { + padding: 0 15px 15px 50px; } + + .toggle-header .icon-primary-accordion-plus, + .toggle-header .icon-primary-accordion-minus { + display: inline-block; + font-size: 20px; + margin: 0; + padding: 0; + position: absolute; + right: 15px; + vertical-align: middle; + top: 16px; + font-weight: bold; } + + .tiny-accordion.iconleft .toggle-header .icon-primary-accordion-plus, + .tiny-accordion.iconleft .toggle-header .icon-primary-accordion-minus { + left: 15px; } + + .inactive-toggle-header:hover { + cursor: inherit; } + + .tiny-accordion-to-tabs, + .tiny-tabs { + position: relative; + width: 100%; + margin: 0px; + padding: 0px; } + + .tiny-tabs [class*="icon-primary-accordion-"] { + display: none !important; } + + .tiny-accordion-to-tabs:before, + .tiny-accordion-to-tabs:after, + .tiny-tabs:before, + .tiny-tabs:after { + display: table; + content: ""; + line-height: 0; } + + .tiny-accordion-to-tabs:after, + .tiny-tabs:after { + clear: both; } + + .tiny-accordion-to-tabs:before, + .tiny-accordion-to-tabs:after, + .tiny-tabs:before, + .tiny-tabs:after { + display: table; + content: ""; + line-height: 0; } + + .tiny-accordion-to-tabs:after, + .tiny-tabs:after { + clear: both; } + + .tiny-tabs > .toggle-header { + display: inline-block; + float: left; + border-top: none; + overflow: hidden; + height: 70px; + text-align: center; + background-color: #fff; + border-radius: 0px; + padding: 26px 20px 25px 20px !important; + border-top: 1px solid #fff; + -webkit-filter: none; + filter: none; + background-clip: padding-box; + border-bottom: 1px solid #d2d2d2; + font-weight: normal; + border-right: 1px solid #d2d2d2; + white-space: nowrap; } + + .tiny-tabs .toggle-header + div { + left: 0px; + position: absolute; + top: 69px; + border-top: 1px solid #d2d2d2; + padding: 0; + display: block; + border-bottom: none; + width: 100%; } + + .accordion-pad { + padding-top: 30px; + padding-bottom: 30px; } + + .tiny-tabs .opened { + color: #333333; + border-top: 5px solid #0568ae !important; + padding-top: 22px !important; + border-bottom: none; + background-color: #fff; + -webkit-filter: none; + filter: none; + cursor: default; + z-index: 999; } + + .tiny-tabs .toggle-header:focus { + text-decoration: underline; + outline: thin dotted #666; + outline-offset: 0; } + + .tiny-tabs .toggle-header:first-child { + border-left: none; + margin-left: 0; } + + .tiny-tabs .toggle-header:first-child { + border-left: 1px solid #fff; } + + .tiny-tabs .opened:first-child { + border-left: 1px solid #d2d2d2; } + + .tiny-tabs .toggle-header:nth-last-of-type(2) { + border-right-color: #fff; } + + .tiny-tabs .opened:nth-last-of-type(2) { + border-right: 1px solid #d2d2d2; } + + @media (max-width: 767px) { + .tiny-accordion, + .tiny-accordion-to-tabs { + margin-left: -15px; + margin-right: -15px; + width: auto; } + .tiny-accordion-to-tabs { + display: block; + border-bottom: 1px solid #d2d2d2; } + .tiny-accordion-to-tabs .toggle-header { + display: block; + min-height: 41px; + padding: 16px 50px 16px 15px; + border-top: 1px solid #d2d2d2; } + .tiny-accordion-to-tabs .toggle-header:focus { + text-decoration: underline; } + .tiny-accordion-to-tabs .toggle-header + .accordion-content { + padding: 0 50px 15px 15px; } } + + @media (min-width: 768px) { + .tiny-accordion-to-tabs [class*="icon-primary-accordion-"] { + display: none !important; } + .tiny-accordion-to-tabs > .toggle-header { + display: inline-block; + float: left; + border-top: none; + /*overflow: hidden;*/ + height: 70px; + text-align: center; + background-color: #fff; + border-radius: 0px; + padding: 26px 20px 25px 20px !important; + border-top: 1px solid #fff; + -webkit-filter: none; + filter: none; + background-clip: padding-box; + border-bottom: 1px solid #d2d2d2; + font-weight: normal; + border-right: 1px solid #d2d2d2; + white-space: nowrap; } + .tiny-accordion-to-tabs .toggle-header + div { + left: 0px; + position: absolute; + top: 69px; + border-top: 1px solid #d2d2d2; + padding-top: 30px; + padding-left: 20px; + display: block; + border-bottom: none; + width: 100%; } + .tiny-accordion-to-tabs .opened { + color: #333333; + border-top: 5px solid #0568ae !important; + padding-top: 22px !important; + border-bottom: none; + background-color: #fff; + -webkit-filter: none; + filter: none; + cursor: default; + text-decoration: none; + z-index: 999; } + .tiny-accordion-to-tabs .toggle-header:focus { + text-decoration: underline; + outline: thin dotted #666; + outline-offset: 0px; } + .tiny-accordion-to-tabs .toggle-header:nth-last-of-type(2) { + border-right: none; } + .tiny-accordion-to-tabs .toggle-header:first-child { + border-left: none; + margin-left: 0; } + .tiny-accordion-to-tabs .toggle-header:first-child { + border-left: 1px solid #fff; } + .tiny-accordion-to-tabs .opened:first-child { + border-left: 1px solid #d2d2d2; } + .tiny-accordion-to-tabs .opened:nth-last-of-type(2) { + border-right: 1px solid #d2d2d2; } } + + .toggle-header .tooltip .icon-primary-tooltip { + margin-top: -5px; } + + .accordion-content { + transition: all 0.8s linear; } + + .opaque-content { + opacity: 0; } + + .tiny-tabs .toggle-header { + display: inline-block; + float: left; + border-top: none; + overflow: hidden; + height: 70px; + text-align: center; + background-color: #fff; + border-radius: 0px; + padding: 22px 20px 25px 20px !important; + border-top: 5px solid #fff; + -webkit-filter: none; + filter: none; + background-clip: padding-box; + border-bottom: 1px solid #ccc; + font-weight: normal; + border-right: 1px solid #ccc; + white-space: nowrap; } + + .tiny-tabs .toggle-header:first-child { + margin-left: 0; } + + .tiny-tabs div:first-child .toggle-header { + margin-left: 30px; } + + .tiny-tabs > div .toggle-header.opened { + border-bottom: 0 !important; } + + .tiny-accordion-to-tabs > div > div.toggle-header { + background-clip: padding-box; + background-color: #fff; + border-bottom: 1px solid #ccc; + border-radius: 0; + border-top: 5px solid #fff; + display: inline-block; + filter: none; + float: left; + font-weight: normal; + overflow: hidden; + padding: 22px 20px 21px !important; + text-align: center; + white-space: nowrap; } + + .tiny-accordion-to-tabs .toggle-header:first-child { + margin-left: 0; } + + .tiny-accordion-to-tabs div:first-child .toggle-header { + margin-left: 30px; + border-bottom: 0 !important; } + + .tiny-accordion-to-tabs > div .toggle-header.opened { + border-bottom: 0 !important; } + + @media (max-width: 767px) { + .tiny-accordion-to-tabs { + display: block !important; + border-bottom: 1px solid #ccc !important; } + .tiny-accordion-to-tabs > div > div.toggle-header { + display: block !important; + float: none; + text-align: left; + min-height: 41px !important; + padding: 15px 50px 15px 15px !important; + border-top: 1px solid #ccc; } + .tiny-accordion-to-tabs > div > div.toggle-header:first-child { + margin-left: 0 !important; } + .tiny-accordion-to-tabs > div > div.toggle-header + .accordion-content { + padding: 0 50px 15px 15px; } + .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-plus { + background-position: 0 0; + background-size: 20px 40px; } + .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-minus { + background-position: 0 -20px; + background-size: 20px 40px; } + .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-plus, + .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-minus { + display: inline-block; + height: 20px; + margin: 0; + padding: 0; + position: absolute; + right: 15px; + vertical-align: middle; + width: 20px; } } + + .alert { + background-color: #5a5a5a; + border-radius: 8px; + color: #fff; + margin-top: 15px; + padding: 0; + position: relative; + border: 0; } + + .alert h3, + .alert h4 { + color: #fff; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 1.6rem; + margin: 0 20px 5px 0; } + + .alert div { + padding: 15px 20px; } + + .alert div:first-child { + border-radius: 8px 0 0 8px; + width: 1%; } + + .alert div:first-child + div { + border: 1px solid transparent; + border-left: none; + border-radius: 0 8px 8px 0; } + + .alert-error { + background-color: #cf2a2a; + border: 1px solid #cf2a2a; } + + .alert-info { + background-color: #44c8f5; + border: 1px solid #44c8f5; } + + .alert-success { + background-color: #c5d63d; + border: 1px solid #c5d63d; } + + .alert [class*="icon-primary-"] { + color: #fff; + font-size: 30px; + margin-right: 0; } + + .alert .close { + height: 30px; + position: absolute; + right: 1px; + top: 1px; + width: 30px; } + + .alert .close:before { + color: #fff; + margin-right: 0; + position: absolute; + right: 9px; + top: 9px; } + + .alert a { + color: #fff; + text-decoration: underline; } + + .alert .close:focus { + outline: 1px dotted #666; } + + .alert p { + font-size: 1.4rem; } + + .alert p:last-child { + margin-bottom: 0; } + + .alert .standalone-link i[class*="icon-primary-"] { + font-size: 20px; + margin-right: 5px; } + + @media (max-width: 767px) { + .alert { + border-radius: 0; + margin: 0 -15px; } + .alert + .alert { + margin-top: 4px; } + .alert div { + padding: 15px 10px; } + .alert div:first-child { + border-radius: 0; + padding: 15px; } + .alert h3, + .alert h4 { + font-size: 1.4rem; } + .alert p { + font-size: 1.2rem; } + .alert .close { + right: 5px; + top: 5px; } + .alert .standalone-link i[class*="icon-primary-"] { + font-size: 16px; } } + + .alert h3 { + margin: 0; + font-size: 16px; } + + .alert p { + font-size: 14px; } + + .alert p a { + color: #FFFFFF; + text-decoration: underline; } + + .alert div:first-child + div { + padding-right: 25px; } + + .alert div:last-child { + padding-right: 20px !important; } + + .alert p [class*="icon-primary-"] { + color: #fff; + font-size: 20px; + margin-right: 0; } + + @media (max-width: 767px) { + .alert h3 { + font-size: 14px; } + .alert div:first-child + div { + padding-right: 20px; } + .alert div:last-child { + padding-right: 15px !important; } + .alert div:first-child { + padding: 15px; } + .alert p { + font-size: 12px; } + .alert p [class*="icon-primary-"] { + font-size: 16px; } } + + .b2b-audio { + width: auto; + margin: 10px auto; + height: 35px; } + .b2b-audio .controls-wrapper { + display: inline-block; + font-size: 25px; + cursor: pointer; } + .b2b-audio .controls-wrapper i { + font-size: 25px; + margin-right: 0px; + color: #444; } + .b2b-audio .controls-wrapper i:hover { + color: #0574AC; } + .b2b-audio .seek-bar-container-wrapper { + display: inline-block; + outline: 0; + min-width: 180px; + margin-right: 10px; + margin-left: 10px; + height: 14px; + padding-top: 5px; } + .b2b-audio .seek-bar-container-wrapper .timing-container { + padding-top: 13px; + color: #333; + font-size: 12px; } + .b2b-audio .seek-bar-container-wrapper .timing-container .timing-container-left { + float: left; + line-height: 100%; } + .b2b-audio .seek-bar-container-wrapper .timing-container .timing-container-right { + float: right; + line-height: 100%; } + .b2b-audio .seek-bar-container-wrapper .timing-container .timing-container-spacer { + clear: both; } + .b2b-audio .seek-bar-tooltip { + text-align: center; + min-width: 76px; } + + .b2b-audio-popover { + width: 22px; } + .b2b-audio-popover .volume-popover { + height: 100px !important; + width: 6px !important; + margin: 7px auto; } + .b2b-audio-popover .min-label { + margin-top: 5px; } + + .b2b-audio-native { + width: auto; + height: auto; } + + .b2b-audio-recorder { + border: 1px solid #ccc; + box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.15); + height: 63px; + min-height: 63px; + min-width: 347px; } + .b2b-audio-recorder .b2b-elapsed-time { + margin: 23px 0 24px 15px; + font-size: 16px; + font-style: italic; + color: #767676; } + .b2b-audio-recorder .b2b-controls { + width: 68px; + cursor: pointer; } + .b2b-audio-recorder .b2b-controls i.icoControls-record { + font-size: 64px; + color: black; + float: right; + margin-right: 10px; } + .b2b-audio-recorder .b2b-controls i.icoControls-record:focus, .b2b-audio-recorder .b2b-controls i.icoControls-record:hover { + color: #0568ae; } + .b2b-audio-recorder .b2b-controls i.icoControls-stop { + font-size: 36px; + color: black; + float: right; + margin-right: 20px; + margin-top: 12px; } + .b2b-audio-recorder .b2b-controls i.icoControls-stop:focus, .b2b-audio-recorder .b2b-controls i.icoControls-stop:hover { + color: #0568ae; } + + .b2b-top-btn { + height: 36px; + width: 36px; + border-radius: 7px; } + + .b2b-top-btn > i { + position: absolute; + top: 13px; + left: 9px; + width: 11px; + height: 18px; } + + .b2b-badge { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + background-color: #5A5A5A; + border-radius: 12px; + color: #FFFFFF; + display: inline-block; + font-size: 1.5rem; + font-weight: normal; + height: 20px; + line-height: 0; + margin-top: 0; + min-width: 20px; + padding: 0 5px; + text-align: center; + vertical-align: baseline; } + .b2b-badge:empty { + display: none; } + + * + .b2b-heading-micro { + margin-top: 20px !important; } + + .b2b-heading-micro { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-weight: normal; + text-rendering: optimizeLegibility; + font-size: 1.2rem !important; + text-transform: uppercase !important; + margin-bottom: 20px !important; + line-height: 1.2 !important; } + + .b2b-no-colors .b2b-badge { + border: 1px solid transparent; } + + .btn > .b2b-badge { + margin-right: 5px; } + + a > .b2b-badge { + margin-right: 6px; + padding-top: 10px; } + + .b2b-badge-urgent { + background-color: #cf2a2a; } + + .bellyband-container { + margin: 0 -15px; } + + .bellyband-group { + width: auto; } + + .bellyband-link { + border-top: 1px solid #d2d2d2; } + + .bellyband-link a { + display: block; + height: 40px; + line-height: 40px; + padding: 0 15px; + position: relative; + text-decoration: none; } + + .bellyband-link a:hover > div span, + .bellyband-link a:focus > div span { + text-decoration: underline; } + + .bellyband-link a:after { + color: #666; + font-size: 2.3rem; + height: 20px; + position: absolute; + right: 5px; + top: 12px; + width: 18px; } + + .dark-bg .bellyband-link a:after { + color: white; } + + .bellyband-link img[src$="svg"].hidden-desktop, + .bellyband-link [class*="icon-primary-"].hidden-desktop { + display: inline-block !important; + float: left; + font-size: 24px; + height: 24px; + margin-right: 5px; + margin-top: 8px; + width: 24px; } + + .dark-bg .bellyband-link [class*="icon-primary-"].hidden-desktop, + .dark-bg .bellyband-link [class*="icon-primary-"].visible-desktop { + color: #fff; } + + .bellyband-link img[src$="svg"].visible-desktop { + display: none !important; } + + .bellyband-link p { + margin-top: -10px; + margin-left: 29px; + font-size: 1.4rem; + color: #666; } + + @media (min-width: 481px) and (max-width: 767px) { + .bellyband-container { + display: flex; + margin: 0; } + .bellyband-group { + align-content: flex-start; + align-items: stretch; + display: inline-flex; + flex-direction: column; + flex-wrap: wrap; + margin-top: 1px; + width: 100%; } + .bellyband-group .row { + display: flex !important; } + .bellyband-link { + padding-top: 0; + position: relative; + border-top: none; + margin-bottom: 20px; + width: 50%; } + .bellyband-link a { + height: inherit; + line-height: inherit; + display: flex; + padding: 0; } + .bellyband-link a:after { + display: none; } + .bellyband-link a span { + display: block; + padding-top: 10px; } + .bellyband-link p { + display: block; + padding: 0 15px 0 0; + margin-bottom: 0; + margin-left: 0; + margin-top: 0; } + .bellyband-link a:focus p { + text-decoration: none; } } + + @media (min-width: 768px) { + .bellyband-group { + margin: 0; + max-width: 100%; + display: flex; + flex-wrap: wrap; + justify-content: center; } + .bellyband-group .row { + display: block; } + .bellyband-group .row .span { + float: none; + margin-right: 0; + margin-bottom: 30px; + display: flex; + justify-content: space-between; } + .bellyband-link { + border-top: none; + flex: 0 0 auto; + margin-right: 0; + margin-bottom: 30px; } + .bellyband-link:last-child { + margin-right: 0; } + .bellyband-link a { + height: auto; + line-height: 1; + text-align: center; } + .bellyband-link a:after { + display: none; } + .bellyband-link img[src$="svg"].hidden-desktop, + .bellyband-link [class*="icon-primary-"].hidden-desktop { + display: none !important; } + .bellyband-link img[src$="svg"].visible-desktop, + .bellyband-link [class*="icon-primary-"].visible-desktop { + display: block !important; + font-size: 50px; + height: 50px; + margin-right: 0; + margin-top: 0; + margin-left: auto; + margin-right: auto; + width: auto; } + .bellyband-link a span { + display: block; + margin-top: 12px; + line-height: 2rem; } + .bellyband-link p { + display: block; + text-align: center; + margin-top: 6px; + margin-left: 0; + padding-left: 0 !important; + color: #666; + line-height: 1.8rem; } } + + @media (max-width: 480px) { + .bellyband-link-tall a { + height: auto; + padding: 0 40px 10px 15px; } + .bellyband-link-tall p { + line-height: 1.8rem; + margin-bottom: 0; } + .bellyband-link-tall > a:after { + margin-top: -8px; + top: 50%; } } + + .b2b-boardstrip { + display: inline-block; + width: 100%; + border-bottom: 1px solid #9d9d9d; + position: relative; + padding-top: 15px; } + .b2b-boardstrip .boardstrip-reel { + margin-bottom: 15px; } + .b2b-boardstrip .boardstrip-item--add { + border: 1px dashed #ccc; + background: #FFFFFF; + color: #0574ac; + width: 140px; + height: 80px; + font-size: 14px; + font-family: "Omnes-ECOMP-W02", Arial; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + position: absolute; + left: 29px; + top: 15px; } + .b2b-boardstrip .boardstrip-item--add:hover, .b2b-boardstrip .boardstrip-item--add:focus { + border: 2px solid #007A3E; + cursor: pointer; } + .b2b-boardstrip .boardstrip-item--add i { + font-size: 14px; + margin-left: auto; + margin-right: auto; + text-align: initial; } + .b2b-boardstrip .boardstrip-item--add .centered { + margin-left: auto; + margin-right: auto; + margin-top: 27px; + margin-bottom: 35px; + display: block; } + .b2b-boardstrip .board-viewport { + float: left; + margin-left: 210px; + max-height: 95px; + position: relative; + height: 95px; + overflow: hidden; + width: 0px; } + .b2b-boardstrip .board-viewport .boardstrip-container { + width: 0px; + margin-left: 0; + left: 0px; + position: absolute; + list-style: none; + -webkit-transition: left 1000ms; + transition: left 1000ms; } + .b2b-boardstrip .board-viewport .board-item { + width: 140px; + height: 80px; + border: 1px solid #ccc; + margin: 0 15px 15px 0; + background-color: #FFFFFF; + border-radius: 3px; + float: left; + overflow: hidden; } + .b2b-boardstrip .board-viewport .board-item:hover, .b2b-boardstrip .board-viewport .board-item:focus { + border: 2px solid #007A3E; + background-color: white; + cursor: pointer; } + .b2b-boardstrip .board-viewport .board-item .board-img { + width: 61px; + height: 40px; + margin: 0 auto; } + .b2b-boardstrip .board-viewport .board-item .board-img img { + max-width: 100%; } + .b2b-boardstrip .board-viewport .board-item .title { + text-align: center; + line-height: 16px; + color: #666; + font-size: 14px; + font-family: "Omnes-ECOMP-W02", Arial; + padding: 10px 0; } + .b2b-boardstrip .board-viewport .board-item.selected { + background-color: #FFFFFF; + border: 2px solid #0574ac; } + .b2b-boardstrip .board-viewport .board-item .board-caret { + cursor: default; + outline: 0; + position: absolute; + bottom: 7px; } + .b2b-boardstrip .board-viewport .board-item .board-caret .board-caret-indicator { + border-left: 8px solid transparent; + border-right: 8px solid transparent; + border-bottom: 8px solid #999; + width: 0px; + height: 0px; + position: absolute; + left: 61px; + bottom: -7px; } + .b2b-boardstrip .board-viewport .board-item .board-caret .board-caret-arrow-up { + width: 0px; + height: 0px; + border-style: solid; + border-width: 0 8px 8px 8px; + border-color: transparent transparent #FFFFFF transparent; + left: 61px; + position: absolute; } + .b2b-boardstrip .arrow { + font-size: 14px; + cursor: pointer; + color: #0574ac; } + .b2b-boardstrip .arrow:hover { + color: #0574ac; } + .b2b-boardstrip .arrow.disabled { + color: #767676 !important; + cursor: not-allowed; } + .b2b-boardstrip .prev-items { + display: inline-block; + margin-top: auto; + margin-bottom: auto; + margin-right: 15px; + position: absolute; + left: 0; + top: 45px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -o-user-select: none; + user-select: none; } + .b2b-boardstrip .next-items { + display: inline-block; + margin-top: 30px; + margin-bottom: auto; + margin-left: 10px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -o-user-select: none; + user-select: none; } + .b2b-boardstrip .centered { + display: table-cell; + text-align: center; + vertical-align: middle; } + + .breadcrumb { + padding: 10px 15px; + height: 40px; + list-style: none; + border-bottom: 1px solid #d2d2d2; + font-size: 1.2rem; + width: 100%; + z-index: 1000; } + + .breadcrumb > li { + position: relative; + display: inline-block; + margin-right: 15px; } + + .breadcrumb > li:after { + font-size: 8px; + margin-right: 0; + right: -8px; + color: #333333; } + + .breadcrumb > li:last-child { + color: #333333; } + + .breadcrumb > li:last-child:after { + content: ""; } + + .breadcrumb li > * { + float: none !important; + margin: 0; } + + .breadcrumb { + padding: 10px 15px !important; } + + /* ARROW */ + /* spanish */ + .datepicker { + background-color: #FFFFFF; + padding: 0; + border-radius: 5px; + direction: ltr; } + .datepicker > div { + display: none; } + .datepicker table { + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + margin: 0 0 0 0; } + .datepicker td { + text-align: center; + display: block; + width: 30px; + height: 30px; + border: none; } + .datepicker td span { + display: block; + width: 23%; + height: 54px; + line-height: 54px; + float: left; + margin: 1%; + cursor: pointer; + border-radius: 4px; } + .datepicker td span:hover { + background: #eeeeee; } + .datepicker td span.disabled { + background: none; + color: #5A5A5A; + cursor: default; } + .datepicker td span.disabled:hover { + background: none; + color: #5A5A5A; + cursor: default; } + .datepicker td span.active { + color: #FFFFFF; + background-color: #0568ae; + border-color: #357ebd; } + .datepicker td span.active:hover { + color: #FFFFFF; + background-color: #0568ae; + border-color: #357ebd; } + .datepicker td span.active.disabled { + color: #FFFFFF; + background-color: #0568ae; + border-color: #357ebd; } + .datepicker th { + text-align: center; + display: block; + width: 30px; + height: 30px; + border: none; } + .datepicker tbody:focus { + outline: none; } + .datepicker td.day { + background-color: transparent; + color: #0568ae; + cursor: pointer; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 16px; + height: 34px; + line-height: 30rem; + margin: -2px -1px 0 0; + overflow: hidden; + text-align: center; + width: 42px; } + .datepicker:focus { + outline: 1px dotted #191919; + outline-offset: -2px; } + .datepicker th[tabindex]:focus { + outline-offset: -15px; } + .datepicker td.day.focused { + background: #ededed; + cursor: pointer; } + .datepicker td.day.focused.active { + background-color: #ededed; + color: #0568ae; } + .datepicker td.disabled { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5A5A5A; + cursor: default; } + .datepicker td.disabled:hover { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5A5A5A; + cursor: default; } + .datepicker td.disabled:hover .show-date { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5A5A5A; } + .datepicker td.disabled .show-date { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5A5A5A; } + .datepicker td.today { + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today:hover { + color: #FFFFFF; + background-color: #0568ae; + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today:active { + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today:focus { + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today.disabled { + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today.active { + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today.active:hover { + color: #FFFFFF; } + .datepicker td.selected { + color: #FFFFFF; + background-color: #95959500; } + .datepicker td.selected:hover { + color: #FFFFFF; + background-color: #95959500; } + .datepicker td.selected.disabled { + color: #FFFFFF; + background-color: #95959500; } + .datepicker td.active:not(.new) { + color: #FFFFFF; + border-color: #357ebd; } + .datepicker td.active:not(.new) .show-date { + color: #0568ae; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + .datepicker td.active:hover:not(.new) { + color: #FFFFFF; + border-color: #357ebd; } + .datepicker td.active:hover:not(.new) .show-date { + color: #0568ae; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + .datepicker .start-date .show-date { + background-color: #0568ae; + color: #FFFFFF !important; + border-radius: 5px 0 0 5px; + z-index: 1; } + .datepicker .start-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: 20px; + position: absolute; + width: 100%; + z-index: -1; } + .datepicker .between-date .show-date { + background-color: #0568ae; + color: #FFFFFF !important; } + .datepicker .between-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: 0; + position: absolute; + width: 100%; + z-index: -1; } + .datepicker .between-date:first-child .show-date:before { + background-color: #FFFFFF; + content: ""; + height: 26px; + position: absolute; + left: 0; + width: 8px; } + .datepicker .end-date .show-date { + background-color: #0568ae; + color: #FFFFFF !important; + border-radius: 0 5px 5px 0; } + .datepicker .end-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: -20px; + position: absolute; + width: 100%; + z-index: -1; } + .datepicker .end-date:first-child .show-date:after { + background-color: #FFFFFF; + content: ""; + height: 26px; + position: absolute; + left: 0; + width: 8px; } + .datepicker .end-date:first-child .show-date::before { + background-color: #FFFFFF; } + .datepicker tr td.start-date:last-child .show-date:after { + background-color: #FFFFFF; + content: ""; + height: 26px; + position: absolute; + right: 0; + width: 8px; } + .datepicker tr td.start-date:last-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker tr td.start-date:first-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker tr td.between-date:last-child .show-date:after { + background-color: #FFFFFF; + content: ""; + height: 26px; + position: absolute; + right: 0; + width: 8px; } + .datepicker tr td.between-date:last-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker tr td.between-date:first-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker tr td.end-date:last-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker tr td.end-date:first-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker th.datepicker-switch { + width: 198px; + font-size: 20px; + font-weight: normal; + cursor: default !important; } + .datepicker thead tr:first-child th { + cursor: pointer; + height: 60px; + line-height: 60px; } + .datepicker thead tr:first-child th.cw { + cursor: default; + background-color: transparent; } + .datepicker tfoot tr th { + cursor: pointer; + height: 60px; + line-height: 60px; + height: auto; + line-height: normal; } + .datepicker tfoot tr th li { + margin-bottom: 5px; } + .datepicker .prev { + color: transparent; + font-size: 0; + margin: 0 -1px -1px 0; + width: 46px; } + .datepicker .prev i { + color: #0568ae; + position: absolute; + font-size: 27px; + margin: 0; + top: 15px; + left: 8px; } + .datepicker .next { + color: transparent; + font-size: 0; + margin: 0 -1px -1px 0; + width: 46px; } + .datepicker .next i { + color: #0568ae; + position: absolute; + font-size: 27px; + margin: 0; + top: 15px; + right: 8px; } + .datepicker .cw { + font-size: 5px; + width: 12px; + padding: 0 2px 0 5px; + vertical-align: middle; } + .datepicker .due-date .show-date { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + background-color: #cf2a2a; + border-radius: 5px; + color: #FFFFFF !important; } + .datepicker .day.active .show-date:after { + border: 2px solid #0568ae; + border-radius: 7px; + content: ""; + display: block; + height: 30px; + left: 4px; + position: absolute; + top: 0; + width: 30px; } + .datepicker .day:focus .show-date:after { + border: 2px solid #0568ae; + border-radius: 7px; + content: ""; + display: block; + height: 30px; + left: 4px; + position: absolute; + top: 0; + width: 30px; + height: 30px; + left: 4px; + top: 0; + width: 30px; } + .datepicker .due-date.disabled .show-date:after { + border: 2px solid #0568ae; + border-radius: 7px; + content: ""; + display: block; + height: 30px; + left: 4px; + position: absolute; + top: 0; + width: 30px; } + .datepicker .day.due-date:focus .show-date:after { + height: 30px; + left: 4px; + top: 0; + width: 30px; } + .datepicker .due-date.old:after { + visibility: hidden; } + .datepicker .due-date.new:after { + visibility: hidden; } + .datepicker .due-date.active:after { + border-color: #FFFFFF; } + .datepicker .due-date.active.focused { + color: #0568ae !important; } + .datepicker .due-date.active.focused:after { + border-color: #cf2a2a !important; } + .datepicker .dow { + height: 24px; + width: 42px; + font-weight: normal; + position: relative; + overflow: hidden; + color: transparent; + letter-spacing: -6px; + margin: 0 -1px -1px 0; } + .datepicker .dow span[aria-hidden="true"] { + bottom: 0; + color: #5A5A5A; + display: block; + left: 1px; + letter-spacing: 0; + line-height: .9; + margin: 0 auto; + padding: 0; + position: relative; + width: 22px; } + .datepicker .calendar-legend { + margin-top: 3px; + margin-bottom: 20px; } + .datepicker .calendar-legend li { + font-size: 1.4rem; + font-weight: normal; + margin-bottom: 5px; + padding-left: 10px; + padding-top: 5px; + position: relative; } + .datepicker i.legend-due-date { + background-color: #cf2a2a; + border-radius: 5px; + height: 18px; + width: 18px; + margin-right: 8px; + vertical-align: middle; + display: inline-block; } + .datepicker i.legend-selected-date { + background-color: #FFFFFF; + border: 2px solid #0568ae; + border-radius: 5px; + height: 18px; + width: 18px; + margin-right: 8px; + vertical-align: middle; + display: inline-block; } + .datepicker i.legend-selectedisdue { + background-color: #FFFFFF; + border: 2px solid #0568ae; + border-radius: 5px; + display: inline-block; + height: 18px; + margin-right: 8px; + position: relative; + vertical-align: middle; + width: 18px; } + .datepicker i.legend-selectedisdue:after { + background-color: #cf2a2a; + border-radius: 3px; + content: ""; + display: block; + height: 10px; + left: 2px; + position: absolute; + top: 2px; + width: 10px; } + .datepicker .text-left { + width: 100%; } + .datepicker .active.old { + background-color: #ededed !important; + color: #ededed !important; } + + .datepicker-inline { + width: 220px; } + + .datepicker.datepicker-rtl { + direction: rtl; } + .datepicker.datepicker-rtl td span { + float: right; } + + .datepicker-dropdown { + top: 0; + left: 0; } + .datepicker-dropdown:before { + content: " "; + display: inline-block; + border-left: 10px solid transparent; + border-right: 10px solid transparent; + border-bottom: 10px solid #d2d2d2; + border-top: 0; + border-bottom-color: rgba(0, 0, 0, 0.2); + position: absolute; } + .datepicker-dropdown:after { + content: " "; + display: inline-block; + border-left: 10px solid transparent; + border-right: 10px solid transparent; + border-bottom: 10px solid #fff; + border-top: 0; + position: absolute; } + + .datepicker-dropdown.datepicker-orient-left:before { + left: 16px; } + + .datepicker-dropdown.datepicker-orient-left:after { + left: 16px; } + + .datepicker-dropdown.datepicker-orient-right:before { + right: 16px; } + + .datepicker-dropdown.datepicker-orient-right:after { + right: 16px; } + + .datepicker-dropdown.datepicker-orient-top:before { + top: -10px; } + + .datepicker-dropdown.datepicker-orient-top:after { + top: -9px; } + + .datepicker-dropdown.datepicker-orient-bottom:before { + bottom: -7px; + border-bottom: 0; + border-top: 7px solid #959595; } + + .datepicker-dropdown.datepicker-orient-bottom:after { + bottom: -6px; + border-bottom: 0; + border-top: 6px solid #fff; } + + .datepicker.days div.datepicker-days { + display: block; } + + .datepicker.months div.datepicker-months { + display: block; } + + .datepicker.years div.datepicker-years { + display: block; } + + .show-date { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + color: #0568ae; + height: 26px; + line-height: 26px; + margin: 4px auto 0; + width: 26px; } + + .input-group.date .input-group-addon i { + cursor: pointer; + width: 16px; + height: 16px; } + + .datepicker.dropdown-menu { + box-shadow: 0 10px 15px -10px rgba(0, 0, 0, 0.7); + position: absolute; + top: 100%; + left: 0; + float: left; + display: none; + margin-top: 13px; + width: 290px; + list-style: none; + background-color: #FFFFFF; + border: 1px solid #d2d2d2; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 5px; + color: #333333; + font-size: 13px; + line-height: 1.428571429; + z-index: 1050; } + .datepicker.dropdown-menu th { + display: block; + float: left; + padding: 0; + position: relative; } + .datepicker.dropdown-menu td { + display: block; + float: left; + padding: 0; + position: relative; } + + .s { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: -62px 0; } + + .m { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: -5px 0; } + + .t { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: -19px 0; } + + .w { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: -34px 0; } + + .f { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: -49px 0; } + + .d { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: 0 0; } + + .l { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: 0 0; } + + .v { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: 0 0; } + + .j { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: 0 0; } + + .b2b-coachmark-label { + z-index: 1060; + opacity: 1; + cursor: not-allowed; + position: relative; } + + .b2b-coachmark-highlight { + border: 1px solid #d3d3d3; + cursor: default; + z-index: 1045; + opacity: 1; + background-color: #ffffff; + border-radius: 10px; + position: relative; + box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.25); + padding: 10px; + position: absolute; } + + .b2b-coachmark-highlight-mask { + z-index: 1100; + opacity: .1; } + + .b2b-coachmark-container { + border: 1px solid #cccccc; + width: 316px; + pointer-events: auto; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + font-size: 16px; + -webkit-transition: opacity .2s ease-out; + -moz-transition: opacity .2s ease-out; + transition: opacity .2s ease-out; + background: #fff; + border-radius: 20px; + box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.15); + color: #333; + line-height: 20px; + position: absolute; + top: 50px; + left: -97px; + display: block; + background-color: #ffffff; + z-index: 1050; + opacity: 1; } + .b2b-coachmark-container i.b2b-coachmark-caret { + position: absolute; + top: -12px; + left: 47%; + opacity: 1; + z-index: 1050; } + .b2b-coachmark-container i.b2b-coachmark-caret:before { + content: ""; + border-left: 12px solid transparent; + border-right: 12px solid transparent; + border-bottom: 12px solid #d3d3d3; + position: absolute; + top: -1px; } + .b2b-coachmark-container i.b2b-coachmark-caret:after { + content: ""; + border-left: 12px solid transparent; + border-right: 12px solid transparent; + border-bottom: 12px solid #fff; + position: absolute; } + .b2b-coachmark-container .b2b-coachmark-header { + position: relative; + height: 47px; + overflow: hidden; } + .b2b-coachmark-container .b2b-coachmark-header .corner-button { + box-shadow: 0 -24px 0 0 #f2f2f2 inset; + height: 69px; + position: absolute; + right: -33px; + top: -38px; + transform: rotate(45deg); + width: 69px; } + .b2b-coachmark-container .b2b-coachmark-countlabel { + font-size: 12px; + font-family: "Omnes-ECOMP-W02", Arial; + color: #333333; + margin-left: 20px; + margin-top: 20px; } + .b2b-coachmark-container .b2b-coachmark-content { + padding: 0px 20px 20px 20px; + float: left; } + .b2b-coachmark-container .b2b-coachmark-content .icon-misc-dimmer { + font-size: 32px; + float: left; + margin-right: 10px; + width: 32px; } + .b2b-coachmark-container .b2b-coachmark-content .offscreen-text { + position: absolute; + left: -10000px; + top: auto; + width: 1px; + height: 1px; + overflow: hidden; } + .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-content-header { + font-size: 16px; + color: #333333; + line-height: 18px; + float: left; + width: 220px; } + .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-description { + font-size: 14px; + line-height: 18px; + color: #333333; + width: 100%; + float: left; + margin-top: 15px; } + .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-btn-group { + margin-top: 20px; + float: left; + text-align: right; + width: 100%; } + .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-btn-group .b2b-coachmark-link { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 15px; + color: #0574ac; + line-height: 18px; + margin-right: 20px; } + .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-btn-group button { + font-size: 15px; + margin: 0px; } + + .datepicker { + background-color: #fff; + padding: 0; + border-radius: 5px; + direction: ltr; } + + .datepicker-inline { + width: 220px; } + + .datepicker.datepicker-rtl { + direction: rtl; } + + .datepicker.datepicker-rtl td span { + float: right; } + + .datepicker-dropdown { + top: 0; + left: 0; } + + /* ARROW */ + .datepicker-dropdown:before { + content: " "; + display: inline-block; + border-left: 10px solid transparent; + border-right: 10px solid transparent; + border-bottom: 10px solid #d2d2d2; + border-top: 0; + border-bottom-color: rgba(0, 0, 0, 0.2); + position: absolute; } + + .datepicker-dropdown:after { + content: " "; + display: inline-block; + border-left: 10px solid transparent; + border-right: 10px solid transparent; + border-bottom: 10px solid #fff; + border-top: 0; + position: absolute; } + + .datepicker-dropdown.datepicker-orient-left:before, + .datepicker-dropdown.datepicker-orient-left:after { + left: 255px; } + + .datepicker-dropdown.datepicker-orient-right:before, + .datepicker-dropdown.datepicker-orient-right:after { + right: 16px; } + + .datepicker-dropdown.datepicker-orient-top:before { + top: -10px; } + + .datepicker-dropdown.datepicker-orient-top:after { + top: -9px; } + + .datepicker-dropdown.datepicker-orient-bottom:before { + bottom: -7px; + border-bottom: 0; + border-top: 7px solid #959595; } + + .datepicker-dropdown.datepicker-orient-bottom:after { + bottom: -6px; + border-bottom: 0; + border-top: 6px solid #fff; } + + .datepicker > div { + display: none; } + + .datepicker.days div.datepicker-days { + display: block; } + + .datepicker.months div.datepicker-months { + display: block; } + + .datepicker.years div.datepicker-years { + display: block; } + + .datepicker table { + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + margin: 0 0 0 0; } + + .datepicker td, + .datepicker th { + text-align: center; + display: block; + width: 30px; + height: 30px; + border: none; } + + .datepicker tbody :focus { + outline: none; } + + .datepicker td.day { + background-color: transparent; + color: #0568ae; + cursor: pointer; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 16px; + height: 34px; + line-height: 30rem; + margin: -2px -1px 0 0; + overflow: hidden; + text-align: center; + width: 42px; } + + .datepicker :focus { + outline: 1px dotted #000; + outline-offset: -2px; } + + .datepicker td.day.focused { + background: #ededed; + cursor: pointer; } + + .datepicker td.day.focused.active { + background-color: #ededed; + color: #0568ae; } + + .datepicker td.disabled, + .datepicker td.disabled:hover { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5a5a5a; + cursor: default; } + + .datepicker td.today, + .datepicker td.today:hover, + .datepicker td.today.disabled { + color: #fff; + background-color: #0568ae; } + + .datepicker td.today.active, + .datepicker td.today:active, + .datepicker td.today:hover, + .datepicker td.today:focus { + color: #fff; + background-color: #0568ae; } + + .datepicker td.today.active:hover { + color: #fff; } + + .datepicker td.selected, + .datepicker td.selected:hover, + .datepicker td.selected.disabled { + color: #ffffff; + background-color: #959595; } + + .datepicker td.active:not(.new), + .datepicker td.active:hover:not(.new) { + color: #ffffff; + border-color: #357ebd; } + + .show-date { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + color: #0568ae; + height: 26px; + line-height: 26px; + margin: 4px auto 0; + width: 26px; } + + .datepicker .start-date .show-date, + .datepicker .between-date .show-date, + .datepicker .end-date .show-date { + background-color: #0568ae; + color: #fff !important; } + + .datepicker .start-date .show-date { + border-radius: 5px 0 0 5px; + z-index: 1; } + + .datepicker .start-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: 20px; + position: absolute; + width: 100%; + z-index: -1; } + + .datepicker .between-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: 0; + position: absolute; + width: 100%; + z-index: -1; } + + .datepicker .end-date .show-date { + border-radius: 0 5px 5px 0; } + + .datepicker .end-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: -20px; + position: absolute; + width: 100%; + z-index: -1; } + + .datepicker .between-date:first-child .show-date:before { + background-color: #fff; + content: ""; + height: 26px; + position: absolute; + left: 0; + width: 8px; } + + .datepicker .end-date:first-child .show-date:after { + background-color: #fff; + content: ""; + height: 26px; + position: absolute; + left: 0; + width: 8px; } + + .datepicker .end-date:first-child .show-date::before { + background-color: #fff; } + + .datepicker tr td.start-date:last-child .show-date:after, + .datepicker tr td.between-date:last-child .show-date:after { + background-color: #fff; + content: ""; + height: 26px; + position: absolute; + right: 0; + width: 8px; } + + .datepicker tr td.start-date:last-child:focus .show-date:after, + .datepicker tr td.end-date:last-child:focus .show-date:after, + .datepicker tr td.between-date:last-child:focus .show-date:after, + .datepicker tr td.start-date:first-child:focus .show-date:after, + .datepicker tr td.end-date:first-child:focus .show-date:after, + .datepicker tr td.between-date:first-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + + .datepicker td.active:not(.new) .show-date, + .datepicker td.active:hover:not(.new) .show-date { + color: #0568ae; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + .datepicker td.disabled .show-date, + .datepicker td.disabled:hover .show-date { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5a5a5a; } + + .datepicker td span { + display: block; + width: 23%; + height: 54px; + line-height: 54px; + float: left; + margin: 1%; + cursor: pointer; + border-radius: 4px; } + + .datepicker td span:hover { + background: #eeeeee; } + + .datepicker td span.disabled, + .datepicker td span.disabled:hover { + background: none; + color: #5a5a5a; + cursor: default; } + + .datepicker td span.active, + .datepicker td span.active:hover, + .datepicker td span.active.disabled { + color: #ffffff; + background-color: #0568ae; + border-color: #357ebd; } + + .datepicker th.datepicker-switch { + width: 198px; + font-size: 20px; + font-weight: normal; + cursor: default !important; } + + .datepicker thead tr:first-child th, + .datepicker tfoot tr th { + cursor: pointer; + height: 60px; + line-height: 60px; } + + .datepicker tfoot tr th { + height: auto; + line-height: normal; } + + .datepicker tfoot tr th li { + margin-bottom: 5px; } + + .datepicker .prev, + .datepicker .next { + color: transparent; + font-size: 0; + margin: 0 -1px -1px 0; + width: 46px; } + + .datepicker .prev i, + .datepicker .next i { + color: #0568ae; + position: absolute; + font-size: 27px; + margin: 0; + top: 15px; } + + .datepicker .prev i { + left: 8px; } + + .datepicker .next i { + right: 8px; } + + .datepicker .cw { + font-size: 5px; + width: 12px; + padding: 0 2px 0 5px; + vertical-align: middle; } + + .datepicker thead tr:first-child th.cw { + cursor: default; + background-color: transparent; } + + .input-group.date .input-group-addon i { + cursor: pointer; + width: 16px; + height: 16px; } + + .datepicker.dropdown-menu { + box-shadow: 0 10px 15px -10px rgba(0, 0, 0, 0.7); + position: absolute; + top: 100%; + left: 0; + float: left; + display: none; + margin-top: 13px; + width: 290px; + list-style: none; + background-color: #ffffff; + border: 1px solid #d2d2d2; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 5px; + color: #333333; + font-size: 13px; + line-height: 1.428571429; + z-index: 1050; } + + .datepicker.dropdown-menu th, + .datepicker.dropdown-menu td { + display: block; + float: left; + padding: 0; + position: relative; } + + .datepicker .due-date .show-date { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + background-color: #cf2a2a; + border-radius: 5px; + color: #fff !important; } + + .datepicker .day.active .show-date:after, + .datepicker .day:focus .show-date:after, + .datepicker .due-date.disabled .show-date:after { + border: 2px solid #0568ae; + border-radius: 7px; + content: ""; + display: block; + height: 30px; + left: 4px; + position: absolute; + top: 0; + width: 30px; } + + .datepicker .day:focus .show-date:after { + height: 30px; + left: 4px; + top: 0; + width: 30px; } + + .datepicker .day.due-date:focus .show-date:after { + height: 30px; + left: 4px; + top: 0; + width: 30px; } + + .datepicker .due-date.old:after, + .datepicker .due-date.new:after { + visibility: hidden; } + + .datepicker .due-date.active:after { + border-color: #fff; } + + .datepicker .due-date.active.focused { + color: #0568ae !important; } + + .datepicker .due-date.active.focused:after { + border-color: #cf2a2a !important; } + + .datepicker .dow { + height: 24px; + width: 42px; + font-weight: normal; + position: relative; + overflow: hidden; + color: transparent; + letter-spacing: -6px; + margin: 0 -1px -1px 0; } + + .datepicker .dow span[aria-hidden="true"] { + bottom: 0; + color: #5a5a5a; + display: block; + left: 1px; + letter-spacing: 0; + line-height: .9; + margin: 0 auto; + padding: 0; + position: relative; + width: 22px; } + + .datepicker .calendar-legend { + margin-top: 3px; + margin-bottom: 20px; } + + .datepicker .calendar-legend li { + font-size: 1.4rem; + font-weight: normal; + margin-bottom: 5px; + padding-left: 10px; + padding-top: 5px; + position: relative; } + + .datepicker i.legend-due-date { + background-color: #cf2a2a; + border-radius: 5px; + height: 18px; + width: 18px; + margin-right: 8px; + vertical-align: middle; + display: inline-block; } + + .datepicker i.legend-selected-date { + background-color: #fff; + border: 2px solid #0568ae; + border-radius: 5px; + height: 18px; + width: 18px; + margin-right: 8px; + vertical-align: middle; + display: inline-block; } + + .datepicker i.legend-selectedisdue { + background-color: #fff; + border: 2px solid #0568ae; + border-radius: 5px; + display: inline-block; + height: 18px; + margin-right: 8px; + position: relative; + vertical-align: middle; + width: 18px; } + + .datepicker i.legend-selectedisdue:after { + background-color: #cf2a2a; + border-radius: 3px; + content: ""; + display: block; + height: 10px; + left: 2px; + position: absolute; + top: 2px; + width: 10px; } + + .datepicker .text-left { + width: 100%; } + + .datepicker .active.old { + background-color: #ededed !important; + color: #ededed !important; } + + .s, + .m, + .t, + .w, + .f, + .d, + .l, + .v, + .j { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: white; + background-repeat: no-repeat; } + + .s { + background-position: -62px 0; } + + .m { + background-position: -5px 0; } + + .t { + background-position: -19px 0; } + + .w { + background-position: -34px 0; } + + .f { + background-position: -49px 0; } + + /* spanish */ + .d { + background-position: 0 0; } + + .l { + background-position: 0 0; } + + .v { + background-position: 0 0; } + + .j { + background-position: 0 0; } + + .datepicker-container { + position: relative; } + + .btn-calendar-icon:focus .icon-primary-calendar { + outline: 1px dotted #191919; } + + .btn-calendar-icon:focus { + outline: none; } + + /* remove focus outline when dropdown is opened */ + /*resolve blue focus outline over dropdown with error*/ + select { + margin-right: -1; + + height: 36px; + line-height: 25px; + + background-color: #95959521; } + + .selectWrap.disabled .icon-primary-down { + color: #d6d6d6; } + + .selectWrap.disabled input.awd-select { + z-index: 0; + padding: 10px 45px 10px 15px; + text-indent: 0; } + + .selectWrap.disabled button.awd-select { + z-index: 0; + text-indent: 15px; } + + .selectWrap.disabled:after { + color: #5A5A5A; + cursor: not-allowed; } + + input.awd-select { + background-color: transparent; + border: 1px solid #d2d2d2; + border-radius: 6px; + box-shadow: 1px 5px 2px -5px rgba(0, 0, 0, 0.15); + color: #333333; + display: block; + font-family: "Omnes-ECOMP-W02", Arial; + /*font-size: 1.6rem;*/ + height: 36px; + line-height: 0; + margin-bottom: 0; + position: relative; + text-align: left; + top: 0; + width: 100%; + z-index: 10; + padding: 12px 45px 8px 15px; + user-select: none; } + input.awd-select:focus { + border-color: #0568ae !important; + text-overflow: ellipsis; + padding-right: 45px; } + + button.awd-select { + background-color: transparent; + border: 1px solid #d2d2d2; + border-radius: 6px; + box-shadow: 1px 5px 2px -5px rgba(0, 0, 0, 0.15); + color: #333333; + display: block; + font-family: "Omnes-ECOMP-W02", Arial; + /*font-size: 1.6rem;*/ + height: 36px; + line-height: 36px; + margin-bottom: 0; + position: relative; + text-align: left; + top: 0; + width: 100%; + z-index: 10; } + button.awd-select:not(.large) { + text-indent: 15px; + white-space: nowrap; + overflow: hidden; + text-overflow: clip; + text-overflow: ellipsis; } + button.awd-select img { + height: 26px; + margin-right: 7px; + margin-top: -10px; + position: relative; + top: 2px; + vertical-align: text-bottom; } + button.awd-select:focus { + border-color: #0568ae !important; } + button.awd-select i { + font-size: 23px; + position: absolute; + right: 33px; + top: 5px; + z-index: 1000; } + + button.awd-select.large { + align-items: center; + display: flex; + height: 60px; + line-height: 20px; + overflow: hidden; + padding-left: 70px; + vertical-align: middle; } + button.awd-select.large img { + height: 40px; + left: 20px; + position: absolute; + top: 20px; + width: 40px; } + + .selectWrap.large { + height: 60px; } + .selectWrap.large .awd-select-list-item { + align-items: center; + display: flex; + height: 60px; + line-height: 20px; + overflow: hidden; + padding-left: 70px; + vertical-align: middle; } + .selectWrap.large .awd-select-list-item img { + height: 40px; + left: 20px; + position: absolute; + top: 20px; + width: 40px; + top: 10px; } + + .inputWrap { + border-radius: 6px; + position: relative; + height: 36px; + line-height: 44px; + display: block; + margin: 0; + } + + button.awd-select.active { + border-radius: 6px 6px 0 0; } + button.awd-select.active:focus { + border-color: #d2d2d2 !important; } + + input.awd-select.active { + border-radius: 6px 6px 0 0; } + input.awd-select.active:focus { + border-color: #d2d2d2 !important; } + + .selectWrapper { + position: relative; } + + span.selectWrap input[readonly]:focus { + color: transparent; + text-shadow: 0 0 0 #000; } + + .isIE.ds2-no-colors .awd-select:focus { + outline: 1px dashed transparent; } + + .awd-select-list { + box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); + border-radius: 0 0 6px 6px; + position: absolute; + border: 1px solid #d2d2d2; + border-top: 0; + padding: 0; + background-color: #f2f2f2; + z-index: 1000; + width: 100%; + max-height: 320px; + overflow-y: auto; } + + .awd-select-list-item { + cursor: pointer; + height: 100%; + min-height: 36px; + line-height: 20px; + overflow: hidden; + padding: 8px 15px; + position: relative; + z-index: 1000; } + .awd-select-list-item:hover { + cursor: pointer; + background-color: #d2d2d2; + outline: 1px dashed transparent; } + .awd-select-list-item:focus { + cursor: pointer; + background-color: #d2d2d2; + outline: 1px dashed transparent; } + .awd-select-list-item img { + margin-top: 0; + margin-right: 7px; + height: 26px; + width: 26px; } + + .selectWrap { + border-radius: 6px; + position: relative; + height: 36px; + line-height: 28px; + display: block; + margin: 0; + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + background: -webkit-linear-gradient(top, #fcfcfc 0%, #f2f2f2 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="@att-gray-highlight", endColorstr="@att-functional-bg-gray", GradientType=0); } + .selectWrap:not(.large) .awd-select-list-item:first-child { + margin-top: 15px; } + .selectWrap:not(.large) .awd-select-list-item:last-child { + margin-bottom: 15px; } + .selectWrap .icon-primary-down { + font-size: 23px; + margin-top: -11px; + position: absolute; + right: 4px; + top: 50%; } + .selectWrap + [aria-expanded="true"] { + padding-bottom: 9px; + padding-top: 20px; } + + .awd-select-list-item[data-hover="true"] { + background-color: #d2d2d2; } + + span input.awd-select { + width: 100%; + cursor: pointer; + text-overflow: ellipsis; + padding-right: 45px; } + + li.optgroup-wrapper { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + cursor: default !important; + padding: 0px 15px; } + li.optgroup-wrapper:first-child { + padding-top: 10px; } + li.optgroup-wrapper:hover { + background-color: #f2f2f2; } + + ul.optgroup { + font-family: "Omnes-ECOMP-W02", Arial; + cursor: pointer !important; + margin: 0 -15px; } + ul.optgroup li { + padding: 0 0 0 33px; } + + label + .selectWrap { + margin-top: 4px; } + + .selectorModule { + border-radius: 6px; + position: relative; + height: 36px; + line-height: 28px; + display: block; + margin: 0; + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + background: -webkit-linear-gradient(top, #fcfcfc 0%, #f2f2f2 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="@att-gray-highlight", endColorstr="@att-functional-bg-gray", GradientType=0); } + + .group .selectWrap { + margin: 0 0 10px 0; } + + select.awd-select { + position: relative; + top: 0; + left: 0; + font-size: 16px; + z-index: 1010; + height: 33px; + min-width: 100%; + opacity: 0.01; } + select.awd-select > optgroup { + padding-left: 8px; + font-style: normal; + margin-top: 10px; } + select.awd-select > optgroup:first-child { + margin-top: 0; } + select.awd-select > optgroup > option { + padding-left: 8px; } + select.awd-select > option { + padding-left: 8px; } + select.awd-select + span { + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + background: -webkit-linear-gradient(top, #fcfcfc 0%, #f2f2f2 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="@att-gray-highlight", endColorstr="@att-functional-bg-gray", GradientType=0); + position: absolute; + top: 0; + left: 0; + z-index: 0; + display: block; + border: 1px solid #d2d2d2; + border-radius: 6px; + height: 35px; + line-height: 0; + padding: 18px 45px 15px 15px; + width: 100%; + font-size: 1.6rem; + padding-right: 45px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } + select.awd-select + span > i { + font-size: 23px; + position: absolute; + right: 33px; + top: 5px; + z-index: 1000; } + select.awd-select + span > i:before { + left: 1px; + position: absolute; + top: -1px; } + select.awd-select:focus + span { + border-color: #0568ae; } + + .isIE select.awd-select + span { + line-height: 1; } + + [data-default-option="true"] { + color: #767676 !important; + font-family: "Omnes-ECOMP-W02-Italic", Arial; } + + .placeholdercolor { + color: #767676 !important; + font-family: "Omnes-ECOMP-W02-Italic", Arial; } + + .filterTank button.awd-select { + border-color: #d2d2d2; + background-color: #333333; + color: #FFFFFF; + color: #333333; } + .filterTank button.awd-select:after { + background-color: #FFFFFF !important; + border-color: #d2d2d2; } + + .utility-bg button.awd-select { + border-color: #d2d2d2; + background-color: #333333; + color: #FFFFFF; + color: #333333; } + .utility-bg button.awd-select:after { + background-color: #FFFFFF !important; + border-color: #d2d2d2; } + + .utility-bg select.awd-select + span { + border-color: #d2d2d2; + border-color: #d2d2d2; + background-color: #333333; + background-color: #333333; + color: #FFFFFF; + color: #FFFFFF; } + .utility-bg select.awd-select + span:after { + background-color: #FFFFFF !important; + background-color: #FFFFFF !important; + border-color: #d2d2d2; + border-color: #d2d2d2; } + + .utility-bg select.awd-select:focus + span { + border-color: #d2d2d2; + border-color: #d2d2d2; + background-color: #333333; + background-color: #333333; + color: #FFFFFF; + color: #FFFFFF; } + .utility-bg select.awd-select:focus + span:after { + background-color: #FFFFFF !important; + background-color: #FFFFFF !important; + border-color: #d2d2d2; + border-color: #d2d2d2; } + + .utility-bg select.awd-select:hover + span { + border-color: #d2d2d2; + border-color: #d2d2d2; + background-color: #333333; + background-color: #333333; + color: #FFFFFF; + color: #FFFFFF; } + .utility-bg select.awd-select:hover + span:after { + background-color: #FFFFFF !important; + background-color: #FFFFFF !important; + border-color: #d2d2d2; + border-color: #d2d2d2; } + + input.awd-select[disabled] { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + input.awd-select[disabled] + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + + button.awd-select[disabled] { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + button.awd-select[disabled]:after { + background-color: #d2d2d2 !important; + border-color: #d2d2d2; } + + select.awd-select[disabled] + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + select.awd-select[disabled] + span:after { + background-color: #d2d2d2 !important; + border-color: #d2d2d2; } + + select.awd-select[disabled]:focus + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + + select.awd-select[disabled]:hover + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + + input.awd-select[disabled="disabled"] { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + input.awd-select[disabled="disabled"] + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + + select.awd-select[disabled="disabled"] + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + select.awd-select[disabled="disabled"] + span:after { + background-color: #d2d2d2 !important; + border-color: #d2d2d2; } + + select.awd-select[disabled="disabled"]:focus + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + select.awd-select[disabled="disabled"]:focus + span:after { + background-color: #d2d2d2 !important; + border-color: #d2d2d2; } + + select.awd-select[disabled="disabled"]:hover + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + select.awd-select[disabled="disabled"]:hover + span:after { + background-color: #d2d2d2 !important; + border-color: #d2d2d2; } + + .ddexpand-wrapper > h2 { + margin-bottom: 11px; } + .ddexpand-wrapper > h2 + p { + margin-bottom: 4px; } + + .ddexpand-wrapper .selectWrap + [aria-expanded="true"] .form-row { + margin-top: 11px; } + + .ddexpand-wrapper .selectWrap + [aria-expanded="true"] .row + .row .form-row { + margin-top: 14px; } + + .modal .awd-select-list { + z-index: 1060 !important; } + + .form-row.error button.awd-select.active:focus { + border-color: #cf2a2a !important; } + + .form-row.error input.awd-select.active:focus { + border-color: #cf2a2a !important; } + + .awd-module-list .module-list-item[aria-selected="true"] { + background-color: #f2f2f2; } + + li.module-list-item[aria-selected="true"]:before { + color: #0568ae; + display: inline-block; + font-family: "icoControls" !important; + font-style: normal; + font-size: 20px; + font-weight: normal; + font-variant: normal; + height: 1em; + margin-right: 7px; + text-transform: none; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + position: relative; + speak: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + vertical-align: middle; + width: 1em; + content: "\e907"; + box-sizing: border-box; + display: inline-block; + font-size: 2em; + height: 1em; + position: absolute; + top: 20px; + right: 0px; + vertical-align: middle; + width: 1em; + color: #007a3e; } + + @media (min-width: 768px) { + span[class*="large"] { + max-width: 370px; } + .large { + max-width: 370px; } } + + @media (max-width: 767px) { + .selectWrap.large:after { + right: 5px; } + .selectWrap.large .awd-select-list-item { + padding-right: 41px; } + .selectWrap + div > h4 { + margin-bottom: 0; + font-size: 16px; } } + + /**********************Dropdown Chrome scrolling fix start ********************/ + input.awd-select { + -webkit-user-select: text; + -moz-user-select: text; + -ms-user-select: text; + user-select: text; } + + /**********************Dropdown Chrome scrolling fix end ********************/ + .mpc-expanders { + border-bottom: 1px solid #e4e4e4; + border-top: 1px solid #e4e4e4; } + + .mpc-expanders + .mpc-expanders { + border-top: 0px; } + + .mpc-expanders .heading-medium { + margin-bottom: 10px; } + + .mpc-expanders .p-small { + margin-top: 5px; } + + .mpc-expander-body { + border-top: 1px solid #e4e4e4; } + + .mpc-expander-body .mpc-expanders { + border-bottom: 1px solid #e4e4e4; + border-top: 0; } + + .mpc-expander-body .mpc-expanders:last-child { + border-bottom: 0px; } + + .ddh-blue { + color: #0574ac; } + + .b2b-dragdrop { + border: 1px dashed #bbb; + border-radius: 5px; + padding: 0; + text-align: center; + color: #bbb; + position: relative; } + + .b2b-dragdrop-over { + background: #0091d9; + color: #006496; } + .b2b-dragdrop-over:after { + content: "Drop the file"; + color: #fff; + width: 80px; + height: 20px; + overflow: hidden; + margin: auto; + position: absolute; + top: 0; + left: 0; + bottom: 0; + right: 0; } + + .b2b-file-container { + position: relative; + overflow: hidden; + display: inline-table; + font-weight: 400; } + .b2b-file-container [type=file] { + position: absolute; + cursor: inherit; + display: block; + font-size: 0; + opacity: 0; + height: 0; + width: 0; + left: 0; + top: 0; + -ms-filter: "alpha(Opacity=0)"; } + + .b2b-upload-link { + color: #0568ae; } + + .b2b-flyout { + position: relative; + display: inline-block; + cursor: default; } + + .b2b-flyout-icon { + cursor: pointer; } + .b2b-flyout-icon:focus { + outline: thin dotted #666; + outline-offset: -1px; } + + .b2b-flyout .b2b-flyout-container { + border: 1px solid #d3d3d3; + width: 300px; + padding: 20px; + pointer-events: auto; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + font-size: 16px; + -webkit-transition: opacity .2s ease-out; + -moz-transition: opacity .2s ease-out; + transition: opacity .2s ease-out; + background: #fff; + border-radius: 6px; + box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.25); + color: #333; + line-height: 20px; + position: absolute; + top: 35px; + opacity: 0; + z-index: 1010; + display: none; } + .b2b-flyout .b2b-flyout-container.open-flyout { + opacity: 1; + display: block; } + + .b2b-flyout i.b2b-flyout-caret { + position: absolute; + top: -8px; + left: 50%; + opacity: 0; + z-index: 1011; + display: none; } + .b2b-flyout i.b2b-flyout-caret.open-flyout { + opacity: 1; + display: block; } + .b2b-flyout i.b2b-flyout-caret:before { + content: ""; + border-left: 8px solid transparent; + border-right: 8px solid transparent; + border-bottom: 8px solid #d3d3d3; + position: absolute; + top: -1px; } + .b2b-flyout i.b2b-flyout-caret:after { + content: ""; + border-left: 8px solid transparent; + border-right: 8px solid transparent; + border-bottom: 8px solid #fff; + position: absolute; } + + .b2b-flyout .b2b-flyout-container.b2b-flyout-left i.b2b-flyout-caret { + left: 16px !important; } + + .b2b-flyout .b2b-flyout-container.b2b-flyout-right i.b2b-flyout-caret { + left: inherit !important; + right: 30px !important; } + + .b2b-flyout .b2b-flyout-container.b2b-flyout-above { + box-shadow: 0 -5px 6px 0 rgba(0, 0, 0, 0.25); } + .b2b-flyout .b2b-flyout-container.b2b-flyout-above i.b2b-flyout-caret { + top: auto; + bottom: 0px; } + .b2b-flyout .b2b-flyout-container.b2b-flyout-above i.b2b-flyout-caret:before { + top: auto; + bottom: -9px; + border-top: 8px solid #d3d3d3; + border-bottom: none; } + .b2b-flyout .b2b-flyout-container.b2b-flyout-above i.b2b-flyout-caret:after { + border-top: 8px solid #fff; + border-bottom: none; } + + .b2b-flyout .b2b-flyout-container.b2b-flyout-centerLeft i.b2b-flyout-caret { + left: inherit !important; + right: -7px !important; + top: 8px; + transform: rotate(90deg); } + + .b2b-flyout .b2b-flyout-container.b2b-flyout-centerRight i.b2b-flyout-caret { + left: -8px !important; + top: 296px; + transform: rotate(-90deg); } + + .b2b-flyout .buttons-group { + margin-top: 20px; } + .b2b-flyout .buttons-group .cta-button-group { + width: 100%; + border-top: 1px solid #ccc; + padding: 20px 0 0; } + .b2b-flyout .buttons-group .cta-button-group button { + margin-bottom: 0; } + + .b2b-flyout .heading { + font-size: 20px; + margin-bottom: 10px; } + + .b2b-flyout .body-text { + font-size: 14px; + margin-bottom: 30px; } + + .b2b-footer-wrapper { + width: 100%; + background-color: #222; } + + .b2b-footer-container { + width: 980px; + margin: 0 auto; + padding-top: 15px; } + .b2b-footer-container .footer-columns { + display: inline-block; + text-align: left; + vertical-align: top; } + .b2b-footer-container .footer-columns.three-column, .b2b-footer-container .footer-columns.four-column, .b2b-footer-container .footer-columns.five-column { + padding-top: 30px; } + .b2b-footer-container .footer-columns.three-column { + width: 33.3%; + padding-left: 75px; } + .b2b-footer-container .footer-columns.four-column { + width: 25%; + padding-left: 75px; } + .b2b-footer-container .footer-columns.five-column { + width: 20%; } + .b2b-footer-container .footer-columns .b2b-footer-header { + color: #009fdb; + font-size: 18px; + font-style: normal; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + line-height: 23.9px; + margin: 0; } + .b2b-footer-container .footer-columns li { + padding: 7.5px 0; } + .b2b-footer-container .footer-columns ul li:first-child { + padding-top: 15px; } + .b2b-footer-container .footer-columns li a { + color: #fff; + font-size: 16px; + font-family: "Omnes-ECOMP-W02", Arial; } + .b2b-footer-container .footer-nav-content { + padding-bottom: 10px; } + .b2b-footer-container .footer-nav-content li { + display: inline; + font-size: 14px; + color: #fff; + vertical-align: middle; } + .b2b-footer-container .footer-nav-content li a { + color: #fff; + font-size: 14px; + vertical-align: middle; + margin-right: 5px; + font-family: "Omnes-ECOMP-W02", Arial; } + + .b2b-footer-wrapper .b2b-footer-container hr { + background: #d2d2d2; + margin-top: 50px; } + + .b2b-footer-wrapper .divider-bottom-footer { + padding: 45px 0 50px 0; } + + .b2b-footer-wrapper .footerLogo { + margin: 10px 0 0 0px; + vertical-align: top; } + .b2b-footer-wrapper .footerLogo div { + display: inline-block; } + .b2b-footer-wrapper .footerLogo .icon-primary-att-globe { + font-size: 40px; } + .b2b-footer-wrapper .footerLogo .logo-title { + color: #fff; + margin-left: 10px; + display: inline-block; + font-size: 26px; + margin-top: 0px; } + + .b2b-footer-wrapper .copyright-text { + color: #fff; + font-size: 11px; + text-align: left; + font-family: "Omnes-ECOMP-W02", Arial; } + .b2b-footer-wrapper .copyright-text a { + color: #fff; + text-decoration: underline; + display: inline-block; } + .b2b-footer-wrapper .copyright-text a:hover { + text-decoration: none; } + + @media (max-width: 768px) { + .b2b-footer-wrapper { + padding: 0 15px; } + .b2b-footer-container { + width: 100%; } + .b2b-footer-container .footer-columns.three-column, .b2b-footer-container .footer-columns.four-column, .b2b-footer-container .footer-columns.five-column { + width: 50%; } + .b2b-footer-wrapper .divider-bottom-footer { + padding-top: 15px; } + .b2b-footer-wrapper .divider-bottom-footer .footer-links { + width: 100%; } + .b2b-footer-wrapper .footerLogo { + margin: 30px 0 0 0; } + .b2b-footer-wrapper .footerLogo .footer-logo { + margin: 0; + padding-left: 10px; } } + + .b2b-header-tabs { + background-color: #222; + width: 100%; + position: relative; + height: 45px; } + .b2b-header-tabs .icon-primary-att-globe { + color: #0568ae; } + .b2b-header-tabs a:focus { + border: 1px solid white; } + .b2b-header-tabs .header__items { + width: 980px; + margin: 0 auto; + display: block; + list-style: none; + padding: 6px 0px 0px 0px; + border-spacing: 30px 0; } + .b2b-header-tabs .header__item { + display: inline-block; + text-align: left; + width: auto; + font-size: 16px; + font-family: "Omnes-ECOMP-W02", Arial; + cursor: pointer; + padding: 5px 15px; + color: #fff; } + .b2b-header-tabs .header__item.b2b-headermenu { + padding: 0; } + .b2b-header-tabs .header__item.b2b-headermenu:last-child { + background: none; } + .b2b-header-tabs .header__item.b2b-headermenu a.menu__item { + color: #fff; + text-decoration: none; + display: inline-block; + padding: 5px 15px; } + .b2b-header-tabs .header__item.active { + background-color: #fff; + border-radius: 2px; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } + .b2b-header-tabs .header__item.active a.menu__item { + color: #0578ae; } + .b2b-header-tabs li:focus { + outline: 2px solid #0578ae; } + .b2b-header-tabs .header__item .header-secondary-wrapper, .b2b-header-tabs .header__item .header-tertiary-wrapper { + background-color: #fff; + position: absolute; + width: 100%; + left: 0; + top: 42px; + border-bottom: solid 1px #ccc; + -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + display: none; + z-index: 111; } + .b2b-header-tabs .header-secondary, .b2b-header-tabs .header-tertiary { + background-color: #fff; + width: 980px; + margin: 0 auto; } + .b2b-header-tabs .header__item.active .header-secondary-wrapper { + display: block; } + .b2b-header-tabs .header-secondary .header-subitem { + display: inline-block; + width: auto; + margin: 0 15px; } + .b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary-wrapper { + display: block; } + .b2b-header-tabs .header-secondary .header-subitem a.menu__item { + display: inline-block; + padding: 15px 0; + color: #333; } + .b2b-header-tabs .header-secondary .header-subitem a.menu__item:hover, .b2b-header-tabs .header-secondary .header-subitem a.menu__item:focus { + color: #0578ae; } + + /** Secondary Menu **/ + .b2b-labelhide { + position: absolute; + clip: rect(1px, 1px, 1px, 1px); } + + /** Tertiary Level Menu **/ + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { + position: absolute; + z-index: 111; + top: 25px; } + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after, .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { + content: ''; + border-left: 8px solid transparent; + border-right: 8px solid transparent; + position: absolute; + -webkit-transition: left .2s ease-out; + -moz-transition: left .2s ease-out; + transition: left .2s ease-out; } + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after { + border-bottom: 8px solid #fff; + top: 10px; } + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { + border-bottom: 8px solid #ccc; + top: 9px; } + + .b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary { + border-top: solid 1px #ccc; } + + .b2b-header-tabs .header-tertiary:after { + content: ''; + clear: both; + display: block; } + + .b2b-header-tabs .header-tertiary li { + display: inline-block; + padding: 0; + float: left; } + .b2b-header-tabs .header-tertiary li a { + color: #333; + display: block; + padding: 10px 15px; } + .b2b-header-tabs .header-tertiary li label { + text-align: left; + display: block; + font-size: 16px; + font-weight: bold; + color: #857B7B; + padding: 15px 0 0 15px; } + + .b2b-header-tabs .header__item.skip { + padding: 0; + display: inline-block; + cursor: default !important; } + .b2b-header-tabs .header__item.skip a { + color: transparent; + font-size: 12px; + line-height: 15px; + text-decoration: none; } + .b2b-header-tabs .header__item.skip a:focus { + color: #fff; + outline: 2px solid #0578ae; } + + .b2b-header-tabs .selectWrap { + min-width: 150px; } + .b2b-header-tabs .selectWrap button.awd-select { + height: 30px; + line-height: 31px; + font-size: 1rem; + display: inline-block; } + .b2b-header-tabs .selectWrap .awd-select-list { + background-color: #fff; + color: #333; + -webkit-transition: opacity .2s ease-out; + -moz-transition: opacity .2s ease-out; + transition: opacity .2s ease-out; + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176); } + + @media (max-width: 768px) { + .b2b-header-tabs { + padding: 0 15px; } + .b2b-header-tabs .header__items, .b2b-header-tabs .header-secondary, .b2b-header-tabs .header-tertiary { + width: 100%; } + .b2b-header-tabs .header__item { + padding: 5px 0; } + .b2b-header-tabs .globe-text { + display: none; } + .b2b-header-tabs .header__item.b2b-headermenu a.menu__item { + padding: 5px 7px 9px 7px; } + .b2b-header-tabs .header__item .header-tertiary-wrapper { + top: 30px; } + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { + top: 14px; } + .b2b-header-tabs .header__item .header-secondary-wrapper { + top: 45px; } + .b2b-header-tabs .header__item.profile { + padding-left: 15px; + float: none; } } + + /************* Header - Start *************/ + .b2b-header-tabs { + background-color: #222; + width: 100%; + position: relative; + height: 45px; } + + .b2b-header-tabs .icon-primary-primary-att-globe { + color: #0568ae; + font-size: 34px; + bottom: 1px; } + + /* + *TODO: delete below .icon-primary-att-globel will not be used + *instead the one above, icon-primary-primary-att-globe not available here + */ + .b2b-header-tabs .icon-primary-att-globe { + color: #0568ae; + font-size: 34px; } + + .b2b-header-tabs .globe-text { + margin-left: 20px; + font-size: 2rem; } + + .b2b-header-tabs .header__items { + width: 980px; + margin: 0 auto; + display: block; + list-style: none; + border-spacing: 30px 0; + padding: 3px 0px 0px 0px; } + + .b2b-header-tabs .header__item { + display: inline-block; + text-align: left; + width: auto; + font-size: 14px; + font-family: "Omnes-ECOMP-W02", Arial; + cursor: pointer; + padding: 0 15px 4px 15px; + /*margin-top:-3px;*/ + color: #fff; } + + .b2b-header-tabs .header__item.b2b-headermenu { + padding: 0; } + + .b2b-header-tabs .header__item.b2b-headermenu a.menu__item { + color: #fff; + text-decoration: none; + display: inline-block; + padding: 8px 15px 12px 15px; + font-size: 16px; } + + .b2b-header-tabs .header__item.active { + background-color: #fff; + border-radius: 2px; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } + + .b2b-header-tabs .header__item.active a.menu__item { + color: #0578ae; } + + .b2b-header-tabs li:focus { + outline: 2px solid #0578ae; } + + /** profile pop Over **/ + .b2b-header-tabs .header__item.profile { + position: relative; + float: right; } + + /** Secondary Menu **/ + .b2b-header-tabs .header__item .header-secondary-wrapper, .b2b-header-tabs .header__item .header-tertiary-wrapper { + background-color: #fff; + position: absolute; + width: 100%; + left: 0; + top: 42px; + border-bottom: solid 1px #ccc; + -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + display: none; + z-index: 111; } + + .b2b-header-tabs .header-secondary, .b2b-header-tabs .header-tertiary { + background-color: #fff; + width: 980px; + margin: 0 auto; } + + .b2b-header-tabs .header__item.active .header-secondary-wrapper, + .b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary-wrapper { + display: block; } + + .b2b-header-tabs .header-secondary .header-subitem { + display: inline-block; + width: auto; + margin: 0 15px; } + + .b2b-header-tabs .header-secondary .header-subitem a.menu__item { + display: inline-block; + padding: 15px 0; + color: #333; + font-size: 14px; } + + .b2b-header-tabs .header-secondary .header-subitem a.menu__item:hover, .b2b-header-tabs .header-secondary .header-subitem a.menu__item:focus { + color: #0578ae; } + + .b2b-label-hide { + position: absolute; + clip: rect(1px, 1px, 1px, 1px); } + + /** Tertiary Level Menu **/ + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after, + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { + content: ''; + border-left: 8px solid transparent; + border-right: 8px solid transparent; + position: absolute; + -webkit-transition: left .2s ease-out; + -moz-transition: left .2s ease-out; + transition: left .2s ease-out; } + + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { + position: absolute; + z-index: 111; + top: 25px; } + + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after { + border-bottom: 8px solid #fff; + top: 10px; } + + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { + border-bottom: 8px solid #ccc; + top: 9px; } + + /** Tertiary Level Menu **/ + .b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary { + border-top: solid 1px #ccc; } + + .b2b-header-tabs .header-tertiary:after { + content: ''; + clear: both; + display: block; } + + .b2b-header-tabs .header-tertiary li { + display: inline-block; + padding: 0; + float: left; } + + .b2b-header-tabs .header-tertiary li a { + color: #333; + display: block; + padding: 7px 15px; + max-width: 228px; } + + .b2b-header-tabs .header-tertiary li label { + text-align: left; + display: block; + font-size: 14px !important; + font-weight: bold; + color: #857B7B; + padding: 15px 0 0 15px; } + + /** Quarternary Level Menu **/ + .b2b-header-tabs .header-quarternary { + width: 100%; + float: left; } + + .b2b-header-tabs .header-quarternary li { + padding-left: 15px; + font-family: "Omnes-ECOMP-W02", Arial; + display: none; } + + .b2b-header-tabs .header-quarternary li.active { + display: block; } + + .b2b-header-tabs .header-quarternary li a { + color: #666666; + font-size: 14px; + padding: 0px 10px 10px 10px; } + + /** Skip Navigation**/ + .b2b-header-tabs .header__item.skip { + padding: 0; + display: inline-block; + cursor: default !important; } + + .b2b-header-tabs .header__item.skip a { + color: transparent; + font-size: 12px; + line-height: 15px; + text-decoration: none; } + + .b2b-header-tabs .header__item.skip a:focus { + color: #fff; + outline: 2px solid #0578ae; } + + /** Dropdown css inside Header ****/ + .b2b-header-tabs .selectWrap { + min-width: 150px; } + + .b2b-header-tabs .selectWrap button.awd-select, .b2b-header-tabs .selectWrap input.awd-select { + height: 36px; + line-height: 31px; + font-size: 1rem; + display: inline-block; } + + .b2b-header-tabs .selectWrap .awd-select-list { + background-color: #fff; + color: #333; + -webkit-transition: opacity .2s ease-out; + -moz-transition: opacity .2s ease-out; + transition: opacity .2s ease-out; + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176); } + + /* + * responsive header media queries + */ + @media screen and (max-width: 1100px) { + .b2b-header-tabs .globe-text { + display: none; } + .b2b-header-tabs .header__item.profile { + padding-left: 15px; + float: none; } + .b2b-header-tabs .header__items { + padding-top: 0px; } } + + @media screen and (max-width: 950px) { + .header__item.profile { + top: 20px; } + .b2b-header-tabs { + height: 90px; } + .header__item .selectWrap { + bottom: 15px; } + .b2b-header-tabs .header__items { + padding-top: 25px; } + .b2b-header-tabs .header__item .header-secondary-wrapper, .b2b-header-tabs .header__item .header-tertiary-wrapper { + top: 80px; } + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { + top: 35px; } + .b2b-header-tabs .header__item.b2b-headermenu a.menu__item { + padding-bottom: 30px; } + .b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary { + margin-top: -28px; } } + + /*************** Header - END ******************/ + .hp-container { + display: block; + max-width: 408px; } + .hp-container i:focus { + outline: thin dotted #666; } + .hp-container .icon-misc-pen { + cursor: pointer; } + .hp-container .icon-misc-trash { + cursor: pointer; } + + .hp-selected { + border-bottom: 1px solid #ccc; + border-bottom: 1px solid #ccc; + margin-bottom: 16px; + padding-bottom: 16px; } + .hp-selected .selected-days { + padding-bottom: 16px; } + .hp-selected .selected-days .day { + padding-top: 10px; + float: left; } + + /* .hp-checkbox { + padding-top: 20px; + margin: 16px auto 0 auto; } + .hp-checkbox label { + position: relative; + width: 20px; + margin-right: 34px; } + .hp-checkbox label span { + position: absolute; + top: -20px; + left: 0px; + margin-left: 0px; } */ + + .hp-dropdowns { + margin-top: 15px; + display: flex; + display: -webkit-flex; + display: -ms-flexbox; } + + .hp-buttons { + margin-top: 20px; + display: flex; + display: -webkit-flex; + display: -ms-flexbox; } + + .hp-dropdowns .radio-buttons { + margin-top: 30px; } + .hp-dropdowns .radio-buttons .radio { + margin-right: 15px; } + + + + /* TODO: Build a reference page for these classes */ + .font-regular { + font-family: "Omnes-ECOMP-W02", Arial !important; } + + .font-light { + font-family: "Omnes-ECOMP-W02-Light", Arial !important; } + + .font-italic { + font-family: "Omnes-ECOMP-W02-Italic", Arial !important; } + + .font-light-italic { + font-family: "Omnes-ECOMP-W02-Light-Italic", Arial !important; } + + .font-medium { + font-family: "Omnes-ECOMP-W02-Medium", Arial !important; } + + .font-medium-italic { + font-family: "Omnes-ECOMP-W02-Medium-Italic",Arial !important; } + + .font-reset { + font-style: normal; + font-variant: normal; + font-weight: normal; + text-transform: none; } + + .b2b-nav-menu { + background-color: #efefef; + border: 1px solid #efefef; + width: 230px; + font-size: 1.4rem; } + + .b2b-subnav-container > ul { + padding: 0px; } + + .b2b-subnav-content { + margin: 0; + margin-bottom: 10px; } + + .b2b-subnav-content > li { + border-bottom: 1px solid #999999; + position: relative; + cursor: pointer; } + + .b2b-subnav-content > li > a { + text-decoration: none; + line-height: 18px; + display: block; + padding: 10px; } + + .b2b-subnav-content > li > a.expand { + color: #333; } + + .b2b-subnav-content > li ul { + overflow: hidden; + max-height: 0; + transition-duration: 0.5s; + transition-timing-function: cubic-bezier(0, 1, 0.5, 1); } + + .b2b-subnav-content > li ul.expand { + transition-duration: 0.7s; + transition-timing-function: ease-in-out; + max-height: 1000px; + overflow: hidden; } + + .b2b-subnav-content > li > a:focus, .b2b-subnav-content > li ul > li > a:focus { + outline: thin dotted #666; } + + .b2b-subnav-content > li ul > li > a { + line-height: 18px; + padding: 8px 0; + display: block; + outline-offset: -4px; + padding-left: 10px; } + + .b2b-icon-primary-plus-minus { + display: inline-block; + height: 20px; + margin-right: 10px; + padding: 0; + position: absolute; + right: 0px; + top: 10px; + vertical-align: middle; + width: 20px; } + + @media (min-width: 320px) and (max-width: 767px) { + .b2b-nav-menu { + background-color: #fff; + border: 1px solid white; + width: 100%; } + .b2b-subnav-content > li { + padding-left: 10px; } + .b2b-subnav-container > ul:first-child { + border-top: 1px solid #999; } + .b2b-icon-primary-plus-minus { + right: 10px; } + .b2b-subnav-content > li li > a.active { + color: #0574ac; + text-decoration: none; + font-family: "Omnes-ECOMP-W02", Arial; } } + + .b2b-list-box-item { + white-space: nowrap; + margin: 1px; + border: 1px solid transparent; + outline: none; + visibility: inherit; + display: inherit; + text-align: left; + overflow: hidden; + cursor: pointer; + padding: 5px 0 5px; + padding-left: 15px; + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; } + .b2b-list-box-item:focus { + border: 2px solid #5e8cb3; } + + .b2b-list-box-item--selected { + background-color: #cfdde9; } + + .btn.disabled[ddh-load-button] { + line-height: 46px; + padding: 0 19px 0 18px; } + + .btn.disabled[ddh-load-button] { + color: #666666; } + + .icon-primary-spinner-ddh.large { + height: 50px; + width: 50px; } + + .icon-primary-spinner-ddh.small { + height: 30px; + width: 30px; } + + .icon-primary-spinner-ddh { + -webkit-animation: 1s linear infinite spinner; + animation: 1s linear infinite spinner; + background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzNiAzNiIgaWQ9InN2Zy1zcGlubmVyIiB4PSIwcHgiIHk9IjBweCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CiAgIDxwYXRoIGZpbGw9IiNGNUY1RjUiIGQ9Ik0xOCAzNkM4LjEgMzYgMCAyNy45IDAgMThTOC4xIDAgMTggMHMxOCA4LjEgMTggMTgtOC4xIDE4LTE4IDE4em0wLTMxLjVjLTcuNSAwLTEzLjUgNi0xMy41IDEzLjVTMTAuNiAzMS41IDE4IDMxLjVjNy41IDAgMTMuNS02LjEgMTMuNS0xMy41IDAtNy41LTYtMTMuNS0xMy41LTEzLjV6Ii8+CiAgIDxwYXRoIGZpbGw9IiMwNTY4QUUiIGlkPSJzcGlubmVyIiBkPSJNMzAuNyA1LjNsLTMuMSAzLjJjMi40IDIuNCAzLjkgNS44IDMuOSA5LjUgMCA3LjQtNi4xIDEzLjUtMTMuNSAxMy41UzQuNSAyNS40IDQuNSAxOCAxMC42IDQuNSAxOCA0LjVWMEM4LjEgMCAwIDguMSAwIDE4czguMSAxOCAxOCAxOCAxOC04LjEgMTgtMThjMC01LTItOS41LTUuMy0xMi43eiIgdHJhbnNmb3JtPSIiPiAgICAgIAogICA8L3BhdGg+Cjwvc3ZnPg==); } + + .btn-small .icon-primary-spinner-ddh { + height: 30px !important; + width: 30px !important; } + + .btn-small .icon-primary-spinner { + height: 30px; + width: 30px; } + + .load-backdrop { + position: absolute; + top: 50%; + left: 50%; } + + .small-modal-loader { + width: 420px !important; + height: 212px !important; + text-align: center; } + + .small-modal-loader .icon-primary-spinner { + margin-bottom: 5px; } + + .body.styled-by-modal { + position: fixed; } + + .b2b-modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: -1; } + + .b2b-modal-backdrop.fade { + background-color: #000; + opacity: 0; + filter: alpha(opacity=0); + transition: all 0.3s linear 0s; } + + .b2b-modal-backdrop.fade.in { + z-index: 1040; + opacity: 0.7; + filter: alpha(opacity=70); + background-color: #000; + transition: opacity 0.3s linear 0s; } + + .modalwrapper { + height: 100%; + width: 100%; + left: 0; + overflow-y: hidden; + position: absolute; + right: 0; + padding: 20px; + top: 0; + z-index: -1; } + + .modalwrapper.active { + z-index: 1050; + overflow-y: auto; } + + .modal { + background-clip: padding-box; + background-color: #ffffff; + border: 1px solid rgba(0, 0, 0, 0.1); + border-radius: 8px; + box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.4); + margin: 0 auto; + /*margin-bottom:10%;*/ + outline: medium none; + /*position: absolute;*/ + height: 0; + min-height: 150px; + overflow: hidden; + /*top: 10%;*/ + width: 100%; + z-index: -1; } + + .modalwrapper.modal-docked .modal { + max-height: 80%; + height: 80%; + overflow: hidden; + top: 0; } + + .modal.fade.in { + position: relative; + height: auto; + overflow: auto; + top: 10%; + z-index: 1060; + transition: opacity .5s linear 0s; } + + .modal.fade.in.modal-landscape { + overflow-y: auto; } + + .modal.fade { + transition: opacity .5s linear 0s; } + + .fade.in { + opacity: 1; } + + .fade { + opacity: 0; } + + .b2b-modal-header { + align-items: center; + border-radius: 8px 8px 0 0; + display: flex; + min-height: 60px; + overflow: hidden; + padding: 30px 46px 30px 30px; + position: relative; } + + .b2b-modal-header > h2 { + line-height: 1; + margin: 0; + padding: 0; } + + .modal-header-portrait { + -webkit-overflow-scrolling: auto; } + + .modal-header-landscape { + -webkit-overflow-scrolling: auto; } + + .b2b-modal-body { + -webkit-overflow-scrolling: touch; + padding: 0 30px 20px; + position: relative; + width: auto; } + + .b2b-modal-body:focus { + outline: 1px dotted #333333; } + + .modal-form { + margin-bottom: 0; } + + .b2b-modal-footer { + background-color: #fff; + width: 100%; + padding: 0 30px; + border-radius: 0; + position: absolute; + bottom: 0; } + + :not(.modal-docked) .b2b-modal-footer { + position: relative; } + + .modal-landscape .b2b-modal-footer { + position: relative; } + + .b2b-modal-footer .cta-button-group { + display: flex; + justify-content: flex-end; + padding: 20px 0 5px; + width: 100%; + border-top: 1px solid #d2d2d2; } + + .b2b-modal-footer .cta-button-group .btn { + margin-left: auto; + margin-right: auto; + float: right; + margin-left: 10px; } + + .b2b-modal-footer .cta-button-group .marginLeft0 { + margin-left: 0px; } + + .b2b-modal-footer .cta-button-group .btn-footer-left { + margin-right: auto; } + + .b2b-modal-footer .cta-button-group .btn + .btn { + margin-right: 0 !important; } + + [class*="modal-"] { + width: 100%; } + + .modal-small { + max-width: 420px; } + + .modal-medium { + max-width: 620px; } + + .modal-large { + max-width: 720px; } + + .modal-xlarge { + max-width: 860px; } + + .modal-jumbo { + max-width: 1000px; } + + .modalwrapper.modal-docked { + height: 100%; + display: flex; + align-items: center; } + + .modalwrapper.modal-docked .b2b-modal-body { + height: 80%; + overflow-y: scroll; + padding-bottom: 60px; } + + .modalwrapper.modal-docked .modal { + max-height: 80%; + height: 80%; + overflow: hidden; + top: 0; } + + .modalwrapper.modal-docked .b2b-modal-body > *:last-child { + margin-bottom: 60px; } + + @media (max-width: 767px) { + .modalwrapper { + padding: 15px; + overflow-x: hidden; } + .modal.fade.in { + top: 0; + right: 0; + left: 0; + margin-bottom: 15px; + border: none; } + .b2b-modal-header { + padding: 20px 46px 20px 15px; } + .b2b-modal-body { + width: 100%; + padding: 0 15px 15px; } + .modalwrapper.modal-docked { + position: absolute; + height: 100%; + padding: 0; } + .modalwrapper.modal-docked .modal.fade.in { + margin-bottom: 0; + width: 100% !important; + max-height: 100%; + height: 100%; + border-radius: 0; } + .modalwrapper.modal-docked .b2b-modal-body { + overflow-y: scroll; + height: 100%; } + .modalwrapper.modal-docked.modal-landscape { + overflow-y: hidden; + position: fixed; } + .modalwrapper.modal-docked.modal-landscape .modal { + overflow-y: scroll; + max-width: 100%; } + .modalwrapper.modal-docked.modal-landscape .b2b-modal-body { + height: auto; + overflow-y: hidden; } + .b2b-modal-footer { + padding: 0 15px; } + .b2b-modal-footer .cta-button-group { + display: block; + padding: 15px 0; } + .b2b-modal-footer .cta-button-group .btn { + float: none; } + .b2b-modal-footer .cta-button-group .btn + .btn { + margin-bottom: 0; } + .b2b-modal-footer .cta-button-group a.visible-phone { + align-items: center; + display: flex !important; + height: 42px; + justify-content: center; } } + + .b2b-modal-footer > .cta-button-group { + line-height: 40px; } + + .ajaxed, + .modal.fade.in .b2b-modal-header, + .modal.fade.in .b2b-modal-body, + .modal.fade.in .b2b-modal-footer { + animation-duration: 0.01s; + -o-animation-duration: 0.01s; + -ms-animation-duration: 0.01s; + -moz-animation-duration: 0.01s; + -webkit-animation-duration: 0.01s; + animation-name: DOMinsertion; + -o-animation-name: DOMinsertion; + -ms-animation-name: DOMinsertion; + -moz-animation-name: DOMinsertion; + -webkit-animation-name: DOMinsertion; } + + .monthselector thead tr th { + min-width: 46px; } + + .monthselector thead tr:after { + content: ""; + position: absolute; + left: 20px; + top: 52px; + height: 1px; + width: 85%; + border-bottom: 1px solid #ccc; } + + .monthselector tbody tr:last-child { + height: 50px; } + + .monthselector td.day { + margin: 1px 4px !important; + width: 64px !important; } + + .monthselector .datepicker-switch { + width: 195px !important; } + + .monthselector .show-date { + width: 30px !important; } + + .monthselector button.faux-input { + width: 100%; } + .monthselector button.faux-input:focus { + border: 1px solid #0574ac; } + .monthselector button.faux-input:disabled { + cursor: not-allowed; } + + .monthselector .cta-button-group { + padding: 0 20px; } + .monthselector .cta-button-group a { + margin-right: 20px; } + + .monthselector .day.active .show-date:after, .monthselector .day:focus .show-date:after, .monthselector .due-date.disabled .show-date:after { + height: 30px; + left: 9px !important; + top: 0; + width: 42px !important; } + + .monthselector .disabled.day:focus .show-date:after { + border: none; } + + .monthselector .icon-primary-calendar { + display: block; } + + .b2b-ml-nav { + padding: 0 10px 0 10px; + width: 320px; } + + .b2b-ml-nav ul { + list-style: none; + list-style-type: none; } + + .b2b-ml-nav a { + display: block; + padding: 0 0 5px 30px; + line-height: 22px; + margin-left: -10px; + color: #0568ae; + font-size: 1.4rem; } + + .b2b-ml-nav a:focus { + outline-offset: 1px; } + + .b2b-ml-nav li:focus { + outline: none; } + + .b2b-ml-nav li:focus > a { + outline: thin dotted #666; + outline-offset: 1px; } + + .b2b-ml-nav ul li { + border-left: 1px solid #ccc; } + + .b2b-ml-nav ul ul { + padding: 0 0 0 20px; } + + .b2b-ml-nav ul > li { + position: relative; + line-height: 18px; } + + .b2b-ml-nav a > span { + background-color: #FFF; + display: inline; + margin: 0; + padding: 0; + position: absolute; + left: -11px; + top: 0; } + + .b2b-ml-nav a > span > i { + font-size: 20px; } + + .b2b-ml-nav a:only-child > span { + left: -6px; + border-radius: 50%; + line-height: 7px; + top: 5px; } + + .b2b-ml-nav a:only-child > span > i { + background-color: inherit; + background: #fff; + font-size: 5px; } + + .b2b-ml-nav ul li:first-child > a:only-child > span { + left: -6px; + border-radius: 50%; + line-height: 12px; + top: 0px; } + + .b2b-ml-nav li a + ul { + display: none; } + + .b2b-ml-nav li a.active + ul { + display: block; } + + .b2b-ml-nav .selected { + color: #333; } + + /*to overide ng-doc inline property for library demo - TODO: Move to docs.css*/ + .b2b-ml-nav a [class^="icon-primary-"], a [class*=" icon-primary-"], a [class^="icon-primary-"]:before, a [class*=" icon-primary-"]:before { + display: inline-block; } + + .b2b-alerts-messages { + background-color: #fff; + border-radius: 8px; + height: auto; } + .b2b-alerts-messages h3 { + color: #333 !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + margin-bottom: 0 !important; + margin: 1em 0 5px; + line-height: 27px; + font-size: 18px; } + .b2b-alerts-messages h4 { + color: #333 !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + margin-bottom: 0 !important; } + .b2b-alerts-messages .alert-info { + background-color: #0574ac; + border: 0; } + .b2b-alerts-messages .alert-error { + background-color: #cf2a2a; + border: 0; } + .b2b-alerts-messages .alert-success { + background-color: #1b7e28; + border: 0; } + .b2b-alerts-messages div:nth-child(2) { + padding: 0 0 15px 10px; + vertical-align: baseline; } + .b2b-alerts-messages .close:before { + color: #767676; } + .b2b-alerts-messages p { + font-size: 14px; + color: #333; + font-family: "Omnes-ECOMP-W02", Arial; } + .b2b-alerts-messages p a { + color: #333; } + .b2b-alerts-messages .btn-small { + margin-bottom: 0px; } + + .b2b-alerts-success { + border: 1px solid #1b7e28; } + + .b2b-alerts-error { + border: 1px solid #cf2a2a; } + + .b2b-alerts-info { + border: 1px solid #0574ac; } + + /* TODO: Rearange this and move to patches if needed */ + .b2b-breadcrumb-css-override > li { + margin-right: 24px; } + + .b2b-breadcrumb-css-override li > * { + float: left !important; } + + .b2b-css-override ul.nav-tabs { + margin-bottom: 0; } + + + .b2b-top-nav-buttons-css-override { + margin-bottom: 0; + margin-top: 2px; } + + .b2b-auto-width { + width: auto !important; } + + .b2b-toggle-header-active { + color: #0568ae; } + + .b2b-toggle-header-inactive { + color: #333333; } + + .b2b-toggle-header-icon { + cursor: pointer; } + + + .icon-primary-circle:before { + background-image: url("data:image/svg+xml,%3Csvg%20baseProfile%3D%22tiny%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%3E%3Ccircle%20fill%3D%22transparent%22%20stroke%3D%22%23666%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2218%22%20cy%3D%2218%22%20r%3D%2216%22%2F%3E%3C%2Fsvg%3E"); + content: ""; + position: absolute; + top: 0; + z-index: 1; } + + .ds2-no-colors .icon-primary-circle:before { + background-image: none; + content: "\e902"; } + + i:focus { + outline: thin dotted #666; } + + .p-col-md-12 { + width: 50%; } + + .pager__item { + border-radius: 0; + cursor: default; + display: inline-block; + margin: 5px; + width: 22px; + height: 23px; + vertical-align: baseline; } + + .pager { + padding-top: 10px; + padding-bottom: 20px; + text-align: center; + margin: 0 auto; } + + .pager__item--input { + color: #067ab4; + max-height: 32px; + max-width: 40px; + padding-left: 0; + padding-right: 0; + text-align: center; + margin-left: 10px; } + + .row.section-row { + margin-bottom: 20px; } + + .pager__item--active { + border-bottom: 2px solid #0574ac; + border-radius: 0; + color: #333333; } + + .pager a.pager__item--active:hover { + cursor: default; } + + .pager a:hover, .pager a:focus { + text-decoration: none; + color: #333333; + cursor: pointer; } + + .pager a.disabled:hover, .pager a.disabled:focus { + cursor: not-allowed; } + + .row.section-row.b2b-page { + display: block; } + + a.pager__item--next:focus, a.pager__item--prev:focus { + text-decoration: none; + border: 0; } + + .pager__item--next, .pager__item--prev { + margin: 5px; + padding: 1.5px 6px 1.5px 6px; } + + .pager .disabled i { + pointer-events: none; + cursor: default; + color: #c4c4c4; } + + .fieldLabel { + color: #666666; } + + .fieldLabel input { + color: #666666; } + + .pSelect { + float: right; + width: 150px; } + + .numericResult { + margin-bottom: 20px; + font-size: 1.6rem; + margin-top: 20px; + display: inline-block; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + .mobile-view > .pager__item { + margin: 5px 10px; + width: 24px; + height: 34px; + vertical-align: middle; + line-height: 34px; } + + .fade1, .fadel { + opacity: 0.4; } + + .fade2, .fadesl { + opacity: 0.6; } + + h4#pagination-truncated { + margin-top: 50px; } + + h4#pagination-large-count { + margin-top: 50px; } + + .p-col-md-12 input { + margin-left: 20px; } + + .pager a .icon-primary-right:before { + display: inline-block; } + + .pager a .icon-primary-left:before { + display: inline-block; } + + .page-heading { + background: white none repeat scroll 0 0; + margin-bottom: -12px; + padding-left: 10px; + padding-right: 10px; + position: relative; } + + .numericResult:focus { + outline: 1px dotted #0574ac; } + + .page-heading-group { + color: #ef6f00; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + .pager > div > span.fieldLabel { + margin-left: 18px; } + + .pager .fieldLabel .btn-arrow { + top: 0; + left: 10px; + margin-left: -5px; } + + .b2b-p-col-md-12 { + width: 50%; } + .b2b-p-col-md-12 input { + margin-left: 20px; } + + .b2b-pager__item { + border-radius: 0; + cursor: default; + display: inline-block; + margin: 0px 5px 0 5px; + height: 23px; + vertical-align: baseline; } + + .b2b-pager__item--noclick { + pointer-events: none !important; + cursor: default !important; } + + .b2b-pager__item--droppable { + pointer-events: all !important; } + + .b2b-pager { + padding-top: 10px; + padding-bottom: 20px; + text-align: center; + margin: 0 auto; } + .b2b-pager a:hover { + text-decoration: none; + color: #333333; + cursor: pointer; } + .b2b-pager a:focus { + text-decoration: none; + color: #333333; + cursor: pointer; } + .b2b-pager a .icon-primary-right:before { + display: inline-block; } + .b2b-pager a .icon-primary-left:before { + display: inline-block; } + .b2b-pager .disabled i { + pointer-events: none; + cursor: default; + color: #c4c4c4; } + + .b2b-pager__item--input { + color: #067ab4; + max-height: 32px; + max-width: 60px; + padding-left: 0; + padding-right: 0; + text-align: center; + margin-left: 5px; } + + .row.section-row { + margin-bottom: 20px; } + + .b2b-pager__item--active { + border-bottom: 2px solid #0574ac; + border-radius: 0; + color: #333333; } + + .row.section-row.b2b-page { + display: block; } + + a.b2b-pager__item--next:focus { + text-decoration: none; + border: 0; } + + a.b2b-pager__item--next-disabled { + outline: 0; } + + a.b2b-pager__item--next-disabled > [class^="icon-primary-"] { + color: #cccccc; + cursor: not-allowed; + outline: 0; } + + a.b2b-pager__item--prev:focus { + text-decoration: none; + border: 0; } + + a.b2b-pager__item--prev-disabled { + outline: 0; } + + a.b2b-pager__item--prev-disabled > [class^="icon-primary-"] { + color: #cccccc; + cursor: not-allowed; } + + .b2b-pager__item--next { + padding: 1.5px 0px 1.5px 0px; } + + .b2b-pager__item--prev { + padding: 1.5px 0px 1.5px 0px; } + + .fieldLabel { + color: #666666; } + .fieldLabel input { + color: #666666; } + .fieldLabel .btn-arrow { + top: 0; + left: 10px; } + + .b2b-pSelect { + float: right; + width: 150px; } + + .b2b-numericResult { + margin-bottom: 20px; + font-size: 1.6rem; + margin-top: 20px; } + + .b2b-mobile-view > .b2b-pager__item { + margin: 5px 10px; + min-width: 23px; + height: 34px; + vertical-align: middle; + line-height: 34px; } + + .b2b-fade1 { + opacity: 0.4; } + + .b2b-fade2 { + opacity: 0.6; } + + .b2b-fadesl { + opacity: 0.6; } + + h4#b2b-pagination-truncated { + margin-top: 50px; } + + h4#b2b-pagination-large-count { + margin-top: 50px; } + + .b2b-page-heading { + background: white none repeat scroll 0 0; + margin-bottom: -12px; + padding-left: 10px; + padding-right: 10px; + position: relative; } + + .b2b-numericResult:focus { + outline: 1px dotted #0574ac; } + + .b2b-page-heading-group { + color: #ef6f00; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + .b2b-pager > div > span.fieldLabel { + margin-left: 18px; } + + .b2b-go-to-page { + margin-top: 14px; } + + .b2b-go-to-page-inline { + display: inline-block; } + + input.b2b-phone-mask-input { + padding-right: 15px; } + input.b2b-phone-mask-input:hover, input.b2b-phone-mask-input:focus { + padding-right: 15px; } + + /************************** Start - Should be removed after the styling in global is fixed *******************/ + input::-ms-clear { + display: none; } + + /************************** End - Should be removed after the styling in global is fixed *******************/ + @media (max-width: 767px) { + input::-ms-clear { + display: block; } } + + .pivot-link-group { + background-color: #5a5a5a; + border-top: 1px solid #959595; } + + .pivot-links > li { + border-bottom: 1px solid #959595; } + + .pivot-links > li > a { + color: #fff; + display: block; + padding: 12px 15px 10px; + line-height: normal; } + + .b2b-profile-block-container { + min-height: 200px; + height: auto; + background-color: #fff; + border-radius: 8px; + border: 1px solid #ccc; + box-shadow: 0px 1px 1px 1px #ccc; + display: inline-table; + margin: 15px 15px; } + + .b2b-profile-block-details p, .b2b-profile-block-details div { + padding: 2px 7px; + font-size: 1.4rem; } + + .b2b-profile-block-details .radio-label, .b2b-profile-block-details a { + font-size: 1.4rem; } + + .b2b-profile-block-details p label, .b2b-profile-block-details p span { + padding-left: 10px; } + + .b2b-profile-block-footer { + margin-bottom: 12px; + margin-top: 5px; + height: 35px; } + + .b2b-profile-block-details p { + word-wrap: break-word; + height: 61px; } + .b2b-profile-block-details p:first-child { + margin-top: 10px; } + .b2b-profile-block-details p:after { + content: ' '; + display: block; + border: 0.2px solid #ccc; + margin-top: 12px; } + + .b2b-profile-block-details .radio { + margin-left: 15px; + height: 30px; } + + .b2b-approval-icon { + color: #1b7e28; + float: right; + position: relative; + left: 10px; } + .b2b-approval-icon i { + color: #1b7e28; + float: right; } + + .b2b-profile-link { + float: right; + position: relative; + left: -4px; } + + a.link-profile { + position: relative; + left: -5px; + float: right; + margin-bottom: 16px; } + + .b2b-profile-block-radio { + position: relative; + top: -5px; } + + .b2b-profile-card { + min-width: 229px; + min-height: 354px; + margin: 10px; + border: solid 1px #CCC; + font-family: "Omnes-ECOMP-W02", Arial; + display: inline-block; + vertical-align: top; } + .b2b-profile-card .top-block { + padding: 15px 20px; + background-color: #e4e4e4; + max-height: 153px; } + .b2b-profile-card .bottom-block { + padding: 15px 20px 15px 20px; + background-color: #fff; } + .b2b-profile-card .profile-image { + background: #e4e4e4; + margin-bottom: 15px; + text-align: center; } + .b2b-profile-card .profile-image .default-img { + display: inline-block; + width: 60px; + height: 60px; + margin-bottom: 10px; + border: 6px solid #fff; + border-radius: 99em; + -webkit-border-radius: 99em; + -moz-border-radius: 99em; + /* background-color: #eee; */ } + + .profile-image img { + display: inline-block; + width: 60px; + height: 60px; + margin-bottom: 10px; + border: 6px solid #fff; + border-radius: 99em; + -webkit-border-radius: 99em; + -moz-border-radius: 99em; + /* background-color: #eee; */ } + + .b2b-profile-card .profile-image .default-img { + font-family: "Omnes-ECOMP-W02", Arial; + color: #333; + background-color: #fff; + font-size: 32px; + line-height: 22px; + padding: 5px; + padding-top: 13px; + width: 60px; + height: 60px; + text-transform: uppercase; } + + .b2b-profile-card .profile-image .name { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 16px; + color: #333; + text-align: center; + margin-bottom: 5px; + margin-top: 5px; + overflow: hidden; + word-break: break-word; + white-space: normal; + text-transform: capitalize; } + + .b2b-profile-card .profile-image .status-icon { + border-radius: 10px; + border: 1px solid #fff; + margin: 0 3px 0 0; + width: 10px; + height: 10px; + display: inline-block; + vertical-align: middle; } + + .b2b-profile-card .profile-image .status { + font-size: 12px; + line-height: 15px; + text-align: center; + margin: 0 15px 0 0; + color: #444; } + + .b2b-profile-card .status .circle { + width: 10px; + height: 10px; + border-radius: 50%; + margin: 30px 6px 0px 20px; + text-align: center; + background-color: #444; } + + .b2b-profile-card .profile-image .status-green { + background-color: #0c0; } + + .b2b-profile-card .profile-image .status-red { + background-color: red; } + + .b2b-profile-card .profile-image .status-blue { + background-color: #00f; } + + .b2b-profile-card .profile-image .status-yellow { + background-color: #ff0; } + + .b2b-profile-card .profile-image .status .status-badge { + margin-left: 5px; + border: dotted 1px #444; + background-color: transparent; + font-weight: 400; + color: #444; + height: 17px; + padding: 0 5px; + font-size: 11px; + padding-left: 5px; + padding-right: 5px; } + + .b2b-profile-card .profile-details { + background: #fff; } + .b2b-profile-card .profile-details label { + display: block; + cursor: text; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-weight: bolder; + font-size: 14px; + color: #333; + padding: 0; + margin: 0; } + .b2b-profile-card .profile-details div { + margin: 0; + font-size: 14px; + color: #333; + padding-bottom: 6.5px; } + + .b2b-profile-card .b2b-add-user { + background: white; + border-style: dotted; + font-size: 16px; + color: #333; + position: relative; } + .b2b-profile-card .b2b-add-user i { + font-size: 30px; + padding-bottom: 15px; } + + .b2b-profile-card .atcenter { + cursor: pointer; + margin-top: 60%; + vertical-align: middle; + text-align: center; } + + .b2b-profile-card .tooltip { + cursor: pointer; } + .b2b-profile-card .tooltip .helpertext { + position: relative; + color: white; } + + .b2b-profile-card .tooltip-wrapper { + position: relative; } + + /* Overrides for tooltip absolute positioning */ + @media (min-width: 1025px) { + .b2b-profile-card .tooltip-size-control { + width: 100% !important; } } + + @-webkit-keyframes progress-bar-stripes { + from { + background-position: 0 0; } + to { + background-position: 80px 0; } } + + @keyframes progress-bar-stripes { + from { + background-position: 0 0; } + to { + background-position: 80px 0; } } + + .progress { + background-color: #e4e4e4; + border-radius: 4px; + height: 14px; + margin-bottom: 20px; + min-width: 250px; + overflow: hidden; + padding: 0; + position: relative; } + + a .progress { + margin-bottom: 0; } + + .progress .bar { + background-color: #666; + border-radius: 4px; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + height: 100%; + width: 0; } + + .progress-arrow { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + -webkit-justify-content: flex-end; + -ms-flex-pack: end; + justify-content: flex-end; } + + .progress-link + .usage-bar { + margin-top: 5px; } + + .progress-success .bar, .progress .bar-success { + background-color: #1b7e28; } + + .progress-warning .bar, .progress .bar-warning { + background-color: #ef6f00; } + + .progress-danger .bar, .progress .bar-danger { + background-color: #cf2a2a; } + + .progress.increment { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; } + + .progress.increment .bar:first-child:not(:last-child) { + border-right: none; + border-radius: 4px 0 0 4px; } + + .progress.increment .bar:last-child:not(:first-child) { + border-left: none; + border-radius: 0 4px 4px 0; } + + .progress.increment .bar + .bar:not(:last-child) { + border-left: none; + border-right: none; + border-radius: 0; } + + .progress.increment .bar:not(:first-child) { + border-left: 1px solid white !important; } + + .usage-bar { + display: table; + float: none; + width: 100%; + margin-bottom: 1px; } + + .usage-bar > .usage-text { + display: table-cell; + width: 1%; } + + .progress + .usage-bar { + margin-top: -15px; } + + .usage-bar .usage-text { + font-size: 1.4rem; } + + .usage-bar .usage-text:first-child { + white-space: nowrap; } + + .usage-bar .usage-text.text-right { + vertical-align: top; + font-size: 1.4rem; + width: auto !important; } + + .usage-bar .usage-text.text-right:before { + content: ""; + display: table; + height: .1em; } + + .usage-bar.billing-cycle .usage-text { + font-size: 1.4rem; } + + .usage-bar.billing-cycle .usage-text.text-right { + vertical-align: bottom; } + + .progress.autocolor [data-percentage="1"], .progress.autocolor [data-percentage="2"], .progress.autocolor [data-percentage="3"], .progress.autocolor [data-percentage="4"], .progress.autocolor [data-percentage="5"], .progress.autocolor [data-percentage="6"], .progress.autocolor [data-percentage="7"], .progress.autocolor [data-percentage="8"], .progress.autocolor [data-percentage="9"], .progress.autocolor [data-percentage="10"] .progress.autocolor [data-percentage^="2"], .progress.autocolor [data-percentage^="3"], .progress.autocolor [data-percentage^="4"], .progress.autocolor [data-percentage^="5"], .progress.autocolor [data-percentage="60"], .progress.autocolor [data-percentage="61"], .progress.autocolor [data-percentage="62"], .progress.autocolor [data-percentage="63"], .progress.autocolor [data-percentage="64"] { + background-color: #1b7e28; } + + .progress.autocolor [data-percentage="65"], .progress.autocolor [data-percentage="66"], .progress.autocolor [data-percentage="67"], .progress.autocolor [data-percentage="68"], .progress.autocolor [data-percentage="69"], .progress.autocolor [data-percentage^="7"], .progress.autocolor [data-percentage^="8"] { + background-color: #ef6f00; } + + .progress.autocolor [data-percentage^="9"], .progress.autocolor [data-percentage="100"] { + background-color: #cf2a2a; } + + .b2b-seek-bar-container { + position: relative; } + .b2b-seek-bar-container div { + position: absolute; } + .b2b-seek-bar-container .b2b-seek-bar-track-container { + width: 100%; } + .b2b-seek-bar-container .b2b-seek-bar-track { + width: 100%; + height: 6px; + background-color: #cccccc; + border-radius: 10px; } + .b2b-seek-bar-container .b2b-seek-bar-track-fill { + width: 100%; + height: 6px; + background-color: #cccccc; + border-radius: 10px; + width: 0; + background-color: #157BB2; + transition: width 0s linear; } + + .seek-bar-container .seek-bar-knob-container { + transition: left 0s linear; } + + .b2b-seek-bar-container .b2b-seek-bar-knob { + width: 14px; + height: 14px; + border-radius: 10px; + top: -4px; + left: -8px; + border: 1px solid #cccccc; + background: white; + cursor: pointer; } + + .b2b-seek-bar-container .b2b-seek-bar-knob:focus { + outline: thin dotted #666; } + + .b2b-seek-bar-container.vertical { + width: 100%; + height: 100%; + margin: 0 auto; + position: relative; + border-radius: 10px; } + .b2b-seek-bar-container.vertical .b2b-seek-bar-track-container { + position: relative; + height: 100%; } + .b2b-seek-bar-container.vertical .b2b-seek-bar-track { + position: absolute; + height: 100%; } + .b2b-seek-bar-container.vertical .b2b-seek-bar-track-fill { + position: absolute; + bottom: 0; + height: 0; + width: 100%; } + .b2b-seek-bar-container.vertical .b2b-seek-bar-knob-container { + transition: bottom .01s linear; + position: relative; + bottom: 0; } + .b2b-seek-bar-container.vertical .b2b-seek-bar-knob { + position: absolute; + border-radius: 10px; + top: -7px; + left: -4px; } + + .form-search .search-query { + width: 100% !important; } + + .form-search .well { + margin-top: 0; } + + .form-search > ul.nav > li.section { + min-height: 20px !important; } + + input.b2b-search-input-field { + margin-bottom: 0px; } + + .search-suggestion-list { + background-color: #FFFFFF; + border: 1px solid #ccc; + border-radius: 0 0 6px 6px; + box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); + margin-top: -5px; + max-height: 400px; + overflow-x: hidden; + overflow-y: auto; + padding: 15px 0; + position: absolute; + width: 100%; + z-index: 1000; } + .search-suggestion-list > li.active { + background-color: #cccccc; } + .search-suggestion-list:empty { + display: none; } + + .b2b-search-hightlight { + font-weight: bold; } + + input[type="text"]::-moz-placeholder { + color: #767676; + font-family: "Omnes-ECOMP-W02-Italic", Arial; } + + input[type="text"]:focus { + z-index: 1000; } + + input[type="text"] + .reset-field { + background-color: #FFFFFF; + height: 90%; + top: 5%; } + + .btn-search:focus { + outline: 1px dotted #0574ac; } + + .field-group input:not([type="button"])[disabled] ~ .btn-search { + background-color: #eee; } + + .btn-search[class*="btn"] { + background-color: #FFFFFF; + background-size: 20px 20px; + border-radius: 0 1.5rem 1.5rem 0; + height: 3rem; + min-width: 4.4rem !important; + right: 0.15rem; + top: 0.15rem; + width: 4.4rem; } + + .search-suggestion-wrapper { + margin-bottom: 15px; + position: relative; } + .search-suggestion-wrapper .no-result { + padding: 0px 15px; } + + .search-suggestion-item { + color: #333333; + line-height: 4rem; + padding: 0 15px; + position: relative; + z-index: 1000; } + .search-suggestion-item:hover { + background-color: #e4e4e4; + cursor: pointer; } + .search-suggestion-item:focus { + background-color: #e4e4e4; + cursor: pointer; } + .search-suggestion-item a { + color: #333333; + text-decoration: none; } + + .btn-search i { + color: #767676; } + + input.b2b-search-input-field:focus ~ .btn-search > i, .btn-search:focus > i { + color: #0568ae; } + + button.btn-search[disabled] { + cursor: not-allowed; } + button.btn-search[disabled] i { + color: #767676; } + + .innershadow { + -webkit-background-blend-mode: mutilply; + box-shadow: 0 3px 0 2px rgba(0, 0, 0, 0.08); } + + .linkSelectorModule { + position: relative; + height: 32px; + line-height: 20px; + border: 0px; + width: auto; + display: block; } + .linkSelectorModule .icon-primary-down { + font-size: 23px; + margin-top: -10px; + position: absolute; + top: 50%; + margin-left: -30px; } + .linkSelectorModule .selectModule { + background-color: transparent; + border: none; + color: #0568ae; + cursor: pointer; + border: 1px solid transparent; + box-shadow: none; + padding-right: 35px; + position: relative; + user-select: none; + font-size: 1.6rem; } + .linkSelectorModule .selectModule:focus { + border: 1px dotted #ccc; + box-shadow: none; + -moz-user-select: none; } + .linkSelectorModule .selectModule:hover { + text-decoration: underline; } + .linkSelectorModule .active + .moduleWrapper:before { + background-color: #FFFFFF; + border-color: #d2d2d2; + border-style: solid; + border-width: 1px 1px 0 0; + content: ""; + display: block; + height: 15px; + right: 122px; + margin: 0; + position: absolute; + top: -8px; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + width: 15px; } + .linkSelectorModule .moduleWrapper { + top: 40px; } + .linkSelectorModule ul.awd-module-list { + border-radius: 6px 6px 0px 0px; } + + .selectorModule .icon-primary-down { + font-size: 23px; + margin-top: -11px; + position: absolute; + right: 4px; + top: 50%; } + + .selectorModule .selectModule { + border: 1px solid #d2d2d2; + border-radius: 6px; + box-shadow: 1px 5px 2px -5px rgba(0, 0, 0, 0.15); + display: block; + width: 100%; + padding-left: 15px; + background-color: transparent; + cursor: pointer; } + .selectorModule .selectModule:focus { + border: 1px solid #0568ae; + -moz-user-select: none; } + .selectorModule .selectModule span.module-data { + position: absolute; + bottom: 6px; + line-height: 20px; } + .selectorModule .selectModule img + span.module-data { + padding-left: 45px; } + + .selectorModule .selectModule.active { + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; } + + .selectorModule .moduleWrapper { + position: absolute; + width: 100% !important; + border-top: none; } + + .selectorModule ul.awd-module-list { + border-radius: 0px 0px 6px 6px; } + + .selectorModule .large > img { + height: 30px; + position: absolute; + width: 30px; + top: 20px; + left: 15px; } + + .selectModule { + background-color: transparent; + font-family: "Omnes-ECOMP-W02", Arial; + color: #333333; + font-size: 1.6rem; + height: 36px; + line-height: 35px; + margin-bottom: 0; + position: relative; + text-align: left; + top: 0; + z-index: 10; + padding: 0px; + margin: 0px; + cursor: pointer; } + + .moduleWrapper { + background-color: #FFFFFF; + position: absolute; + color: #191919; + z-index: 9999; + box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15); + border-radius: 0px 0px 6px 6px; } + .moduleWrapper .module-list-item img { + height: 30px; + position: absolute; + width: 30px; + top: 30px; + left: 15px; + align-self: center; } + .moduleWrapper span { + display: block; + white-space: nowrap; + font-size: 1.5rem; } + + .awd-module-list { + overflow-y: auto; + z-index: 9999; + max-height: 360px; + border: 1px solid #d2d2d2; } + .awd-module-list .module-list-item > .module-data { + overflow: ellipsis; + white-space: nowrap; + line-height: 20px; + font-size: 1.6rem; + border-bottom: 1px dotted #959595; + margin: 0px 15px 0px 15px; + padding-right: 50px; + padding-bottom: 14px; + padding-top: 14px; + align-self: center; + width: 100%; } + .awd-module-list .module-list-item:hover { + background-color: #f2f2f2; } + .awd-module-list .module-list-item:active { + background-color: #f2f2f2; } + .awd-module-list .module-list-item[aria-selected="true"] { + background-color: #f2f2f2; } + + .module-list-item { + cursor: pointer; + overflow: hidden; + position: relative; + overflow: ellipsis; + white-space: nowrap; + z-index: 1000; + color: #191919; + display: flex; } + .module-list-item:last-of-type .module-data { + border-bottom: none; } + .module-list-item img + span.module-data { + padding-left: 45px; } + + .module-groups:first-of-type .module-list-item:last-of-type .module-data { + border-bottom: 1px solid #959595; } + + .module-groupitem { + padding-bottom: 4px; } + + .selectorModule.large { + height: 72px; + vertical-align: middle; + text-align: left; } + .selectorModule.large .moduleWrapper { + top: 71px; } + .selectorModule.large input { + height: 72px; + vertical-align: middle; + text-align: left; } + .selectorModule.large button { + height: 72px; + vertical-align: middle; + text-align: left; } + .selectorModule.large .selectModule img { + left: 15px; + top: 21px; } + + ul.module-groupitem li { + margin: 0 -15px 0 -15px; } + + span.module-data span { + display: block; + line-height: 20px; + font-size: 1.5rem; } + + li.module-groups { + cursor: default !important; + padding: 18px 15px 0px 15px; } + + li.module-list-item[selected]:before { + box-sizing: border-box; + display: inline-block; + font-size: 2em; + height: 1em; + position: absolute; + top: 20px; + right: 0px; + vertical-align: middle; + width: 1em; + color: #007a3e; } + + ul.module-optinalcta { + position: relative; + height: 44px; + margin-top: 0px; + border-bottom: 1px solid #d2d2d2; + border-left: 1px solid #d2d2d2; + border-right: 1px solid #d2d2d2; + border-radius: 0px 0px 6px 6px; } + ul.module-optinalcta li { + position: absolute; + bottom: 10px; } + ul.module-optinalcta a { + text-indent: 15px; + padding: 15px; } + + .b2b-slider-container { + position: relative; } + .b2b-slider-container.slider-disabled { + cursor: not-allowed !important; } + .b2b-slider-container div { + position: absolute; } + .b2b-slider-container .slider-track-container { + width: 100%; + cursor: pointer; } + .b2b-slider-container .slider-track { + width: 100%; + height: 6px; + background-color: #cccccc; + border-radius: 10px; + border: 1px solid #cccccc; } + .b2b-slider-container .slider-track-fill { + width: 100%; + height: 6px; + background-color: #cccccc; + border-radius: 10px; + width: 0; + background-color: #157BB2; + transition: width 0s linear; + border: 1px solid #cccccc; } + .b2b-slider-container .slider-knob-container { + transition: left 0s linear; } + .b2b-slider-container .slider-knob-container.slider-knob-hidden { + display: none !important; } + .b2b-slider-container .slider-knob { + width: 14px; + height: 14px; + border-radius: 10px; + top: -4px; + left: -8px; + border: 1px solid #cccccc; + background: white; + cursor: pointer; } + .b2b-slider-container .slider-knob:focus { + outline: thin dotted #666; } + + .b2b-slider-endpoints-container { + margin-top: 13px; + color: #333; + font-size: 12px; } + .b2b-slider-endpoints-container .b2b-slider-endpoints-left { + float: left; + line-height: 100%; } + .b2b-slider-endpoints-container .b2b-slider-endpoints-right { + float: right; + line-height: 100%; } + .b2b-slider-endpoints-container::after { + clear: both; + content: ""; + display: block; } + + .b2b-slider-container.vertical { + width: 100%; + height: 100%; + margin: 0 auto; + position: relative; + border-radius: 10px; } + .b2b-slider-container.vertical .slider-track-container { + position: relative; + height: 100%; } + .b2b-slider-container.vertical .slider-track { + position: absolute; + height: 100%; } + .b2b-slider-container.vertical .slider-track-fill { + position: absolute; + bottom: 0; + height: 0; + width: 100%; } + .b2b-slider-container.vertical .slider-knob-container { + transition: bottom 0s linear; + position: relative; + bottom: 0; } + .b2b-slider-container.vertical .slider-knob-container.slider-knob-hidden { + display: none !important; } + .b2b-slider-container.vertical .slider-knob { + position: absolute; + border-radius: 10px; + top: -7px; + left: -4px; } + + .icon-primary-spinner { + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%20id%3D%22svg-spinner%22%20x%3D%220px%22%20y%3D%220px%22%20xml%3Aspace%3D%22preserve%22%3E%0A%20%20%20%3Cpath%20fill%3D%22%23F5F5F5%22%20d%3D%22M18%2036C8.1%2036%200%2027.9%200%2018S8.1%200%2018%200s18%208.1%2018%2018-8.1%2018-18%2018zm0-31.5c-7.5%200-13.5%206-13.5%2013.5S10.6%2031.5%2018%2031.5c7.5%200%2013.5-6.1%2013.5-13.5%200-7.5-6-13.5-13.5-13.5z%22%2F%3E%0A%20%20%20%3Cpath%20fill%3D%22%230568AE%22%20id%3D%22spinner%22%20d%3D%22M30.7%205.3l-3.1%203.2c2.4%202.4%203.9%205.8%203.9%209.5%200%207.4-6.1%2013.5-13.5%2013.5S4.5%2025.4%204.5%2018%2010.6%204.5%2018%204.5V0C8.1%200%200%208.1%200%2018s8.1%2018%2018%2018%2018-8.1%2018-18c0-5-2-9.5-5.3-12.7z%22%3E%0A%20%20%20%20%20%20%3CanimateTransform%20%0A%20%20%20%20%20%20%20%20%20attributeType%3D%22xml%22%0A%20%20%20%20%20%20%20%20%20attributeName%3D%22transform%22%0A%20%20%20%20%20%20%20%20%20type%3D%22rotate%22%0A%20%20%20%20%20%20%20%20%20from%3D%220%2018%2018%22%0A%20%20%20%20%20%20%20%20%20to%3D%22360%2018%2018%22%0A%20%20%20%20%20%20%20%20%20dur%3D%221.0s%22%0A%20%20%20%20%20%20%20%20%20repeatCount%3D%22indefinite%22%0A%20%20%20%20%20%20%2F%3E%0A%20%20%20%3C%2Fpath%3E%0A%3C%2Fsvg%3E"); + height: 50px; + width: 50px; } + + .icon-primary-spinner.small { + margin-right: 5px; + height: 30px !important; + width: 30px !important; } + + .isIE .icon-primary-spinner, + .isIE .icon-primary-spinner.small { + animation: spinner 1s linear infinite; } + + .ds2-no-colors .icon-primary-spinner { + animation: spinner 1s linear infinite; + border: 5px dotted transparent; + border-radius: 50%; } + + @keyframes spinner { + 0% { + transform: rotate(0deg); } + 100% { + transform: rotate(359deg); } } + + .b2b-status-tracker > .btn-arrow:nth-of-type(1) { + margin-right: 10px; } + + .b2b-status-tracker > .btn-arrow:nth-of-type(2) { + margin-left: 20px; } + + .b2b-status-tracker > .btn-arrow { + height: 20px; + margin-top: 25px; + overflow: visible; } + .b2b-status-tracker > .btn-arrow > .btn-secondary > .icon-primary-left { + margin-right: 5px; + color: #0574ac; } + .b2b-status-tracker > .btn-arrow > .btn-secondary > .icon-primary-right { + color: #0574ac; } + + .b2b-status-tracker > .b2b-status-tracker-step { + padding: 0; + position: relative; } + + .b2b-status-tracker-step { + margin-left: 5px; } + + .b2b-status-tracker > .b2b-status-tracker-step .b2b-status-tracker-heading { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 14px; + color: #191919; + margin-bottom: 10px; } + + .b2b-status-tracker > .b2b-status-tracker-step.complete > .progress > .progress-bar { + width: 100%; + background-color: #1b7e28; } + + .b2b-status-tracker > .b2b-status-tracker-step.complete .icoControls-approval { + color: #1b7e28; } + + .b2b-status-tracker > .b2b-status-tracker-step.current > .progress > .progress-bar { + width: 100%; + background-color: #333333; } + + .b2b-status-tracker > .b2b-status-tracker-step.current .icon-misc-time { + color: #333333; } + + .b2b-status-tracker > .b2b-status-tracker-step.pending > .progress > .progress-bar { + width: 100%; + background-color: #ffb81c; } + + .b2b-status-tracker > .b2b-status-tracker-step.pending .icoControls-statusokay { + color: #ffb81c; } + + .b2b-status-tracker > .b2b-status-tracker-step.actionRequired > .progress > .progress-bar { + width: 100%; + background-color: #cf2a2a; } + + .b2b-status-tracker > .b2b-status-tracker-step.actionRequired .icoSecurityalerts-alert { + color: #cf2a2a; } + + .b2b-status-tracker > .b2b-status-tracker-step.notAvailable > .progress > .progress-bar { + width: 100%; + background-color: #767676; } + + .b2b-status-tracker > .b2b-status-tracker-step.notAvailable .icoControls-restricted { + color: #767676; } + + .b2b-status-tracker > .b2b-status-tracker-step > .progress { + position: relative; + border-radius: 1.5px; + height: 3px; + margin-bottom: 10px; + background-color: #c5c5c5; } + .b2b-status-tracker > .b2b-status-tracker-step > .progress > .progress-bar { + width: 0; + height: 3px; } + + .b2b-status-tracker > .b2b-status-tracker-step > .b2b-status-tracker-estimate { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 14px; + color: #191919; + margin-bottom: 10px; } + + .b2b-status-tracker > .b2b-status-tracker-step > .b2b-status-tracker-description { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 12px; + color: #767676; + padding-right: 15px; } + .b2b-status-tracker > .b2b-status-tracker-step > .b2b-status-tracker-description a { + cursor: pointer; } + + .step-indicator { + height: auto; + padding: 40px 0; } + + .step-heading { + color: #333333; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 3.8rem; + line-height: 0.8; } + + .steps { + display: flex; + height: 5px; + margin-top: 60px; + position: relative; } + + .steps li { + color: #5a5a5a; + flex: 1; + margin-right: 5px; + background-color: #c4c4c4; + outline: 1px solid transparent; } + + .steps li:first-child { + border-radius: 4px 0 0 4px; } + + .steps li:last-child { + margin-right: 0; + border-radius: 0 4px 4px 0; } + + .steps li.step-on, + .steps li.step-done { + background-color: #007a3e; + color: #007a3e; + border: 1px solid transparent; } + + .step-text { + bottom: 29px; + display: inline-block; + font-size: 1.8rem; + margin-top: 0; + position: relative; + white-space: nowrap; } + + .step-on .step-text { + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + .steps li .step-text[data-large-text]:before { + content: attr(data-large-text) " "; } + + .step-confirmation { + color: #007a3e; + margin-bottom: 30px; } + + .step-confirmation > div { + display: flex; } + + .step-confirmation > div i { + color: #007a3e; + font-size: 50px; + margin-right: 10px; } + + .step-confirmation.centered > div i { + margin-left: -60px; } + + .step-confirmation > div h3 { + font-size: 2.4rem; + margin: 26px 0 20px; } + + .step-confirmation > p { + margin: 0; } + + @media (max-width: 1024px) { + .step-indicator { + padding: 25px 0; } + .steps { + margin-top: 0; } + .step-heading { + font-size: 2.4rem; + margin-bottom: 11px; } + .step-text { + display: none; } + .step-on .step-text { + bottom: 6px; + display: block; + font-size: 1.2rem; + left: 0; + line-height: 1; + margin-top: 10px; + position: absolute; + top: 4px; } + .steps li .step-text[data-sm-text]:before { + content: attr(data-sm-text) " "; + color: #333333; } + .step-confirmation { + margin-top: 30px !important; } } + + @media (max-width: 767px) { + .step-confirmation.centered > div i { + margin-left: 0; } + .step-confirmation.centered > p { + margin-left: 40px; } + .step-confirmation > div h3 { + font-size: 1.8rem; + margin: 13px 0 10px; } + .step-confirmation > div i { + font-size: 30px; + margin-right: 10px; } } + + .step-indicator.vertical { + height: auto; } + + .vertical .step-heading { + font-size: 24px; } + + .vertical .steps { + display: block; + height: inherit; + width: 100%; } + + .vertical .steps li { + align-items: center; + background-color: transparent; + display: flex; + height: 60px; + margin: 0 0 4px; + padding: 0 0 0 20px; + position: relative; } + + .vertical .steps li .step-text { + align-self: center; + color: #0568ae; + display: block; + margin: 0; + position: relative; + font-size: 14px; + top: 0; } + + .vertical .steps li .step-text[data-large-text]:before { + content: attr(data-large-text) " "; } + + .vertical .steps li:after { + background-color: transparent; + border-left: 4px solid #d2d2d2; + content: ""; + height: 60px; + left: 0; + margin: 0; + padding: 0; + position: absolute; + top: 0; + width: 4px; } + + .vertical .steps li.step-on:after, + .vertical .steps li.step-done:after { + border-color: #0568ae; } + + .b2b-step-tracker { + height: auto; + padding: 0px 0px 0px 0px; } + .b2b-step-tracker .btn.btn-left { + margin-right: 10px; } + .b2b-step-tracker .btn.btn-right { + margin-left: 5px; } + .b2b-step-tracker .b2b-left-arrow { + float: left; + margin-top: -5px; } + .b2b-step-tracker .b2b-right-arrow { + float: right; + margin-top: -5px; } + .b2b-step-tracker .b2b-steps { + display: flex; + height: 5px; + margin-top: 30px; + position: relative; } + .b2b-step-tracker .b2b-steps li { + color: #767676; + flex: 1; + margin-right: 5px; + background-color: #767676; + outline: 1px solid transparent; + height: 3px; } + .b2b-step-tracker .b2b-steps li.b2b-step-done { + background-color: #1b7e28; + color: #007a3e; + height: 3px; } + .b2b-step-tracker .b2b-steps li.b2b-step-on { + background-color: #333333; + color: #333333; + height: 3px; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + .b2b-step-tracker .b2b-steps li .b2b-step-text { + bottom: 29px; + display: inline-block; + font-size: 14px; + margin-top: 0; + position: relative; + white-space: nowrap; } + .b2b-step-tracker .b2b-steps li .b2b-step-text[data-large-text]:before { + content: attr(data-large-text) " "; } + .b2b-step-tracker .b2b-steps li:first-child { + border-radius: 2px 0 0 2px; } + .b2b-step-tracker .b2b-steps li:last-child { + margin-right: 0; + border-radius: 0 2px 2px 0; } + + @media (max-width: 1024px) { + .b2b-step-tracker { + padding: 25px 0; } + .b2b-step-tracker .b2b-steps { + margin-top: 0; } + .b2b-step-tracker .b2b-steps li .b2b-step-text { + display: none; } + .b2b-step-tracker .b2b-steps li .b2b-step-text[data-sm-text]:before { + content: attr(data-sm-text) " "; + color: #333333; } + .b2b-step-tracker .b2b-steps li.b2b-step-on .b2b-step-text { + bottom: 6px; + display: block; + font-size: 5px; + left: 0; + line-height: 1; + margin-top: 10px; + position: absolute; + top: 4px; } } + + .strength-meter-container { + height: 26px; + max-width: 450px; } + + .strength-meter-gauge { + border-radius: 2px; + background-color: #d2d2d2; + height: 5px; + display: block; + position: relative; + outline: 1px solid transparent; } + + .strength-meter-gauge-fill { + height: 100%; + display: block; + border-radius: 2px; + text-indent: -9999px; + width: 0%; + border: 2px solid transparent; } + + .strength-meter-gauge-fill.strength-meter-animate { + transition: width 0.5s linear, background-color 0.5s linear; } + + .strength-meter-animate[style*="20"] { + background-color: #cf2a2a; } + + .strength-meter-animate[style*="20"] + .strength-meter-divider + .strength-meter-content:after { + content: "Unacceptable"; } + + .strength-meter-animate[style*="40"] { + background-color: #ea7400; } + + .strength-meter-animate[style*="40"] + .strength-meter-divider + .strength-meter-content:after { + content: "Weak"; } + + .strength-meter-animate[style*="60"] { + background-color: #ea7400; } + + .strength-meter-animate[style*="60"] + .strength-meter-divider + .strength-meter-content:after { + content: "Fair"; } + + .strength-meter-animate[style*="80"] { + background-color: #007a3e; } + + .strength-meter-animate[style*="80"] + .strength-meter-divider + .strength-meter-content:after { + content: "Good"; } + + .strength-meter-animate[style*="100"] { + background-color: #007a3e; } + + .strength-meter-animate[style*="100"] + .strength-meter-divider + .strength-meter-content:after { + content: "Excellent"; } + + .strength-meter-divider { + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + display: flex; + overflow: hidden; } + + .strength-meter-divider span { + background: transparent; + display: block; + flex-grow: 1; + border-right: solid 1px #fff; } + + .strength-meter-divider span:first-child { + border-radius: 2px 0 0 2px; } + + .strength-meter-divider span + .strength-meter-divider span { + border-radius: 0; } + + .strength-meter-divider span:last-child { + border-radius: 0 2px 2px 0; + border-right: 0; } + + .strength-meter-content { + font-size: 14px; + line-height: 1; + padding-top: 7px; + position: absolute; } + + .strength-meter-content:before { + font-family: "Omnes-ECOMP-W02", Arial; + content: "Password strength: "; } + + .strength-meter-content:after { + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + .strength-meter-container { + height: 26px; + min-width: 290px; + max-width: 450px; } + + .strength-meter-container .strength-meter-gauge { + border-radius: 2px; + background-color: #cccccc; + box-shadow: 0 1px 1px -1px #333 inset; + height: 5px; + display: block; + overflow: hidden; + position: relative; } + + .strength-meter-container > .strength-meter-gauge > .strength-meter-gauge-fill { + height: 100%; + box-shadow: 0 1px 1px -1px #999 inset; + display: block; + text-indent: -9999px; + width: 0%; } + + .strength-meter-container > .strength-meter-gauge > .strength-meter-gauge-fill.strength-meter-animate { + transition: width 0ms ease-out, background-color 0ms ease-in; } + + .strength-meter-container > .strength-meter-gauge > .strength-meter-divider { + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + display: flex; } + + .strength-meter-container > .strength-meter-gauge > .strength-meter-divider span { + background: transparent; + display: block; + flex-grow: 1; + border-right: solid 1px #fff; } + + .strength-meter-container > .strength-meter-gauge > .strength-meter-divider span:last-child { + border-right: 0; } + + .strength-meter-container > .strength-meter-content { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 14px; + line-height: 1; + padding-top: 7px; } + + .strength-meter-container > .strength-meter-content:before { + content: none; } + + .strength-meter-container > .strength-meter-content > .strength-meter-content-state { + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + .btn-switch-label { + display: flex; + align-items: center; } + .btn-switch-label:focus .btn-switch { + outline: 1px dotted #666; + outline-offset: 5px; } + .btn-switch-label input:focus .btn-switch { + outline: 1px dotted #666; + outline-offset: 5px; } + .btn-switch-label > span { + flex: 1; } + + .btn-switch { + background-color: #fff; + border: 1px solid #d2d2d2; + border-radius: 16px; + box-shadow: 0 4px 5px -5px rgba(0, 0, 0, 0.15) inset, 0 5px 5px -5px rgba(0, 0, 0, 0.15); + height: 32px; + overflow: hidden; + position: relative; + width: 80px; + user-select: none; } + /* .btn-switch input[type="checkbox"] { + left: 0; + margin: 0; + opacity: 0; + position: absolute; + top: 0; + transition: none; } + .btn-switch input[type="checkbox"] + .switch-overlay .btn-slider-on .activo { + font: 0px/0 "Omnes-ECOMP-W02", Arial; } + .btn-switch input[type="checkbox"] + .switch-overlay .btn-slider-on + .btn + .btn-slider-off .inactivo { + font: 0px/0 "Omnes-ECOMP-W02", Arial; } */ + .btn-switch input:checked + .switch-overlay { + left: 0; + transition: all .3s linear .0s; } + .btn-switch input:checked + .switch-overlay .switch-handle { + background-color: #007a3e; + background: linear-gradient(to bottom, #008744 0%, #007a3e 100%); + transition: background-color 0.3s linear 0s; + border: 1px solid transparent; } + .btn-switch input + .switch-overlay { + left: -48px; + transition: all .3s linear .0s; } + .btn-switch input + .switch-overlay .switch-handle { + background-color: #f2f2f2; + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + transition: background-color 0.3s linear 0s; + border: 1px solid #d2d2d2; } + .btn-switch input[disabled] + .switch-overlay { + left: 0; + width: 100% !important; + background-color: #d2d2d2; + color: #959595; + cursor: not-allowed !important; } + .btn-switch input[disabled] + .switch-overlay .btn-slider-on { + display: none; } + .btn-switch input[disabled] + .switch-overlay .activo { + display: none; } + .btn-switch input[disabled] + .switch-overlay .switch-handle { + display: none; } + .btn-switch input[disabled] + .switch-overlay .btn-slider-off { + left: 0; + text-align: center; + padding: 0; } + .btn-switch input[disabled]:checked + .switch-overlay { + left: 0; + width: 100% !important; + background-color: #fff; } + .btn-switch input[disabled]:checked + .switch-overlay .btn-slider-off { + display: none; } + .btn-switch input[disabled]:checked + .switch-overlay .btn-slider-off + .inactivo { + display: none; } + .btn-switch input[disabled]:checked + .switch-overlay .switch-handle { + display: none; } + .btn-switch input[disabled]:checked + .switch-overlay .btn-slider-on { + display: block; + text-align: center; + padding: 0; + color: #007a3e !important; + font-weight: bold; } + .btn-switch input[disabled]:checked + .switch-overlay .activo { + display: block; + text-align: center; + padding: 0; + color: #007a3e !important; + font-weight: bold; } + .btn-switch input[disabled]:checked + .btn-slider-on { + display: block; } + .btn-switch input[disabled] + .btn-slider-on + .switch-handle { + width: 100%; + margin: 0; } + .btn-switch input[disabled] + .btn-slider-on + .switch-handle + .btn-slider-off { + display: block; } + /* .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on { + display: none; } + .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on .activo { + border: medium none; + color: #666; + font: 16px/32px "Omnes-ECOMP-W02", Arial; + height: auto; + margin: 0 auto; + width: auto; } + .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on .activo:before { + display: none; } + .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off { + display: block; + padding: 0; + text-align: center; + color: #333333; } + .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off .inactivo { + border: medium none; + color: #666; + font: 16px/32px "Omnes-ECOMP-W02", Arial; + height: auto; + margin: 0 auto; + width: auto; } + .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off .inactivo:before { + display: none; } + .btn-switch input[type="checkbox"][disabled]:checked + .switch-overlay .btn-slider-on { + display: block; + padding: 0; + text-align: center; + color: #007a3e; } + .btn-switch input[type="checkbox"][disabled]:checked + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off { + display: none; } + .btn-switch input[type="checkbox"][disabled]:checked + .switch-overlay .activo { + color: #007a3e; + font-weight: bold; } */ + + .switch-overlay { + border-radius: 16px; + color: black !important; + font-size: 1.6rem; + height: 32px; + left: 0; + position: absolute; + top: -1px; + width: 126px; + overflow: hidden; } + + .btn-slider-on { + left: -1px; + text-align: left; + padding-left: 12px; + display: inline-block; + font-family: "Omnes-ECOMP-W02", Arial; + height: 32px; + line-height: 32px; + position: absolute; + top: 1px; + width: 80px; } + + .btn-slider-off { + display: inline-block; + font-family: "Omnes-ECOMP-W02", Arial; + height: 32px; + line-height: 32px; + position: absolute; + top: 1px; + width: 80px; + right: 1px; + text-align: right; + padding-right: 11px; } + + .switch-handle { + border-radius: 50%; + display: inline-block; + height: 26px; + left: 50px; + position: absolute; + top: 3px; + width: 26px; } + + .activo { + display: block; + font-size: 0.1px; + line-height: 40px; + overflow: hidden; } + .activo:before { + background-image: none; + border-left: 3px solid #007a3e; + content: " "; + height: 18px; + left: 22px; + margin: 2px auto; + position: absolute; + top: 5px; + width: 0; } + + .inactivo { + font-size: 0.1px; + line-height: 40px; } + .inactivo:before { + background-image: none; + border: 3px solid #959595; + border-radius: 100%; + content: " "; + display: block; + position: absolute; + top: 4px; + right: 3px; + height: 16px; + width: 16px; } + + .btn-switch.focused { + outline: 1px dotted #000; + outline-offset: 5px; } + + table { + max-width: 100%; + background-color: transparent; + border-collapse: collapse; + border-spacing: 0; + width: 100%; + margin-bottom: 20px; } + + table caption { + text-align: left; } + + table thead th { + vertical-align: bottom; } + + table th, + table td { + padding: 19px 20px; + line-height: 1; + font-size: 1.4rem; + text-align: left; + vertical-align: top; + word-wrap: break-word; } + + table th { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 1.6rem; + font-weight: normal; + color: #333333; + padding: 13px 20px; } + + table tbody td { + border-left: 1px solid #d2d2d2; + border-top: 1px solid #d2d2d2; } + + table tbody td:first-child { + border-left: none; } + + .tiny-accordion.iconleft.accordion-table-layout .toggle-header, + .tiny-accordion.iconleft.accordion-table-layout .toggle-header + .accordion-content, + .tiny-accordion.iconleft.accordion-table-layout .inactive-toggle-header { + padding: 0 0 0 50px; } + + .faux-table-cell, + .inactive-toggle-header .faux-table-cell { + display: table-cell; + width: 100%; + padding: 13px 0 10px 0; + font-size: 16px; + color: #333333; } + + .accordion-content .faux-table-cell { + display: table-cell; + width: 100%; + padding: 0 0 10px 0; } + + .faux-table-cell:last-child { + text-align: right; + min-width: 100px; + max-width: 150px; + width: 1%; + background-color: #f2f2f2; + color: #333333; + font-size: 14px; + border-left: 1px solid #d2d2d2; + padding: 0 20px 0 10px; } + + .tiny-accordion.iconleft.accordion-table-layout .toggle-header.opened .hide-when-expanded { + opacity: 1; } + + .tiny-accordion.iconleft.accordion-table-layout .toggle-header.opened .hide-when-expanded { + opacity: 0; + transition: opacity .3s linear .2s; } + + @media (max-width: 767px) { + table th, + table td { + padding: 19px 10px; } + table th:first-child, + table td:first-child { + padding: 19px 15px; } } + + .data-row-list ul > li { + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewport%3D%220%200%201%201%22%20style%3D%22width%3A100%25%3B%20height%3A1px%3B%22%3E%3Cstyle%3Eline%7Bstroke%3Argba(153%2C153%2C153%2C1)%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cline%20y2%3D%221%22%20y1%3D%221%22%20x1%3D%221%22%20x2%3D%22100%25%22%20stroke-dasharray%3D%221%2C%203%22%2F%3E%3C%2Fsvg%3E") !important; } + + table { + border-bottom: 1px solid #d2d2d2; } + + table th, + table td { + padding: 15px 15px 10px; } + + .data-row .col-1 { + white-space: nowrap; + padding: 15px 15px 0 15px; + position: relative; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 1.4rem; + border-top: 1px solid #d2d2d2; } + + .data-row.has-button .col-1 { + padding: 0; } + + .complex-table .data-row .col-1 { + color: #0568ae; + cursor: pointer; } + + .data-row.opened { + box-shadow: 0 -2px 0 0 #d2d2d2; } + + .data-row.opened td, + .data-row.opened th { + border-left: 1px solid transparent; + border-bottom: 1px solid transparent; } + + .data-row.opened + .data-row-list { + box-shadow: 0 1px 0 0 #d2d2d2; } + + .data-row.opened + .data-row-list > td { + padding-top: 0; } + + .data-row.opened + .data-row-list + .data-row.opened { + box-shadow: 0 -1px 0 0 #d2d2d2; } + + .data-row button { + background-color: transparent; + border: medium none; + border-radius: 0; + color: #0568ae; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 1.4rem; + left: 0; + margin: 0; + padding: 12px 15px 7px; + position: relative; + text-align: left; + top: 0; + vertical-align: middle; } + + .data-row button:focus { + outline: 1px dotted black; } + + .data-row .col-1 i { + top: -1px; + margin-right: 10px; + display: inline-block !important; } + + .data-row-list th:first-child { + background-color: inherit !important; + border-top: none; + padding: 0 15px 15px; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 1.4rem; } + + .data-row-list ul { + margin: 0 0 0 30px; } + + .data-row-list ul > li:before { + display: none; } + + .data-row-list ul > li { + /* background-image in tables.less */ + background-position: left 13px; + background-repeat: repeat-x; + background-size: 4px 1px; + display: table; + padding-left: 0; + width: 100%; } + + .data-row-list li div { + display: table-cell; + background-color: white; + float: left; + text-align: left; + padding-left: 0; + padding-right: 7px; } + + .data-row-list li div + div { + float: right; + text-align: right; + padding-right: 0; + padding-left: 7px; } + + .complex-table td:nth-child(1), + .complex-table td:nth-child(2), + .complex-table td:nth-child(3), + .complex-table td:nth-child(4), + .complex-table td:nth-child(5), + .complex-table td:nth-child(6), + .complex-table td:nth-child(7), + .complex-table td:nth-child(8), + .complex-table td:nth-child(9) { + white-space: nowrap; } + + th:nth-child(8) { + word-wrap: break-word; + word-spacing: 0; } + + .align-col-right { + text-align: right; } + + .complex-table th:not(:first-child), + .complex-table td:not(:first-child) { + text-align: right; } + + .striped tbody > tr td { + background-color: transparent !important; } + + .striped tbody > tr.data-row.odd, + .striped tbody > tr.data-row.odd + .data-row-list, + .striped tbody > tr.data-row.odd + .data-row-list li div { + background-color: #f2f2f2 !important; } + + .striped tbody > tr:not('.data-row'):nth-child(even) { + background-color: #f2f2f2; } + + .b2b-table-div .selectWrap { + width: 290px; + position: relative; + display: inline-table; + margin-bottom: 0px; } + + .b2b-external-sort-div { + float: right; + padding-bottom: 25px; } + + .b2b-external-sort-div .sortButton { + font-size: 36px; + border: 1px solid #ccc; + background: #FFF; + border-radius: 6px; + text-align: center; + background: linear-gradient(#fcfcfc, #f2f2f2); + background-blend-mode: multiply; + width: 1em; } + + .b2b-external-sort-label { + padding-bottom: 10px; } + + .b2b-external-sort-div a:hover { + cursor: pointer; } + + .b2b-external-sort-div a:hover, .b2b-external-sort-div a:focus { + text-decoration: none; } + + .b2b-external-sort-label label { + position: relative; } + + .b2b-external-sort-margin { + margin-right: 13px !important; } + + .b2b-table-sorter-icon [class*="icoArrows-"]:before { + font-size: 20px; } + + @media screen and (max-width: 950px) { + .b2b-external-sort-margin .selectWrap { + bottom: 0px !important; } } + + .tablesorter-default .tablesorter-header.sorter-false .tablesorter-header-inner { + background: 0 0; + cursor: default; } + + .tablesorter-default .tablesorter-header .tablesorter-header-inner { + /* background-image: url(images/tables/upanddown.png);*/ + background-position: center right; + background-repeat: no-repeat; + cursor: pointer; + white-space: normal; + display: inline-block; + vertical-align: baseline; + zoom: 1; + *display: inline; + *vertical-align: auto; + /* padding: 0 24px 0 0;*/ } + + .tablesorter-default .tablesorter-header.sorter-false .tablesorter-header-inner { + padding: 0; } + + .tablesorter-default .tablesorter-header.tablesort-sortable .tablesorter-header-inner span { + margin-right: 24px; + display: inline-block; } + + /* + .tablesorter-default thead .headerSortUp .tablesorter-header-inner,.tablesorter-default thead .tablesorter-headerAsc .tablesorter-header-inner,.tablesorter-default thead .tablesorter-headerSortUp .tablesorter-header-inner { + background-image: url(images/tables/up.png); + } + + .tablesorter-default thead .headerSortDown .tablesorter-header-inner,.tablesorter-default thead .tablesorter-headerDesc .tablesorter-header-inner,.tablesorter-default thead .tablesorter-headerSortDown .tablesorter-header-inner { + background-image: url(images/tables/down.png); + } + */ + .tablesorter-default thead .headerSortUp .tablesorter-header-inner, + .tablesorter-default thead .tablesorter-headerAsc .tablesorter-header-inner, + .tablesorter-default thead .tablesorter-headerSortUp .tablesorter-header-inner, + .tablesorter-default thead .headerSortDown .tablesorter-header-inner, + .tablesorter-default thead .tablesorter-headerDesc .tablesorter-header-inner, + .tablesorter-default thead .tablesorter-headerSortDown .tablesorter-header-inner { + padding-right: 0; + line-height: 16px; } + + .tablesorter-default thead .headerSortUp .tablesorter-header-inner:after, + .tablesorter-default thead .tablesorter-headerAsc .tablesorter-header-inner:after, + .tablesorter-default thead .tablesorter-headerSortUp .tablesorter-header-inner:after { + font-family: 'icoPrimary' !important; + speak: none; + font-style: normal; + font-size: 24px; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 14px; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + -moz-user-select: none; + -ms-user-select: none; + -webkit-user-select: none; + user-select: none; + content: "\ea3c"; + /* position: relative;*/ + position: absolute; + text-decoration: inherit; + display: inline-block; + transform: rotate(180deg); + margin-left: -22px; + margin-top: 2px; } + + .tablesorter-default thead .headerSortDown .tablesorter-header-inner:after, + .tablesorter-default thead .tablesorter-headerDesc .tablesorter-header-inner:after, + .tablesorter-default thead .tablesorter-headerSortDown .tablesorter-header-inner:after { + font-family: 'icoPrimary' !important; + speak: none; + font-style: normal; + font-size: 24px; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 14px; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + -moz-user-select: none; + -ms-user-select: none; + -webkit-user-select: none; + user-select: none; + content: "\ea3c"; + /* position: relative;*/ + position: absolute; + text-decoration: inherit; + display: inline-block; + margin-left: -22px; + margin-top: 2px; } + + .tablesorter-search-highlight { + font-weight: 700; } + + .tablesorter-headerRow th:focus { + outline: thin dotted #666; + outline-offset: -1px; } + + .b2b-table-message { + font-family: "Omnes-ECOMP-W02", Arial; } + .b2b-table-message .b2b-magnify-glass { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%20enable-background%3D%22new%200%200%2036%2036%22%3E%3Cpath%20d%3D%22M27.847%208.26c-1.805-1.803-4.202-2.795-6.751-2.795-2.548%200-4.945.993-6.749%202.796-1.803%201.803-2.796%204.2-2.796%206.75%200%201.879.543%203.681%201.576%205.242l-7.059%207.059c-.357.356-.554.831-.554%201.336-.001.505.196.98.554%201.337.357.356.832.552%201.336.552.503%200%20.977-.196%201.336-.553l7.047-7.048c1.576%201.062%203.402%201.622%205.309%201.622%202.55%200%204.948-.993%206.751-2.796%201.803-1.804%202.796-4.201%202.796-6.751%200-2.549-.993-4.947-2.796-6.751zm-6.761.96c3.186%200%205.778%202.592%205.778%205.778%200%203.186-2.592%205.778-5.778%205.778-3.186%200-5.778-2.592-5.778-5.778%200-3.185%202.592-5.778%205.778-5.778z%22%20fill%3D%22%23767676%22%2F%3E%3C%2Fsvg%3E"); + background-repeat: no-repeat; + background-position: center; + height: 50px; } + .b2b-table-message .b2b-alert { + font-size: 50px; } + .b2b-table-message .b2b-loading-dots { + font-size: 50px; + margin-bottom: 20px; } + .b2b-table-message .b2b-message { + text-align: center; + padding-bottom: 45px; + padding-top: 40px; + border-style: solid; + border-width: 1px; + border-top: none; + padding-bottom: 45px; + border-color: #d2d2d2; + width: 100%; + min-height: 220px; } + .b2b-table-message .b2b-error-title { + font-family: "Omnes-ECOMP-W02", Arial; + color: #444444; + line-height: 26px; + margin-top: 10px; } + .b2b-table-message .b2b-message-title { + color: #444; + font-family: "Omnes-ECOMP-W02", Arial; } + + .b2b-table-scrollbar { + border: 1px solid; + width: 651px; + position: relative; } + .b2b-table-scrollbar .b2b-table-inner-container { + width: 650px; + padding-left: 150px; + overflow-x: scroll; } + .b2b-table-scrollbar th:first-child { + background-color: #FFFFFF; } + .b2b-table-scrollbar td:first-child { + background-color: #FFFFFF; + border-top: 1px solid #cccccc; + border-right: 1px solid #cccccc; + margin-top: -0.5px; } + .b2b-table-scrollbar tr { + th: nth-child(2), td; } + .b2b-table-scrollbar tr :nth-child(2) { + border-left: none; } + .b2b-table-scrollbar tr:last-child > td:first-child { + border-bottom: 1px solid #cccccc; } + + .b2b-scrollbar-arrow-left { + float: left; + margin: 10px; } + + .b2b-scrollbar-arrow-right { + float: right; + clear: right; + margin: 10px; } + .b2b-scrollbar-arrow-right.btn-arrow .btn { + margin-right: 0; } + + .b2b-table-scrollbar ::-webkit-scrollbar { + height: 10px; } + + .b2b-table-scrollbar ::-webkit-scrollbar-thumb { + background: #666666; + border-radius: 5px; } + + .tabs { + margin-left: 0; + margin-bottom: 20px; + list-style: none; } + + .tabs > li > a { + display: block; } + + .tabs > li > a:hover, + .tabs > li > a:focus { + text-decoration: none; + background-color: #d2d2d2; } + + .tabs > .pull-right { + float: right; } + + .tabs:before, + .tabs:after { + display: table; + content: ""; + line-height: 0; } + + .tabs:after { + clear: both; } + + .tabs > li { + float: left; } + + .tabs > li > a { + padding-right: 20px; + padding-left: 20px; + margin-right: 3px; + line-height: 16px; } + + .tabs { + margin: 0; } + + .tabs > li { + margin-bottom: -1px; } + + .tabs > li:first-child { + margin-left: 20px; } + + .tabs > li > a { + padding: 12px 20px; + border: 1px solid #d2d2d2; + border-radius: 6px 6px 0 0; + background-color: #f2f2f2; + color: #5a5a5a; + border-color: #d2d2d2; } + + .tabs > li > a { + margin-right: 6px; } + + .tabs > li > a, + .tabs > li > a:hover, + .tabs > li > a:focus { + background-image: none; + background-color: #ffffff; + color: #5a5a5a; + border-color: #d2d2d2; + border-bottom: 1px solid transparent; + cursor: pointer; } + + .tabs.tabs-justified, + .tabs.promo-tabs { + width: 100%; + border-bottom: 0; + margin-bottom: -1px; } + + .tabs.tabs-justified > li, + .tabs.promo-tabs > li { + display: table-cell; + float: none; + width: 1%; + border-left: 1px solid #d2d2d2; } + + .tabs.tabs-justified > li.active, + .tabs.promo-tabs > li.active { + position: relative; + z-index: 1000; } + + .tabs.tabs-justified > li > a { + padding-right: 5px; + padding-left: 5px; } + + .tabs.tabs-justified > li > a, + .tabs.promo-tabs > li > a { + text-align: center; } + + .tabs.promo-tabs > li > a { + padding: 0; + margin: 0; + border-radius: 0; + border: none; + color: #0568ae; + font-size: 1.2rem; + text-align: center; + padding: 6px 10px 10px; + border-top: 4px solid #e6e6e6; + filter: none; + border-bottom: 1px solid #d2d2d2; + background-color: #f9f9f9; } + + .tabs > li:last-child > a { + margin-right: 0; } + + .tabs.promo-tabs > li.active > a { + color: #333333; + border-top: 4px solid #ea7400; + border-bottom-color: white; + background-color: #fff !important; + filter: none; + cursor: default; } + + .tabs.promo-tabs > li:first-child { + border-left: none; } + + .tabs.promo-tabs > li > a img { + max-width: inherit; + max-height: 39px; + margin: 0 auto 5px auto; + display: block; } + + .tabbable:before, + .tabbable:after { + display: table; + content: ""; + line-height: 0; } + + .tabbable:after { + clear: both; } + + + + .tabs.promo-tabs > li > a { + font-size: 2.0rem; + height: 70px; + padding: 20px 20px 24px; + background-color: #FFFFFF; + border-top: 5px solid #FFFFFF; + white-space: nowrap; } + + .tabs.promo-tabs > li.active > a { + border-top: 5px solid #0574ac; } + + .tabs.promo-tabs > li > a:hover { + color: #333333; } + + .tabs.promo-tabs > li { + width: auto; } + + .tabs > li[disabled="disabled"] > a:hover { + cursor: not-allowed; } + + .b2b-tags { + background-color: #f2f2f2; + -webkit-transition: all .3s ease-out; + -moz-transition: all .3s ease-out; + transition: all .3s ease-out; + margin: 3px 5px 3px 0; + padding: 2px 15px; + border-radius: 6px; + border: 1px solid #c9c9c9; + display: inline-block; } + .b2b-tags .tags__item { + font-size: 14px; + vertical-align: baseline; + zoom: 1; + color: #333; } + .b2b-tags .tags__item i { + color: #0574ac; + font-size: 14px; + font-weight: bold; + margin-left: 10px; } + .b2b-tags .tags__item i:hover { + cursor: pointer; } + .b2b-tags .tags__item i:focus { + outline: thin dotted #666; } + .b2b-tags .tags__item:last-child { + margin-right: 0; } + .b2b-tags .tags__item:hover { + text-decoration: none; } + .b2b-tags .tags__item:focus { + outline: 1px dotted #666; } + + .tooltip-size-control { + display: block; } + + .tooltip { + display: inline-block; + height: 20px; + vertical-align: middle; + margin: 1px 0 0 7px; } + + p .tooltip { + margin: -3px 7px 0 0; } + + label .tooltip { + margin: 1px 0 0 7px; } + + .tooltip .icon-primary-tooltip { + background: none; + border: none; + display: inline-block; + font-size: 20px; + height: 20px; + margin: 0; + position: relative; + width: 20px; } + + .tooltip .icon-primary-tooltip:before { + top: 0; } + + .tooltip .icon-primary-tooltip:focus { + text-decoration: none; + outline: 1px dotted black; } + + .tooltip.active .icon-primary-tooltip:focus { + outline: none; } + + .tooltip .arrow { + display: none; + border-color: transparent; + border-style: solid; + background-color: #0568ae; + height: 20px; + width: 20px; + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + opacity: 0; + transform: rotate(45deg); + z-index: 20; } + + .tooltip.active .icon-primary-tooltip[data-placement="top"] .arrow { + display: block; + bottom: 32px; + top: auto; + border-width: 0 1px 1px 0; } + + .tooltip.active .icon-primary-tooltip[data-placement="bottom"] .arrow { + border-width: 1px 0 0 1px; + display: block; + bottom: -33px; + top: auto; } + + .tooltip.active .arrow { + opacity: 1; } + + .tooltip .closingtooltip { + display: block; } + + .tooltip.active .closingtooltip { + display: none; } + + .tooltip-wrapper { + position: absolute; + margin-top: 20px; + left: 15px; + right: 15px; + display: none; + opacity: 0; + z-index: 1010; + text-align: left; } + + .helpertext { + background-color: #0568ae; + border: 1px solid transparent; + border-radius: 6px; + color: #fff; + display: none; + margin: 0; + padding: 25px; + position: relative; + text-align: left; + width: 100%; + top: 0; + z-index: 1009; } + + .tooltip .helpertext { + position: absolute; } + + .tooltip.active .icon-primary-tooltip[data-placement="bottom"] + .tooltip-wrapper .helpertext { + bottom: inherit; + top: 19px; } + + .tooltip.active .icon-primary-tooltip[data-placement="top"] + .tooltip-wrapper .helpertext { + top: inherit; + bottom: 38px; } + + .tooltip.active .tooltip-wrapper { + opacity: 1; + display: block; + margin-top: 0; } + + .tooltip.active .tooltip-wrapper .helpertext { + display: block; } + + .tooltip-onclick .btn.icon-primary-tooltip { + border: medium none; + box-shadow: none; + color: #0568ae; + font-size: 20px; + height: 34px; + line-height: 36px; + margin: 0; + min-width: 50px; + padding: 0; + position: absolute; + right: 0; + top: 0; } + + .tooltip-onclick .icon-primary-tooltip:before { + display: inline; + position: relative; } + + .tooltip-onclick textarea + .reset-field + .icon-primary-tooltip { + top: 4px; + right: 5px; + min-width: 40px; } + + .tooltip-onclick.active .helpertext:before, + .tooltip-onfocus.active .helpertext:before { + background-color: #0568ae; + border-color: transparent; + border-style: solid; + border-width: 1px 1px 0 0; + content: ""; + display: block; + height: 15px; + left: 17px; + margin: 0; + position: absolute; + top: -7px; + transform: rotate(-45deg); + width: 15px; } + + .tooltip-onclick.active .helpertext { + display: block; + opacity: 1; + margin: 14px 0 0; } + + .tooltip-onclick.active .helpertext:before { + left: inherit; + right: 18px; } + + .tooltip-onclick .reset-field { + right: 37px; } + + .tooltip-onclick .reset-field:before { + position: relative; + top: -1px; } + + .tooltip-onfocus.active .helpertext { + display: block; + margin: 14px 0 10px 0; } + + .popover-title { + display: block; + font-size: 14px; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-weight: bold; + margin-bottom: 8px; + white-space: normal; } + + .popover-content { + display: block; + font-size: 12px; + font-family: "Omnes-ECOMP-W02", Arial; + line-height: 1.5rem; + white-space: normal; } + + .popover-content span, + .popover-content p { + line-height: 1.5rem; } + + .popover-content p:last-child { + margin-bottom: 0; } + + .tooltip .tooltip-element { + position: relative; } + + .tooltip .icon-primary-tooltip:hover { + text-decoration: none; } + + .tooltip.active .tooltip-element[data-placement="top"] .arrow { + display: block; + bottom: 32px; + top: auto; } + + .tooltip.active .tooltip-element[data-placement="bottom"] .arrow { + display: block; + border-color: transparent transparent #0574ac; + bottom: -33px; + top: auto; } + + .tooltip.active .tooltip-element[data-placement="bottom"] + .tooltip-wrapper .helpertext { + bottom: inherit; + top: 19px; } + + .tooltip.active .tooltip-element[data-placement="top"] + .tooltip-wrapper .helpertext { + top: inherit; + bottom: 38px; } + + .b2b-tree { + padding: 0 10px 0 10px; + width: 320px; } + .b2b-tree ul { + list-style: none; + list-style-type: none; } + .b2b-tree a { + display: block; + padding: 0 0 5px 30px; + line-height: 22px; + margin-left: -10px; + font-size: 1.4rem; + outline-offset: -1px; } + .b2b-tree li:focus { + outline: none; } + .b2b-tree li:focus > a { + outline: thin dotted #666; + outline-offset: -1px; } + .b2b-tree ul li { + border-left: 1px solid #ccc; } + .b2b-tree ul li .b2b-tree-tooltip { + display: none; + position: absolute; + top: -25px; + left: 100%; + white-space: nowrap; + margin-left: 10px; + z-index: 1010; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 12px; } + .b2b-tree ul li .b2b-tree-tooltip-content { + background-color: #0568ae; + margin-left: 9px; + border-radius: 6px; + color: #fff; + padding: 25px; } + .b2b-tree ul li .b2b-tree-arrow-left { + width: 0; + height: 0; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + border-right: 10px solid #0568ae; + position: absolute; + top: 25px; } + .b2b-tree ul li.activeTooltip > a .b2b-tree-tooltip { + display: block; } + .b2b-tree ul ul { + padding: 0 0 0 20px; } + .b2b-tree ul > li { + position: relative; + line-height: 18px; } + .b2b-tree a > span.b2b-tree-node-icon { + background-color: #FFF; + display: inline; + margin: 0; + padding: 0; + position: absolute; + left: -11px; + top: 0; + line-height: 14px; + width: 11px; } + .b2b-tree a > span.b2b-tree-node-icon > i { + font-size: 20px; } + .b2b-tree a:only-child { + color: #0574ac; } + .b2b-tree a:only-child > span.b2b-tree-node-icon { + left: -11px; + border-radius: 50%; + line-height: 7px; + top: 0; } + .b2b-tree a:only-child > span.b2b-tree-node-icon > i { + background-color: inherit; + background: #fff; } + .b2b-tree a > span.b2b-tree-node-icon > i.icon-primary-circle { + background-color: inherit; + background: #fff; + font-size: 5px; } + .b2b-tree a.b2b-locked-node:after { + content: "\ec58"; + float: right; + font-family: 'icoSecurityalerts' !important; } + .b2b-tree a:hover .b2b-locked-node:after { + text-decoration: none; } + .b2b-tree ul li:first-child > a:only-child > span.b2b-tree-node-icon { + left: -11px; + border-radius: 50%; + line-height: 12px; } + .b2b-tree ul li:last-child > a:only-child > span.b2b-tree-node-icon { + height: 27px; + background-color: #fff; } + .b2b-tree li a + ul { + height: 0; + overflow: hidden; } + .b2b-tree li a.active + ul { + height: auto; + overflow: visible; } + .b2b-tree li a.grp { + font-family: "Omnes-ECOMP-W02-Italic", Arial; } + .b2b-tree li a.grp.active { + color: #333; } + .b2b-tree span.end { + left: -6px !important; + top: 5px !important; } + .b2b-tree span.first-link { + width: 3px !important; + height: 15px !important; + top: 0px !important; + left: -2px !important; + background: #fff; } + + /* .b2b-tree-checkbox { + padding: 0 10px 0 10px; + width: 320px; } + .b2b-tree-checkbox ul { + list-style: none; + list-style-type: none; } + .b2b-tree-checkbox a { + display: block; + padding: 0 0 5px 30px; + line-height: 22px; + margin-left: -10px; + font-size: 14px; + outline-offset: -1px; } + .b2b-tree-checkbox li:focus { + outline: none; } + .b2b-tree-checkbox li:focus > a { + outline: thin dotted #666; + outline-offset: -1px; } + .b2b-tree-checkbox ul li { + border-left: 1px solid #ccc; } + .b2b-tree-checkbox ul ul { + padding: 0 0 0 20px; } + .b2b-tree-checkbox ul > li { + position: relative; + line-height: 18px; } */ + /* .b2b-tree-checkbox a > span.nodeIcon { + background-color: #FFF; + display: inline; + margin: 0; + padding: 0; + position: absolute; + left: -11px; + top: 0; + line-height: 14px; + width: 11px; } */ + /* .b2b-tree-checkbox a > span.nodeIcon > i { + font-size: 20px; } */ + .b2b-tree-checkbox a > span.nodeIcon.end { + margin-top: 10px; } + .b2b-tree-checkbox a:only-child { + color: #0574ac; } + .b2b-tree-checkbox a:only-child > span.nodeIcon { + left: -11px; + border-radius: 50%; + line-height: 7px; + top: 0; } + .b2b-tree-checkbox a:only-child > span.nodeIcon > i { + background-color: inherit; + background: #fff; } + .b2b-tree-checkbox a > span.nodeIcon > i.icon-primary-circle { + background-color: inherit; + background: #fff; + font-size: 5px; } + .b2b-tree-checkbox ul li:first-child > a:only-child > span { + left: -11px; + border-radius: 50%; + line-height: 12px; + top: 0px; } + .b2b-tree-checkbox ul li:first-child > a:only-child > span.end { + margin-top: 0px; } + .b2b-tree-checkbox ul li:first-child > a:only-child > span i.icon-primary-circle { + top: 8px; } + .b2b-tree-checkbox ul li:last-child > a:only-child > span { + height: 34px; + background-color: #fff; } + .b2b-tree-checkbox li a + ul { + height: 0; + overflow: hidden; } + .b2b-tree-checkbox li a.active + ul { + height: auto; } + .b2b-tree-checkbox li a.grp { + font-family: "Omnes-ECOMP-W02-Italic", Arial; } + .b2b-tree-checkbox span.end { + left: -6px !important; } + .b2b-tree-checkbox .checkbox { + margin-bottom: 0px; + margin-top: 2px; + font-size: 14px; } + .b2b-tree-checkbox .checkbox input:indeterminate + .skin:after { + content: "\2014"; + padding-left: 2px; + font-family: inherit !important; + line-height: inherit !important; } + /* .b2b-tree-checkbox span.first-link { + width: 3px !important; + height: 15px !important; + top: 0px !important; + left: -2px !important; + background: #fff; } */ + + .b2b-widget-window { + width: 147px; + right: 5px; + top: 60px; + position: absolute; + border: 1px solid #ccc; + background-color: #fff; + border-radius: 8px; + z-index: 1000; } + .b2b-widget-window li { + margin: 15px; } + + .b2b-widget-container { + background-color: #fff; + border-radius: 8px; + border: 1px solid #ccc; + position: relative; } + .b2b-widget-container .b2b-widget-header { + font-family: "Omnes-ECOMP-W02", Arial; + color: #333; + height: 55px; + padding-left: 15px; + padding-top: 19px; } + .b2b-widget-container .b2b-widget-header .header { + font-size: 18px; } + .b2b-widget-container .b2b-widget-header-icons { + font-size: 16px; + color: #0574ac; } + + .b2b-widget-header-icons button { + border: none; + background: transparent; + color: #0574ac; } + .b2b-widget-header-icons button:focus { + outline-style: solid; + outline-width: 1px; + outline-color: #0574ac; } + .b2b-widget-header-icons button:first-child { + margin-right: 0px; } + + .b2b-widget-container .b2b-widget-content { + height: 325px; + margin: 0; + padding: 20px; + position: relative; + border-top: 1px solid #ccc; } + + .b2b-widget-content .form-row:first-child { + margin-top: 0; } + + .b2b-widget-header-icons button.icoControls-gear:focus, .b2b-widget-header-icons button.icon-primary-close:focus { + outline: thin dotted #666; } + + .b2b-widget-header .icon-primary-close:before { + content: '-'; + display: inline-block; + margin: 0; + padding: 0; + outline: none; } + + .b2b-widget-window .arrow_box { + background: #fff; + border: 1px solid #ccc; } + + .b2b-widget-window.arrow_box:after, .b2b-widget-window.arrow_box:before { + bottom: 100%; + left: 75%; + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; + pointer-events: none; } + + .b2b-widget-window.arrow_box:after { + border-color: rgba(255, 255, 255, 0); + border-bottom-color: #fff; + border-width: 10px; + margin-left: 1px; } + + .b2b-widget-window.arrow_box:before { + border-color: rgba(204, 204, 204, 0); + border-bottom-color: #ccc; + border-width: 11px; + margin-left: 0px; } + + /************************** Overrides for Filters ***************************/ + .filter-container .filter-header h2 { + line-height: 1 !important; + margin: 0 !important; } + + .filter-container .icon-primary-spinner:before { + content: none; } + + .filter-container .fixed-230-subnav { + margin: 10px !important; + width: inherit !important; } + + .filter-container .unlinked:focus { + outline: thin dotted #666 !important; } + + .filter-container .unlinked.active { + color: inherit !important; } + + .filter-container .fixed-230-subnav a > i { + background: none; } + + .filter-container .fixed-230-subnav ul { + margin: 0 0 10px 10px; } + + /************************** Overrides for Filters ***************************/ + .row .filter-container { + background-color: #fff; } + + .filter-header { + overflow: hidden; + padding: 20px 0; + position: relative; } + + .filter-header h2 { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 2.4rem; + margin-bottom: 0; } + + .filter-selected { + border-top: 1px solid #ccc; + padding-top: 20px; } + + .filter-selected > span { + font-size: 1.3rem; + text-transform: uppercase; } + + .filter-selected > a.clear-all-filters { + float: right; + font-size: 1.4rem; } + + .filter-selected > span, + .filter-selected > a.clear-all-filters { + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + + .filter-selected-group { + padding-top: 15px; } + + .filter-selected-badge { + background-color: #f2f2f2; + border-radius: 15px; + display: inline-block; + font-size: 1.4rem; + margin-bottom: 10px; + padding: 0 0 0 12px; } + + .filter-selected-badge .icoControls-optionsoff { + background: transparent none repeat scroll 0 0; + border: medium none; + font-size: 2.5em; + margin: 0; + padding: 0; } + + .filters .fixed-230-subnav > ng-transclude > div:first-child { + border-top: 1px solid #ccc; } + + .filters .fixed-230-subnav > ng-transclude > div { + border-bottom: 1px solid #ccc; } + + .filter-results { + align-items: center; + border-bottom: 1px solid #ccc; + display: flex; + flex-wrap: wrap; + height: 50px; + -webkit-justify-content: space-between; + -ms-flex-pack: justify; + justify-content: space-between; } + + .filter-results-sortby > span { + text-transform: uppercase; } + + .filter-results-view .icon-primary-content-gridguide { + font-size: 2em; + margin-right: 0; } + + .filter-container .fixed-230-subnav > ng-transclude > div > a { + font-size: 1.8rem; + margin: 0; + padding: 15px 20px 15px 0; + color: #0574ac !important; + cursor: pointer !important; + font-family: "Omnes-ECOMP-W02", Arial !important; + outline-offset: inherit !important; + position: relative; + height: auto; + width: auto; } + + .filter-container .fixed-230-subnav a > i { + right: 0; + top: 15px; } + + .filter-container .fixed-230-subnav .icon-primary-collapsed:before, .filter-container .fixed-230-subnav .icon-primary-expanded:before { + float: right; } + + .filter-container .fixed-230-subnav ul.collapse { + position: inherit; + transition: height 0.5s ease; + height: 0; + overflow: hidden; } + + .filter-container .checkbox .icon-primary-spinner { + height: 24px; + position: absolute; + width: 24px; } + + .fixed-230-subnav.affix { + margin: -28px 0 0; } + + #nav-menu .b2b-menu, + #nav-menu .fixed-230-subnav { + margin: 0; } + + .b2b-menu > li, + .fixed-230-subnav > div { + border-bottom: 1px solid #ccc; + line-height: 4.0rem; } + + .b2b-menu > li:first-child, + .fixed-230-subnav > li:first-child { + border-top: 1px solid #ccc; } + + .b2b-menu div > a, + .fixed-230-subnav div > a { + color: #0574ac; + cursor: pointer; + display: block; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 1.4rem; + margin: 0; + outline-offset: -1px; + padding: 0 10px; + position: relative; } + + .fixed-230-subnav div > a.live { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + color: #666; } + + .fixed-230-subnav > ng-transclude > div li > a { + display: block; + font-size: 1.4rem; + line-height: 20px; } + + .fixed-230-subnav > ng-transclude > div li > a.active { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + text-decoration: none; + color: #666; } + + #nav-menu .fixed-230-subnav a > i { + top: 10px; } + + .fixed-230-subnav > li > a.active > i:after { + display: none; } + + .b2b-menu ul, + .fixed-230-subnav ul { + margin: 0 0 10px 0; } + + .b2b-menu ul div a, + .fixed-230-subnav ul div a { + padding: 0 10px; } + + .unlinked { + outline: medium none !important; + text-decoration: none !important; } + + @media (max-width: 1024px) { + .filter-container .fixed-230-subnav { + margin: 0 20px; + width: auto; } + .filter-container .fixed-230-subnav > li { + margin: 0; } + .row .filter-container { + display: none; + height: 100%; + left: 0; + position: fixed; + overflow: auto; + top: 0; + transition: all 0.5s ease 0s; + width: 285px; + z-index: 9999; } + .filter-header { + padding-left: 20px; } + .filter-selected { + margin: 0 20px 10px; } } + + .b2b-pane-selector-wrapper { + width: 100%; + display: block; + border-top: solid 1px #ccc; + border-bottom: solid 1px #ccc; } + .b2b-pane-selector-wrapper .side-nav { + width: 20% !important; + display: inline-block; + float: left; } + .b2b-pane-selector-wrapper .pane-container { + width: 80%; + vertical-align: top; + margin: 0; + padding-top: 30px; + border-left: solid 1px #ccc; + font-family: "Omnes-ECOMP-W02", Arial; + display: none; } + .b2b-pane-selector-wrapper .pane-container.active { + display: inline-block; } + .b2b-pane-selector-wrapper .pane-container .pane-container-top { + padding-left: 15px; } + .b2b-pane-selector-wrapper .pane-container .panes { + display: -webkit-flex; + display: flex; + border-top: solid 1px #ccc; + margin-top: 30px; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block { + height: inherit; + overflow-y: auto; + border-right: solid 1px #ccc; + position: relative; + flex: 1; + -webkit-flex: 1; + /* Safari 6.1+ */ + -ms-flex: 1; + /* IE 10 */ } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block:focus { + outline: dotted 1px #333333; } + .b2b-pane-selector-wrapper .pane-container .search-block { + position: relative; + float: right; } + .b2b-pane-selector-wrapper .pane-container .search-block input[type="search"]:focus { + padding-right: 40px; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row p { + margin-top: 15px; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block div { + border-bottom: solid 1px #ccc; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row { + display: block; + padding: 19px 14px 19px 14px; + margin-top: 0px; + border: dotted 1px transparent; + border-bottom: solid 1px #ccc; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row:focus { + border: dotted 1px #333333 !important; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row:last-child { + border-bottom: none; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block > .no-content { + text-align: center; + border-bottom: none; + display: block; + position: absolute; + top: 45%; + left: 0; + right: 0; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block div:last-child { + border-bottom: none; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row span.margin-chk { + margin: 15px 15px 0px 15px; + float: left; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row .checkbox-selectall { + margin: 0px 0 0 24px !important; } + .b2b-pane-selector-wrapper .side-nav li { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + border: none; + border-top: solid 1px #ccc; + display: block !important; + width: auto !important; + margin-left: 0px !important; } + .b2b-pane-selector-wrapper .side-nav li.active { + background-color: #f6f6f6; + position: inherit !important; } + .b2b-pane-selector-wrapper .side-nav li.active > a { + font-size: 16px; + color: #333; + text-decoration: none; + border: none; + background-color: transparent; + padding: 20px 15px; + display: block; + height: auto; + border-left: 4px solid #0574ac; } + .b2b-pane-selector-wrapper .side-nav li > a { + font-size: 16px; + color: #333; + text-decoration: none; + border: none; + background-color: transparent; + padding: 20px 15px; + display: block; + height: auto; + text-align: left; } + .b2b-pane-selector-wrapper .side-nav li > a:focus { + border-right: dotted 1px #333333; } + .b2b-pane-selector-wrapper .side-nav li:first-child { + border-top: none; + margin-left: none !important; } + /********************* Utility CSS Starts **********************/ + .offscreen-text { + position: absolute; + left: -10000px; + top: auto; + width: 1px; + height: 1px; + overflow: hidden; } + + /********************* Utility CSS Ends **********************/ + /* Fix for alignment issue on Cancel link inside modal */ + .modal-footer > .cta-button-group { + line-height: 40px; } + + /* .att-dark-green { // Not used + color: #007a3e; + } */ + .colors-off-msg { + display: none; } + + button .colors-off-msg { + position: relative; } + + .ds2-no-colors .colors-off-msg { + display: block; } + + .ds2-no-colors [data-colordatatext] button .colors-off-msg { + font-size: 1.1rem; + line-height: normal; + padding: 5px 0; + position: absolute; + top: 0; + white-space: normal; + width: 60px; } + + /* Not used + .make-all-white * { + color: #fff; + } + .make-all-white a { + text-decoration: underline; + } */ + .loader > span { + display: block; + padding-top: 20px; } + + .modal > .loader { + left: 50%; + margin-left: -25px; + margin-top: -25px; + position: absolute; + top: 50%; } + + #pageLevelLoader.modal { + background-color: transparent; + border: none; + box-shadow: none; + top: 40%; } + + .modal.fade .loader { + display: none; } + + .modal.fade.in .loader { + display: block; } + + .btn.disabled[data-loading-text] { + padding: 0 19px 0 18px; + line-height: 46px; } + + .btn.disabled[data-loading-text] img { + position: relative; + top: 2px; } + + /* Seems to already be in docs.css + .fixed-230.leftnav { + position: relative; + } + .fixed-230-subnav { + margin: 10px; + } + .fixed-230-subnav > li:first-child { + border-top: none; + } + .fixed-230-subnav > li { + border-bottom: 1px solid #d2d2d2; + } + .fixed-230-subnav > li > a { + display: block; + font-size: 1.4rem; + line-height: normal; + margin: 0 -9px; + padding: 11px 35px 12px 9px; + outline-offset: 0; + position: relative; + } + .fixed-230-subnav > li > a.live { + color: #333333; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + } + .fixed-230-subnav a > i { + right: 10px; + margin: 0; + position: absolute; + top: 10px; + } + .fixed-230-subnav a > i:after { + display: none; + } + .fixed-230-subnav > li li > a { + display: block; + font-size: 1.4rem; + line-height: 18px; + } + .fixed-230-subnav > li li > a.active { + color: #333333; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + text-decoration: none; + } + .fixed-230-subnav ul { + margin: 0 0 10px; + } */ + .unlinked { + color: #0568ae !important; + font-family: "Omnes-ECOMP-W02", Arial !important; } + + .unlinked.active { + color: inherit !important; } + + /* @media (max-width: 767px) { + .row.has-leftnav { + flex-wrap: wrap; + } + .row.has-leftnav .fluid-space { + padding-right: 0; + } + .row .fixed-230 { + background-color: #fff; + width: auto; + } + .row .leftnav { + background-color: #fff !important; + display: block !important; + } + .fixed-230-subnav { + margin: 10px 0 0; + width: 100%; + } + .fixed-230-subnav > li { + margin-left: -15px; + margin-right: -15px; + } + .fixed-230-subnav > li:first-child { + border-top: 1px solid #d2d2d2; + } + .fixed-230-subnav > li > a { + margin: 0; + } + .fixed-230-subnav a:hover, + .fixed-230-subnav a:focus { + text-decoration: none !important; + } + .fixed-230-subnav > li li > a { + padding: 5px 10px; + } + .fixed-230-subnav > li li > a.active { + color: inherit; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + } + } */ + @keyframes DOMinsertion { + from { + outline-color: transparent; } + to { + outline-color: transparent; } } + + @-moz-keyframes DOMinsertion { + from { + outline-color: transparent; } + to { + outline-color: transparent; } } + + @-webkit-keyframes DOMinsertion { + from { + outline-color: transparent; } + to { + outline-color: transparent; } } + + @-ms-keyframes DOMinsertion { + from { + outline-color: transparent; } + to { + outline-color: transparent; } } + + @-o-keyframes DOMinsertion { + from { + outline-color: transparent; } + to { + outline-color: transparent; } } + + .ajaxed, + .modal.fade.in .modal-header, + .modal.fade.in .modal-body, + .modal.fade.in .modal-footer { + animation-duration: 0.01s; + -o-animation-duration: 0.01s; + -ms-animation-duration: 0.01s; + -moz-animation-duration: 0.01s; + -webkit-animation-duration: 0.01s; + animation-name: DOMinsertion; + -o-animation-name: DOMinsertion; + -ms-animation-name: DOMinsertion; + -moz-animation-name: DOMinsertion; + -webkit-animation-name: DOMinsertion; } + + .dda-css-override ul.nav-tabs { + margin-bottom: 0; } + + + .formsWithinProcessButton { + margin-right: 0px; } + + .heading-sub-section-form { + font-size: 2.4rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; + margin-top: 10px; } + + .heading-small-form { + font-size: 1.6rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-top: 0px; } + + .icon-primary-form-sizeL { + font-size: 50px; } + + .icon-primary-form-size { + font-size: 30px; } + + .spanformfix { + margin-right: 15px !important; } + + @media (max-width: 767px) { + .heading-sub-section-form { + font-size: 1.8rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; + padding-top: 10px; + margin-top: 30px; } + .heading-small-form { + font-size: 1.4rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-top: 0px; } } + + @media (max-width: 479px) { + .icon-primary-form-resizeL { + display: none; } + .icon-primary-form-resize { + display: none; } + .heading-center-form { + margin-left: 20px; } } + + @media (min-width: 480px) { + .icon-primary-form-resizeL { + display: none; } + .icon-primary-form-resize { + display: inherit; } + .icon-primary-center-min { + margin-top: 30px; } } + + @media (min-width: 768px) { + .icon-primary-form-resizeL { + display: inherit; + margin-top: 30px; } + .icon-primary-form-resize { + display: none; } + .center-form-align { + margin-top: 35px; } } + + @media (min-width: 1024px) { + .icon-primary-form-resizeL { + display: inherit; + margin-top: 0px; } + .icon-primary-form-resize { + display: none; } + .center-form-align { + margin-top: 5px; } } + + .data-row.has-button td.col-1 { + padding: 0; } + + + .icon-primary-circle:before { + background-image: url("data:image/svg+xml,%3Csvg%20baseProfile%3D%22tiny%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%3E%3Ccircle%20fill%3D%22transparent%22%20stroke%3D%22%23666%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2218%22%20cy%3D%2218%22%20r%3D%2216%22%2F%3E%3C%2Fsvg%3E"); + content: ""; + position: absolute; + top: 0; + z-index: 1; } + + .b2b-drag-handle { + cursor: move; + -ms-interpolation-mode: bicubic; + margin-bottom: 40px; + height: 23px; + padding-right: 10px; + float: left; } + + .b2b-drag-over { + background-color: #d1d1d1; } + + .b2-drag-element { + background-color: #e8e8e8; } + + [draggable] { + -moz-user-select: none; + -khtml-user-select: none; + -webkit-user-select: none; + user-select: none; } + /* Flyout inputs color is not aligned */ + textarea, input { + color: #333; } + + .isIE .btn-primary.btn:focus::after, + .isIE .btn-specialty.btn:focus::after, + .isIE .btn-alt.btn:focus::after { + border: 1px dashed #fff !important; } + .b2b-config-section-container { + height: auto; + min-height: 330px; + width: 815px; + background-color: #fff; + border: 1px solid #ccc; + display: inline-table; + border-radius: 6px; } + + .b2b-config-section-first-div { + border-right: 1px solid #ccc; + height: auto; + min-height: 330px; } + + .b2b-config-section-icon-primary-font { + font-size: 50px; + height: 31px; + line-height: 31px; } + + .b2b-config-section-padding { + padding: 20px 20px 15px 15px; + height: auto; } + + .b2b-config-sec-flyout { + position: relative; + left: 10px; + float: right; + color: #0574ac; + font-size: 16px; + font-family: "Omnes-ECOMP-W02", Arial; } + + .b2b-config-sec-divider { + border-bottom: 1px solid #ccc; } + + .b2b-confi-sec-span-border { + border-right: 1px solid; + height: auto; } + + .b2b-config-sec-speed-div { + text-align: center; + margin-top: 20px; } + + .b2b-config-sec-label-font { + font-size: 16px; } + + .b2b-config-sec-expander-main { + padding: 0 5px 0px 15px; } + + .b2b-config-sec-expander-body .b2b-config-vlan-padding { + padding: 5px 15px 10px 0px; } + + .b2b-conif-sec-row-height { + height: 110px; } + + .b2b-config-sec-expander-body { + font-size: 14px; } + .b2b-config-sec-expander-body .b2b-config-vlan-data { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + padding-left: 15px; } + + .b2b-config-sec-expander-body-first-div { + border-top: 1px solid #ccc; } + + .b2b-config-sec-expander-body .tooltip { + position: static; + opacity: 1; } + + .b2b-config-section-container .row > [class*="span"] { + margin-right: 0px; } + + .b2b-config-vlan-icons { + font-size: 16px; + float: right; + margin-right: 0px; } + + .b2b-config-section-container .span6 { + width: 50%; } + + .b2b-config-sec-data-link-style { + position: relative; + left: 95%; + top: 30px; + border-radius: 50%; + width: 23px; + height: 23px; + background: #fff; + border: 1px solid #ccc; + color: #666666; } + + .b2b-config-sec-text-align { + text-align: center; + margin-top: 15px; + margin-bottom: 35px; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 14px; + color: #333333; } + + .b2b-config-port-text-align { + text-align: center; + margin-top: 15px; + margin-bottom: 8px; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 14px; + color: #333333; } + + .b2b-config-port-text-label { + margin-top: 6px; + margin-bottom: 8px; + font-size: 14px; + text-align: center; } + + .b2b-confi-sec-last-div p { + font-size: 14px; + padding: 10px 15px 0 15px; } + + .b2b-confi-sec-router-label { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 16px; + color: #333333; + float: left; + width: 100%; + margin-bottom: 7px; } + + .b2b-config-vlan-label { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 14px; + color: #333333; + margin-top: 1px; + margin-bottom: 9px; } + + .b2b-config-vlan-info { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 14px; + color: #333333; + margin-bottom: 1px; } + .b2b-config-vlan-info .icon-misc-pen { + padding-left: 7px; } + + .b2b-confi-sec-model-label { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 14px; + color: #333333; } + + .b2b-confi-sec-router-info { + float: left; + width: 62%; } + + .b2b-config-sec-speed-sec { + border-right: 1px solid #ccc; } + + .b2b-config-sec-speed-label { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 20px; + color: #333333; + text-align: center; } + .b2b-config-sec-speed-label i { + margin-left: 15px; + font-size: 16px; } + + .b2b-config-sec-yellow-flag-div { + width: 1.6%; + background-color: #ffb18c; } + + .b2b-config-sec-expander-icons { + margin-top: 6px; } + .b2b-config-sec-expander-icons .icon-misc-trash { + margin-right: 10px; } + + .b2b-config-sec-yellow-flag .b2b-config-sec-expander-icons { + left: 40px; } + + .b2b-config-sec-expander-body-icons .icon-misc-pen { + position: relative; + left: 18px; } + .b2b-directory-listing .center { + display: block; + margin: 2em auto; } + + .b2b-directory-listing .listBox { + height: 310px; + width: 450px; + padding-left: 1px; + padding-right: 1px; + font-family: "Omnes-ECOMP-W02", Arial; } + + .b2b-directory-listing .listBox:focus { + outline: thin dotted #666; } + + .b2b-directory-listing .b2b-directory-listing-no-results { + font-weight: bold; } + + .b2b-directory-listing .b2b-directory-listing-list { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5a5a5a; + overflow-x: hidden; + position: relative; + height: 300px; + border: 1px solid #333; + border-radius: 6px; + margin-bottom: 10px; } + + .b2b-directory-listing .b2b-directory-listing-item { + margin: 1px; + border: 1px solid transparent; + outline: none; + text-align: left; + overflow: hidden; + cursor: pointer; + padding-top: 13px; + padding-bottom: 7px; + padding-left: 15px; + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + word-wrap: break-word; } + .b2b-directory-listing .b2b-directory-listing-item:focus { + border: 1px #3399FF solid; } + + .b2b-directory-listing .b2b-directory-listing-item-selected { + color: #fff; + background-color: #3399FF; } + + .b2b-directory-listing input[type="text"] { + padding-right: 30px; } + .b2b-directory-listing input[type="text"]:focus, .b2b-directory-listing input[type="text"]:hover { + padding-right: 30px; } + + .b2b-directory-listing .row .btns { + margin-right: 90px; + margin-left: -115px; + margin-top: 100px; } + + .b2b-directory-listing .btn-remove { + margin-right: auto !important; + margin-bottom: 15px; } + .b2b-directory-listing .btn-remove i { + margin-right: 0; + color: #fff; + top: -1px; } + + .b2b-directory-listing .btn-remove-all { + margin-top: 0; + margin-bottom: 61px !important; + /* need to be removed */ + margin-right: auto !important; } + .b2b-directory-listing .btn-remove-all i { + margin-right: 0; + color: #fff; + top: -1px; } + + .b2b-directory-listing .btn-add { + margin-bottom: 15px !important; } + .b2b-directory-listing .btn-add i { + margin-right: 0; + color: #fff; + top: -1px; } + + .b2b-directory-listing .btn-add-all { + margin-top: 0; + margin-bottom: 61px !important; } + .b2b-directory-listing .btn-add-all i { + margin-right: 0; + color: #fff; + top: -1px; } + + .b2b-directory-listing .btn-search[class*="btn"] { + right: 0.09rem; } + + .b2b-directory-listing .btn { + width: 130px; } + + .b2b-directory-listing-disabled { + cursor: not-allowed; } + + .b2b-directory-listing-label-heading { + margin-top: 24px; + padding-bottom: 5px; } + + .b2b-dl-list-box option { + padding-top: 13px; + padding-bottom: 7px; + padding-left: 15px; } + + .b2b-dl-modal-button-div { + padding-top: 110px; + text-align: center; } + .b2b-tmpl-notification-card { + border-radius: 6px; + height: auto; + width: 420px; + background-color: #ffffff; + border: 1px solid rgba(0, 0, 0, 0.1); + border-radius: 8px; + overflow: hidden; } + .b2b-tmpl-notification-card .b2b-tmpl-card-header { + padding-left: 30px; + font-family: "Omnes-ECOMP-W02", Arial; + color: #333333; + font-size: 24px; + margin-top: 2px; + display: inline-block; + min-height: 60px; + position: relative; } + .b2b-tmpl-notification-card .b2b-tmpl-card-body { + padding: 0 30px 20px; + position: relative; } + .b2b-tmpl-notification-card .b2b-tmpl-card-header-title { + margin-top: 10px; } + .b2b-tmpl-notification-card .b2b-tmpl-card-corner-button { + box-shadow: 0 -50px 0 0 #f2f2f2 inset; + height: 69px; + position: absolute; + border-color: #f2f2f2 #f2f2f2 transparent transparent; + border-style: solid; + border-width: 35px; + height: 0; + right: -295px; + top: -4px; + width: 69px; + /*Old properties */ + box-shadow: none; + transform: none; } + .b2b-tmpl-notification-card .b2b-tmpl-card-corner-button .close { + height: 48px; + right: -40px; + top: -40px; + width: 48px; + position: relative; + /*Old properties */ + transform: none; } + .b2b-tmpl-notification-card .b2b-tmpl-card-corner-button .close:before { + color: #0568ae; + display: block; + font-size: 20px; + height: auto; + right: -4px; + top: 4px; + width: auto; + /*Old properties */ + left: auto; + height: auto; + bottom: auto; } + .b2b-tmpl-notification-card .b2b-tmpl-card-corner-button .close:focus { + outline: 1px dotted black; } + .b2b-tmpl-notification-card button.close { + -webkit-appearance: none; + moz-appearance: none; + appearance: none; } + .b2b-tmpl-notification-card .b2b-tmpl-card-icon-primary-cirlce { + width: 30px; + height: 30px; + border-radius: 50%; } + .b2b-tmpl-notification-card .b2b-tmpl-card-outer-cirlce { + background: #f0f5f5; + border-radius: 50%; + height: 16px; + width: 16px; + vertical-align: middle; } + .b2b-tmpl-notification-card .b2b-tmpl-card-inner-cirlce { + background: #fff; + width: 22px; + height: 22px; + position: relative; + border-radius: 50%; + display: block; + left: 4px; + top: 4px; + border: 1px solid #767676; } + .b2b-tmpl-notification-card .b2b-tmpl-card-row { + padding-top: 10px; } + .b2b-tmpl-notification-card .b2b-tmpl-card-sub-header { + margin-top: 0px; } + .b2b-tmpl-notification-card .b2b-tmpl-favourite-view-item { + background-color: #fff; + margin-top: 25px; + border-top: 1px solid #ccc; } + .b2b-tmpl-notification-card .b2b-tmpl-favourite-view-item .cta-button-group { + line-height: 40px; + padding-top: 20px; } + .b2b-tmpl-notification-card .b2b-tmpl-card-edit-section .cta-button-group { + line-height: 40px; + padding-top: 15px; } + .b2b-tmpl-notification-card .b2b-tmpl-card-add-item-container { + padding-top: 30px; } + .b2b-tmpl-notification-card .b2b-tmpl-card-link-active { + pointer-events: none; + cursor: default; + color: #ccc; } + .b2b-tmpl-notification-card .b2b-tmpl-card-cursor:hover { + cursor: pointer; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-icon { + text-align: center; + margin-top: 91px; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-icon i { + font-size: 99px; + color: #1b7e28; } + + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-heading { + color: #333333; + text-align: center; + margin-top: 20px; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-heading h1 { + font-size: 38px; } + + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-sub-heading { + color: #333333; + text-align: center; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-sub-heading h5 { + font-size: 18px; } + + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-info { + padding-left: 18%; + font-size: 16px; + margin-top: 20px; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-info ul { + list-style-type: disc; + list-style-position: inside; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-info li { + padding-top: 5px; } + + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-link-section { + font-size: 15px; + color: #0574ac; + margin-top: 20px; + text-align: center; + margin-bottom: 55px; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-link-section .b2b-tmpl-order-confirmation-link { + margin-right: 8%; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-link-section a { + cursor: pointer; } + .b2b-tmpl-profile-block-container { + min-height: 200px; + height: auto; + background-color: #fff; + border-radius: 8px; + border: 1px solid #ccc; + box-shadow: 0px 1px 1px 1px #ccc; + display: inline-table; + margin: 15px 15px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-title { + font-weight: bold; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-footer { + margin-bottom: 12px; + margin-top: 5px; + height: 35px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p { + word-wrap: break-word; + height: 61px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p:first-child { + margin-top: 10px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p:after { + content: ' '; + display: block; + border: 0.2px solid #ccc; + margin-top: 12px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details .radio { + margin-left: 15px; + height: 30px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p, .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details div { + padding: 2px 7px; + font-size: 14px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details .radio-label, .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details a { + font-size: 14px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p label, .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p span { + padding-left: 10px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-approval-icon { + color: #1b7e28; + float: right; + position: relative; + left: 10px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-approval-icon i { + color: #1b7e28; + float: right; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-link { + float: right; + position: relative; + left: -4px; } + .b2b-tmpl-profile-block-container a.link-profile { + position: relative; + left: -5px; + float: right; + margin-bottom: 16px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-radio { + position: relative; + top: -5px; } + .b2b-static-route-container { + padding-left: 32px; + display: inline-block; } + + .b2b-static-route-label-heading { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 5px !important; + color: #333333; + font-style: normal; + text-align: left; } + + label.b2b-static-route-label-heading { + margin-bottom: 12px; + margin-top: 15px; + display: block; } + + #b2b-static-route-input { + margin: 5px 0 5px; } + + .b2b-static-route-list { + margin-bottom: 30px; + width: 216px; + float: left; + margin-right: 20px; + max-height: 540px; + overflow-y: auto; } + .b2b-static-route-list .status-text { + flex: 1; + display: flex; + align-items: center; + outline: 0; } + + .b2b-static-route-list-item { + border: 1px #cccccc solid; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 5px; + display: flex; + cursor: pointer; } + .b2b-static-route-list-item > .status-bar { + padding: 20px 0 20px; + background-color: #ea7400; + border-radius: 0; + width: 10px; + display: inline-block; + margin-right: 20px; + height: 100%; + float: left; } + .b2b-static-route-list-item > .status-bar:after { + content: '.'; + visibility: hidden; } + .b2b-static-route-list-item > .status-bar-unedited { + padding: 20px 0 20px; + background-color: #ffb81c; + border-radius: 0; + width: 10px; + display: inline-block; + margin-right: 20px; + height: 100%; + float: left; + background-color: transparent; } + .b2b-static-route-list-item > .status-bar-unedited:after { + content: '.'; + visibility: hidden; } + + .b2b-static-route-list-item:focus { + outline: 1px dashed #00f; } + + .b2b-static-route-list-item--selected { + background: #f2f2f2; } + + .b2b-static-route-content { + display: inline-block; } + + .selectWrap::after { + align-items: center; + background-position: 7px 7px; + background-repeat: no-repeat; + background-size: auto 23px; + border-left: 1px solid transparent; + color: #0568ae; + display: flex; + font-size: 23px; + height: 36px; + margin-right: 0; + overflow: hidden; + position: absolute; + right: 0; + text-indent: 7px; + top: 0; + user-select: none; + width: 41px; + z-index: 0; + position: absolute !important; + display: flex !important; + } + + .card{ + border-radius: 5px; + } + + .card-header{ + height: 50px; + } + + .card-body{ + height: 150px; + } + + .card-footer{ + height: 50px; + } + + .dialog__close-btn { + border: 0; + background: #087ac2; + color: #ffffff; + position: absolute; + top: 8px; + right: 8px; + font-size: 1.2em; + display: block; + border: #087ac2 2px solid; + } + + .dialog{ + margin-top: 50px; + } + + .modalTitle{ + font-size: 35px; + } + + .defaultFontSize{ + font-size: 15px; + } + + + .tab-content{ + margin-right: 20px; + /* background-color: #006496; */ + color: rgb(0, 0, 0); + } + + .btn-sm{ + width: 30px; + height: 15px; + font-size: 10px; + } + \ No newline at end of file diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report-form-fields/run-report-form-fields.component.html b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report-form-fields/run-report-form-fields.component.html new file mode 100644 index 00000000..b0f15e38 --- /dev/null +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report-form-fields/run-report-form-fields.component.html @@ -0,0 +1,55 @@ + +
+ +
+

Report Run

+
+
+
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+
+ +
+ + {{listItem.name}} + +
+
+
+
+
+
+ + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
\ No newline at end of file diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report-form-fields/run-report-form-fields.component.spec.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report-form-fields/run-report-form-fields.component.spec.ts new file mode 100644 index 00000000..a273f9e0 --- /dev/null +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report-form-fields/run-report-form-fields.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { RunReportFormFieldsComponent } from './run-report-form-fields.component'; + +describe('RunReportFormFieldsComponent', () => { + let component: RunReportFormFieldsComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ RunReportFormFieldsComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(RunReportFormFieldsComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report-form-fields/run-report-form-fields.component.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report-form-fields/run-report-form-fields.component.ts new file mode 100644 index 00000000..4e751b83 --- /dev/null +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report-form-fields/run-report-form-fields.component.ts @@ -0,0 +1,129 @@ +import { Component, OnInit, Input, SimpleChange } from '@angular/core'; +import { RunService } from '../run.service'; +import { ActivatedRoute } from '@angular/router'; + +@Component({ + selector: 'app-run-report-form-fields', + templateUrl: './run-report-form-fields.component.html', + styleUrls: ['./run-report-form-fields.component.css'] +}) +export class RunReportFormFieldsComponent implements OnInit { + + @Input("formFieldList") formFieldList : {}[]; + @Input("reportId") reportId : string; + + + formFieldListValueArr : any[]; + finalQueryParamsObj : {}; + navigateToRun : boolean; + reportMode : string; + queryString : string; + + constructor(private _runService : RunService, private _route : ActivatedRoute ) { + this.formFieldListValueArr = new Array(); + this.finalQueryParamsObj = new Object(); + this.navigateToRun = false; + this.queryString = ""; + } + + ngOnInit() { + + this._route.params.subscribe(params => { + + this.reportId = params["reportId"]; + }); + + this._runService.getReportData(this.reportId) + .subscribe((response) => { + + if(response["formFieldList"].length > 0) + { + this.formFieldList = response["formFieldList"]; + this.reportMode = "FormField"; + } + else + { + this.reportMode = "Regular"; + this.navigateToRun = true; + + } + + console.log(this.navigateToRun); + + }); + } + + ngDoCheck() + { + if(this.navigateToRun == false) + { + this.formFieldListValueArr = this.formFieldListValueArr; + + for(let i=0; i { + this.navigateToRun = false; + if(response["formFieldList"].length > 0) + { + this.formFieldList = response["formFieldList"]; + this.reportMode = "FormField"; + + for(let i=0; i { + // console.log(responseFormFields); + // }); + + } + + + +} diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report-result-set/run-report-result-set.component.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report-result-set/run-report-result-set.component.ts index b852964b..caf00c63 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report-result-set/run-report-result-set.component.ts +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report-result-set/run-report-result-set.component.ts @@ -14,6 +14,7 @@ import { RunService } from '../run.service'; styleUrls: ['./run-report-result-set.component.css'] }) export class RunReportResultSetComponent implements AfterViewInit, OnInit { + @Input("reportId") reportId1 : string; @@ -83,6 +84,7 @@ export class RunReportResultSetComponent implements AfterViewInit, OnInit { this.displayedColumns.push(this.displayedColumnsArr[l].split(",")[1]); } + this.dataSource.data = this.displayedRowObj; this.dataSource.sort = this.sort; this.dataSource.paginator = this.paginator; diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report/run-report-datasource.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report/run-report-datasource.ts index f7068f0e..8c8d6222 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report/run-report-datasource.ts +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report/run-report-datasource.ts @@ -69,11 +69,14 @@ export class RunReportDataSource extends DataSource { return data; } + return data.sort((a, b) => { const isAsc = this.sort.direction === 'asc'; switch (this.sort.active) { // case 'name': return compare(a.name, b.name, isAsc); // case 'id': return compare(+a.id, +b.id, isAsc); + + default: return 0; } }); diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report/run-report.component.css b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report/run-report.component.css index ee874206..73eb736d 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report/run-report.component.css +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report/run-report.component.css @@ -1,3 +1,43 @@ + + +.lds-ring { + display: inline-block; + position: relative; + width: 64px; + height: 64px; +} +.lds-ring div { + box-sizing: border-box; + display: block; + position: absolute; + width: 80px; + height: 80px; + margin: 6px; + margin-top: -10px; + border: 10px solid #006496; + border-radius: 80%; + animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite; + border-color: #006496 transparent transparent transparent; +} +.lds-ring div:nth-child(1) { + animation-delay: -0.45s; +} +.lds-ring div:nth-child(2) { + animation-delay: -0.3s; +} +.lds-ring div:nth-child(3) { + animation-delay: -0.15s; +} +@keyframes lds-ring { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } +} + + /* .left { width: auto; float: left; diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report/run-report.component.html b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report/run-report.component.html index 172d76d3..70e3d5ae 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report/run-report.component.html +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report/run-report.component.html @@ -1,15 +1,22 @@ -
+ +
+
+ + +
- - +
@@ -17,7 +24,7 @@ - +
{{displayedColumnsArr[i].split(",")[0]}}
@@ -29,3 +36,4 @@ [pageSizeOptions]="[15, 25, 50, 100, 250]">
+ diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report/run-report.component.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report/run-report.component.ts index a8ac3642..1895cc35 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report/run-report.component.ts +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report/run-report.component.ts @@ -1,9 +1,9 @@ -import { AfterViewInit, Component, OnInit, ViewChild, Input, SimpleChange } from '@angular/core'; +import { AfterViewInit, Component, OnInit, ViewChild, Input, SimpleChange, SimpleChanges } from '@angular/core'; import { MatPaginator } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTable } from '@angular/material/table'; import { RunReportDataSource, RunReportFinalTableItem } from './run-report-datasource'; -import { ActivatedRoute } from '@angular/router'; +import { ActivatedRoute, Router } from '@angular/router'; import { HttpClient } from '@angular/common/http'; import { environment } from '../../../../../../../environments/environment'; import { RunService } from '../run.service'; @@ -13,8 +13,10 @@ import { RunService } from '../run.service'; templateUrl: './run-report.component.html', styleUrls: ['./run-report.component.css'] }) -export class RunReportComponent implements AfterViewInit, OnInit { +export class RunReportComponent implements OnInit { @Input("reportId") reportId1 : string; + @Input("reportMode") reportMode : string; + @Input("queryString") queryString : string; @ViewChild(MatPaginator, {static: false} as any) paginator: MatPaginator; @@ -27,29 +29,127 @@ export class RunReportComponent implements AfterViewInit, OnInit { IncomingReportId : string; displayedColumnsArr : string[]; displayedRowObj : RunReportFinalTableItem[]; + formFieldPresent : boolean; + showSpinner : boolean; + formFieldList : {}[]; + isReady : boolean; + responseFormFieldListLength : number; + NEWdisplayedColumns : string[]; + initCnt : number; - constructor(private _http : HttpClient, private _route : ActivatedRoute, private _runService : RunService){ + constructor(private _http : HttpClient, private _route : ActivatedRoute, private _runService : RunService, private _router : Router){ this.displayedColumnsArr = new Array(); this.displayedRowObj = new Array(); this.displayedColumns = new Array(); + this.formFieldList = new Array(); + // this.formFieldPresent = false; + this.showSpinner = true; + this.isReady = false; + this.NEWdisplayedColumns = new Array(); + this.initCnt = 0; } - ngOnInit() { + + + ngOnChanges(changes: SimpleChanges) + { + + if(this.reportMode !== "Regular" && this.initCnt > 0) + { + console.log(changes); + this.queryString = changes["queryString"]["currentValue"]; + this.initCnt = 1; + + this.dataSource = new RunReportDataSource(); - this._route.params.subscribe(params => { + this.displayedColumnsArr = new Array(); + this.displayedRowObj = new Array(); + this.displayedColumns = new Array(); + this.formFieldList = new Array(); + // this.formFieldPresent = false; + this.showSpinner = true; + this.isReady = false; + this.NEWdisplayedColumns = new Array(); + + + this._runService.getReportDataWithFormFields(this.queryString, this.reportId1) + .subscribe((response) => { + console.log(response); + this.responseFormFieldListLength = 0; + this.formFieldPresent = false; + + // this.formFieldPresent = true; - this.IncomingReportId = params["reportId"]; - this.reportId1 = params["reportId"]; - }); + let i=0; + while(response["reportDataColumns"][i]) + { + this.displayedColumnsArr.push(response["reportDataColumns"][i]["columnTitle"] +","+ response["reportDataColumns"][i]["colId"]); + i++; + } + + let j=0; + while(response["reportDataRows"][j]) + { + let k=0; + let obj = new Object(); + while(this.displayedColumnsArr[k]) + { + if(response["reportDataRows"][j][this.displayedColumnsArr[k].split(",")[1]]) + { + //console.log(response["reportDataRows"][j][this.displayedColumnsArr[k].split(",")[1]]); + obj[response["reportDataRows"][j][this.displayedColumnsArr[k].split(",")[1]]["colId"]] = response["reportDataRows"][j][this.displayedColumnsArr[k].split(",")[1]]["displayValue"]; + //this.displayedRowObj.push(response["reportDataRows"][j][this.displayedColumnsArr[k].split(",")[1]]); + } + k++; + } + this.displayedRowObj.push(obj); + //console.log(response["reportDataRows"][j]); + j++; + } + + console.log(this.displayedColumnsArr); + console.log(this.displayedRowObj); + + for(let l=0; l { - console.log(response); + this.formFieldPresent = false; + this.responseFormFieldListLength = 0; + console.log(this.reportId1, this.reportMode); + // this._router.navigate(['v2/run', this.reportId1]); let i=0; while(response["reportDataColumns"][i]) @@ -85,22 +185,41 @@ export class RunReportComponent implements AfterViewInit, OnInit { { this.displayedColumns.push(this.displayedColumnsArr[l].split(",")[1]); } + + this.showSpinner = false; this.dataSource.data = this.displayedRowObj; + this.dataSource.sort = this.sort; this.dataSource.paginator = this.paginator; + this.table.dataSource = this.dataSource; - + }); - - // this.dataSource.data = [{id: 1, name: 'Hydrogen'}]; } + else + { - ngAfterViewInit() { - this._runService.getReportData(this.reportId1) + this.dataSource = new RunReportDataSource(); + + this.displayedColumnsArr = new Array(); + this.displayedRowObj = new Array(); + this.displayedColumns = new Array(); + this.formFieldList = new Array(); + // this.formFieldPresent = false; + this.showSpinner = true; + this.isReady = false; + this.NEWdisplayedColumns = new Array(); + + + this._runService.getReportDataWithFormFields(this.queryString, this.reportId1) .subscribe((response) => { console.log(response); + this.responseFormFieldListLength = 0; + this.formFieldPresent = false; + // this.formFieldPresent = true; + let i=0; while(response["reportDataColumns"][i]) { @@ -135,14 +254,18 @@ export class RunReportComponent implements AfterViewInit, OnInit { { this.displayedColumns.push(this.displayedColumnsArr[l].split(",")[1]); } + + + this.showSpinner = false; this.dataSource.data = this.displayedRowObj; this.dataSource.sort = this.sort; this.dataSource.paginator = this.paginator; this.table.dataSource = this.dataSource; - + }); - + } + this.initCnt = 1; } } diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run.component.html b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run.component.html index ce5f8c15..e81e40f7 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run.component.html +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run.component.html @@ -8,7 +8,5 @@
- +
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run.component.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run.component.ts index 2d621a82..6d2d23ee 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run.component.ts +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run.component.ts @@ -25,7 +25,7 @@ export class RunComponent implements OnInit { runReport() { - // this.toggle = true; + this.toggle = true; this._route.params.subscribe(params => { diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run.service.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run.service.ts index a75c50f8..e987e0ac 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run.service.ts +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run.service.ts @@ -17,11 +17,11 @@ export class RunService { getReportData(reportId : string) : Observable { - this.finalArr = new Array(); - this.finalResponseArr = new Array(); - this.finalArr = [{"id":"141","name":"USID"},{"id":"140","name":"USEID"},{"id":"81","name":"MARKET"},{"id":"83","name":"MARKETCLUSTER"},{"id":"112","name":"REGION"}]; - - return this._http.get(environment.baseUrl + "raptor.htm?action=report.run.container&c_master="+reportId+"&refresh=Y"); - + return this._http.get(environment.baseUrl + "raptor.htm?action=report.run.container&c_master="+reportId+"&refresh=Y"); + } + + getReportDataWithFormFields(queryString : string, reportId : string) : Observable + { + return this._http.get(environment.baseUrl + "raptor.htm?action=report.run.container&c_master="+reportId+queryString+"&refresh=Y&display_content=Y&r_page=0"); } } diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/sql/sql-save-changes-dialog/sql-save-changes-dialog.component.css b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/sql/sql-save-changes-dialog/sql-save-changes-dialog.component.css index 3b9aba82..468939a7 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/sql/sql-save-changes-dialog/sql-save-changes-dialog.component.css +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/sql/sql-save-changes-dialog/sql-save-changes-dialog.component.css @@ -9,13 +9,14 @@ } .dialog { - z-index: 1000; + z-index: 1100; position: fixed; right: 0; left: 0; top: 20px; margin-right: auto; margin-left: auto; + margin-top: 50px; min-height: 250px; width: 90%; max-width: 520px; diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/sql/sql-validate-changes-dialog/sql-validate-changes-dialog.component.css b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/sql/sql-validate-changes-dialog/sql-validate-changes-dialog.component.css index 146bc9e4..96d34266 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/sql/sql-validate-changes-dialog/sql-validate-changes-dialog.component.css +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/sql/sql-validate-changes-dialog/sql-validate-changes-dialog.component.css @@ -9,13 +9,14 @@ } .dialog { - z-index: 1000; + z-index: 1100; position: fixed; right: 0; left: 0; top: 20px; margin-right: auto; margin-left: auto; + margin-top: 50px; height: 690px; width: 800px; background-color: #fff; diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/sql/sql-validate-error-dialog/sql-validate-error-dialog.component.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/sql/sql-validate-error-dialog/sql-validate-error-dialog.component.ts index 7e27f932..c0131e5b 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/sql/sql-validate-error-dialog/sql-validate-error-dialog.component.ts +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/sql/sql-validate-error-dialog/sql-validate-error-dialog.component.ts @@ -15,12 +15,14 @@ export class SQLValidateErrorDialogComponent implements OnInit { ngOnInit() { this.errorObj = new Object(); this.errorObj = JSON.parse(this.tableObj); + console.log(this.tableObj); } ngOnChange() { this.errorObj = new Object(); this.errorObj = JSON.parse(this.tableObj); + console.log(this.tableObj); } } diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/sql/sql.component.css b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/sql/sql.component.css index 3419d3d5..da4c493c 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/sql/sql.component.css +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/sql/sql.component.css @@ -11811,6 +11811,11 @@ label.b2b-static-route-label-heading { border: #087ac2 2px solid; } +.dialog { + + margin-top: 50px; +} + .modalTitle{ font-size: 35px; } diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/sql/sql.component.html b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/sql/sql.component.html index b96d42f4..cd28d5c7 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/sql/sql.component.html +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/sql/sql.component.html @@ -23,7 +23,7 @@
- +